Full catalog/NSIDC-0812
NSIDC-0812·v1·dataset

Weekly snow depth from stakes in Greenland (Summit Station)

Weekly Snow Stake Array Measurements, Summit Station, Greenland V001
cryosphere NASA NSIDC_CPRD Level Not provided CSV
In plain English

What it measures. Weekly readings of snow height from an array of 121 stakes planted in the snow at Summit Station, high on the Greenland ice sheet, showing how much snow piles up over time.

How it's made. Collected on the ground by people physically measuring stakes each week — not from a satellite — to build a long-term local record of snowfall and accumulation.

How & where you'd use it. Helps scientists understand snowfall and how the ice sheet gains mass, and serves as ground-truth to check satellite and airborne missions like ICESat-2.

What's measured

CRYOSPHERE › SNOW/ICE › SNOW DEPTH

Coverage & cadence

  • Time span2003-08-06 → 2025-12-17
  • Measured byGROUND-BASED OBSERVATIONS (SNOW MEASURING ROD)
  • Processing levelLevel Not provided
  • Spatial extent-38.43951, 72.57752, -38.43651, 72.57843
  • FormatsCSV
  • StatusCOMPLETE

What you can do with it

  • Measure sea ice, snow cover and glaciers
  • Watch ice-sheet elevation change
  • Track freeze/thaw and permafrost
Official description

This data set provides weekly snow stake height measurements in Summit Station, Greenland, near the ice divide. The array comprises 121 snow stakes and helps understand snowfall processes and contextualizes snow accumulation, which is a major component of the region’s surface mass balance. As a long-term climate record, this data set provides valuable ground validation for ICESat-2 and other satellite and airborne missions.

Get the data

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

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