Full catalog/ALOS2_L1_PSR2
ALOS2_L1_PSR2·v1·dataset

Wide-swath radar that sees through clouds (ALOS-2)

ALOS-2 PALSAR-2 Level 1 ScanSAR Product
deformation NASA ASF Level 1 active ZIP
In plain English

What it measures. Radar images of the land taken with L-band microwaves, which pass through clouds and work day or night. This ScanSAR mode trades some detail for very wide coverage, mapping strips up to about 490 km across at 60-100 meter resolution.

How it's made. Captured by the PALSAR-2 radar aboard Japan's ALOS-2 satellite and processed by JAXA into early-stage Level 1.1 data that preserves both the strength and phase of the radar signal.

How & where you'd use it. Useful for mapping large areas regardless of weather, such as tracking land changes, deforestation, or ground movement across wide regions.

What's measured

SOLID EARTH › TECTONICSSOLID EARTH › GEOMORPHIC LANDFORMS/PROCESSESBIOSPHERE › ECOSYSTEMS › TERRESTRIAL ECOSYSTEMS › FORESTSLAND SURFACE › GEOMORPHIC LANDFORMS/PROCESSESCRYOSPHERE › SEA ICE

Coverage & cadence

  • Time span2014-08-01 → ongoing
  • Measured byALOS-2 (PALSAR-2)
  • Processing levelLevel 1
  • Spatial extent-180, -90, 180, 90
  • FormatsZIP
  • 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

The Advanced Land Observing Satellite-2 (ALOS-2), launched May 14, 2014, is a follow-on mission to ALOS. ALOS-2 features an imaging microwave radar, PALSAR-2 (Phased Array type L-band Synthetic Aperture Radar-2). With a wider range of observation modes PALSAR-2 improves on its predecessor PALSAR (which flew onboard ALOS). PALSAR-2 observes in the L-band, specifically 1257.5 MHz which is adjustable by ± 21 MHz. ScanSAR mode provides a spatial resolution of 60 m and 100 m for a swath of 490 km and 350 km respectively. Stripmap mode provides a resolution of 10 m, 6 m, and 3 m for a swath of 70 km, 70 km, and 50 km respectively. Spotlight mode provides a resolution of 1 m x 3 m for a swath of 25 km x 25 km. ALOS-2 also decreased the revisit time of its predecessor from 46 days to 14 days. ALOS-2 also has the ability to look either to the right or the left. This collection provides open access to ScanSAR mode data acquired by ALOS-2. Recently acquired data are not included but are added when released for open access by JAXA. Although the ScanSAR mode has been acquired globally, the collection currently contains only partial global coverage, but coverage is increasing as data become available. Products have been processed by JAXA as Level 1.1, such that range and single look azimuth compressed data is represented by complex I and Q channels to preserve the magnitude and phase information. The range coordinate is in slant range. The image is focused onto zero Doppler direction, and an image file is generated per each scan for ScanSAR mode. In addition the full aperture processing method was used to generate the products. With the full aperture method, range compression and one look azimuth compression are performed for the data whose gaps between neighboring bursts in a sub swath are filled with zeroes, this processing is performed for each scan and each polarization. Granules in this collection are distributed as a zip and are quite large, with the majority being 28GB (single polarization) or 56GB (dual polarization).

Get the data

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

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