Full catalog/GPM_3HSLH_DAY
GPM_3HSLH_DAY·v07·dataset

Heat released by rainstorms, daily (GPM radar)

GPM DPR Spectral Latent Heating Profiles L3 1 day 0.5 degree x 0.5 degree V07 (GPM_3HSLH_DAY) at GES DISC
atmosphere NASA GES_DISC Level 3 active
In plain English

What it measures. Estimates the heat that storms release into the air when water vapor condenses into rain, summarized as daily profiles at different altitudes.

How it's made. Calculated from rainfall radar readings on the GPM satellite and packed onto a daily half-degree global grid.

How & where you'd use it. A building-block input for weather and climate models, where knowing where storms dump heat helps explain how the atmosphere circulates.

What's measured

ATMOSPHERE › ATMOSPHERIC WATER VAPORATMOSPHERE › PRECIPITATION

Coverage & cadence

  • Time span2014-03-09 → ongoing
  • Measured byGPM (DPR)
  • Processing levelLevel 3
  • Spatial extent-180, -67, 180, 67
  • 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 07 is the current version of the data set. Older versions will no longer be available and have been superseded by Version 07. The Gridded Spectral Latent Heating (3HSLH) products contain latent heating, Q1-QR and Q2 profiles from DPR raindata.

Get the data

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

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