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

Helper info for Sentinel-1B radar images (medium-res)

Sentinel-1B Dual Polarization Medium Resolution Ground Range Detected Product Metadata
land NASA ASF Level Not provided
In plain English

What it measures. Supporting information (metadata) that describes Sentinel-1B medium-resolution radar images, rather than the radar images themselves.

How it's made. Generated alongside Sentinel-1B's C-band synthetic aperture radar products; Sentinel-1B operated from 2016 until its mission ended in 2022 after a power anomaly.

How & where you'd use it. Helps users find, understand, and work with the matching Sentinel-1B radar imagery; it is a companion file, not a standalone picture.

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 Not provided
  • 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 Ground Range Detected (GRD) products consist of focused SAR data that has been detected, multi-looked and projected to ground range using the Earth ellipsoid model WGS84. The ellipsoid projection of the GRD products is corrected using the terrain height and is specified in the product’s general annotation. The terrain height used varies in azimuth and it is constant in range (only the terrain height of first subswath is considered for Interferometric Wide (IW) and Extra Wide (EW) swath modes). Ground range coordinates are the slant range coordinates projected onto the ellipsoid of the Earth. Pixel values represent detected amplitude. Phase information is lost. The resulting product has approximately square resolution pixels and square pixel spacing with reduced speckle at a cost of reduced spatial resolution. For IW and EW GRD products, multi-looking is performed on each burst individually. All bursts in all sub-swaths are then seamlessly merged to form a single, contiguous, ground range, detected image per polarization. The products in this collection are ISO compliant XML metadata created by the Alaska Satellite Facility Distributed Active Archive Center from the associated Sentinel-1B SAFE format product.

Get the data

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

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