Full catalog/HAQ_TROPOMI_NO2_CONUS_M_L3
HAQ_TROPOMI_NO2_CONUS_M_L3·v2.4·dataset

Nitrogen dioxide air pollution over the US, monthly

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

What it measures. Monthly maps of nitrogen dioxide (NO2) air pollution over the continental United States, shown at roughly 1-kilometer detail. It reports how much NO2 sits in the column of air above each spot.

How it's made. Derived from daily measurements by the TROPOMI instrument on Europe's Sentinel-5P satellite, then averaged into a fine monthly grid by a George Washington University lab using NASA's HAQAST air-quality program.

How & where you'd use it. NO2 harms breathing and helps form smog and soot, so this product is used to track urban air pollution, study health impacts, and watch long-term pollution trends.

What's measured

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

Coverage & cadence

  • Time span2018-05-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 monthly 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 May 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_m_l3_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

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