Google Earth Engine(GEE)——全球哥白尼数字高程模型(GLO-30 DEM)

哥白尼数字高程模型(GLO-30 DEM)
哥白尼DEM是一个数字表面模型(DSM),代表了地球的表面,包括建筑物、基础设施和植被。我们提供两种哥白尼DEM的实例,分别是GLO-30 Public和GLO-90。GLO-90提供90米的全球覆盖。GLO-30公共版提供有限的30米的全球覆盖,因为哥白尼计划还没有向公众发布覆盖特定国家的一小部分瓦片。请注意,在这两种情况下,海洋地区都没有瓦片,在那里可以假设高度值等于零。数据以云优化GeoTIFF的形式提供,并从亚马逊开放注册处下载。

Copernicus Digital Elevation Model (DEM) - Registry of Open Data on AWS

原始瓦片与相邻的瓦片共享一行或一列,其尺寸为3601×3601像素、2401×2401像素、1801×1801像素或其他,取决于经度。我们去掉了东边和南边的这些共享的行和列,得到了很好的可被两除的尺寸,所以我们可以创建漂亮的COG概述。COG文件的共同属性是:使用浮点预测器的DEFLATE压缩(PREDICTOR=3);平均下抽样 。

有关具体数据信息可以查看这个:

Copernicus Digital Elevation Model datasets

 数据引用:

Copernicus Digital Elevation Model (DEM) was accessed on DATE from

Earth Engine Snippet

var countries = ee.FeatureCollection("FAO/GAUL/2015/level0"),
    glo30 = ee.ImageCollection("projects/sat-io/open-datasets/GLO-30");

print('GLO-30 Collection size :',glo30.size())

//Explanation on setting default Projection here https://twitter.com/jstnbraaten/status/1494038930643042309
var elev = glo30.mosaic().setDefaultProjection('EPSG:3857',null,30)

//you can also use this incase you don't want to specify CRS
//var elev = glo30.mosaic().setDefaultProjection(glo30.first().projection())



// Create an "ocean" variable to be used for cartographic purposes
var ocean = elev.lte(0);

// Create a custom elevation palette from hex strings.
var elevationPalette = ['006600', '002200', 'fff700', 'ab7634', 'c4d0ff', 'ffffff'];

// Use these visualization parameters, customized by location.
var visParams = {min: 1, max: 3000, palette: elevationPalette};

// Create a mosaic of the ocean and the elevation data
var visualized = ee.ImageCollection([
  // Mask the elevation to get only land
  elev.mask(ocean.not()).visualize(visParams), 
  // Use the ocean mask directly to display ocean.
  ocean.mask(ocean).visualize({palette:'000022'})
]).mosaic();

// Note that the visualization image doesn't require visualization parameters.
Map.addLayer(visualized.clip(countries), {}, 'elev palette');

代码链接: https://code.earthengine.google.com/?scriptPath=users/sat-io/awesome-gee-catalog-examples:elevation-bathymetry/COPERNICUS_GLO30

Earth Engine comparison app: glob-elevation

License

GLO-30 Public is available on a free basis for the general public under the terms and conditions of the license found here.

© DLR e.V. 2010-2014 and © Airbus Defence and Space GmbH 2014-2018 provided under COPERNICUS by the European Union and ESA; all rights reserved.

Disclaimer

The organisations in charge of the Copernicus programme by law or by delegation do not incur any liability for any use of the Copernicus WorldDEM-30.See Article 6© in https://docs.sentinel-hub.com/api/latest/static/files/data/dem/resources/license/License-COPDEM-30.pdf

Created by: European Space Agency, COPERNICUS

Curated in GEE by: Samapriya Roy

Keywords: digital elevation model, terrain, remote sensing, esa, copernicus

 

 

  • 1
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 4
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

此星光明

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值