Google Earth Engine(GEE)——沿海国家高程数据库(CoNED)
沿海国家高程数据库CoNED项目--地形测量数字高程模型TBDEMs沿海国家高程数据库CoNED项目--地形测量数字高程模型TBDEMs是地形陆地高程和水深水体深度的合并渲染为美国部分沿海地区提供无缝高程产品2011年至今。这个沿海高程数据库将不同的光探测和测距激光雷达和测深数据源如声纳整合到共同的数据库中在垂直和水平方向上与共同的参考系统对齐。这个海岸高程数据库将不同的光探测和测距激光雷达和测深数据源整合到共同的数据库中并在垂直和水平方向上与共同的参考系统保持一致。CoNED项目--地形测量数字高程模型TBDEMs为科学应用研究提供了所需的无缝高程产品如海岸线划定、沿海淹没制图、沉积物运输、海平面上升、风暴潮模型、海啸影响评估以及各种气候变化情况对沿海地区影响的分析。数据集的描述可以在这里找到完整的数据集可以从以下网站下载免责声明数据集的全部或部分描述是由作者或其作品提供的。参考文献Coastal National Elevation Database (CoNED) Project - Topobathymetric Digital Elevation Model (TBDEM) Digital Object Identifier (DOI) number: /10.5066/F7Z60MHJ数据集设置和预处理数据集被收集并提供了3米、2米或1米以及不同的无数据值。虽然GEE集合允许所有这些数值的变化但是名义分辨率和原始CRS保持不变只需使用gdalwarp就可以将无数据值重新处理为-9999。一些数据集是单一的马赛克文件大小从4GB到200多GB不等为了提高效率和更好地处理这些数据我们使用了gdal_retile工具将这些数据重新划分为子部分同时保留文件名以便进行数据追踪。我在示例脚本中添加了一个函数允许你将标称比例作为一个属性添加到集合中以备用户想在上面分割和应用不同的方法。Earth Engine Snippet¶var tb_dem ee.ImageCollection(projects/sat-io/open-datasets/NOAA/CoNED_TBDEM); print(Total CoNED TBDEM collection,tb_dem.size()) Map.centerObject(tb_dem,4) //Function to attach nominal scale to collection var scales function(image){ var b1proj image.select(b1).projection(); var b1scale image.select(b1).projection().nominalScale(); return image.set(scale,ee.Number(b1scale).round()) } var ns tb_dem.map(scales) //print distribution of nominal scale across collection print(ns.aggregate_histogram(scale)) var tb_dem tb_dem.mosaic().setDefaultProjection(EPSG:3857,null,1); var tb_hillshade ee.Terrain.hillshade(tb_dem); var vis_params {palette:[#006994,#b2ff59, 002200, fff700, ab7634, c4d0ff, ffffff], min: -50, max: 1000}; Map.addLayer(tb_hillshade, {}, CoNED_TBDEM Hillshade,false); Map.addLayer(tb_dem, vis_params, CoNED_TBDEM);代码链接”https://code.earthengine.google.com/?scriptPathusers/sat-io/awesome-gee-catalog-examples:elevation-bathymetry/NOAA-CoNED-TBDEMLicense¶The dataset is released under an assumed CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. There are no restrictions on the use of data received from the U.S. Geological Surveys Earth Resources Observation and Science (EROS) Center or NASAs Land Processes Distributed Active Archive Center (LP DAAC), unless expressly identified prior to or at the time of receipt. Depending on the product source, we request that the following statements be used when citing, copying, or reprinting data: Data available from the U.S. Geological Survey.Intended use: Development, calibration and validation of coastal open-access EO-derived elevation/topography, vegetation and water quality products.Provider: USGS, CMGP, NGP, NOAA and NGDCCurated by: Samapriya RoyKeywords: Elevation, topography, topobathymetric, bathymetryLast updated on GEE: 2022-02-27