Full catalog/HMA2_WBP
HMA2_WBP·v1·dataset

Future water-supply projections, Central Asia mountains (2016-2099)

High Mountain Asia CMIP6 Monthly and Yearly Water Balance Projections, 2016-2099 for Parts of Afghanistan, Tajikistan, Kyrgyzstan, and Pakistan V001
hydrosphere NASA NSIDC_CPRD Level 4 netCDF-4
In plain English

What it measures. Projections of the water balance — how water moves and is stored — for mountain headwater regions of Afghanistan, Tajikistan, Kyrgyzstan and Pakistan, given monthly and yearly out to 2099.

How it's made. Generated by a university water-balance computer model driven by 12 global climate models under two future emissions scenarios, with a historical run for comparison; this is model output, not satellite data.

How & where you'd use it. Helps water managers and researchers anticipate future water supply in the Amu Darya and Indus headwaters under different climate futures.

What's measured

TERRESTRIAL HYDROSPHERE › WATER BUDGET

Coverage & cadence

  • Time span2016-01-01 → 2099-12-31
  • Measured byMODELS (NOT APPLICABLE)
  • Processing levelLevel 4
  • Spatial extent65.58334, 31.08334, 81.75, 39.83334
  • FormatsnetCDF-4
  • 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 High Mountain Asia (HMA) data set comprises a suite of monthly and yearly water balance model (WBM) projections for the years 2016 – 2099, covering parts of Afghanistan, Tajikistan, Kyrgyzstan, and Pakistan (primarily the headwaters of the Amu Darya and Indus River basins). Projections are available for 12 Coupled Model Intercomparison Project Phase 6 (CMIP6) global climate models and two Shared Socioeconomic Pathways (SSP 2-4.5 and SSP 5-8.5). The data were generated using the University of New Hampshire WBM. A historical run is also available for the years 1980 through 2018, using as input ERA5 reanalysis temperature data and ensemble precipitation estimates.

Get the data

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

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