Google Earth Engine——南极洲参考高程模型(REMA)是一个高分辨率、有时间戳的南极洲数字表面模型(DSM),具有2米和8米的空间分辨率

简介: Google Earth Engine——南极洲参考高程模型(REMA)是一个高分辨率、有时间戳的南极洲数字表面模型(DSM),具有2米和8米的空间分辨率

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.


南极洲参考高程模型(REMA)是一个高分辨率、有时间戳的南极洲数字表面模型(DSM),具有2米和8米的空间分辨率。

镶嵌的DEM文件是由多个条带汇编而成的,这些条带经过共同登记、混合和羽化,以减少边缘匹配的人工痕迹。

Dataset Availability

2009-01-01T00:00:00 - 2018-01-01T00:00:00

Dataset Provider

University of Minnesota Polar Geospatial Center

Collection Snippet

ee.Image("UMN/PGC/REMA/V1_1/8m")

Resolution

8 meters

Bands Table

Name Description Units
elevation Elevation meters


使用说明:

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.

引用:

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.

TC - The Reference Elevation Model of Antarctica

代码:

var mosaic = ee.Image('UMN/PGC/REMA/V1_1/8m');
Map.setCenter(85, -75, 3);
var elevationVis = {
  bands: ['elevation'],
  min: -50.0,
  max: 1000.0,
  palette: ['0d13d8', '60e1ff', 'ffffff'],
};
Map.addLayer(mosaic, elevationVis, 'REMA_DEM_mosaic_8m');

其他版本:

UMN_PGC_REMA_V1_2m

var collection = ee.ImageCollection('UMN/PGC/REMA/V1/2m');
Map.setCenter(85, -75, 3);
var elevationVis = {
  bands: ['elevation'],
  min: -50.0,
  max: 1000.0,
  palette: ['0d13d8', '60e1ff', 'ffffff'],
};
Map.addLayer(collection, elevationVis, 'REMA_DEM_strips_2m');

UMN_PGC_REMA_V1_8m

var collection = ee.ImageCollection('UMN/PGC/REMA/V1/8m');
Map.setCenter(85, -75, 3);
var elevationVis = {
  bands: ['elevation'],
  min: -50.0,
  max: 1000.0,
  palette: ['0d13d8', '60e1ff', 'ffffff'],
};
Map.addLayer(collection, elevationVis, 'REMA_DEM_strips_8m');


相关文章
|
6月前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
2476 1
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
6月前
|
人工智能 自然语言处理 API
Google Gemma 模型服务:开放的生成式 AI 模型服务
Google Gemma 模型服务:开放的生成式 AI 模型服务
216 4
|
6月前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
88 0
|
6月前
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
222 0
|
6月前
|
运维 监控 Serverless
一键开启 GPU 闲置模式,基于函数计算低成本部署 Google Gemma 模型服务
本文介绍如何使用函数计算 GPU 实例闲置模式低成本、快速的部署 Google Gemma 模型服务。
164988 58
|
5月前
|
人工智能 自然语言处理 机器人
[AI Google] 新的生成媒体模型和工具,专为创作者设计和构建
探索谷歌最新的生成媒体模型:用于高分辨率视频生成的 Veo 和用于卓越文本生成图像能力的 Imagen 3。还可以了解使用 Music AI Sandbox 创作的新演示录音。
[AI Google] 新的生成媒体模型和工具,专为创作者设计和构建
|
6月前
|
机器学习/深度学习 人工智能 自然语言处理
再超Transformer!Google提出两个新模型(Griffin、Hawk),强于Mamba,更省资源
【2月更文挑战第15天】再超Transformer!Google提出两个新模型(Griffin、Hawk),强于Mamba,更省资源
267 1
再超Transformer!Google提出两个新模型(Griffin、Hawk),强于Mamba,更省资源
|
6月前
|
数据处理
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
110 0
|
6月前
|
数据采集 编解码 人工智能
Google Earth Engine(GEE)——全球每日近地表空气温度(2003-2020年)
Google Earth Engine(GEE)——全球每日近地表空气温度(2003-2020年)
220 0
|
6月前
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
143 0

热门文章

最新文章