Full catalog/SENTINEL-1B_RAW
SENTINEL-1B_RAW·v1·dataset

Raw radar that sees through clouds (Sentinel-1B)

Sentinel-1B Level 0 Product
land NASA ASF Level 0
In plain English

What it measures. The raw, unprocessed radar signals captured by Sentinel-1B's cloud-penetrating C-band radar, still compressed and not yet turned into images.

How it's made. These are the satellite's lowest-level (Level 0) source packets, compressed onboard and bundled with annotations, before any focusing software turns them into pictures.

How & where you'd use it. A building-block input that must be decompressed and processed before it's usable; most people work with the higher-level radar images made from it rather than this raw form.

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 span2016-04-25 → 2021-12-24
  • Measured bySentinel-1B (C-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

Sentinel-1B, the second satellite in the Sentinel-1 constellation, was launched April 25, 2016. The Sentinel-1 satellites (Sentinel-1A, Sentinel-1B, and Sentinel-1C) are sun-synchronous polar-orbiting satellites that operate day and night performing C-band synthetic aperture radar (SAR) imaging. The Sentinel-1 satellites operate in four imaging modes with different resolutions (down to 5 meters) and coverage (up to 400 kilometers). The Sentinel-1 satellites provide dual polarization capability and short revisit times. The spacecraft experienced an anomaly related to the instrument electronics power supply provided by the satellite platform, leaving it unable to deliver radar data on 23 December 2021, as a consequence, ESA and the European Commission announced the end of the Sentinel-1B mission on August 3, 2022. Sentinel-1B Level 0 products consist of compressed and unprocessed instrument source packets, with additional annotations and auxiliary information to support processing. Level 0 products are the basis from which all other high level products are produced. They are compressed using Flexible Dynamic Block Adaptive Quantization (FDBAQ) which provides a variable bit rate coding that increases the number of bits allocated to bright scatterers. For the data to be usable, it will need to be decompressed and processed using focusing software. Level 0 data includes noise, internal calibration and echo source packets as well as orbit and attitude information. The data products in this collection mirror the Sentinel-1B products provided through the Copernicus Data Space Ecosystem.

Get the data

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

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