Full catalog/ALOS_PSR_RTC_HIGH
ALOS_PSR_RTC_HIGH·v1·dataset

Radar terrain image that sees through clouds (ALOS)

ALOS PALSAR High Resolution Radiometric Terrain Corrected Product
land NASA ASF Level 2
In plain English

What it measures. Worldwide radar images of the land that see through clouds and work day or night, with the distorting effects of terrain removed so the brightness reflects the true ground surface rather than slopes and shadows.

How it's made. Built from the PALSAR radar on Japan's ALOS satellite by applying radiometric terrain correction, which uses an elevation model to fix the layover and shadow that mountains create in radar images.

How & where you'd use it. Ready for analyzing the land surface, mapping terrain, and studying vegetation and floods, and it pairs well with optical imagery like Landsat 8 for combined optical-and-radar analysis.

What's measured

AGRICULTURE › FOREST SCIENCE › REFORESTATIONBIOSPHERE › ECOSYSTEMS › TERRESTRIAL ECOSYSTEMSCRYOSPHERE › FROZEN GROUND › PERMAFROSTCRYOSPHERE › FROZEN GROUND › ROCK GLACIERSCRYOSPHERE › GLACIERS/ICE SHEETS › GLACIER ELEVATION/ICE SHEET ELEVATIONCRYOSPHERE › GLACIERS/ICE SHEETS › GLACIER MOTION/ICE SHEET MOTIONCRYOSPHERE › GLACIERS/ICE SHEETS › GLACIER THICKNESS/ICE SHEET THICKNESSCRYOSPHERE › GLACIERS/ICE SHEETS › GLACIER TOPOGRAPHY/ICE SHEET TOPOGRAPHYCRYOSPHERE › GLACIERS/ICE SHEETS › GLACIERSCRYOSPHERE › GLACIERS/ICE SHEETS › ICE SHEETSCRYOSPHERE › GLACIERS/ICE SHEETS › ICEBERGSCRYOSPHERE › SEA ICE › ICE DEFORMATIONCRYOSPHERE › SEA ICE › ICE DEPTH/THICKNESSCRYOSPHERE › SEA ICE › ICE EDGES

Coverage & cadence

  • Time span2006-03-23 → 2011-04-22
  • Measured byALOS (PALSAR)
  • Processing levelLevel 2
  • Spatial extent-180, -90, 180, 90
  • StatusCOMPLETE

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

ASF's SAR Radiometric Terrain Corrected (RTC) dataset gives terrestrial world-wide coverage; excluding Antarctica, Greenland, Iceland, and Asia north of 60 degrees latitude. Users can analyze radiometry with the effects of topography removed. Topography can be analyzed with the effects of layover and shadow corrected. This SAR product works well with optical Landsat 8.

Get the data

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

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