Access U.S. Geological Survey 3DEP raster datasets including 1m, 1/3 arc-second (10m), 1 arc-second (30m) Digital Elevation Model. Note: 1m DEM is currently restricted to academic users. Requests are limited to 225,000 km² for USGS30m, 25,000 km² for USGS10m, 250 km² for USGS1m data. This API service relies on USGS resources. OpenTopography does not control the availability or performance of this service.
USGS 3DEP 1m raster dataset is currently restricted to academic users. Academic users can request access to these data via the OpenTopography portal. Non-academic users can enquire about an enterprise API key by emailing info@opentopography.org. See OpenTopography Terms of Use for more information on appropriate use of the API.
import zingu_apis
api = zingu_apis.api("opentopography")
result = api.fetch("usgsdem", datasetName="USGS30m", south=40.234, north=40.288, west=-105.673, east=-105.583, outputFormat="GTiff")
for item in result:
print(item)
const resp = await fetch("https://portal.opentopography.org/API/usgsdem?datasetName=USGS30m&south=40.234&north=40.288&west=-105.673&east=-105.583&outputFormat=GTiff");
const data = await resp.json();