NEON LiDAR 数据导出的地表数字模型 (DSM) 和地形数字模型 (DTM)1m分辨率
简介
由 NEON LiDAR 数据导出的地表数字模型 (DSM) 和地形数字模型 (DTM)。 DSM: 地表特征(存在植被和人工建筑物的地形信息)。 DTM:裸地高程(去除植被和人工建筑的地形信息)。 图像以平均海平面以上的米为单位,并镶嵌在分辨率为 1 米的空间均匀网格上。
Catalog owner
Dataset Availability
2013-01-01T00:00:00 -
Dataset Provider
NEON
Contact
Contact information not available.
Collection Snippet
ee.ImageCollection("projects/neon-prod-earthengine/assets/DEM/001")
摘要
Resolution
1 meters
Bands Table
Name Description Min Max Units
DTM
Digital Terrain Model
0 3500 m
DSM
Digital Surface Model
0 3500 m
Name Type Description
AOP_VISIT_NUMBER Int
Unique visit number to the NEON site.
CITATION String
Data citation. See NEON Data Policies and Citation Guidelines.
DOI String
Digital Object Identifier. NEON data that have been released are assigned a DOI.
FLIGHT_YEAR Int
Year the data were collected.
NEON_DOMAIN String
NEON eco-climatic domain code, "D01" to "D20". See NEON Field Sites and Domains.
NEON_SITE String
NEON four-digit site code. See NEON Field Sites.
NEON_SITE_NAME String
Full name of the NEON site. See NEON Field Sites.
NEON_DATA_PROD_URL String
NEON data product url. Always set to: NEON | Data Product.
SENSOR_NAME String
Make and model of the lidar sensor: "Optech Galaxy Prime", "Optech Gemini", "Riegl Q780".
SENSOR_SERIAL String
Serial number of the lidar sensor: "11SEN287", "12SEN311", "5060445", "220855".
PROVISIONAL_RELEASED String
Whether the data are Provisional or Released. See Data Product Revisions and Releases | NSF NEON | Open Data to Understand our Ecosystems.
RELEASE_YEAR Int
If data are released, the year of the NEON Release Tag.
代码
// Read in the NEON AOP DEM Image Collection
var dem = ee.ImageCollection(
'projects/neon-prod-earthengine/assets/DEM/001');
// Display available images in the DEM/001 Image Collection
print('NEON DEM Images', dem.aggregate_array('system:index'))
// Specify the start and end dates and filter by date range
var startDate = ee.Date('2021-01-01');
var endDate = startDate.advance(1, 'year');
var dem2021 = dem.filterDate(startDate, endDate);
// Filter by NEON site name (see https://www.neonscience.org/field-sites/explore-field-sites)
var demSOAP_2021 = dem2021.filter('NEON_SITE == "SOAP"');
// Select the DTM and DSM bands in order to display each layer
var soapDTM = dem2021.select('DTM');
var soapDSM = dem2021.select('DSM');
// Define the color palette and visualization parameters
var palettes = require('users/gena/packages:palettes');
var dem_palette = palettes.colorbrewer.BrBG[9].reverse();
var demVis = {min: 700, max: 2300, palette: dem_palette};
// Add the DTM and DSM layers and center on the site
Map.addLayer(soapDTM, demVis, 'SOAP 2021 Digital Terrain Model (m)');
Map.addLayer(soapDSM, demVis, 'SOAP 2021 Digital Surface Model (m)');
Map.setCenter(-119.25, 37.06, 12);
引用
由 NEON 收集并作为数据产品提供的所有数据(与稀有、受威胁或濒危 (RTE) 物种相关的数据除外)均根据知识共享 CC0 1.0 "无保留权利 "协议发布到公共领域。 NEON 数据没有版权;任何人都可以出于商业或非商业目的复制、修改或分发这些数据,而无需征得许可。 NEON 数据仍可能受到其他法律或权利(如隐私权)的限制,NEON 不对数据作任何保证,并不承担任何责任。 在使用或引用 NEON 数据时,不得暗示 NEON 已认可这些数据。 在大多数国家,数据和事实不享有版权。 通过将 NEON 数据置于公共领域,我们鼓励广泛使用,特别是在科学分析和数据汇总方面。 但是,请注意以下学术规范: 使用 NEON 数据时应注意数据的局限性,并以数据包的相关文档为指导。 有关如何正确使用和引用 NEON 数据的详细信息,以及使用 NEON 数据发表研究成果的最佳实践,请参阅《NEON 数据指南和政策》。
CC0-1.0