- Dataset Availability
- 2009-01-01T00:00:00Z–2018-01-01T00:00:00Z
- Dataset Provider
- University of Minnesota Polar Geospatial Center
- Earth Engine Snippet
-
ee.Image("UMN/PGC/REMA/V1_1/8m")
- Tags
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
Resolution
8 meters
Bands
Name | Units | Description |
---|---|---|
elevation |
m | 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
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');