Full catalog/glmmth
glmmth·v1·dataset

How many hours per month it thunders (GLM)

Geostationary Lightning Mapper (GLM) Combined Monthly Thunder Hour Data Product
atmosphere NASA GHRC_DAAC Level 3 netCDF-4
In plain English

What it measures. How many hours in a month thunder would have been heard at each location across the Americas and nearby oceans, used as a long-term measure of thunderstorm frequency.

How it's made. Calculated from lightning detections by the Geostationary Lightning Mapper instruments aboard the GOES weather satellites (GOES-16 through -19), combined into a monthly product from 2019 onward.

How & where you'd use it. Useful for tracking long-term trends in lightning and thunderstorm activity in a way that's less affected by differences in detection coverage.

What's measured

ATMOSPHERE › ATMOSPHERIC ELECTRICITY › LIGHTNINGATMOSPHERE › ATMOSPHERIC ELECTRICITY › LIGHTNING › THUNDER HOUR

Coverage & cadence

  • Time span2019-01-01 → 2025-12-31
  • Measured byGOES-16 (GLM) · GOES-17 (GLM) · GOES-18 (GLM) · GOES-19 (GLM)
  • Processing levelLevel 3
  • Spatial extent-180, -90, 180, 90
  • FormatsnetCDF-4
  • 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

The Geostationary Lightning Mapper (GLM) is the first optical lightning detector in geostationary orbit, and GLM sensors operate aboard the National Oceanic and Atmospheric Administration (NOAA) Geostationary Operational Environmental Satellites (GOES R-series: GOES-16, -17, -18, and -19). The first to launch was GOES-16 on November 19, 2016 and it was placed in the GOES-East position. On March 1, 2018 GOES-17 launched and would eventually become operational in the GOES-West position. Since that time, the United States has maintained one satellite in each position. Currently, GOES-18 (west) and GOES-19 (east) are the operational satellites. With these instruments, the combined monthly thunder hour dataset has been created. A thunder hour is an hour during which thunder can be heard at a given location. Thunder hours represent a historical measure of lightning occurrence and a metric of thunderstorm frequency that is comparatively less sensitive to geographic variations in the detection capabilities of a lightning location system. The GLM thunder hour dataset will provide a long-term means of tracking trends in lightning occurrence over the Americas and surrounding oceans. The GLM Combined Monthly Thunder Hour dataset is calculated from lightning detections from 1 January 2019 onward, during which time GLMs are operating from GOES-West and GOES-East positions, providing continuous lightning detection for a broad region from the Aleutian Islands and New Zealand eastward to the western tip of Africa. The data are provided at 0.05° latitude/longitude resolution in netCDF-4 format.

Get the data

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

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