This dataset represents global tree heights based on a fusion of spaceborne-lidar data (2005) from the Geoscience Laser Altimeter System (GLAS) and ancillary geospatial data. See [Simard et al. (2011)] (Mapping forest canopy height globally with spaceborne lidar - Simard - 2011 - Journal of Geophysical Research: Biogeosciences - Wiley Online Library) for details.
该数据集代表了基于地球科学激光测高系统(GLAS)的空间激光雷达数据(2005年)和辅助地理空间数据融合的全球树木高度。详见[Simard等人(2011)](https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/2011JG001708)。
Dataset Availability
2005-05-20T00:00:00 - 2005-06-23T00:00:00
Dataset Provider
Collection Snippet
ee.Image("NASA/JPL/global_forest_canopy_height_2005")
Resolution
927.67 meters
Bands Table
Name | Description | Min* | Max* | Units |
---|---|---|---|---|
1 | Tree heights | 0 | 73 | m |
* = Values are estimated
使用说明:
Most materials published on the Earth Observatory, including images, are freely available for re-publication or re-use, including commercial purposes, except for where copyright is indicated.
NASA’s Earth Observatory must be given credit for its original materials; the only mandatory credit is NASA.
For more information about using NASA imagery visit the Earth Observatory Image Use Policy site.
数据引用:
Simard, M., Pinto, N., Fisher, J., Baccini, A. 2011. Mapping forest canopy height globally with spaceborne lidar. Journal of Geophysical Research. 116: G04021. [doi:10.1029/2011JG001708] (Mapping forest canopy height globally with spaceborne lidar - Simard - 2011 - Journal of Geophysical Research: Biogeosciences - Wiley Online Library)
代码:
var dataset = ee.Image('NASA/JPL/global_forest_canopy_height_2005');
var forestCanopyHeight = dataset.select('1');
var forestCanopyHeightVis = {
min: 0.0,
max: 30.0,
palette: [
'ffffff', 'fcd163', '99b718', '66a000', '3e8601', '207401', '056201',
'004c00', '011301'
],
};
Map.setCenter(-28.1, 28.3, 1);
Map.addLayer(forestCanopyHeight, forestCanopyHeightVis, 'Forest Canopy Height');