Full catalog/OMTO3e
OMTO3e·v004·dataset

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

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

What it measures. A daily worldwide map of total ozone, meaning how much ozone sits overhead in a column of the atmosphere, along with how cloudy each spot was.

How it's made. Made from the OMI instrument on NASA's Aura satellite, which picks the single best observation falling in each grid cell to build a clean daily map.

How & where you'd use it. Tracking the ozone layer and the ozone hole over Antarctica, and watching day-to-day changes in ozone that affect ultraviolet exposure at the ground.

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="004",
    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.