Full catalog/UAVSAR_POL_ML_CMPLX_GRD
UAVSAR_POL_ML_CMPLX_GRD·v1·dataset

Aircraft radar that sees surface and roughness (UAVSAR)

UAVSAR_POLSAR_ML_COMPLEX_GRD
deformation NASA ASF Level 1 active
In plain English

What it measures. Radar imagery of the land surface that captures not just brightness but also surface texture and structure, by sending out radar pulses and recording how they bounce back in different polarizations.

How it's made. Gathered by UAVSAR, an aircraft-mounted radar flown on a NASA G-III plane, with the scene projected onto a map grid.

How & where you'd use it. Useful for mapping terrain, vegetation, soil, and ground changes; the abstract is sparse, but radar like this typically supports studies of land surface conditions and deformation.

What's measured

SOLID EARTH › TECTONICS › VOLCANIC ACTIVITY

Coverage & cadence

  • Time span2008-07-24 → ongoing
  • Measured byG-III (UAVSAR)
  • Processing levelLevel 1
  • 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

UAVSAR PolSAR Scene Projected

Get the data

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

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