Full catalog/OMSO2G
OMSO2G·v003·dataset

Sulfur dioxide air pollution, daily map (OMI/Aura, 0.125 deg)

OMI/Aura Sulphur Dioxide (SO2) Total Column Daily L2 Global Gridded 0.125 degree x 0.125 degree V3 (OMSO2G) at GES DISC
atmosphere NASA GES_DISC Level 2G active
In plain English

What it measures. Daily worldwide readings of sulfur dioxide, a pollutant gas that comes from volcanoes, coal burning and industry, measured as the total amount stacked up in a column of air. It also carries extra details like haze, cloud cover and quality flags for each observation.

How it's made. Built from the OMI instrument on NASA's Aura satellite, taking the individual pixel-level measurements and dropping them into a fine map grid without averaging them, so users can filter the raw observations themselves.

How & where you'd use it. Tracking volcanic eruptions and industrial pollution, and serving as a flexible input that researchers customize into their own air-quality maps.

What's measured

ATMOSPHERE › ATMOSPHERIC CHEMISTRY › SULFUR COMPOUNDS › SULFUR DIOXIDE

Coverage & cadence

  • Time span2004-10-01 → ongoing
  • Measured byAura (OMI)
  • Processing levelLevel 2G
  • 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 Level-2G daily global gridded product OMSO2G is based on the pixel level OMI Level-2 SO2 product OMSO2. OMSO2G data product is a special Level-2 gridded product where pixel level products are binned into 0.125x0.125 degree global grids. It contains the data for all scenes that have observation time between UTC times of 00:00:00 and 23:59:59.9999 . All data pixels that fall in a grid box are saved without averaging. Scientists can apply a data filtering scheme of their choice and create new gridded products. The OMSO2G data product contains almost all parameters that are contained in OMSO2 files. For example, in addition to three values of SO2 Vertical column corresponding to three a-priori vertical profiles used in the retrieval algorithm, and ancillary parameters, e.g., UV aerosol index, cloud fraction, cloud pressure, geolocation, solar and satellite viewing angles, and quality flags. The OMSO2G files are stored in the version 5 EOS Hierarchical Data Format (HDF-EOS5). Each file contains daily data from approximately 15 orbits. The maximum file size for the OMTO3G data product is about 146 Mbytes.

Get the data

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

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