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

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.

该数据集是 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

NameDescriptionResolution
classificationOil Palm class description10 meters

Class Table: classification

ValueColorColor ValueDescription
1#ff0000Industrial closed-canopy oil palm plantations
2#ef00ffSmallholder closed-canopy oil palm plantations
3#696969Other 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 

代码:

//导入影像几何
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);

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

此星光明

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

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

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

打赏作者

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

抵扣说明:

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

余额充值