Full catalog/LPRM_AMSR2_DS_A_SOILM3
LPRM_AMSR2_DS_A_SOILM3·v001·dataset

How wet the soil is (AMSR2, 10 km, morning)

AMSR2/GCOM-W1 surface soil moisture (LPRM) L3 1 day 10 km x 10 km ascending V001 (LPRM_AMSR2_DS_A_SOILM3) at GES DISC
biosphere NASA GES_DISC Level 3 active
In plain English

What it measures. Estimates how wet the top layer of soil is across the land surface, along with the land's skin temperature and how much water is held in vegetation. This file covers the daytime (morning) satellite passes.

How it's made. Derived from passive microwave measurements by the AMSR2 instrument on Japan's GCOM-W1 satellite, run through the Land Parameter Retrieval Model and gridded daily to about 10 km cells (Level 3).

How & where you'd use it. Used to monitor droughts and flooding risk, support agriculture and water management, and study how soil moisture connects to weather and climate.

What's measured

BIOSPHERE › VEGETATION › PLANT CHARACTERISTICS › VEGETATION WATER CONTENTLAND SURFACE › SOILS › SOIL MOISTURE/WATER CONTENTLAND SURFACE › SURFACE THERMAL PROPERTIES › SKIN TEMPERATURE

Coverage & cadence

  • Time span2012-07-03 → ongoing
  • Measured byGCOM-W1 (AMSR2)
  • Processing levelLevel 3
  • Spatial extent-180, -90, 180, 90
  • StatusACTIVE

What you can do with it

  • Map vegetation, forests and biomass
  • Monitor ecosystem productivity and carbon
  • Support habitat and biodiversity studies
Official description

AMSR2/GCOM-W1 surface soil moisture (LPRM) L3 1 day 10 km x 10 km ascending V001 is a Level 3 (gridded) data set. Its land surface parameters, surface soil moisture, land surface (skin) temperature, and vegetation water content, are derived from passive microwave remote sensing data from the Advanced Microwave Scanning Radiometer 2 (AMSR2), using the Land Parameter Retrieval Model (LPRM). There are two files per day, one ascending (daytime) and one descending (nighttime), archived as two different products. This document is for the daytime product. The data set covers the period from May 2012, when the Japan Aerospace Exploration Agency (JAXA) Global Change Observation Mission-1st Water GCOM-W1 satellite was launched, to the present. The LPRM is based on a forward radiative transfer model to retrieve surface soil moisture and vegetation optical depth. The land surface temperature is derived separately from the AMSR2's Ka-band (36.5 GHz). A unique feature of this method is that it can be applied at any microwave frequency, making it very suitable to exploit all the available passive microwave data from various satellites. Input data are from the AMSR2 spatial-resolution-matched brightness temperatures (L1SGRTBR) product, daytime passes, as processed using LPRM (i.e., LPRM/AMSR2/GCOM-W1 Downscaled Level 2 product, LPRM_AMSR2_DS_SOILM2_V001).

Get the data

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

results = earthaccess.search_data(
    short_name="LPRM_AMSR2_DS_A_SOILM3",
    version="001",
    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 GES_DISC
Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.