Full catalog/CYGNSS_L1_V3.2
CYGNSS_L1_V3.2·v3.2·dataset

Raw GPS signals bouncing off the ocean (CYGNSS)

CYGNSS Level 1 Science Data Record Version 3.2
land NASA POCLOUD Level 1 netCDF-4
In plain English

What it measures. Captures the GPS-style radio signals that bounce off the ocean surface and back up to small satellites, calibrated into the power received and the strength of the reflection. The roughness of those reflections relates to surface wind speed.

How it's made. Comes from the Delay Doppler Mapping Instrument flown on the CYGNSS constellation of small satellites, at an early calibrated stage (Level 1), with up to eight daily files (one per satellite).

How & where you'd use it. A building-block input mainly used to derive ocean surface wind speeds, especially inside tropical storms and hurricanes where it can see through heavy rain; most people use the wind products built from it rather than the raw reflections.

What's measured

SPECTRAL/ENGINEERING › RADAR › RADAR CROSS-SECTIONSPECTRAL/ENGINEERING › RADAR › RADAR REFLECTIVITY

Coverage & cadence

  • Time span2018-08-01 → ongoing
  • Measured byCYGNSS (DDMI)
  • Processing levelLevel 1
  • Spatial extent-180, -40, 180, 40
  • FormatsnetCDF-4
  • StatusACTIVE

What you can do with it

  • Track deforestation, fire scars and land-cover change
  • Monitor crop and vegetation health (NDVI/EVI)
  • Map how built-up vs. green an area is over time
Official description

This CYGNSS Level 1 (L1) science data record dataset contains the version 3.2 geo-located Delay Doppler Maps (DDMs) calibrated into Power Received (Watts) and Bistatic Radar Cross Section (BRCS) expressed in units of m2 from the Delay Doppler Mapping Instrument aboard the CYGNSS satellite constellation. This version supersedes Version 3.1: https://doi.org/10.5067/CYGNS-L1X31. Other useful scientific and engineering measurement parameters include the DDM of Normalized Bistatic Radar Cross Section (NBRCS), the Delay Doppler Map Average (DDMA) of the NBRCS near the specular reflection point, and the Leading Edge Slope (LES) of the integrated delay waveform. The L1 dataset contains a number of other engineering and science measurement parameters, including sets of quality flags/indicators, error estimates, and bias estimates as well as a variety of orbital, spacecraft/sensor health, timekeeping, and geolocation parameters. At most, 8 netCDF data files (each file corresponding to a unique spacecraft in the CYGNSS constellation) are provided each day; under nominal conditions, there are typically 6-8 spacecraft retrieving data each day, but this can be maximized to 8 spacecraft under special circumstances in which higher than normal retrieval frequency is needed (i.e., during tropical storms and or hurricanes). Latency is approximately 6 days (or better) from the last recorded measurement time. The correction for coarse quantization effects that was implemented in v3.1 for the signal portion of the DDM has been updated to include a correction to the noise floor portion of the DDM. This update is found to improve the sensitivity to soil moisture over land and to have a minimal effect on the sensitivity to wind speed over ocean. An update is made to the correction for the temperature dependence of the receiver electronics. This update reduces slow variations in calibration bias associated with a ~60 day oscillation in the mean temperature of the satellites. L1 variables over land and ocean are now combined in common netcdf data files, with additional details added regarding the specular point calculation over land. Nadir (science) antenna pattern and NBRCS rescaling has been updated to improve the inter-satellite consistency of the L1 calibration. The CYGNSS is a NASA Earth System Science Pathfinder Mission that is intended to collect the first frequent space‐based measurements of surface wind speeds in the inner core of tropical cyclones. Made up of a constellation of eight micro-satellites, the observatories provide nearly gap-free Earth coverage using an orbital inclination of approximately 35° from the equator, with a mean (i.e., average) revisit time of seven hours and a median revisit time of three hours. This inclination allows CYGNSS to measure ocean surface winds between approximately 38° N and 38° S latitude. This range includes the critical latitude band for tropical cyclone formation and movement.

Get the data

cygnss_l1_v3.2_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

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