Full catalog/LPRM_TMI_DY_SOILM3
LPRM_TMI_DY_SOILM3·v001·dataset

How wet the soil is, daily daytime (TRMM, 25 km)

TMI/TRMM surface soil moisture (LPRM) L3 1 day 25 km x 25 km daytime V001 (LPRM_TMI_DY_SOILM3) at GES DISC
land NASA GES_DISC Level 3
In plain English

What it measures. Daily daytime maps of how wet the soil is at the surface, plus land surface temperature and vegetation water content, on a 25 km grid.

How it's made. Derived from passive microwave signals collected by the TMI instrument on the TRMM satellite, processed with the Land Parameter Retrieval Model; data span 1997-2015.

How & where you'd use it. Used for monitoring droughts and floods, agriculture, and studying the water cycle over land.

What's measured

LAND SURFACE › SURFACE THERMAL PROPERTIES › SKIN TEMPERATURELAND SURFACE › SOILS › SOIL MOISTURE/WATER CONTENTBIOSPHERE › VEGETATION › PLANT CHARACTERISTICS › VEGETATION WATER CONTENT

Coverage & cadence

  • Time span1997-12-07 → 2015-04-08
  • Measured byTRMM (TMI)
  • Processing levelLevel 3
  • Spatial extent-180, -40, 180, 40
  • 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

TMI/TRMM surface soil moisture (LPRM) L3 1 day 25 km x 25 km daytime 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 Tropical Rainfall Measuring Mission (TRMM) Microwave Imager (TMI), using the Land Parameter Retrieval Model (LPRM). There are two files per day, one daytime and one nighttime, archived as two different products. This document is for the daytime product. The data set covers the period from December 1997 to April 2015 (when the instruments on the TRMM satellite were shut down in preparation for its reentry into the earth's atmosphere). 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 TMI's Ka-band (37 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 TMI Brightness Temperatures (1B-11) product, daytime passes, as processed using LPRM (i.e., LPRM/TMI/TRMM Level 2 product, LPRM_TMI_SOILM2_V001).

Get the data

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

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