Full catalog/TEMPO_O3TOT_L2
TEMPO_O3TOT_L2·vV03·dataset

Total ozone overhead, hour by hour (TEMPO)

TEMPO ozone total column V03 (PROVISIONAL)
atmosphere NASA LARC_CLOUD Level 2 NetCDF-4
In plain English

What it measures. The total amount of ozone in the column of air overhead, measured hour by hour during daylight at roughly 10-kilometer detail. Also includes extras like a haze index and cloud information. (This is a provisional release.)

How it's made. Retrieved from the TEMPO instrument, which watches North America from a fixed vantage point in space, using an algorithm adapted from earlier ozone-measuring sensors.

How & where you'd use it. Useful for tracking ozone and air quality through the day across North America, supporting pollution monitoring and forecasting.

What's measured

ATMOSPHERE › ATMOSPHERIC CHEMISTRY › OXYGEN COMPOUNDS › ATMOSPHERIC OZONE

Coverage & cadence

  • Time span2023-08-02 → 2025-09-16
  • Measured byIS-40e (TEMPO)
  • Processing levelLevel 2
  • FormatsNetCDF-4
  • 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

Total ozone Level 2 files provide ozone information at TEMPO’s native spatial resolution, ~10 km^2 at the center of the Field of Regard (FOR), for individual granules. Each granule covers the entire North-South TEMPO FOR but only a portion of the East-West FOR. The files are provided in netCDF4 format, and contain information on total column ozone and some auxiliary derived and ancillary input parameters including N-values, effective Lambertian scene-reflectivity, UV aerosol index, SO2 index, effective cloud fraction, effective cloud pressure, radiative cloud fraction, ozone below clouds, terrain height, geolocation, solar and satellite viewing angles, and quality flags. The retrieval is based on the OMI TOMS V8.5 algorithm adapted for TEMPO. These data reached provisional validation on December 9, 2024.

Get the data

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

results = earthaccess.search_data(
    short_name="TEMPO_O3TOT_L2",
    version="V03",
    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 LARC_CLOUD
Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.