Full catalog/NSIDC-0723
NSIDC-0723·v4·dataset

Stitched radar image maps of Greenland (Sentinel-1A/1B)

MEaSUREs Greenland Image Mosaics from Sentinel-1A and -1B V004
land NASA NSIDC_CPRD Level 3 GeoTIFFJPEGShapefileMOV
In plain English

What it measures. Seamless, stitched-together radar image maps (mosaics) of Greenland's coastline and the edge of its ice sheet, available as 6-day and 12-day composites at 50-meter detail.

How it's made. Assembled from C-band radar collected by Europe's Sentinel-1A, -1B, and -1C satellites, which can image through clouds and darkness.

How & where you'd use it. Supports monitoring of Greenland's ice sheet and glaciers, part of the broader Greenland Ice Mapping Project; a ready-to-view radar basemap for ice studies.

What's measured

SPECTRAL/ENGINEERING › RADAR › RADAR BACKSCATTER

Coverage & cadence

  • Time span2015-01-01 → 2025-12-27
  • Measured bySentinel-1A (C-SAR) · Sentinel-1B (C-SAR) · Sentinel-1C (C-SAR)
  • Processing levelLevel 3
  • Spatial extent-87.1, 58.8, 5.8, 81.4
  • FormatsGeoTIFF, JPEG, Shapefile, MOV
  • StatusACTIVE

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

This data set, part of the NASA Making Earth System Data Records for Use in Research Environments (MEaSUREs) Program, consists of 6-day and 12-day 50 m resolution image mosaics of the Greenland coastline and ice sheet periphery. The mosaics are derived from C-band Synthetic Aperture Radar (C-SAR) acquired by the Copernicus Sentinel-1A, -1B, and -1C satellites. See <a href="http://nsidc.org/grimp">Greenland Ice Mapping Project (GrIMP)</a> for related data sets.

Get the data

nsidc-0723_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

results = earthaccess.search_data(
    short_name="NSIDC-0723",
    version="4",
    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 NSIDC_CPRD
Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.