Full catalog/JASON_CS_S6A_L1B_GNSS_POD_HOURLY
JASON_CS_S6A_L1B_GNSS_POD_HOURLY·vF·dataset

Hourly GPS tracking of the Sentinel-6A satellite

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

What it measures. Hourly satellite-positioning (GPS-style) tracking data showing exactly where the Sentinel-6A satellite was as it orbited.

How it's made. A Level-1B product from the GNSS-POD tracking system on the Sentinel-6A altimetry mission, recording precise orbit-tracking measurements every hour.

How & where you'd use it. Used to pin down the satellite's exact location, which is essential for turning its radar readings into accurate sea surface height; a technical support input rather than a science product on its own.

What's measured

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

Coverage & cadence

  • Time span2020-11-26 → ongoing
  • Measured bySentinel-6A (GNSS 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 hourly GNSS-POD tracking data for the Sentinel-6A radar altimetry mission.

Get the data

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

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