Full catalog/OMNO2
OMNO2·v003·dataset

Nitrogen dioxide air pollution (OMI/Aura)

OMI/Aura Nitrogen Dioxide (NO2) Total and Tropospheric Column 1-orbit L2 Swath 13x24 km V003 (OMNO2) at GES DISC
atmosphere NASA GES_DISC Level 2 active
In plain English

What it measures. How much nitrogen dioxide, a common air pollutant from traffic and burning fuel, sits in the air column overhead. It reports both the total amount and the portion near the ground (the part people breathe).

How it's made. Measured by the Ozone Monitoring Instrument on NASA's Aura satellite, with this version improving how it handles clouds, reflective surfaces, and snow and ice.

How & where you'd use it. Used to map air pollution, track emissions from cities and power plants, and study how air quality changes over time and place.

What's measured

ATMOSPHERE › ATMOSPHERIC CHEMISTRY › NITROGEN COMPOUNDS › NITROGEN DIOXIDE › TOTAL AND TROPOSPHERIC NITROGEN DIOXIDE (NO2)

Coverage & cadence

  • Time span2004-10-01 → ongoing
  • Measured byAura (OMI)
  • Processing levelLevel 2
  • Spatial extent-180, -90, 180, 90
  • 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

The Version 4.0 Aura Ozone Monitoring Instrument (OMI) Nitrogen Dioxide (NO2) Standard Product (OMNO2) is now available from the NASA Goddard Earth Sciences Data and Information Services Center. The major V4.0 updates include: (1) use of a new daily and OMI field of view specific geometry dependent surface Lambertian Equivalent Reflectivity (GLER) product in both NO2 and cloud retrievals; (2) use of improved cloud parameters (effective cloud fraction and cloud optical centroid pressure) from a new cloud algorithm (OMCDO2N) that are retrieved consistently with NO2 using a new algorithm for O2-O2 slant column data and the GLER product for terrain reflectivity; (3) use of a more accurate terrain pressure calculated using OMI ground pixel-averaged terrain height and monthly mean GMI terrain pressure; and (4) improved treatment over snow/ice surfaces by using the concept of scene LER and scene pressure. The details can be found in the updated OMNO2 readme document (see Documentation). The OMNO2 product contains slant column NO2 (total amount along the average optical path from the sun into the atmosphere, and then toward the satellite), the total NO2 vertical column density (VCD), the stratospheric and tropospheric VCDs, air mass factors (AMFs), scattering weights for calculation of AMFs, and other ancillary data. The short name for the Level-2 swath type column NO2 products is OMNO2. Other OMNO2-associated NO2 products include the Level-2 gridded column product, OMNO2G, and the Level-3 gridded column product, OMNO2d. The OMNO2 files are stored in version 5 EOS Hierarchical Data Format (HDF-EOS5). Each Level-2 file contains data from the day lit portion of an orbit (~53 minutes). There are approximately 14 orbits per day. The maximum file size for the OMNO2 is ~24 MB.

Get the data

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

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