Full catalog/OMCLDRRG
OMCLDRRG·v003·dataset

Cloud pressure and cover, daily gridded (OMI, Raman method)

OMI/Aura Effective Cloud Pressure and Fraction (Raman Scattering) Daily L2 Global Gridded 0.25 degree x 0.25 degree V3 (OMCLDRRG) at GES DISC
atmosphere NASA GES_DISC Level 2G active
In plain English

What it measures. Daily global maps of cloud cover, giving the effective pressure (a proxy for height) of cloud tops and the fraction of each grid box that's cloudy. It also carries many supporting details like viewing angles, terrain, and quality flags.

How it's made. Created from the OMI instrument on NASA's Aura satellite, using a method that reads subtle features in scattered sunlight, then binning the per-pixel results into a quarter-degree global grid.

How & where you'd use it. Supplies cloud information that helps interpret other atmospheric measurements, such as ozone and trace gases, and lets researchers apply their own filtering to build custom cloud datasets.

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 2G
  • 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 Level-2G daily global gridded product OMCLDRRG is based on the pixel level OMI Level-2 CLDRR product OMCLDRR. This level-2G global cloud product (OMCLDRRG) 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 algorithm lead for the products OMCLDRR and OMCLDRRG is NASA OMI scientist Dr. Joanna Joinner. OMCLDRRG data product is a special Level-2G Gridded Global Product where pixel level data (OMCLDRR)are binned into 0.25x0.25 degree global grids. It contains the OMCLDRR data for all L2 scenes that have observation time between UTC times of 00:00:00 and 23:59:59.9999. All data pixels that fall in a grid box are saved without Averaging. Scientists can apply a data filtering scheme of their choice and create new gridded products. The OMCLDRRG data products are stored in the version 5 EOS Hierarchical Data Format (HDF-EOS5). Each daily file contains data from the day lit portion of the orbits (~14 orbits). The average file size for the OMCLDRRG data product is about 75 Mbytes.

Get the data

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

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