Google Earth Engine ——MERIT/DEM/v1_0_3影像100M分辨率数据集

简介: Google Earth Engine ——MERIT/DEM/v1_0_3影像100M分辨率数据集

MERIT DEM a high accuracy global DEM at 3 arc second resolution (~90 m at the equator) produced by eliminating major error components from existing DEMs (NASA SRTM3 DEM, JAXA AW3D DEM, Viewfinder Panoramas DEM). MERIT DEM separates absolute bias, stripe noise, speckle noise and tree height bias using multiple satellite datasets and filtering techniques. After the error removal, land areas mapped with 2 m or better vertical accuracy were increased from 39% to 58%. Significant improvements were found in flat regions where height errors larger than topography variability, and landscapes such as river networks and hill-valley structures became clearly represented.


'MERIT DEM was developed by processing the following products as baseline data:

In addition to the above baseline dems, these products were used as supplementary data:


MERIT DEM是通过消除现有DEM(NASA SRTM3 DEM、JAXA AW3D DEM、Viewfinder Panoramas DEM)中的主要误差成分而产生的3角秒分辨率的高精度全球DEM(赤道上约90米)。MERIT DEM利用多个卫星数据集和过滤技术,分离了绝对偏差、条纹噪声、斑点噪声和树高偏差。去除误差后,以2米或更好的垂直精度测绘的土地面积从39%增加到58%。在高度误差大于地形变化的平坦地区发现了明显的改进,河网和山谷结构等地貌变得清晰可见。

MERIT DEM是通过处理以下产品作为基线数据开发的。

NASA SRTM3 DEM v2.1

JAXA AW3D - 30米DEM v1

取景器全景图DEM

除上述基线数据外,还使用了这些产品作为补充数据。

NASA-NSIDC ICESat/GLAS GLA14数据

U-Maryland Landsat森林覆盖数据

NASA全球森林高度数据

JAMSTEC/U-Tokyo G3WBM水体数据'。

Dataset Availability

1987-01-01T00:00:00 - 2017-01-01T00:00:00

Dataset Provider

Dai Yamazaki (University of Tokyo)

Collection Snippet

ee.Image("MERIT/DEM/v1_0_3")

Bands Table

Name Description Resolution
dem Elevation in meters, referenced to EGM96 geoid model. 92.77 meters


使用说明:

'Citation to the paper is adequate if you simply use MERIT DEM. If you asked for help for additional handling/editing of the dataset, or if your research outcome highly depends on the product, the developer would request co-authorship.

MERIT DEM is licensed under a Creative Commons "CC-BY-NC 4.0" or Open Data Commons "Open Database License (ODbL 1.0)". With a dual license, you can choose an appropriate license for you.

To view a copy of these license, please visit:

  • CC-BY-NC 4.0 license: Non-Commercial Use with less restriction.
  • ODbL 1.0 license: Commercial Use is OK, but the derived data based on MERIT DEM should be made publicly available under the same ODbL license. For example, if you create a flood hazard map using MERIT DEM and you would like to provide a COMMERCIAL service based on that, you have to make the hazard map PUBLICLY AVAILABLE under OdBL license.

Note that the above license terms are applied to the "derived data" based on MERIT DEM, while they are not applied to "produced work / artwork" created with MERIT DEM (such as figures in a journal paper). The users may have a copyright of the artwork and may assign any license, when the produced work is not considered as "derived data".

By downloading and using the data the user agrees to the terms and conditions of one of these licenses. Notwithstanding this free license, we ask users to refrain from redistributing the data in whole in its original format on other websites without the explicit written permission from the authors.

The copyright of MERIT DEM is held by the developers, 2018, all rights reserved.'


'如果你只是使用MERIT DEM,引用该论文就足够了。如果你要求帮助对数据集进行额外的处理/编辑,或者你的研究成果高度依赖于该产品,开发者会要求共同作者。

MERIT DEM采用知识共享 "CC-BY-NC 4.0 "或开放数据共享 "开放数据库许可(ODbL 1.0)"进行许可。通过双重许可证,你可以选择适合你的许可证。

要查看这些许可证的副本,请访问。

CC-BY-NC 4.0许可证。非商业使用,限制较少。

ODbL 1.0许可证。商业使用是可以的,但基于MERIT DEM的衍生数据应在相同的ODbL许可证下公开提供。例如,如果你用MERIT DEM创建了一个洪水灾害地图,并且你想在此基础上提供商业服务,你必须在ODBL许可证下公开提供该灾害地图。

请注意,上述许可条款适用于基于MERIT DEM的 "衍生数据",而不适用于用MERIT DEM创作的 "作品/艺术作品"(如期刊论文中的数字)。当制作的作品不被视为 "派生数据 "时,用户可以拥有艺术品的版权,并可以转让任何许可。

通过下载和使用数据,用户同意这些许可证之一的条款和条件。尽管有这个免费许可,我们要求用户在没有得到作者明确的书面许可的情况下,不要在其他网站上以原始格式重新发布整个数据。

MERIT DEM的版权由开发者持有,2018年,所有权利保留。

引用:

Yamazaki D., D. Ikeshima, R. Tawatari, T. Yamaguchi, F. O'Loughlin, J.C. Neal, C.C. Sampson, S. Kanae & P.D. Bates. A high accuracy map of global terrain elevations. Geophysical Research Letters, vol.44, pp.5844-5853, 2017. doi:10.1002/2017GL072874

代码:

var dataset = ee.Image("MERIT/DEM/v1_0_3");
var visualization = {
  bands: ['dem'],
  min: -3,
  max: 18,
  palette: ['000000', '478FCD', '86C58E', 'AFC35E', '8F7131',
           'B78D4F', 'E2B8A6', 'FFFFFF']
};
Map.setCenter(90.301, 23.052, 10);
Map.addLayer(dataset, visualization, "Elevation");


相关文章
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
6245 1
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
425 0
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
1006 0
|
11月前
|
机器学习/深度学习 人工智能 算法
Google DeepMind新产物: 行星级卫星嵌入数据集(10m)光学+雷达+DEM+climate...
Google 推出 Earth Engine 卫星嵌入数据集,利用 AI 将一年的多源卫星数据压缩至每个 10 米像素,实现高效地理空间分析。基于 AlphaEarth Foundations 模型,该数据集提供 64 维嵌入向量,支持相似性搜索、变化检测、自动聚类和精准分类,助力环境研究与应用。
678 0
|
存储 编解码 数据可视化
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
【2月更文挑战第14天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,按照给定的地表分类数据,对每一种不同的地物类型,分别加以全球范围内随机抽样点自动批量选取的方法~
1479 1
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
|
数据处理
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
468 0
|
数据采集 编解码 人工智能
Google Earth Engine(GEE)——全球每日近地表空气温度(2003-2020年)
Google Earth Engine(GEE)——全球每日近地表空气温度(2003-2020年)
802 0
|
人工智能
Google Earth Engine(GEE)——1984-2019年美国所有土地上的大火烧伤严重程度和范围数据集
Google Earth Engine(GEE)——1984-2019年美国所有土地上的大火烧伤严重程度和范围数据集
350 0
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
551 0
|
编解码
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
367 0

热门文章

最新文章

推荐镜像

更多