2013-至今激光雷达点云树冠顶部距裸露地面的高度(树冠高度模型;CHM)1m分辨率
简介
树冠顶部距裸露地面的高度(树冠高度模型;CHM)。 CHM 源自激光雷达点云,是通过在激光雷达勘测的整个空间范围内创建一个连续的树冠高度估算面而生成的。 点云被分成代表地面和植被回报的类别。 地面分类点用于生成高度归一化点云,提供植被海拔的相对估算值。 然后利用高度归一化植被点生成一个表面,以生成 CHM。 使用 Optech Gemini LiDAR 传感器采集的数据中,树冠高度小于 2 米的部分设为零,使用 Riegl 和 Optech Galaxy 传感器采集的数据中,树冠高度小于 2/3 米的部分设为零。 数据被镶嵌到一个空间分辨率为 1 米的空间均匀网格上,覆盖 AOP 的足迹。
projects/neon-prod-earthengine/assets/CHM/001
Dataset Availability
2013-01-01T00:00:00 -
Dataset Provider
NEON
Contact
Contact information not available.
Collection Snippet
ee.ImageCollection("projects/neon-prod-earthengine/assets/CHM/001")
数据集说明
空间信息
Resolution
1 meters
Bands Table
Name Description Min Max Units
CHM
Canopy Height Model
0 100 m
变量
NameTypeDescriptionAOP_VISIT_NUMBERInt
Unique visit number to the NEON site.
CITATIONString
Data citation. See NEON Data Policies and Citation Guidelines.
DOIString
Digital Object Identifier. NEON data that have been released are assigned a DOI.
FLIGHT_YEARInt
Year the data were collected
NEON_DOMAINString
NEON eco-climatic domain code, "D01" to "D20". See NEON Field Sites and Domains.
NEON_SITEString
NEON four-digit site code. See NEON Field Sites.
NEON_SITE_NAMEString
Full name of the NEON site. See NEON Field Sites.
NEON_DATA_PROD_URLString
NEON data product url. Always set to: NEON | Data Product.
SENSOR_NAMEString
Make and model of the lidar sensor: "Optech Galaxy Prime", "Optech Gemini", "Riegl Q780".
SENSOR_SERIALString
Serial number of the lidar sensor: "11SEN287", "12SEN311", "5060445", "220855".
PROVISIONAL_RELEASEDString
Whether the data are Provisional or Released. See Data Product Revisions and Releases | NSF NEON | Open Data to Understand our Ecosystems.
RELEASE_YEARInt
If data are released, the year of the NEON Release Tag.
代码
// 读取图像集合并获取第一幅图像
var era5_heat_ic = ee.ImageCollection('projects/climate-engine-pro/assets/ce-era5-heat')
var era5_heat_i = era5_heat_ic.first()
// 打印第一幅图像,查看波段
print(era5_heat_i)
// 可视化第一幅图像中的选定波段 - 其他波段存在于图像集合中
var temp_palette = ["#b2182b", "#ef8a62", "#fddbc7", "#f7f7f7", "#d1e5f0", "#67a9cf", "#2166ac"].reverse()
Map.addLayer(era5_heat_i.select('mrt_mean').selfMask().subtract(273.15), {min: -10, max: 50, palette: temp_palette}, 'Mean Radiant Temperature, Daily Mean')
Map.addLayer(era5_heat_i.select('utci_mean').selfMask().subtract(273.15), {min: -10, max: 50, palette: temp_palette}, 'Universal Thermal Climate Index, Daily Mean')
代码2
var chm = ee.ImageCollection(
'projects/neon-prod-earthengine/assets/CHM/001');
var startDate = ee.Date('2021-01-01');
var endDate = startDate.advance(1, 'year');
var chm2021 = chm.filterDate(startDate, endDate);
var soapSite = chm2021.filter('NEON_SITE == "SOAP"').mosaic();
// This works well for areas with trees.
var chmVis = {min: 0, max: 35, palette: ['E6F7E0', '063B00']};
var lon = -119.25;
var lat = 37.06;
Map.setCenter(lon, lat, 12);
// Degrees in EPSG:3857.
var delta = 0.045;
// Width and Height of the thumbnail image.
var pixels = 256;
var areaOfInterest = ee.Geometry.Rectangle(
[lon - delta, lat - delta, lon + delta, lat + delta], null, false);
var visParams = {
dimensions: [pixels, pixels],
region: areaOfInterest, crs: 'EPSG:3857', format: 'png'};
var image = soapSite.visualize(chmVis);
Map.addLayer(image, null, 'SOAP 2021 Canopy Height Model (m)');
Map.addLayer(areaOfInterest, {color: 'red'}, 'Area of Interest', false);
print(ui.Thumbnail({image: image, params: visParams}));
引用
由 NEON 收集并作为数据产品提供的所有数据(与稀有、受威胁或濒危 (RTE) 物种相关的数据除外)均根据知识共享 CC0 1.0 "无保留权利 "协议发布到公共领域。 NEON 数据没有版权;任何人都可以出于商业或非商业目的复制、修改或分发这些数据,而无需征得许可。 NEON 数据仍可能受到其他法律或权利(如隐私权)的限制,NEON 不对数据作任何保证,并不承担任何责任。 在使用或引用 NEON 数据时,不得暗示 NEON 已认可这些数据。 在大多数国家,数据和事实不享有版权。 通过将 NEON 数据置于公共领域,我们鼓励广泛使用,特别是在科学分析和数据汇总方面。 但是,请注意以下学术规范: 使用 NEON 数据时应注意数据的局限性,并以数据包的相关文档为指导。 有关如何正确使用和引用 NEON 数据的详细信息,以及使用 NEON 数据发表研究成果的最佳实践,请参阅《NEON 数据指南和政策》。
许可
CC0-1.0
机器学习