Full catalog/PACE_HARP2_L2_CLOUD_GPC
PACE_HARP2_L2_CLOUD_GPC·v3.0·dataset

Cloud properties from polarized light (PACE HARP2)

PACE HARP2 Level-2 Regional Cloud Optical Properties, GISS Polarimetric Cloud (GPC) Algorithm Data, version 3.0
atmosphere NASA OB_CLOUD Level 2 active netCDF-4
In plain English

What it measures. Properties of clouds worked out from the way clouds twist and polarize light, including droplet size, droplet count, how much liquid water clouds hold, and cloud-top height, pressure, and temperature.

How it's made. Derived from the polarization-sensing HARP2 instrument on the PACE satellite using a specialized cloud algorithm, combined with companion measurements from PACE's OCI instrument.

How & where you'd use it. Helps researchers better understand cloud microphysics and how clouds affect climate. Because the polarized approach is new at global scale, some variables are experimental and may change.

What's measured

Atmosphere › Clouds

Coverage & cadence

  • Time span2024-02-05 → ongoing
  • Measured byPACE (HARP2)
  • 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 CLOUD_GPC suite provides cloud properties derived from the GISS Polarimetric Cloud (GPC) algorithm, along with additional variables obtained through combination with the OCI CLOUD suite. Given the novelty of implementing a polarimetric algorithm on a global scale, note that several experimental variables—particularly those intended for diagnostic purposes and future refinement—are included and may change in subsequent, more mature versions. Core geophysical variables in this suite include: - cloud_droplet_effective_radius / variance - Cloud droplet effective radius and variance (µm, unitless) - cloud_droplet_number_concentration - Droplet number concentration (combining with OCI CLOUD) (cm⁻³) - cloud_liquid_water_path - Cloud liquid water path (combining with OCI CLOUD) (g m⁻²) - cloud_liquid_index - Index measuring polarized primary bow strength (unitless) - cloud_optical_thickness - Cloud optical thickness (from OCI CLOUD) (unitless) - cloud_bow_extinction_cross_section_Xnm – 355/532 nm extinction cross section based on Cloud Bow retrievals - cloud_bow_lidar_ratio_Xnm – 355/532 lidar ratios based on Cloud Bow retrievals - cloud_rft_* - Retrievals from Rainbow Fourier Transform (experimental and exploratory, intended for future substantial refinements) - cloud_top_properties - Cloud top altitude (m), pressure (hPa), and temperature (K) (from OCI CLOUD)

Get the data

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

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