Google Earth Engine——BigEarthNet是一个新的耕地Sentinel-2数据,由590,326个Sentinel-2图像斑块组成的土地覆盖高清数据集

BigEarthNet is a new large-scale Sentinel-2 benchmark archive, consisting of 590,326 Sentinel-2 image patches. To construct BigEarthNet, 125 Sentinel-2 tiles acquired between June 2017 and May 2018 over the 10 countries (Austria, Belgium, Finland, Ireland, Kosovo, Lithuania, Luxembourg, Portugal, Serbia, Switzerland) of Europe were initially selected. All the tiles were atmospherically corrected by the Sentinel-2 Level 2A product generation and formatting tool (sen2cor). Then, they were divided into 590,326 non-overlapping image patches. Each image patch was annotated by the multiple land-cover classes (i.e., multi-labels) that were provided from the CORINE Land Cover database of the year 2018 (CLC 2018).

BigEarthNet是一个新的大规模Sentinel-2基准档案,由590,326个Sentinel-2图像斑块组成。为了构建BigEarthNet,最初选择了2017年6月至2018年5月期间在欧洲10个国家(奥地利、比利时、芬兰、爱尔兰、科索沃、立陶宛、卢森堡、葡萄牙、塞尔维亚、瑞士)获得的125张Sentinel-2瓦片。所有的瓦片都通过Sentinel-2 2A级产品生成和格式化工具(sen2cor)进行了大气校正。然后,它们被划分为590,326个不重叠的图像斑块。每个图像斑块都由2018年CORINE土地覆盖数据库(CLC 2018)提供的多个土地覆盖类别(即多标签)进行注释。

Dataset Availability

2017-06-01T00:00:00 - 2018-05-31T00:00:00

Dataset Provider

BigEarthNet

Collection Snippet

ee.ImageCollection("TUBerlin/BigEarthNet/v1")

Bands Table

NameDescriptionResolutionWavelengthScale
B1Aerosols60 meters443.9nm (S2A) / 442.3nm (S2B)0.0001
B2Blue10 meters496.6nm (S2A) / 492.1nm (S2B)0.0001
B3Green10 meters560nm (S2A) / 559nm (S2B)0.0001
B4Red10 meters664.5nm (S2A) / 665nm (S2B)0.0001
B5Red Edge 120 meters703.9nm (S2A) / 703.8nm (S2B)0.0001
B6Red Edge 220 meters740.2nm (S2A) / 739.1nm (S2B)0.0001
B7Red Edge 320 meters782.5nm (S2A) / 779.7nm (S2B)0.0001
B8NIR10 meters835.1nm (S2A) / 833nm (S2B)0.0001
B9Water vapor60 meters945nm (S2A) / 943.2nm (S2B)0.0001
B10Cirrus60 meters1373.5nm (S2A) / 1376.9nm (S2B)0.0001
B11SWIR 120 meters1613.7nm (S2A) / 1610.4nm (S2B)0.0001
B12SWIR 220 meters2202.4nm (S2A) / 2185.7nm (S2B)0.0001
B8ARed Edge 420 meters864.8nm (S2A) / 864nm (S2B)0.0001

影像属性:

NameTypeDescription
labelsList of StringsList of landcover types found in this image
sourceStringProduct ID of the corresponding Sentinel-2 1C image
tile_xDoubleX coordinate of tile in source image
tile_yDoubleY coordinate of tile in source image

使用说明:The BigEarthNet Archive is licensed under the Community Data License Agreement – Permissive, Version 1.0. For more information, please refer to the (http://bigearth.net/downloads/documents/License.pdf).

引用:

G. Sumbul, M. Charfuelan, B. Demir, V. Markl, BigEarthNet: A Large-Scale Benchmark Archive for Remote Sensing Image Understanding, IEEE International Conference on Geoscience and Remote Sensing Symposium, pp. 5901-5904, Yokohama, Japan, 2019.

代码:

var geometry = ee.Geometry.Polygon(
    [[
      [16.656886757418057, 48.27086673747943],
      [16.656886757418057, 48.21359065567954],
      [16.733276070162198, 48.21359065567954],
      [16.733276070162198, 48.27086673747943]
    ]],
    null, false);

var ic = ee.ImageCollection('TUBerlin/BigEarthNet/v1');

var filtered = ic.filterBounds(geometry);

var tiles = filtered.map(function(i) {
  var labels = ee.List(i.get('labels'));

  var urban = labels.indexOf('Discontinuous urban fabric').gte(0);
  var highlight_urban = ee.Image(urban).toInt().multiply(1000);

  return i.addBands(
      {srcImg: i.select(['B4']).add(highlight_urban), overwrite: true});
});

var image = tiles.mosaic().clip(geometry);

var visParams = {bands: ['B4', 'B3', 'B2'], min: 0, max: 3000};

Map.addLayer(image, visParams);
Map.centerObject(image, 13);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

此星光明

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

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

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

打赏作者

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

抵扣说明:

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

余额充值