REMA Mosaic

  • The Reference Elevation Model of Antarctica (REMA) provides a high-resolution Digital Surface Model (DSM) of Antarctica at 8-meter and 2-meter resolutions, timestamped between 2009 and 2018.

  • REMA data is compiled from multiple strips that are co-registered, blended, and feathered to minimize edge-matching artifacts.

  • This dataset is provided by the University of Minnesota Polar Geospatial Center and requires acknowledgement of NSF support and proper attribution in publications and media using the data.

  • Users can access and analyze REMA data through Google Earth Engine, a platform for petabyte-scale scientific analysis and visualization of geospatial datasets.

  • Researchers are encouraged to cite Howat et al.(2019) when using REMA data in their work.

UMN/PGC/REMA/V1_1/8m
Dataset Availability
2009-01-01T00:00:00Z–2018-01-01T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.Image("UMN/PGC/REMA/V1_1/8m")
Tags
dem elevation-topography 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.

Mosaicked DEM files are compiled from multiple strips that have been co-registered, blended, and feathered to reduce edge-matching artifacts.

Bands

Pixel Size
8 meters

Bands

Name Units Pixel Size Description
elevation m meters

Elevation

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 mosaic = ee.Image('UMN/PGC/REMA/V1_1/8m');

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

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

Map.addLayer(mosaic, elevationVis, 'REMA_DEM_mosaic_8m');
Open in Code Editor