Elevation at a point
elevation_atRetrieve ground elevation in meters at a latitude/longitude point from Copernicus GLO-30 data. Returns the elevation value, or a note if coverage is unavailable.
Instructions
Ground elevation in meters at a point, from Copernicus GLO-30 (~30 m resolution).
Reads the Copernicus DEM directly from AWS Open Data (no API key, no
third-party elevation service) — the same open-data pattern every other
tool here uses, just a different bucket than Overture's. Nearest-cell
sampling, not interpolated: at ~30 m ground resolution the answer is
"the elevation of the DEM cell containing this point", which can be off
by a few meters from the exact spot on a steep slope.
Returns {"elevation_m": <float>}. No coverage at this point — open
ocean, or a tile the Copernicus release excludes from public
distribution — is a real, non-error answer: {"elevation_m": null,
"note": "..."} explaining why. Returns a structured {"error": ...} for
an out-of-range coordinate, or if the DEM tile can't be fetched
(network/upstream failure).
Attribution: Copernicus DEM © DLR/ESA, accessed via AWS Open Data.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | ||
| lon | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||