Full catalog/JERS-1_L1
JERS-1_L1·v1·dataset

Raw radar that sees through clouds (JERS-1)

JERS-1 Level 0 Product
land NASA ASF Level 0
In plain English

What it measures. The earliest, unprocessed radar signals from the JERS-1 satellite — raw data before it has been turned into usable images. Radar can see the surface through clouds and at night.

How it's made. Recorded directly by the radar instrument on Japan's JERS-1 satellite as Level 0 (rawest) data.

How & where you'd use it. A raw building-block input: it needs heavy processing into images before most people can use it, so it serves specialists who generate higher-level radar products.

What's measured

AGRICULTURE › FOREST SCIENCE › REFORESTATIONBIOSPHERE › ECOSYSTEMS › TERRESTRIAL ECOSYSTEMSLAND SURFACE › EROSION/SEDIMENTATION › LANDSLIDESLAND SURFACE › GEOMORPHIC LANDFORMS/PROCESSES › AEOLIAN LANDFORMSLAND SURFACE › GEOMORPHIC LANDFORMS/PROCESSES › COASTAL LANDFORMSLAND SURFACE › GEOMORPHIC LANDFORMS/PROCESSES › FLUVIAL LANDFORMSLAND SURFACE › GEOMORPHIC LANDFORMS/PROCESSES › GLACIAL LANDFORMSLAND SURFACE › GEOMORPHIC LANDFORMS/PROCESSES › KARST LANDFORMSLAND SURFACE › GEOMORPHIC LANDFORMS/PROCESSES › TECTONIC LANDFORMSLAND SURFACE › LAND USE/LAND COVER › LAND USE/LAND COVER CLASSIFICATIONLAND SURFACE › LANDSCAPE › LANDSCAPE ECOLOGYLAND SURFACE › LANDSCAPE › LANDSCAPE PATTERNSLAND SURFACE › LANDSCAPE › LANDSCAPE PROCESSESLAND SURFACE › LANDSCAPE › REFORESTATION

Coverage & cadence

  • Time span1992-05-20 → 1998-10-11
  • Measured byJERS-1 (SAR)
  • Processing levelLevel 0
  • 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

JERS-1 Level 0 Data

Get the data

jers-1_l1_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

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