Full catalog/HMA_DEM8m_AT
HMA_DEM8m_AT·v1·dataset

Sharp elevation maps of High Mountain Asia (8 m)

High Mountain Asia 8-meter DEMs Derived from Along-track Optical Imagery V001
land NASA NSIDC_CPRD Level 4 PNGGeoTIFF
In plain English

What it measures. Sharp, 8-meter-detail elevation maps of the glacier and snow regions of High Mountain Asia, capturing the rugged shape of this mountainous terrain.

How it's made. Generated from pairs of very-high-resolution images taken at slightly different angles by commercial satellites, which together reveal the 3D shape of the land.

How & where you'd use it. Helps scientists measure mountain glaciers and snow and track how they change, important for water supplies across the region.

What's measured

LAND SURFACE › TOPOGRAPHY › TERRAIN ELEVATION › DIGITAL ELEVATION/TERRAIN MODEL (DEM)

Coverage & cadence

  • Time span2002-01-28 → 2016-11-24
  • Measured byGEOEYE-1 (CAMERAS) · QUICKBIRD-2 (QUICKBIRD/BHRC-60) · WORLDVIEW-1 (CAMERAS) · WORLDVIEW-2 (CAMERAS) · WORLDVIEW-3 (CAMERAS)
  • Processing levelLevel 4
  • Spatial extent67, 26, 103, 46
  • FormatsPNG, GeoTIFF
  • StatusCOMPLETE

What you can do with it

  • Track deforestation, fire scars and land-cover change
  • Monitor crop and vegetation health (NDVI/EVI)
  • Map how built-up vs. green an area is over time
Official description

This data set contains 8-meter Digital Elevation Models (DEMs) of high mountain Asia glacier and snow regions generated from very-high-resolution commercial stereoscopic satellite imagery.

Get the data

hma_dem8m_at_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

results = earthaccess.search_data(
    short_name="HMA_DEM8m_AT",
    version="1",
    bounding_box=(-122.5, 37.2, -121.8, 37.9),  # your area (W,S,E,N)
    temporal=("2024-01-01", "2024-12-31"),       # your dates
)
files = earthaccess.open(results)   # stream straight from NSIDC_CPRD
Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.