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

Antarctica's bed under the ice (BedMachine)

MEaSUREs BedMachine Antarctica V004
ocean NASA NSIDC_CPRD Level 4 netCDF-4
In plain English

What it measures. A map of what Antarctica's land and seafloor look like beneath the ice, including the bedrock shape, the bathymetry, and ice thickness.

How it's made. Built by subtracting ice thickness from surface elevation, applying an ice-flow analysis method, and combining high-resolution elevation maps of Antarctica; it is model-derived.

How & where you'd use it. Essential for modeling how Antarctica's ice flows and how it may contribute to future sea-level rise.

What's measured

OCEANS › BATHYMETRY/SEAFLOOR TOPOGRAPHY › BATHYMETRYLAND SURFACE › TOPOGRAPHY › TERRAIN ELEVATION › BED ELEVATIONCRYOSPHERE › GLACIERS/ICE SHEETS › FIRN › FIRN AIR CONTENTCLIMATE INDICATORS › CRYOSPHERIC INDICATORS › GLACIAL MEASUREMENTS › GLACIER/ICE SHEET THICKNESSLAND SURFACE › TOPOGRAPHY › TERRAIN ELEVATION

Coverage & cadence

  • Time span1970-01-01 → 2019-10-01
  • Measured byMODELS (NOT APPLICABLE)
  • Processing levelLevel 4
  • Spatial extent-180, -90, 180, -53
  • FormatsnetCDF-4
  • StatusCOMPLETE

What you can do with it

  • Watch sea-surface temperature and marine heatwaves
  • Spot algal blooms and ocean-colour shifts
  • Support fisheries and coastal monitoring
Official description

This data set, part of the NASA Making Earth System Data Records for Use in Research Environments (MEaSUREs) program, contains a bed topography and bathymetry map of Antarctica. Bed topography is deduced by subtracting ice thickness from the surface elevation; using Ice Flow Perturbation Analysis (IFPA); and by other methods. Surface elevations are obtained from the Reference Elevation Model of Antarctica (REMA) and high-resolution satellite maps.

Get the data

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

results = earthaccess.search_data(
    short_name="NSIDC-0756",
    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.