Full catalog/JASON_CS_S6A_L1B_GNSS_RO_POD_HOURLY
JASON_CS_S6A_L1B_GNSS_RO_POD_HOURLY·vF·dataset

GPS tracking data for precise satellite position, hourly (Sentinel-6A)

Sentinel-6A MF Jason-CS L1B GNSS-RO-POD Tracking Data Hourly
deformation NASA POCLOUD Level 1B RINEX
In plain English

What it measures. GPS-style tracking signals used to pin down exactly where the satellite is in its orbit, provided in hourly files.

How it's made. Collected by the GNSS receiver on the Sentinel-6A radar altimetry satellite as an early-stage tracking product.

How & where you'd use it. A behind-the-scenes input for calculating the satellite's precise position, which is essential for accurate sea-height measurements; rarely used on its own.

What's measured

SOLID EARTH › SOLID EARTH › GRAVITY/GRAVITATIONAL FIELD › SATELLITE ORBITS/REVOLUTION › ORBITAL POSITION

Coverage & cadence

  • Time span2020-11-28 → ongoing
  • Measured bySentinel-6A (GNSS-RO RECEIVER)
  • Processing levelLevel 1B
  • Spatial extent-180, -66.15, 180, 66.15
  • FormatsRINEX
  • StatusACTIVE

What you can do with it

  • Measure ground motion and subsidence (InSAR)
  • Track earthquakes, volcanoes and landslides
  • Map elevation and terrain change
Official description

Provides L1B GNSS-RO-POD tracking data for the Sentinel-6A radar altimetry mission.

Get the data

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

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