Full catalog/HAQ_TROPOMI_NO2_CONUS_S_L3
HAQ_TROPOMI_NO2_CONUS_S_L3·v2.4·dataset

Seasonal nitrogen-dioxide air pollution, USA (TROPOMI)

HAQAST Sentinel-5P TROPOMI Nitrogen Dioxide (NO2) CONUS Seasonal Level 3 0.01 x 0.01 Degree Gridded Data V2.4 (HAQ_TROPOMI_NO2_CONUS_S_L3) at GES DISC
atmosphere NASA GES_DISC Level 3 active
In plain English

What it measures. Seasonal averages of nitrogen-dioxide pollution in the air column over the continental United States, at about 1 km detail. NO2 mostly comes from burning fossil fuels and harms breathing.

How it's made. Built from the TROPOMI instrument on Europe's Sentinel-5P satellite, with daily readings averaged into seasons and fine-gridded by a university air-quality lab using a consistent algorithm.

How & where you'd use it. Designed for tracking air-pollution trends over time, supporting public-health and air-quality research, since NO2 also helps form ozone and fine particles.

What's measured

ATMOSPHERE › AIR QUALITYATMOSPHERE › ATMOSPHERIC CHEMISTRY › NITROGEN COMPOUNDS › CLOUD-SCREENED TROPOSHERIC COLUMN NO2

Coverage & cadence

  • Time span2018-06-01 → ongoing
  • Measured bySentinel-5P (TROPOMI)
  • Processing levelLevel 3
  • Spatial extent-124.75, 24.5, -66.76, 49.49
  • StatusACTIVE

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

This product provides level 3 seasonal averages of tropospheric Nitrogen dioxide (NO2) vertical column density derived from the level 2 Tropospheric Monitoring Instrument (TROPOMI) across the Continental United States oversampled to a spatial resolution of 0.01˚ x 0.01˚ (~1 km2) using a consistent algorithm from the European Space Agency (ESA) version 2.4 that can be used for trend analysis of air pollution. The dataset record began in June-August 2018 and continues to the present. This L3 product was developed by the George Washington University Air, Climate and Health Laboratory as part of the NASA Health Air Quality Applied Science Team (HAQAST) using Level 2 version 2.4 TROPOMI NO2 files from the ESA. The TROPOMI instrument on Sentinel-5 Precursor acquires tropospheric NO2 column contents from low Earth orbit (~824 km above ground level) once per day globally at approximately 13:30 local time. NO2 is an air pollutant that adversely affects the human respiratory system and leads to premature mortality. NO2 is also an important precursor for ozone and fine particulates, which also have severe health impacts. In urban areas, the majority of NO2 originates from anthropogenic NOx (=NO+NO2; most NOx is emitted as NO, which rapidly cycles to NO2) emissions during high-temperature fossil fuel combustion. Tropospheric NO2 vertical column contents are qualitatively representative of near-surface NO2 concentrations and NOx emissions in urban/polluted locations.

Get the data

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

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