GET /elevation/lookup
Erhalten Sie die Höhe (meters above sea level) for any coordinates on Earth using SRTM 90m satellite data. Resolution is approximately 90 meters.
lat
erforderlich
Latitude (-90 to 90)
lng
erforderlich
Longitude (-180 to 180)
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
lat |
Ja | - | Latitude (-90 to 90) |
lng |
Ja | - | Longitude (-180 to 180) |
curl "https://nordapi.ee/api/v1/elevation/lookup?lat=59.9139&lng=10.7522"
{
"data": {
"dataset": "srtm90m",
"elevation": 24.0,
"latitude": 59.9139,
"longitude": 10.7522
},
"success": true
}