Full catalog/OMTO3e
OMTO3e·v003·dataset

Total ozone and cloudiness, daily (Aura, 0.25 degree)

OMI/Aura TOMS-Like Ozone and Radiative Cloud Fraction L3 1 day 0.25 degree x 0.25 degree V3 (OMTO3e) at GES DISC
atmosphere NASA GES_DISC Level 3 active
In plain English

What it measures. Gives a daily, worldwide map of total ozone overhead, plus how much of each grid square was cloudy and the angles of the sun and satellite. Ozone here means the whole column of ozone stacked above a spot on Earth.

How it's made. Built by NASA's OMI instrument on the Aura satellite, which combines the best individual measurements from a day's orbits onto a fine global grid.

How & where you'd use it. Handy for tracking the ozone layer, watching the seasonal Antarctic ozone hole, and estimating how much harmful ultraviolet light reaches the surface.

What's measured

ATMOSPHERE › ATMOSPHERIC CHEMISTRY › OXYGEN COMPOUNDS › ATMOSPHERIC OZONEATMOSPHERE › ATMOSPHERIC RADIATION › REFLECTANCE

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 TOMS-Like Total Column Ozone gridded product OMTO3e (0.25deg Lat/Lon grids). The OMTO3e product selects the best pixel (shortest path length) data from the good quality filtered level-2 total column ozone data (OMTO3) that fall in the 0.25 x 0.25 degree global grids. Each file contains total column ozone, radiative cloud fraction and solar and viewing zenith angles. The OMTO3e 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 OMTO3e data product is about 2.8 Mbytes.

Get the data

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

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