Full catalog/UAVSAR_INSAR_AMP_GRD
UAVSAR_INSAR_AMP_GRD·v1·dataset

Airborne radar brightness maps of the ground (UAVSAR)

UAVSAR_INSAR_AMPLITUDE_GRD
deformation NASA ASF Level 1 active
In plain English

What it measures. How brightly the ground reflects radar signals back to an aircraft, shown as an image laid onto the ground. Brighter areas bounced more radar energy back.

How it's made. Collected by the airborne UAVSAR radar instrument during repeat flights, then projected onto the ground. The abstract is brief, so details are limited.

How & where you'd use it. A lower-level radar image typically used as input for further radar analysis, such as detecting ground changes between flights, rather than viewed on its own.

What's measured

SOLID EARTH › TECTONICS › VOLCANIC ACTIVITY

Coverage & cadence

  • Time span2008-04-28 → 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 Repeat Pass Interferometry Ground Projected Amplitude Scene

Get the data

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

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