Google Earth Engine(GEE)——swissSURFACE3D光栅(DSM)数据集

swissSURFACE3D光栅(DSM)
该数据集目前只对内部人员计划中的人开放。

swissSURFACE3D Raster是一个数字表面模型(DSM),它代表了地球的表面,包括可见的和永久的景观元素,如土壤、自然覆盖物和各种建设性工作,但电力线和桅杆除外。 swissSURFACE3D Raster是由swissSURFACE3D的机载LiDAR数据得出的。为了对地表进行建模,使用了以下元素(分类LiDAR点)。

土壤(第2类)
植被(第3类)
建筑物(第6类)
桥梁/人行桥/高架桥(17级)
水(第9类)
为了改善大型河流和湖泊的表面表现,实施了地形景观模型TLM的水道向量。

免责声明:数据集的全部或部分描述是由作者或其作品提供的。

数据预处理
数据集经过了预处理,并以多种格式分发。提供了云端优化的Geotiff文件,并编写了一个程序来获取所有的和当前的31321块瓷砖。

参考文献:

swissSURFACE3D Raster digital surface model (DSM). Last accessed **date** original data from https://www.swisstopo.admin.ch/en/geodata/height/surface3d-raster.html
 

 

代码:

var swiss3d = ee.ImageCollection("projects/sat-io/open-datasets/swissSURFACE3D");

print('Collection size',swiss3d.size())
Map.setCenter(8.54379, 47.36675,10)

swiss3d = swiss3d.mosaic().setDefaultProjection('EPSG:3857',null,0.5)


// Use the terrain algorithms to compute a hillshade with 8-bit values.
var shade = ee.Terrain.hillshade(swiss3d);
Map.addLayer(shade, {}, 'hillshade', false);

// Create an "ocean" variable to be used for cartographic purposes
var ocean = swiss3d.lte(0);
Map.addLayer(ocean.mask(ocean), {palette:'000022'}, 'ocean', false);

// 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
  swiss3d.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, {}, 'elev palette');

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

License & Terms of Use

The free geodata and geoservices of swisstopo may be used, distributed and made accessible. Furthermore, they may be enriched and processed and also used commercially. A reference to the source is mandatory. In the case of digital or analogue representations and publications, as well as in the case of dissemination, one of the following source references must be attached in any case:

  • Bundesamt für Landestopografie swisstopo
  • Office fédéral de topographie swisstopo
  • Ufficio federale di topografia swisstopo
  • Uffizi federal da topografia swisstopo
  • Federal Office of Topography swisstopo
  • ©swisstopo

Provided by: Federal Office of Topography swisstopo

Curated in GEE by : Samapriya Roy

keywords: LIDAR, Digital Surface Model, DSM, Topography

Last updated on GEE: 2023-01-28

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

此星光明

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

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

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

打赏作者

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

抵扣说明:

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

余额充值