前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Google Earth Engine——Arctic北极DEM是一个数字表面模型(DSM),描绘了包括植被、树冠、建筑物和其他人造表面特征在内的第一回的高程值,2米/5米分辨率

Google Earth Engine——Arctic北极DEM是一个数字表面模型(DSM),描绘了包括植被、树冠、建筑物和其他人造表面特征在内的第一回的高程值,2米/5米分辨率

作者头像
此星光明
发布2024-02-02 12:25:00
1920
发布2024-02-02 12:25:00
举报

ArcticDEM is a digital surface model (DSM) that portrays first-return elevation values that include vegetation, tree canopy, buildings, and other man-made surface features. The 2m asset is a collection of strips rather than a single mosaic due to projection differences between strips.

Strip DEM files correspond to the overlapping area of the input stereopair image swaths 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 16km and 18km in width, and 110km and 120km in length.

ArcticDEM是一个数字表面模型(DSM),描绘了包括植被、树冠、建筑物和其他人造表面特征在内的第一回的高程值。由于条带之间的投影差异,2米分辨率是一个条带的集合,而不是一个单一的镶嵌。

条状DEM文件对应于输入的立体影像扫描的重叠区域,因为它们是由DigitalGlobe的极地轨道卫星群收集的。带状DEM的尺寸将根据获取图像的卫星传感器和收集的偏离天顶的角度而变化。大多数条带的宽度在16公里到18公里之间,长度在110公里到120公里之间。

Dataset Availability

2009-08-16T00:00:00 - 2017-03-12T00:00:00

Dataset Provider

University of Minnesota Polar Geospatial Center

Collection Snippet

ee.ImageCollection("UMN/PGC/ArcticDEM/V2/2m")

Resolution

2 meters

Bands Table

Name

Description

Units

elevation

Elevation

Meters

matchtag

Bitmask raster indicating DEM pixels processing

matchtag Bitmask

Bit 0: Pixel processing 0: Pixels have been interpolated1: Pixels are derived from a stereo match

  • Bit 0: Pixel processing
    • 0: Pixels have been interpolated
    • 1: Pixels are derived from a stereo match

使用说明:

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.

引用:

DEM(s) created by the Polar Geospatial Center from DigitalGlobe, Inc. imagery.

代码:

代码语言:javascript
复制
var dataset = ee.ImageCollection('UMN/PGC/ArcticDEM/V2/2m');
var elevation = dataset.select('elevation');
var elevationVis = {
  min: -50.0,
  max: 1000.0,
  palette: ['0d13d8', '60e1ff', 'ffffff'],
};
Map.setCenter(-63.402, 66.368, 7);
Map.addLayer(elevation, elevationVis, 'Elevation');

其他版本:

UMN_PGC_ArcticDEM_V2_5m

代码语言:javascript
复制
var dataset = ee.Image('UMN/PGC/ArcticDEM/V2/5m');
var elevation = dataset.select('elevation');
var elevationVis = {
  min: -50.0,
  max: 1000.0,
  palette: ['0d13d8', '60e1ff', 'ffffff'],
};
Map.setCenter(-63.402, 66.368, 7);
Map.addLayer(elevation, elevationVis, 'Elevation');

UMN_PGC_ArcticDEM_V3_2m

代码语言:javascript
复制
var dataset = ee.ImageCollection('UMN/PGC/ArcticDEM/V3/2m');
var elevation = dataset.select('elevation');
var elevationVis = {
  min: -50.0,
  max: 1000.0,
  palette: ['0d13d8', '60e1ff', 'ffffff'],
};
Map.setCenter(-63.402, 66.368, 7);
Map.addLayer(elevation, elevationVis, 'Elevation');

UMN_PGC_ArcticDEM_V3_2m_mosaic

代码语言:javascript
复制
var dataset = ee.Image('UMN/PGC/ArcticDEM/V3/2m_mosaic');
var elevation = dataset.select('elevation');
var elevationVis = {
  min: -50.0,
  max: 1000.0,
  palette: ['0d13d8', '60e1ff', 'ffffff'],
};
Map.setCenter(-63.402, 66.368, 7);
Map.addLayer(elevation, elevationVis, 'Elevation');
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档