Full catalog/OMDOAO3e
OMDOAO3e·v003·dataset

Total ozone overhead, daily map (OMI/Aura, 0.25 deg)

OMI/Aura Ozone (O3) DOAS Total Column Daily L3 1 day 0.25 degree x 0.25 degree V3 (OMDOAO3e) at GES DISC
atmosphere NASA GES_DISC Level 3 active
In plain English

What it measures. Daily maps of the total amount of ozone in the air column overhead, plus extra details like cloud fraction and cloud height.

How it's made. Derived from the OMI instrument on NASA's Aura satellite using a spectroscopy technique on visible light, then gridded globally at 0.25-degree resolution with one file per day.

How & where you'd use it. Useful for monitoring the ozone layer and its day-to-day changes, including tracking the ozone hole and overall atmospheric health.

What's measured

ATMOSPHERE › ATMOSPHERIC CHEMISTRY › OXYGEN COMPOUNDS › ATMOSPHERIC OZONE

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 OMDOAO3e Data Products (0.25deg Lat/Lon grids). This Level-3 global total column ozone product is derived from OMDOAO3 which is based on the Differential Absorption Spectroscopy (DOAS) fitting technique that essentially uses the OMI visible radiance values between 331.1 and 336.1 nm. In addition to the total ozone column (best quality data, satisfying the shortest path length) and its precision this product also contains some ancillary parameters such as cloud fraction, cloud height, etc. The short name for this Level-3 OMI ozone product is OMDOAO3e and the lead Algorithm scientist for this product and for OMDOAO3 (the data source of OMDOAO3e) is Dr. Pepijn Veefkind from KNMI. The OMDOAO3e product files are stored in the version 5 Hierarchical Data Format (HDF-EOS5). Each daily file contains data from the day lit portion of the orbits (approximately 14 orbits) and is roughly 8 MB in size.

Get the data

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

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