GEE数据集——全球保护价值的地区数据集

本文介绍了NatureMap项目提供的全球价值保护图层,用于确定生物多样性、碳和/或水保护的优先区域,通过人工智能优化,可应用于地球引擎应用程序进行可视化和分析。数据集覆盖2015-2019年,分辨率10公里,支持定制化保护目标设定和区域评估。
摘要由CSDN通过智能技术生成

具有全球保护价值的地区


自然地图项目提供了一系列全球价值保护图层。这些地图是通过共同优化生物多样性和碳和/或水等国家保护目标绘制的。它们以连续的比例描述了对扩大保护工作具有最大潜在价值的土地面积。前言 – 人工智能教程

注释


此处的 "保护 "不应被理解为指令性的(例如,特别是建立保护区),而是指某一区域具有巨大的生物物理潜力,有助于保护生物多样性、碳和水资产。

使用说明


数据集大致涵盖 2015 年至 2019 年,空间分辨率为 10 千米(数据储存库中也有 50 千米版本)。数据集是从源路径复制过来的,以统一社区目录中的路径和命名约定,并用单下划线删除了所有下划线字符(双下划线__)。文件夹名称也用连字符分隔,如 "生物多样性-碳 "而不是 "生物多样性-碳"。

 提供的地图分辨率为 10 公里。地图既可以从空白状态开始(忽略现有保护区),也可以以 2019 年建立的全球保护区网络为基础。
不同的图层可用于获取生物多样性优先事项,或生物多样性、碳和/或水的优先事项。另一个区别是地图是否包含生物群落分层。更多详情请查阅 Jung 等人(2021 年)。
每个图层的等级都针对特定区域,可通过简单的子集提取汇总统计数据。例如 要获得生物多样性和碳含量最高的 30% 的土地面积,需要从相应的排名图层中创建一个掩码,将所有低于 30 值的区域包括在内。

波段

Filename SuffixDescription
minshort_speciestargetsProblem formulation where targets were achieved by minimizing a shortfall
repruns10The number of representatives that were used to create the ranked layer
biome.idSpecies distribution was split by biome, creating separate targets for subpopulations
withPAFractions of current protected areas (Date: WDPA 2019) were locked in as a baseline and starting budget. Approximately 15% of the globe. Note that not entire grid cells, but fractions were locked in and built upon!
carbonCarbon was included in the prioritization and jointly optimized together with the other assets by giving it equal weighting (see manuscript)
waterWater was included in the prioritization and jointly optimized together with the other assets by giving it equal weighting (see manuscript)

The layers can be navigated openly through a dedicated Earth engine app (conservation importance).Coarser grained versions at 50km are also available see Zenodo data repository but not uploaded to Google Earth Engine.

这些图层可通过专用的地球引擎应用程序(保护重要性)进行公开导航。50 公里的粗粒度版本也可在 Zenodo 数据库中找到,但未上传到谷歌地球引擎。

Citation
- Jung, M., Arnell, A., de Lamo, X. et al. Areas of global importance for conserving terrestrial biodiversity, carbon and water. Nat Ecol Evol 5, 1499–1509 (2021). https://doi.org/10.1038/s41559-021-01528-7

- Jung, M., Arnell, A., De Lamo, X., García-Rangelm, S., Lewis, M., Mark, J., Merow, C., Miles, L., Ondo, I., Pironon, S., Ravilious, C., Rivers, M., Schepashenko, D., Tallowin, O., van Soesbergen, A., Govaerts, R., Boyle, B. L., Enquist, B. J., Feng, X., … Visconti, P. (2021). Areas of global importance for conserving terrestrial biodiversity, carbon, and water (1.0) [Data set]. Zenodo. https://doi.org/10.5281/zenodo.5006332

 

Earth Engine Snippet

// ------------------------ //
// Import the layers
// -- Biodiv --
var biodiv_biome = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity/minshort_speciestargets_biome_esh10km_repruns10_ranked");
var biodiv_pa_biome = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity/minshort_speciestargets_biome_withPA_esh10km_repruns10_ranked");
var biodiv = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity/minshort_speciestargets_esh10km_repruns10_ranked");
var biodiv_pa = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity/minshort_speciestargetswithPA_esh10km_repruns10_ranked");
// -- Biodiv Carbon--
var biodivcarbon_biome = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity-carbon/minshort_speciestargets_biome_carbon_esh10km_repruns10_ranked");
var biodivcarbon_pa_biome = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity-carbon/minshort_speciestargets_biome_withPA_carbon_esh10km_repruns10_ranked");
var biodivcarbon = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity-carbon/minshort_speciestargets_carbon_esh10km_repruns10_ranked");
var biodivcarbon_pa = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity-carbon/minshort_speciestargetswithPA_carbon_esh10km_repruns10_ranked");
// -- Biodiv water--
var biodivwater_biome = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity-water/minshort_speciestargets_biome_water_esh10km_repruns10_ranked");
var biodivwater_pa_biome = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity-water/minshort_speciestargets_biome_withPA_water_esh10km_repruns10_ranked");
var biodivwater = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity-water/minshort_speciestargets_water_esh10km_repruns10_ranked");
var biodivwater_pa = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity-water/minshort_speciestargetswithPA_water_esh10km_repruns10_ranked");
// -- Biodiv carbonwater--
var biodivcarbonwater_biome = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity-carbon-water/minshort_speciestargets_biome_carbon_water_esh10km_repruns10_ranked");
var biodivcarbonwater_pa_biome = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity-carbon-water/minshort_speciestargets_biome_withPA_carbon_water_esh10km_repruns10_ranked");
var biodivcarbonwater = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity-carbon-water/minshort_speciestargets_carbon_water_esh10km_repruns10_ranked");
var biodivcarbonwater_pa = ee.Image("projects/sat-io/open-datasets/naturemap/biodiversity-carbon-water/minshort_speciestargetswithPA_carbon_water_esh10km_repruns10_ranked");
// ------------------------ //

// Define SLD style of discrete intervals to apply to the image.
var default_colours = {min: 1, max: 100, palette: ['7a0403','c92903','f56918','fbb938','c9ef34','74fe5d','1be5b5','35abf8','4662d8','30123b']};

// Default entries
var what = "Biodiversity, carbon and water";

// Visualize
Map.addLayer(biodivcarbon, default_colours, "Biodiversity and Carbon", true);

// The layers are area-consistent, thus through subsetting it becomes possible to identify for example
// the 10% of land-areas with the greatest conservation value for biodiversity

var bio30x30 = biodiv.expression("b(0) <= 10");
Map.addLayer(bio30x30.mask(bio30x30.eq(1)), {'palette':['red']}, "Top 10% value for biodiversity only", false);

Sample code: https://code.earthengine.google.com/?scriptPath=users/sat-io/awesome-gee-catalog-examples:/biodiversity-ecosystems-habitat/GLOBAL-CONSERVATION-IMP-BIODIV-CARBON-WATER

Enter license information

The datasets are provided under a CC-BY-SA 4.0

Additional resources

You can explore the dataset layers using this app

Keywords: biodiversity, conservation importance, priorities, carbon, water

Provided by: IIASA

Curated in GEE by: IISA, Samapriya Roy

Last updated in GEE: 2023-10-31

 

  • 37
    点赞
  • 49
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

此星光明

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值