Gridded GEDI Vegetation Structure Metrics and Biomass Density with COUNTS metrics, 12KM pixel size

LARSE/GEDI/GRIDDEDVEG_002/COUNTS/V1/12KM
数据集可用性
2019-04-17T00:00:00Z–2023-03-16T00:00:00Z
数据集提供商
Earth Engine 代码段
ee.ImageCollection("LARSE/GEDI/GRIDDEDVEG_002/COUNTS/V1/12KM")
标签
生物质 冠层 森林 森林生物质 gedi larse 激光雷达 nasa 植被

说明

此数据集包含近乎全球范围的分析就绪型多分辨率网格化植被结构指标,这些指标源自 NASA 全球生态系统动态调查 (GEDI) 2 级和 4A 级产品,与直径为 25 米的激光雷达覆盖范围相关联。此数据集全面展示了近乎全球的植被结构,其中包含整个垂直剖面,完全基于 GEDI 激光雷达数据,并已通过独立数据进行验证。

GEDI 传感器安装在国际空间站 (ISS) 上,使用 8 道激光束(沿轨道方向间隔 60 米,横向间隔 600 米)来测量地球表面上大约北纬 52 度到南纬 52 度之间的地面海拔高度和植被结构。在 2019 年 4 月 17 日至 2023 年 3 月 16 日期间,GEDI 分别获取了 110 亿和 77 亿个适合测量地面海拔和植被结构的优质波形。

除了许多标准的 L2 和 L4A 拍摄指标之外,我们还推导出了几个额外的指标,这些指标可能对地球系统模型中碳和水循环过程的应用,以及森林管理、生物多样性建模和栖息地评估特别有用。变量包括冠层高度、冠层覆盖率、植物面积指数、叶片高度多样性和 5 米分层的植物面积体积密度。如需了解详情,请参阅网格化 GEDI 植被结构指标和生物质密度

每个 GEDI 拍摄指标都包含 8 个统计信息:平均值、平均值的自举标准误差、中位数、标准差、四分位距、第 95 百分位数、Shannon 多样性指数和拍摄次数。所用优质拍摄过滤方法与 GEDI L4B 网格化地上生物量密度(版本 2.1)相符。与相应的 GEDI L3 数据集相比,此数据集在多个空间分辨率和多个时间段(每年和整个任务持续时间)内提供了额外的网格化指标。

此数据集以光栅网格形式提供 GEDI 拍摄指标,具有三种空间分辨率:1 公里、6 公里和 12 公里。此数据集使用 12 公里的像素大小和计数指标。

频段

像素大小
12,000 米

频段

名称 像素尺寸 说明
shots_count

拍摄次数。如需将拍摄内容纳入此图层,以下字段必须有效:经度、纬度、最低模式的海拔高度、十进制日期和轨道。

orbits_uniq

唯一轨道数。

tracks_uniq

唯一轨道数。轨道是轨道和波束的组合。

shots_nni

最近邻指数(Evans 等人,2023 年)。

使用条款

使用条款

此数据集位于公共领域,可随意使用和分发。如需了解更多信息,请参阅 NASA 的地球科学数据和信息政策

引用

引用:
  • Burns, P.、Hakkenberg, C.R. & Goetz, S.J. Multi-resolution gridded maps of vegetation structure from GEDI. Sci Data 11, 881 (2024). doi:10.1038/s41597-024-03668-4

使用 Earth Engine 探索

代码编辑器 (JavaScript)

var palettes = require('users/gena/packages:palettes');


// slopeshade basemap
var elev = ee.Image('MERIT/DEM/v1_0_3').select('dem')
var slope = ee.Terrain.slope(elev)
Map.setCenter(92.319, 27.129, 8)
Map.addLayer(
    slope, {min: 0, max: 40, palette: ['ffffff', '000000']}, 'Slopeshade')

var opac = 0.7
// View various measurement count metrics from 2019 to 2023
// "va" in the asset name corresponds to the count of high-quality, leaf-on
// vegetation measurements by GEDI
var i_counts_12k_19to23 = ee.Image(
    'LARSE/GEDI/GRIDDEDVEG_002/COUNTS/V1/12KM/gediv002_counts_va_20190417_20230316')
// Number of GEDI laser shots (i.e. footprints) per 12km pixel
Map.addLayer(
    i_counts_12k_19to23.select('shots_count'),
    {min: 0, max: 200, palette: palettes.matplotlib.magma[7]},
    'Shot count per 12km pixel, 2019 to 2023', 0, opac)
