Full catalog/OMSO2e
OMSO2e·v003·dataset

Sulfur dioxide in the air, mapped daily (Aura OMI)

OMI/Aura Sulfur Dioxide (SO2) Total Column Daily L3 1 day Best Pixel in 0.25 degree x 0.25 degree V3 (OMSO2e) at GES DISC
atmosphere NASA GES_DISC Level 3 active
In plain English

What it measures. Daily maps of sulfur dioxide, a gas from volcanoes and pollution, showing how much sits in the lowest layer of the atmosphere over each spot on a fine global grid.

How it's made. Made from the OMI instrument on the Aura satellite by choosing the single best-quality measurement for each grid cell each day, along with helpful extras like cloud cover and viewing angles.

How & where you'd use it. Used to track volcanic eruptions and industrial pollution and to support air-quality and atmospheric research.

What's measured

ATMOSPHERE › ATMOSPHERIC CHEMISTRY › SULFUR COMPOUNDS › SULFUR 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

The OMI science team produces this Level-3 Aura/OMI Global OMSO2e Data Products (0.25 degree Latitude/Longitude grids). In this Level-3 daily global SO2 data product, each grid contains only one observation of Total Column Density of SO2 in the Planetary Boundary Layer (PBL), based on an improved Principal Component Analysis (PCA) Algorithm. This single observation is the "best pixel", selected from all "good" L2 pixels of OMSO2 that overlap this grid and have UTC time between UTC times of 00:00:00 and 23:59:59.999. In addition to the SO2 Vertical column value some ancillary parameters, e.g., cloud fraction, terrain height, scene number, solar and satellite viewing angles, row anomaly flags, and quality flags have been also made available corresponding to the best selected SO2 data pixel in each grid. The OMSO2e files are stored in the version 5 EOS Hierarchical Data Format (HDF-EOS5) using the grid model.

Get the data

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

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