Full catalog/OMTO3
OMTO3·v003·dataset

Total ozone overhead (OMI/Aura)

OMI/Aura Ozone(O3) Total Column 1-Orbit L2 Swath 13x24 km V003 (OMTO3) at GES DISC
atmosphere NASA GES_DISC Level 2 active
In plain English

What it measures. The total amount of ozone in the air column overhead, mostly the high-altitude ozone layer. It also carries extra details like cloud fraction, a UV aerosol indicator, and a sulfur dioxide measure.

How it's made. Measured by the Ozone Monitoring Instrument on NASA's Aura satellite using ultraviolet light at specific wavelengths; this is the standard (not the rushed near-real-time) version.

How & where you'd use it. Used to monitor the ozone layer and ozone holes, track recovery over time, and study related atmospheric pollutants and aerosols.

What's measured

ATMOSPHERE › AEROSOLS › AEROSOL OPTICAL DEPTH/THICKNESS › UV AEROSOL INDEXATMOSPHERE › ATMOSPHERIC CHEMISTRY › OXYGEN COMPOUNDS › ATMOSPHERIC OZONE › COLUMN AMOUNT OZONEATMOSPHERE › ATMOSPHERIC RADIATION › REFLECTANCE

Coverage & cadence

  • Time span2004-10-01 → ongoing
  • Measured byAura (OMI)
  • Processing levelLevel 2
  • 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 Aura Ozone Monitoring Instrument (OMI) Level-2 Total Column Ozone Data Product OMTO3 (Version 003) is available from the NASA Goddard Earth Sciences Data and Information Services Center (GES DISC) for the public access. OMI provides two Level-2 (OMTO3 and OMDOAO3) total column ozone products at pixel resolution (13 x 24 km at nadir) that are based on two different algorithms. This level-2 global total column ozone product (OMTO3) is based on the enhanced TOMS version-8 algorithm that essentially uses the ultraviolet radiance data at 317.5 and 331.2 nm. OMI hyper-spectral measurements help in the corrections for the factors that induce uncertainty in ozone retrievals (e.g., cloud and aerosol, sea-glint effects, profile shape sensitivity, SO2 and other trace gas contamination). In addition to the total ozone values this product also contains some auxiliary derived and ancillary input parameters including N-values, effective Lambertian scene-reflectivity, UV aerosol index, SO2 index, cloud fraction, cloud pressure, ozone below clouds, terrain height, geolocation, solar and satellite viewing angles, and quality flags. The shortname for this Level-2 OMI total column ozone product is OMTO3. The algorithm lead for this product is NASA OMI scientist Dr. Pawan K. Bhartia. The OMTO3 files are stored in the version 5 EOS Hierarchical Data Format (HDF-EOS5). Each file contains data from the day lit portion of an orbit (~53 minutes). There are approximately 14 orbits per day. The maximum file size for the OMTO3 data product is approximately 35 MB.

Get the data

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

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