REMA Strips 2m

UMN/PGC/REMA/V1/2m
Dataset Availability
2009-01-01T00:00:00Z–2018-01-01T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("UMN/PGC/REMA/V1/2m")
Tags
dem geophysical pgc rema umn

Description

The Reference Elevation Model of Antarctica (REMA) is a high resolution, time-stamped Digital Surface Model (DSM) of Antarctica at 2-meter and 8-meter spatial resolutions.

Strip DEM files correspond to the overlapping area of the input stereoscopic imagery pair strips as they are collected by DigitalGlobe's constellation of polar-orbiting satellites. Strip DEM dimensions will vary according to the satellite sensor that acquired the images and the off-nadir angle of collection. Most strips are between 13 km and 17 km in width, and 110 km and 120 km in length.

Bands

Resolution
2 meters

Bands

Name Units Description
elevation m

Elevation

matchtag

Bitmask raster indicating DEM pixels processing

Terms of Use

Terms of Use

National Science Foundation (PGC's primary funding source) policy requires researchers to acknowledge NSF support in all publications, web pages, and media interviews.

By using PGC data in Earth Engine, users agree to cite PGC and its sponsorship by the NSF. The original source of any third-party data supplied by PGC must also be properly attributed.

For more information see the PGC's Acknowledgement Policy.

Citations

Citations:
  • Howat, I. M., Porter, C., Smith, B. E., Noh, M.-J., and Morin, P.: The Reference Elevation Model of Antarctica, The Cryosphere, 13, 665-674, 2019.

DOIs

Explore with Earth Engine

Code Editor (JavaScript)

var collection = ee.ImageCollection('UMN/PGC/REMA/V1/2m');

Map.setCenter(-60, -75, 3);

var elevationVis = {
  bands: ['elevation'],
  min: -50.0,
  max: 1000.0,
  palette: ['0d13d8', '60e1ff', 'ffffff'],
};

Map.addLayer(collection, elevationVis, 'REMA_DEM_strips_2m');
Open in Code Editor