Full catalog/OMO3PR
OMO3PR·v003·dataset

Ozone at different heights in the air (Aura)

OMI/Aura Ozone (O3) Profile 1-Orbit L2 Swath 13x48km V003 (OMO3PR) at GES DISC
atmosphere NASA GES_DISC Level 2
In plain English

What it measures. How ozone is distributed at 18 different layers from the ground up, giving a vertical picture of ozone in the atmosphere along the satellite's orbit.

How it's made. Retrieved from the Ozone Monitoring Instrument on NASA's Aura satellite using ultraviolet light measurements combined with a best-estimate method that starts from typical ozone profiles.

How & where you'd use it. Supports research on the ozone layer and atmospheric chemistry by showing how ozone changes with altitude.

What's measured

ATMOSPHERE › ATMOSPHERIC CHEMISTRY › OXYGEN COMPOUNDS › ATMOSPHERIC OZONE › OZONE (O3) PROFILE

Coverage & cadence

  • Time span2004-10-01 → 2021-02-28
  • Measured byAura (OMI)
  • Processing levelLevel 2
  • Spatial extent-180, -90, 180, 90
  • StatusCOMPLETE

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 Level-2 Ozone Profile data product OMO3PR (Version 003) is now available from the NASA Goddard Earth Sciences Data and Information Services Center (GES DISC) for the public access. OMI Level-2 ozone profile product, OMO3PR at the pixel resolution 13x 48 km (at nadir), is based on the optimal estimation algorithm (Rodgers, 2000) with climatological ozone profiles as a-priori information. The OMO3PR retrieval algorithm uses spectral radiance values from the UV1 channel (270 nm to 308.5 nm) and from the first part of the UV2 channel (311.5 nm to 33 0 nm). OMO3PR product provides ozone values (in Dobson unit) for 18 atmospheric layers. It also provides a-priori ozone profile values, error covariance matrix, averaging kernel and some ancillary information such as time, latitude, longitude, solar zenith and viewing zenith angles and quality flags. The short name for this Level-2 OMI ozone profile product is OMO3PR. The lead scientist for this product is Dr. Johan de Haan. The OMO3PR product files are stored in the version 5 Hierarchical Data Format (HDF-EOS5). Each file contains data from the day lit portion of an orbit (approximately 53 minutes). There are approximately 14 orbits per day thus the total data volume is approximately 150 GB/day.

Get the data

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

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