Elevation Service ⛰️
Click here for the OpenAPI
Purpose
Allows users to request elevation(height) information at a given location(s)/position(s) in [lon,lat] format with/without extra data eg. resolution, DTM/DSM, etc.
Terminology
Product types
Elevation info might be returned from following material types:
- DTM - terrain materials.
 - DSM - surface materials.
 - MIXED - according to most detailed (best resolution) materials.
 
Confidence level
Calculated for each product and is represented by two values:
resolutionMeter- precision on the horizontal plane (may be interpolated), meaning that for everyresolutionMetermeters there is a value in the meshabsoluteAccuracyLEP90- each height measurement has a 90% chance to have a deviation of at mostxmeters from the given value (betweenheight-absoluteAccuracyLEP90andheight+absoluteAccuracyLEP90)
It is extremely important to provide all of the information about the product which the height was extracted from for each point you query.
When using the API to display the heights, we require you to provide the productType, resolutionMeter and absoluteAccuracyLEP90 values as well.
Usage
- You may request values for up to 250 points at once. In case you have more than that, you should divide it into bulks.
- Coordinates order is not preserved.
- You will need an API token as part of the service authentication.  
- When getting a time-out in a result of request, please try same API call again.
API parameters (payload) explanation
The structure (JSON schema) is as follows:
{
  "positions": [
    {
      "longitude": 0,
      "latitude": 0
    }
  ],
  "productType": "MIXED"
}
🔴 positions (required)
Array of geographical coordinates 
Limited up to 250 coordinates