// Number of ISS orbits (with valid GEDI shots) per 12km pixel
Map.addLayer(
    i_counts_12k_19to23.select('orbits_uniq'),
    {min: 0, max: 10, palette: palettes.matplotlib.plasma[7]},
    'Unique orbits per 12km pixel, 2019 to 2023', 0, opac)
// The Nearest Neighbor Index (Evans et al. 2023), a proxy for quantifying
// spatial clustering/dispersion of GEDI shots
Map.addLayer(
    i_counts_12k_19to23.select('shots_nni'),
    {min: 0.5, max: 1.5, palette: palettes.colorbrewer.RdBu[7]},
    'Shot nearest neighbor index per 12km pixel, 2019 to 2023', 0, opac)

// View several GEDI vegetation structure metrics at 12km spatial res.
// For GEDI metric descriptions see Table 1 at
// https://daac.ornl.gov/GEDI/guides/GEDI_HighQuality_Shots_Rasters.html
// Relative height of the 98th percentile of returned energy (RH98), a proxy for
// tree canopy height
var i_rh98_12k_19to23 = ee.Image(
    'LARSE/GEDI/GRIDDEDVEG_002/V1/12KM/gediv002_rh-98-a0_vf_20190417_20230316')
// display the median value of GEDI RH98 measurements per 6km pixel, masking out
// values less than 3 consider using a threshold of 10 shots per 12km pixel.
// More shots generally yield more accurate estimates of the aggregation
// statistics (different bands)
var i_rh98_12k_19to23_med = i_rh98_12k_19to23.select('median')
var rh98_pal = palettes.crameri.bamako[10].reverse()
Map.addLayer(
    i_rh98_12k_19to23_med.updateMask(i_rh98_12k_19to23_med.gte(3).and(
        i_rh98_12k_19to23.select('countf').gte(10))),
    {min: 3, max: 40, palette: rh98_pal},
    'Median RH98 per 12km pixel, 2019 to 2023', 1, opac)
// Standard deviation of RH98 per 12km pixel. Captures variability of GEDI
// measurements and vegetation heterogeneity
Map.addLayer(
    i_rh98_12k_19to23.select('sd').updateMask(i_rh98_12k_19to23_med.gte(3).and(
        i_rh98_12k_19to23.select('countf').gte(10))),
    {min: 2, max: 20, palette: palettes.cmocean.Curl[7]},
    'SD of RH98 per 12km pixel, 2019 to 2023', 0, opac)
// Foliage height diversity of the 1m vertical Plant Area Index (PAI) profile
var i_fhd_12k_19to23 = ee.Image(
    'LARSE/GEDI/GRIDDEDVEG_002/V1/12KM/gediv002_fhd-pai-1m-a0_vf_20190417_20230316')
Map.addLayer(
    i_fhd_12k_19to23.select('median').updateMask(
        i_rh98_12k_19to23_med.gte(3).and(
            i_rh98_12k_19to23.select('countf').gte(10))),
    {min: 1.2, max: 3.2, palette: palettes.matplotlib.viridis[7].reverse()},
    'Median FHD per 12km pixel, 2019 to 2023', 0, opac)
// The height above ground associated with the peak of the vertical Plant Area
// Volume Density (PAVD) profile
var i_pavdmaxh_19to23 = ee.Image(
    'LARSE/GEDI/GRIDDEDVEG_002/V1/12KM/gediv002_pavd-max-h_vf_20190417_20230316')
Map.addLayer(
    i_pavdmaxh_19to23.select('mean').updateMask(
        i_rh98_12k_19to23_med.gte(3).and(
            i_pavdmaxh_19to23.select('countf').gte(10))),
    {min: 0, max: 25, palette: palettes.cmocean.Haline[7].reverse()},
    'Mean Height of Max. PAVD, 2019 to 2023', 0, opac)

// 1km coverage is not great in the low latitudes, try 6 or 12km for a more
// continuous depiction
var i_rh98_6k_19to23 = ee.Image(
    'LARSE/GEDI/GRIDDEDVEG_002/V1/6KM/gediv002_rh-98-a0_vf_20190417_20230316')
// display the median value of GEDI RH98 measurements per 6km pixel, masking out
// values less than 3 consider using a threshold of 100 shots per 6km pixel.
// More shots generally yield more accurate estimates of the aggregation
// statistics (different bands)
var i_rh98_6k_19to23_med = i_rh98_6k_19to23.select('median')
Map.addLayer(
    i_rh98_6k_19to23_med.updateMask(i_rh98_6k_19to23_med.gte(3).and(
        i_rh98_6k_19to23.select('countf').gte(100))),
    {min: 3, max: 40, palette: rh98_pal},
    'Median RH98 per 6km pixel, 2019 to 2023', 0, opac)
在代码编辑器中打开