Last updated 5 months ago
Was this helpful?
This service will provide quasi-static information on elevations around the globe from COPERNICUS COP DEM GLO-30.
Request Elevation for Single Point
Request Elevation for List of Points
Latitude in decimal degrees
Longitude in decimal degrees
cop-dem-glo-30
{"elevation":123.789,"latitude":50.123,"longitude":10.456,"model":"cop-dem-glo-30"}
GET /geo-information/v1/elevation?lat=1&lon=1 HTTP/1.1 Host: x-api-key: YOUR_API_KEY Accept: */*
Successful Response
{ "elevation": 123.789, "latitude": 50.123, "longitude": 10.456, "model": "cop-dem-glo-30" }
POST /geo-information/v1/elevations HTTP/1.1 Host: x-api-key: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 29 [ { "lat": 50.123, "lon": 10.456 } ]
[ { "elevation": 123.789, "latitude": 50.123, "longitude": 10.456, "model": "cop-dem-glo-30" } ]