首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >Google Earth Engine(GEE)——ASTER全球数字高程模型(GDEM)v3

Google Earth Engine(GEE)——ASTER全球数字高程模型(GDEM)v3

作者头像
此星光明
发布2024-02-02 14:13:35
发布2024-02-02 14:13:35
1.7K0
举报

ASTER全球数字高程模型(GDEM)v3 ASTER GDEM的第一个版本于2009年6月发布,是利用Terra上的ASTER仪器收集的立体对射图像生成的。ASTER GDEM的覆盖范围从北纬83度到南纬83度,包括了地球上99%的陆地。

改进后的GDEM V3增加了更多的立体对,提高了覆盖率,减少了伪影的出现。完善的生产算法提供了更好的空间分辨率,提高了水平和垂直精度。ASTER GDEM V3保持了GeoTIFF格式,以及与V1和V2相同的网格和瓦片结构,具有30米的张贴和1×1度的瓦片。你可以在这里阅读更多关于该产品的用户指南:

https://lpdaac.usgs.gov/documents/434/ASTGTM_User_Guide_V3.pdf

免责声明:该数据集的部分或全部描述借用了作者提供的现有描述。

源数据结构 数据为Geotiff格式,每个文件被分为1x1度的瓦片。为了允许添加单个图像而不是集合输出,将压缩文件解压并生成单个复合tif文件。

NASA/METI/AIST/Japan Spacesystems, and U.S./Japan ASTER Science Team. ASTER Global Digital Elevation Model V003. 2018, distributed by NASA EOSDIS Land Processes DAAC, https://doi.org/10.5067/ASTER/ASTGTM.003

代码:

代码语言:javascript
复制
var countries = ee.FeatureCollection("FAO/GAUL/2015/level0"),
    GDEM = ee.Image("projects/sat-io/open-datasets/ASTER/GDEM");

var palettes = require('users/samapriya/utils:palettes');


// Add the elevation to the map.  Play with the visualization tools
// to get a better visualization.
Map.addLayer(GDEM, {}, 'elev', false);

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

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

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

// Create a mosaic of the ocean and the elevation data
var visualized = ee.ImageCollection([
  // Mask the elevation to get only land
  GDEM.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), {}, 'ASTER GDEM');

Sample Code: https://code.earthengine.google.com/?scriptPath=users/sat-io/awesome-gee-catalog-examples:elevation-bathymetry/ASTER-GDEM

License

All LP DAAC current data and products acquired through the LP DAAC have no restrictions on reuse, sale, or redistribution. This license can thus be treated similar to a public domain CC0 license. ASTER GDEM Version 3 (ASTGTM V003) was released on August, 5, 2019 and contains no redistribution requirements. The LP DAAC kindly requests that you properly cite the data in your research.

Created by: NASA, METI, AIST, Japan Spacesystems and U.S./Japan ASTER Science Team

Curated in GEE by: Samapriya Roy

Keywords: ASTER, DEM, elevation, remote sensing

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

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

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

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

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