Full catalog/GPCPDAY
GPCPDAY·v3.3·dataset

How much it rained worldwide (daily, 0.5 deg)

GPCP Precipitation Level 3 Daily 0.5-Degree V3.3 (GPCPDAY) at GES DISC
atmosphere NASA GES_DISC Level 3
In plain English

What it measures. How much rain (and precipitation generally) fell each day across the whole globe, on a half-degree grid. It's a daily worldwide rainfall map.

How it's made. Built by the Global Precipitation Climatology Project, which merges many satellite estimates with ground weather-station data into one consistent long-term record; updates are currently paused at September 2024.

How & where you'd use it. Used to study global rainfall patterns, droughts and floods, and long-term changes in the water cycle and climate.

What's measured

ATMOSPHERE › PRECIPITATIONATMOSPHERE › PRECIPITATION › PRECIPITATION RATE

Coverage & cadence

  • Time span1998-01-01 → 2025-12-31
  • Measured byDMSP (SSM/I, SSMIS) · NOAA POES (TOVS) · Aqua (AIRS) · GOES (GOES-15 Imager, GOES-16 Imager) · METEOSAT (VISSR-METEOSAT) · GMS (VISSR-GMS) · MTSAT (MTSAT 1R Imager, MTSAT 2 Imager) · Himawari-8 (AHI) · WEATHER STATIONS (RAIN GAUGES)
  • Processing levelLevel 3
  • Spatial extent-180, -90, 180, 90
  • 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

Version 3.3 is the current version. Older versions have been superseded by Version 3.3. Product latency/update: The products are currently paused at September 2024 because the IR input dataset from NCEI requires a new calibration scheme to extend past that point. Once NCEI irons out the calibration, we expect to return to quarterly updates. The Global Precipitation Climatology Project (GPCP) is the precipitation component of an internationally coordinated set of (mainly) satellite-based global products dealing with the Earth's water and energy cycles, under the auspices of the Global Water and Energy Exchange (GEWEX) Data and Assessment Panel (GDAP) of the World Climate Research Program. As the follow on to the GPCP Version 1.3 One Degree Daily product, GPCP Version 3 (GPCP V3.3) seeks to continue the long, homogeneous precipitation record using modern merging techniques and input data sets. The GPCPV3 suite currently consists of the 0.5-degree Monthly and 0.5-degree Daily. Additional products may be added, which consist of (1) 0.5-degree pentad and (2) 0.1-degree 3-hourly. All GPCPV3 products will be internally consistent. Inputs consist of GPM IMERG in the span 55°N-S, and TOVS/AIRS estimates, adjusted climatologically to IMERG, outside 55°N-S. The Daily estimates are scaled to approximately sum to the Monthly value at each 0.5° grid box. In addition to the final precipitation field, probability of liquid phase estimates are provided globally.

Get the data

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

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