Full catalog/PACE_OCI_L0_SCI
PACE_OCI_L0_SCI·v1·dataset

Raw ocean-color sensor data (PACE)

PACE OCI Level-0 Raw Data, version 1
ocean NASA OB_CLOUD Level 0 active binary
In plain English

What it measures. The most basic, raw form of data from PACE's ocean-color instrument: full-resolution sensor readings with the communication clutter (sync frames, headers, duplicates) stripped out.

How it's made. Reconstructed straight from the OCI instrument aboard NASA's PACE satellite, before any science processing has been applied.

How & where you'd use it. A raw building-block input used to generate higher-level products. People studying the ocean and atmosphere use those finished products, not this raw data directly.

What's measured

OCEANS › OCEAN OPTICS

Coverage & cadence

  • Time span2024-02-08 → ongoing
  • Measured byPACE (OCI)
  • Processing levelLevel 0
  • Spatial extent-180, -90, 180, 90
  • Formatsbinary
  • StatusACTIVE

What you can do with it

  • Watch sea-surface temperature and marine heatwaves
  • Spot algal blooms and ocean-colour shifts
  • Support fisheries and coastal monitoring
Official description

Level-0 data are reconstructed, unprocessed instrument and payload data at full resolution, with any and all communications artifacts (e.g., synchronization frames, communications headers, duplicate data) removed.

Get the data

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

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