3D terrain server for Cesium tiles and terrain elevation computation
Servers
Terrain layer metadata (single-file mode)
Returns the Cesium quantized-mesh layer metadata for the single terrain file configured through TERRAIN_FILEPATH.
Authorizations
Paste a Kalisio JWT access token to authorize requests sent through the API gateway.
Responses
Layer metadata
Terrain tile (single-file mode)
Returns the gzipped quantized-mesh tile located at z/x/y from the single terrain file configured through TERRAIN_FILEPATH.
Authorizations
Paste a Kalisio JWT access token to authorize requests sent through the API gateway.
Parameters
Path Parameters
Tile zoom level
Tile column
Tile row (TMS scheme)
Responses
A quantized-mesh tile (gzip encoded)
Terrain layer metadata (multi-file mode)
Returns the layer metadata for one of the terrain files served from the TERRAIN_FOLDER folder.
Authorizations
Paste a Kalisio JWT access token to authorize requests sent through the API gateway.
Parameters
Path Parameters
Terrain file basename in lower case without the extension, e.g. myterrain for /mbtiles/myterrain.mbtiles.
"myterrain"Responses
Layer metadata
Terrain tile (multi-file mode)
Returns the gzipped quantized-mesh tile located at z/x/y from one of the terrain files served from the TERRAIN_FOLDER folder.
Authorizations
Paste a Kalisio JWT access token to authorize requests sent through the API gateway.
Parameters
Path Parameters
Terrain file basename in lower case without the extension, e.g. myterrain for /mbtiles/myterrain.mbtiles.
"myterrain"Tile zoom level
Tile column
Tile row (TMS scheme)
Responses
A quantized-mesh tile (gzip encoded)
Compute the elevation profile under a path
Computes the elevation of the terrain under a linear geographical element (a path/trajectory) from the available elevation data and a requested target resolution.
By default the elevation dataset is selected depending on the resolution:
resolution < 250m: SRTM v4,resolution < 500m: GMTED 2010 — Maximum 7.5 arc-seconds grid,resolution < 1000m: GMTED 2010 — Maximum 15 arc-seconds grid,- otherwise: GMTED 2010 — Maximum 30 arc-seconds grid.
When a GMTED dataset is selected the maximum elevation within each grid cell is returned, otherwise the mean elevation is returned.
The configuration properties below can be passed either as query parameters or as members of the posted GeoJSON. Any source sample with a nodata value is set to 0.
Authorizations
Paste a Kalisio JWT access token to authorize requests sent through the API gateway.
Parameters
Query Parameters
Interval, in meters, between two elevation samples over the profile source. Values below 30 are clamped to 30.
10003030How many segments are computed in parallel server side. Capped at 6.
164The name of an elevation dataset to use for custom datasets, resolved relative to /mbtiles. k2 auto-selects a dataset when empty.
""The width, in meters, of a corridor to consider around the path. The computed elevation is the max elevation of all the covered samples.
0A constant offset, in meters, added to every computed elevation sample.
0Request Body
Responses
A GeoJSON FeatureCollection of sampled points