前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >GEE数据集——全球保护价值的地区数据集

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

作者头像
此星光明
发布2024-05-24 09:11:24
540
发布2024-05-24 09:11:24
举报

具有全球保护价值的地区

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

注释

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

使用说明

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

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

波段

Filename Suffix

Description

minshort_speciestargets

Problem formulation where targets were achieved by minimizing a shortfall

repruns10

The number of representatives that were used to create the ranked layer

biome.id

Species distribution was split by biome, creating separate targets for subpopulations

withPA

Fractions 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!

carbon

Carbon was included in the prioritization and jointly optimized together with the other assets by giving it equal weighting (see manuscript)

water

Water 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
代码语言:javascript
复制
- 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
代码语言:javascript
复制
// ------------------------ //
// 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

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-02-08,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 具有全球保护价值的地区
  • 注释
  • 使用说明
    • Earth Engine Snippet¶
    领券
    问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档