Provenance
Freshness & coverage
Methods (5)
getElevation
readRetrieve elevation at one coordinate in requested units.
Input schema
{ "type": "object", "properties": { "latitude": { "type": "number" }, "longitude": { "type": "number" }, "units": { "oneOf": [ { "type": "string", "enum": [ "Feet" ] }, { "type": "string", "enum": [ "Meters" ] } ] } }, "additionalProperties": false, "required": [ "latitude", "longitude" ] }getElevations
readRetrieve elevations for multiple coordinate points in requested units.
Input schema
{ "type": "object", "properties": { "points": { "type": "array", "items": { "type": "object", "properties": { "latitude": { "type": "number" }, "longitude": { "type": "number" } }, "required": [ "latitude", "longitude" ], "additionalProperties": false } }, "units": { "oneOf": [ { "type": "string", "enum": [ "Feet" ] }, { "type": "string", "enum": [ "Meters" ] } ] } }, "additionalProperties": false, "required": [ "points" ] }query3DEPCoverage
unknownQuery three-dimensional elevation coverage data at one coordinate.
Input schema
{ "type": "object", "properties": { "latitude": { "type": "number" }, "longitude": { "type": "number" } }, "additionalProperties": false, "required": [ "latitude", "longitude" ] }getElevationProfile
readRetrieve an elevation profile between two coordinates with configurable samples and units.
Input schema
{ "type": "object", "properties": { "startLat": { "type": "number" }, "startLon": { "type": "number" }, "endLat": { "type": "number" }, "endLon": { "type": "number" }, "numSamples": { "type": "number" }, "units": { "oneOf": [ { "type": "string", "enum": [ "Feet" ] }, { "type": "string", "enum": [ "Meters" ] } ] } }, "additionalProperties": false, "required": [ "startLat", "startLon", "endLat", "endLon" ] }getContoursGeoJSON
readRetrieve elevation contour GeoJSON by bounding box, nearby location, elevation range, or contour type.
Input schema
{ "type": "object", "properties": { "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "latitude": { "type": "number" }, "longitude": { "type": "number" }, "radius_meters": { "type": "number" }, "contour_type": { "type": "string" }, "min_elevation": { "type": "number" }, "max_elevation": { "type": "number" }, "limit": { "type": "number" } }, "additionalProperties": false }
