前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Google Earth Engine ——数据全解析专辑(Global Map of Oil Palm Plantations)全球油棕种植园数据集!

Google Earth Engine ——数据全解析专辑(Global Map of Oil Palm Plantations)全球油棕种植园数据集!

作者头像
此星光明
发布2024-02-02 08:52:51
1120
发布2024-02-02 08:52:51
举报

The dataset is a 10m global industrial and smallholder oil palm map for 2019. It covers areas where oil palm plantations were detected. The classified images are the output of a convolutional neural network based on Sentinel-1 and Sentinel-2 half-year composites.

代码语言:javascript
复制
该数据集是 2019 年的 1000 万全球工业和小农油棕地图。它涵盖了检测到油棕种植园的地区。分类图像是基于 Sentinel-1 和 Sentinel-2 半年合成的卷积神经网络的输出。

Dataset Availability

2019-01-01T00:00:00 - 2019-12-31T00:00:00

Dataset Provider

Biopama programme

Collection Snippet

ee.ImageCollection("BIOPAMA/GlobalOilPalm/v1")

Bands Table

Name

Description

Resolution

classification

Oil Palm class description

10 meters

Class Table: classification

Value

Color

Color Value

Description

1

#ff0000

Industrial closed-canopy oil palm plantations

2

#ef00ff

Smallholder closed-canopy oil palm plantations

3

#696969

Other land covers and/or uses that are not closed-canopy oil palm.

引用:

Adrià, Descals, Serge, Wich, Erik, Meijaard, David, Gaveau, Stephen, Peedell, & Zoltan, Szantoi. (2021, January 27). High resolution global industrial and smallholder oil palm map for 2019 (Version v1). Zenodo. doi:10.5281/zenodo.4473715

代码:

代码语言:javascript
复制
//导入影像几何
var dataset = ee.ImageCollection('BIOPAMA/GlobalOilPalm/v1');

// 选择分类波段
var opClass = dataset.select('classification');

// 合成单独影像
var mosaic = opClass.mosaic();

// 定义图像参数
var classificationVis = {
  min: 1,
  max: 3,
  palette: ['ff0000','ef00ff', '696969']
};

// 定义一个条件来筛选地区
var mask = mosaic.neq(3);
mask = mask.where(mask.eq(0), 0.6);

//展示地图
Map.addLayer(mosaic.updateMask(mask),
             classificationVis, 'Oil palm plantation type', true);
Map.setCenter(-3.0175, 5.2745,12);
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

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

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

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

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档