Google Earth Engine(GEE)——欧空局WorldCover 10 m分辨率土地利用/土地覆盖数据集 2020 V100

欧空局WorldCover 10 m 2020 V100输入质量¶。
ESA WorldCover 10 m 2020 V100产品是以EPSG:4326投影(地理经纬度CRS)的云优化GeoTIFFs(COG)形式,以3x3度瓦片形式交付。有2651个瓦片,关于访问这个数据集的更多信息可以在这里找到。目前的收集只集中在输入质量层,地图层在谷歌地球引擎中可作为一个图像集。DATA | WORLDCOVER

输入质量层是一个显示地球观测(EO)输入数据质量的每个像素质量指标。该层是一个3波段的GeoTIFF,有

- 波段1:分类工作流程中使用的Sentinel-1 GAMMA0观测值的数量

- 波段2:分类工作流程中使用的哨兵-2 L2A观测值的数量

- 频段3 在分类工作流程中丢弃的无效S2观测值的百分比(0-100)(经过云和云影过滤)。

结合频段2和频段3,可以得出分类工作流程中使用的有效Sentinel-2 L2A观测值的总绝对数。

许可:

The ESA WorldCover product is provided free of charge, without restriction of use. For the full license information see the Creative Commons Attribution 4.0 International License.

Publications, models and data products that make use of these datasets must include proper acknowledgement, including citing the datasets and the journal article as in the following citation.

数据引用

Zanaga, D., Van De Kerchove, R., De Keersmaecker, W., Souverijns, N., Brockmann, C., Quast, R., Wevers, J., Grosu, A.,
Paccini, A., Vergnaud, S., Cartus, O., Santoro, M., Fritz, S., Georgieva, I., Lesiv, M., Carter, S., Herold, M., Li,
Linlin, Tsendbazar, N.E., Ramoino, F., Arino, O., 2021. ESA WorldCover 10 m 2020 v100.
https://doi.org/10.5281/zenodo.5571936

代码:

var iq = ee.ImageCollection("projects/sat-io/open-datasets/ESA_WorldCover_Input_Quality");

/*
ESA 10m World Cover Input Quality Dataset

Per pixel quality indicator showing the quality of the Earth Observation (EO) input data. The layer is a
3 band GeoTIFF with
• Band 1: Number of Sentinel-1 GAMMA0 observations used in the classification workflow
• Band 2: Number of Sentinel-2 L2A observations used in the classification workflow
• Band 3 Percentage (0-100) of invalid S2 observations discarded in the classification workflow
(after cloud and cloud shadow filtering).
Combining Band 2 and Band 3 yields the total absolute number of valid Sentinel-2 L2A observations
used in the classification workflow.
*/

//Count collection objects
print('ESA 10m Input Quality Collection size',iq.size())

//Import palette
var palettes = require('users/gena/packages:palettes')
var vis_b1 = {"bands":["b1"],"min":0,"max":174,palette: palettes.cmocean.Deep[7]};
var vis_b2 = {"bands":["b2"],"min":0,"max":174,palette: palettes.cmocean.Haline[7]};
var vis_b3 = {"bands":["b3"],"min":0,"max":100,palette: palettes.cmocean.Oxy[7]};
var vis_b23 = {"bands":["b23"],"min":0,"max":140,palette: palettes.cmocean.Algae[7]};


var b1_mosaic = iq.select(['b2']).mosaic()
var b3_mosaic = iq.select(['b3']).mosaic()
var combined_mosaic = b1_mosaic.multiply(ee.Image.constant(100).subtract(b3_mosaic)).divide(100).round().rename('b23')

Map.addLayer(iq.mosaic(),vis_b1,'Band 1 Input Quality: Number of Sentinel-1 GAMMA0 observations')
Map.addLayer(iq.mosaic(),vis_b2,'Band 2 Input Quality: Number of Sentinel-2 L2A observations',false)
Map.addLayer(iq.mosaic(),vis_b3,'Band 3 Input Quality: Percentage (0-100) of invalid S2 observations discarded')
Map.addLayer(combined_mosaic,vis_b23,'Band 2 combined with Band 3 Input Quality: total absolute number of valid Sentinel-2 L2A observations',false)

代码链接: 

https://code.earthengine.google.com/?scriptPath=users/sat-io/awesome-gee-catalog-examples:global-landuse-landcover/ESA-10m-WORLDCOVER-IQ

Data access page: ESA_WorldCover_v100

Provided by: Zanaga et al, ESA WorldCover consortium

Curated in GEE by: Samapriya Roy

Keywords: : land, cover, land use, land cover, lulc, 10m, global, world, sentinel-1, sentinel 2, ESA

Last updated: 2021-11-01

 

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

此星光明

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

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

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

打赏作者

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

抵扣说明:

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

余额充值