前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Google Earth Engine(GEE)——法国(大陆)5米DEM IGN RGE Alti数据集

Google Earth Engine(GEE)——法国(大陆)5米DEM IGN RGE Alti数据集

作者头像
此星光明
发布2024-02-02 14:17:40
1790
发布2024-02-02 14:17:40
举报

法国(大陆)5米DEM IGN RGE Alti RGE ALTI® 5米数据集描述了法国的地面高程,空间分辨率为5x5米。它由国家地理和森林信息研究所(IGN - https://www.ign.fr/)制作。IGN或国家地理和森林信息研究所,是国家地理和森林信息的运营商。该研究所介入支持公共风险预防和区域规划政策的评估和实施,完整的数据集描述可在此获得。RGE ALTI®是通过机载激光雷达获得的调查或通过航空图像的相关性进行更新。你可以在这里找到数据集描述。你也可以在这里找到该文件的谷歌翻译版本的英文。

数据集预处理 数据集由Guillaume Attard从ASCII文件中进行预处理,并转换为子区域数据集。然后,这些图像被合并为一个单一的地球引擎图像。

在ETALAB许可证下的建议引文 关于许可证和引文指南的其他信息可以在这里找到

https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf

文献引用:

Ministry of xxx—Original data downloaded from http://www.data.gouv.fr/fr/ datasets/xxx/, updated on 14 February 2017.

代码

代码语言:javascript
复制
var rge_alti5 = ee.Image("projects/sat-io/open-datasets/IGN_RGE_Alti_5m");

Map.centerObject(rge_alti5,6)

Map.addLayer(rge_alti5, {}, 'elev', false);

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

// Create an "ocean" variable to be used for cartographic purposes
var ocean = rge_alti5.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
  rge_alti5.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/IGN-RGE-France-DEM-5m

License

The dataset is licensed under a Etalab Open License 2.0. The “Reuser” is free to reuse the “Information” - to reproduce it, copy it, - to adapt, modify, extract and transform it, to create "Derived Information", products or services, - to communicate, distribute, redistribute, publish and transmit it, - to exploit it for commercial purposes, for example by combining it with other information, or by including it in its own product or application.

Created by: National Institute of Geographic and Forest Information (IGN)

Curated in GEE by: Guillaume Attard and Samapriya Roy

Keywords: digital elevation model, terrain, remote sensing, France

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

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

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

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

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