Full catalog/SWOT_L2_RAD_IGDR_D
SWOT_L2_RAD_IGDR_D·vD·dataset

Microwave brightness and moist-air correction (SWOT)

SWOT Level 2 Radiometer Brightness Temperatures and Troposphere Interim Data Product Version D
land NASA POCLOUD Level 2 netCDF-4
In plain English

What it measures. How much water vapor and liquid water sit in the atmosphere, measured as microwave brightness at three frequencies, used to correct ocean-height readings.

How it's made. Produced from the Advanced Microwave Radiometer on the SWOT satellite, processed with preliminary calibrations and delivered within about 1.5 days.

How & where you'd use it. A correction product that adjusts SWOT's sea surface height measurements for the delay caused by moisture in the air, rather than being used on its own.

What's measured

SPECTRAL/ENGINEERING › MICROWAVE › BRIGHTNESS TEMPERATUREATMOSPHERE › ATMOSPHERIC WATER VAPORSPECTRAL/ENGINEERING › RADAR › SIGMA NAUGHTATMOSPHERE › CLOUDS › CLOUD MICROPHYSICS › CLOUD LIQUID WATER/ICECRYOSPHERE › SEA ICEOCEANS › GEOLOGICAL FEATURES › LAND/OCEAN/ICE FRACTIONATMOSPHERE › ATMOSPHERIC WINDS › SURFACE WINDS › WIND SPEED

Coverage & cadence

  • Time span2022-12-16 → ongoing
  • Measured bySWOT (AMR)
  • Processing levelLevel 2
  • Spatial extent-180, -77.6, 180, 77.6
  • 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

The SWOT Level 2 Radiometer Brightness Temperatures and Troposphere Interim Geophysical Data Record (IGDR) Version D dataset produced by the Surface Water and Ocean Topography (SWOT) mission provides atmospheric water vapor and liquid water content from the Advanced Microwave Radiometer (AMR), a Jason-class radiometer that measures sea surface brightness temperatures at three microwave frequencies (18.7, 23.8 and 34 GHz). Brightness temperatures are processed to estimate the wet troposphere content, atmospheric attenuation to backscatter, cloud liquid water, water vapor content, and wind speed coincident with each range measurement from the nadir altimeter and applied to correct for altimeter range delays caused by atmospheric effects. SWOT is a joint mission between NASA and CNES that launched on December 16, 2022. It aims to measure ocean surface topography with unprecedented resolution and accuracy, as well as map inland water bodies globally. The interim radiometer dataset consists of discrete measurements along two tracks located approximately 30-km to the left and right of the satellite nadir. The data were processed using the Medium-accuracy (preliminary) Orbit Ephemeris (MOE) with preliminary calibrations applied. They are distributed as one file per half-orbit in netCDF4 file format with a nominal latency of < 1.5 days.

Get the data

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

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