Download OpenAPI specification:
Web services for querying earth science dataset resources.
Query ATL13 granule metadata by lake reference ID, lake name, coordinate, and/or spatial/temporal filters. Single lake queries (refid, name, coord) are attempted in order; if a lake is found, its granules are intersected with any general query results.
Array of objects (Coordinate) Polygon vertices for spatial filtering | |
| t0 | string Start time filter (ISO 8601 format) |
| t1 | string End time filter (ISO 8601 format) |
| name_filter | string Granule name filter pattern |
| rgt | integer Reference ground track number |
| cycle | integer Orbital cycle number |
| region | integer Region number |
| refid | integer ATL13 lake reference ID |
| name | string Lake name |
object (Coordinate) |
{- "poly": [
- {
- "lon": 0.1,
- "lat": 0.1
}
], - "t0": "2020-01-01T00:00:00Z",
- "t1": "2023-12-31T23:59:59Z",
- "name_filter": "string",
- "rgt": 0,
- "cycle": 0,
- "region": 0,
- "refid": 0,
- "name": "string",
- "coord": {
- "lon": 0.1,
- "lat": 0.1
}
}{- "hits": 0,
- "refid": 0,
- "granules": [
- "string"
]
}Query ATL24 bathymetry granule metadata with spatial, temporal, and attribute-based filters.
Array of objects (Coordinate) Polygon vertices for spatial filtering | |
| t0 | string Start time filter (ISO 8601 format) |
| t1 | string End time filter (ISO 8601 format) |
| name_filter | string Granule name filter pattern |
| rgt | integer Reference ground track number |
| cycle | integer Orbital cycle number |
| region | integer Region number |
| season | integer Season value to match |
| photons0 | integer Minimum bathy_photons range |
| photons1 | integer Maximum bathy_photons range |
| meandepth0 | number Minimum bathy_mean_depth range |
| meandepth1 | number Maximum bathy_mean_depth range |
| mindepth0 | number Minimum bathy_min_depth range |
| mindepth1 | number Maximum bathy_min_depth range |
| maxdepth0 | number Minimum bathy_max_depth range |
| maxdepth1 | number Maximum bathy_max_depth range |
{- "poly": [
- {
- "lon": 0.1,
- "lat": 0.1
}
], - "t0": "2020-01-01T00:00:00Z",
- "t1": "2023-12-31T23:59:59Z",
- "name_filter": "string",
- "rgt": 0,
- "cycle": 0,
- "region": 0,
- "season": 0,
- "photons0": 0,
- "photons1": 0,
- "meandepth0": 0,
- "meandepth1": 0,
- "mindepth0": 0,
- "mindepth1": 0,
- "maxdepth0": 0,
- "maxdepth1": 0
}{- "hits": 0,
- "granules": [
- "string"
]
}Retrieve per-beam metadata for a specific ATL24 granule.
| name required | string The granule name |
{- "property1": {
- "season": 0,
- "bathy_photons": 0,
- "bathy_mean_depth": 0,
- "bathy_min_depth": 0,
- "bathy_max_depth": 0,
- "begin_time": "2019-08-24T14:15:22Z"
}, - "property2": {
- "season": 0,
- "bathy_photons": 0,
- "bathy_mean_depth": 0,
- "bathy_min_depth": 0,
- "bathy_max_depth": 0,
- "begin_time": "2019-08-24T14:15:22Z"
}
}Query CASALS 1B granule metadata with spatial and temporal filters.
Array of objects (Coordinate) Polygon vertices for spatial filtering | |
| t0 | string Start time filter (ISO 8601 format) |
| t1 | string End time filter (ISO 8601 format) |
{- "poly": [
- {
- "lon": 0.1,
- "lat": 0.1
}
], - "t0": "2020-01-01T00:00:00Z",
- "t1": "2023-12-31T23:59:59Z"
}{- "hits": 0,
- "granules": [
- "string"
]
}Query USGS 3DEP 1-meter elevation granule metadata with spatial and temporal filters. Returns a GeoJSON FeatureCollection.
Array of objects (Coordinate) Polygon vertices for spatial filtering | |
| t0 | string Start time filter (ISO 8601 format) |
| t1 | string End time filter (ISO 8601 format) |
{- "poly": [
- {
- "lon": 0.1,
- "lat": 0.1
}
], - "t0": "2020-01-01T00:00:00Z",
- "t1": "2023-12-31T23:59:59Z"
}{- "type": "FeatureCollection",
- "hits": 0,
- "features": [
- {
- "type": "Feature",
- "id": "string",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 0
]
]
]
}, - "properties": {
- "datetime": "2019-08-24T14:15:22Z",
- "url": "string"
}
}
]
}