Full catalog/OMCLDRR
OMCLDRR·v004·dataset

Cloud height and cloud cover from sunlight scattering

OMI/Aura Effective Cloud Pressure and Fraction (Raman Scattering) 1-Orbit L2 Swath 13x24 km V004 (OMCLDRR) at GES DISC
atmosphere NASA GES_DISC Level 2 active
In plain English

What it measures. Estimates how high clouds sit (given as an air pressure) and what fraction of each sky scene is covered by cloud. The cloud-height clue comes from how clouds change the color of scattered sunlight.

How it's made. Derived from the Ozone Monitoring Instrument on NASA's Aura satellite, processed one orbit at a time into roughly 13x24 km pixels using a sunlight-scattering technique.

How & where you'd use it. Helps scientists account for clouds when measuring air pollution and ozone, since clouds block the view of gases below them; also useful for studying cloud patterns.

What's measured

ATMOSPHERE › CLOUDS › CLOUD PROPERTIES › CLOUD FRACTIONATMOSPHERE › CLOUDS › CLOUD PROPERTIES › CLOUD TOP PRESSURE

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

This is the Aura Ozone Monitoring Instrument (OMI) Version 004 Level 2 Cloud Data Product OMCLDRR. OMI provides two Level-2 Cloud products (OMCLDRR and OMCLDO2) at pixel resolution (13 x 24 km at nadir) that are based on two different algorithms, the Rotational Raman Scattering method and the O2-O2 absorption method. This level-2 global cloud product, OMCLDRR, provides effective cloud pressure and effective cloud fraction that is based on the least square fitting of the Ring spectrum (filling-in of Fraunhofer lines in the range 392 to 398 nm due to rotational Raman scattering). This product also contains many ancillary and derived parameters, terrain and geolocation information, solar and satellite viewing angles, and quality flags. The shortname for this Level-2 OMI Cloud Pressure and Fraction product is OMCLDRR and the algorithm lead for this product is NASA OMI scientist Dr. Joanna Joinner. The OMCLDRR 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 OMCLDRR data product is about 9 Mbytes.

Get the data

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

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