Full catalog/OMNO2d
OMNO2d·v003·dataset

Nitrogen dioxide air pollution, daily map (OMI/Aura)

OMI/Aura NO2 Cloud-Screened Total and Tropospheric Column L3 Global Gridded 0.25 degree x 0.25 degree V3 (OMNO2d) at GES DISC
atmosphere NASA GES_DISC Level 3 active
In plain English

What it measures. A daily global map of nitrogen dioxide pollution on a quarter-degree grid, giving both the total amount in the air column and the portion in the lower atmosphere where it affects air quality.

How it's made. Built from the OMI instrument on NASA's Aura satellite by collecting good-quality pixel readings and averaging them into grid boxes, with a cloud-screened version filtering out cloudy scenes.

How & where you'd use it. Used to monitor air pollution from combustion and lightning, identify pollution hotspots, and study ozone chemistry in the atmosphere.

What's measured

ATMOSPHERE › ATMOSPHERIC CHEMISTRY › NITROGEN COMPOUNDS › NITROGEN DIOXIDE

Coverage & cadence

  • Time span2004-10-01 → ongoing
  • Measured byAura (OMI)
  • Processing levelLevel 3
  • 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

This is Level-3 daily global gridded (0.25x0.25 degree) Nitrogen Dioxide Product (OMNO2d). OMNO2d data product is a Level-3 Gridded Product where pixel level data of good quality are binned and "averaged" into 0.25x0.25 degree global grids. This product contains Total column NO2 and Total Tropospheric Column NO2, for all atmospheric conditions, and for sky conditions where cloud fraction is less than 30 percent. Nitrogen dioxide is an important chemical species in both, the stratosphere where it plays a key role in ozone chemistry, and in the troposphere where it is a precursor to ozone production. In the troposphere, it is produced in various combustion processes and in lightning and is an indicator of poor air quality. The OMNO2d data are stored in version 5 EOS Hierarchical Data Format (HDF-EOS). Each file contains data from the day lit portion of the orbit (~14 orbits). The average file size for the OMNO2d data product is about 12 Mbytes.

Get the data

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

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