Full catalog/PACE_OCI_L2_UVAI_UAA
PACE_OCI_L2_UVAI_UAA·v3.1·dataset

Smoke and dust indicator in the air (PACE OCI)

PACE OCI Level-2 Regional Aerosol Index, Unified Aerosol Algorithm (UAA) Data, version 3.1
atmosphere NASA OB_CLOUD Level 2 active netCDF-4
In plain English

What it measures. An indicator of light-absorbing haze in the air, like smoke and mineral dust, given as a single unitless number. Positive values flag absorbing plumes; values near or below zero mean little or no absorbing haze.

How it's made. Calculated from the OCI instrument on NASA's PACE satellite using near-ultraviolet measurements and a unified aerosol algorithm.

How & where you'd use it. Helps spot and track smoke and dust plumes, supports air-quality and climate analysis, and provides context for correcting ocean-color measurements.

What's measured

ATMOSPHERE › AEROSOLS › AEROSOL OPTICAL DEPTH/THICKNESSATMOSPHERE › AEROSOLS › AEROSOL OPTICAL DEPTH/THICKNESS › UV AEROSOL INDEX

Coverage & cadence

  • Time span2024-03-05 → ongoing
  • Measured byPACE (OCI)
  • Processing levelLevel 2
  • Spatial extent-180, -90, 180, 90
  • FormatsnetCDF-4
  • 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 UAVI_UAA data suite provides the Ultraviolet Absorbing Aerosol Index (UVAI) calculated using the Unified Aerosol Algorithm. UVAI is a unitless, semi-quantitative indicator of light-absorbing aerosols (e.g., smoke, mineral dust), sensitive to their amount, altitude, and absorption strength; positive values typically flag absorbing plumes, while values near/below zero indicate weakly or non-absorbing conditions. Common uses include plume detection and tracking, air-quality and climate analyses, and providing aerosol context for ocean-color atmospheric correction; users should apply recommended screening in the file attributes. Core geophysical variables in this suite include: - NUV_AerosolIndex — Near-UV aerosol index from 0.354/0.388 µm pair (unitless) - NUV_Reflectivity — Near-UV Lambertian equivalent reflectance (LER) at 0.354 and 0.388 µm (unitless) - NUV_Residue — Near-UV LER-based aerosol index from 0.354/0.388 µm pair (unitless)

Get the data

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

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