AI-generated Key Takeaways
-
The Reference Elevation Model of Antarctica (REMA) provides high-resolution digital surface models of Antarctica at 2 and 8-meter spatial resolutions.
-
This dataset is available from 2009 to 2018 and is provided by the University of Minnesota Polar Geospatial Center.
-
The dataset includes an elevation band with measurements in meters.
-
Users are required to acknowledge the Polar Geospatial Center and NSF sponsorship when using the data.
-
A specific citation is provided for the Reference Elevation Model of Antarctica publication in The Cryosphere.
- Dataset Availability
- 2009-01-01T00:00:00Z–2018-01-01T00:00:00Z
- Dataset Provider
- University of Minnesota Polar Geospatial Center
- 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
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
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');