Full catalog/WC_MULTISEN_PREC_025
WC_MULTISEN_PREC_025·v001·dataset

Rainfall amounts every 3 hours (TRMM)

TMI/TRMM precipitation and uncertainty (TMPA) L3 3 hour 0.25 degree x 0.25 degree V001 (WC_MULTISEN_PREC_025) at GES DISC
atmosphere NASA GES_DISC Level 3
In plain English

What it measures. How much rain fell every three hours across the tropics and subtropics (from 50 degrees north to 50 degrees south), over both land and ocean, along with an estimate of how uncertain each rainfall figure is.

How it's made. Combines readings from the TRMM rainfall satellite with many other weather satellites, blended onto a quarter-degree global grid.

How & where you'd use it. Good for studying rainfall patterns, floods, and droughts in tropical regions, with the bonus of knowing how reliable each estimate is.

What's measured

ATMOSPHERE › PRECIPITATION › LIQUID PRECIPITATION › RAINATMOSPHERE › PRECIPITATION › PRECIPITATION AMOUNT

Coverage & cadence

  • Time span1998-01-01 → 2010-12-31
  • Measured byMETEOROLOGICAL STATIONS (RAIN GAUGES) · DMSP 5D-2/F13 (SSM/I) · DMSP 5D-2/F14 (SSM/I) · DMSP 5D-2/F15 (SSM/I) · DMSP 5D-3/F16 (SSMIS) · DMSP 5D-3/F17 (SSMIS) · DMSP 5D-3/F18 (SSMIS) · Aqua (AMSR-E) · GMS (INFRARED RADIOMETERS) · GOES (INFRARED RADIOMETERS) · METEOSAT (INFRARED RADIOMETERS) · METOP-A (MHS) · METOP-B (MHS) · MTSAT-1R (INFRARED RADIOMETERS) · MTSAT-2 (INFRARED RADIOMETERS) · NOAA-15 (AMSU-B) · NOAA-16 (AMSU-B) · NOAA-17 (AMSU-B) · NOAA-18 (MHS) · NOAA-19 (MHS) · TRMM (TMI, PR)
  • Processing levelLevel 3
  • Spatial extent-180, -50, 180, 50
  • StatusCOMPLETE

What you can do with it

  • Map air pollutants — NO₂, aerosols, ozone
  • Track greenhouse gases and Earth's energy budget
  • Feed weather and air-quality analysis
Official description

TMI/TRMM precipitation and uncertainty (TMPA) L3 3 hour 0.25 degree x 0.25 degree V001 provides estimates of accumulated precipitation from the Tropical Rainfall Measuring Mission (TRMM) and Other Data Precipitation Data Set (TRMM 3B42; Huffman et al., 2007), along with estimates of the uncertainty in the TRMM 3B42 made by Bytheway and Kummerow (2013). The data set covers both ocean and land from 50 degree North to 50 degree South.

Get the data

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

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