Full catalog/HMA2_NLSMR
HMA2_NLSMR·v1·dataset

Modeled daily land and snow conditions, High Mountain Asia

High Mountain Asia Daily 0.05 x 0.05 deg Noah-MP Land Surface Model Reanalysis V001
hydrosphere NASA NSIDC_CPRD Level 4 netCDF-3
In plain English

What it measures. Daily estimates of the water and land conditions across High Mountain Asia, covering more than 30 measures including snow depth, snow water content, soil moisture, temperatures, evaporation, and streamflow.

How it's made. Generated by the Noah-MP land surface model, a physics-based simulation driven by precipitation and other inputs tailored to the region, spanning 2003 to 2020.

How & where you'd use it. Useful for understanding water supply, snowpack, and hydrology in a mountainous region whose rivers feed billions of people; this is modeled data rather than direct measurements.

What's measured

TERRESTRIAL HYDROSPHERE › WATER BUDGET

Coverage & cadence

  • Time span2003-01-01 → 2020-12-31
  • Measured byMODELS (NOT APPLICABLE)
  • Processing levelLevel 4
  • Spatial extent60, 20, 111, 46
  • FormatsnetCDF-3
  • StatusCOMPLETE

What you can do with it

  • Follow rainfall, floods and surface-water extent
  • Track soil moisture and the onset of drought
  • Monitor lakes, rivers and groundwater storage
Official description

This data set consists of a water budget reanalysis for the High Mountain Asia (HMA) region spanning the years 2003 through 2020. Estimates are provided for more than 30 parameters, including storages; fluxes; snow depth, extent, and snow water equivalent; temperature (land surface, soil, snow, and ice); surface albedo; soil moisture; evapotranspiration; and streamflow. The data were generated using the Noah Multi-Parameterization (Noah-MP) land surface model (Version 4.0.1), driven by precipitation estimates and hydrological inputs developed specifically for HMA.

Get the data

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

results = earthaccess.search_data(
    short_name="HMA2_NLSMR",
    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.