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

简介: 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

Name Description Resolution Wavelength Scale
B1 Aerosols 60 meters 443.9nm (S2A) / 442.3nm (S2B) 0.0001
B2 Blue 10 meters 496.6nm (S2A) / 492.1nm (S2B) 0.0001
B3 Green 10 meters 560nm (S2A) / 559nm (S2B) 0.0001
B4 Red 10 meters 664.5nm (S2A) / 665nm (S2B) 0.0001
B5 Red Edge 1 20 meters 703.9nm (S2A) / 703.8nm (S2B) 0.0001
B6 Red Edge 2 20 meters 740.2nm (S2A) / 739.1nm (S2B) 0.0001
B7 Red Edge 3 20 meters 782.5nm (S2A) / 779.7nm (S2B) 0.0001
B8 NIR 10 meters 835.1nm (S2A) / 833nm (S2B) 0.0001
B9 Water vapor 60 meters 945nm (S2A) / 943.2nm (S2B) 0.0001
B10 Cirrus 60 meters 1373.5nm (S2A) / 1376.9nm (S2B) 0.0001
B11 SWIR 1 20 meters 1613.7nm (S2A) / 1610.4nm (S2B) 0.0001
B12 SWIR 2 20 meters 2202.4nm (S2A) / 2185.7nm (S2B) 0.0001
B8A Red Edge 4 20 meters 864.8nm (S2A) / 864nm (S2B) 0.0001

影像属性:

Name Type Description
labels List of Strings List of landcover types found in this image
source String Product ID of the corresponding Sentinel-2 1C image
tile_x Double X coordinate of tile in source image
tile_y Double Y 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);


相关文章
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
3743 1
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
426 0
|
存储 编解码 数据可视化
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
【2月更文挑战第14天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,按照给定的地表分类数据,对每一种不同的地物类型,分别加以全球范围内随机抽样点自动批量选取的方法~
979 1
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
|
数据可视化 数据挖掘 数据建模
R语言指数平滑法holt-winters分析谷歌Google Analytics博客用户访问时间序列数据
R语言指数平滑法holt-winters分析谷歌Google Analytics博客用户访问时间序列数据
|
数据处理
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
194 0
|
11月前
|
Java UED Sentinel
微服务守护神:Spring Cloud Sentinel,让你的系统在流量洪峰中稳如磐石!
【8月更文挑战第29天】Spring Cloud Sentinel结合了阿里巴巴Sentinel的流控、降级、熔断和热点规则等特性,为微服务架构下的应用提供了一套完整的流量控制解决方案。它能够有效应对突发流量,保护服务稳定性,避免雪崩效应,确保系统在高并发下健康运行。通过简单的配置和注解即可实现高效流量控制,适用于高并发场景、依赖服务不稳定及资源保护等多种情况,显著提升系统健壮性和用户体验。
203 1
|
监控 Java Sentinel
使用Sentinel进行服务调用的熔断和限流管理(SpringCloud2023实战)
Sentinel是面向分布式、多语言异构化服务架构的流量治理组件,主要以流量为切入点,从流量路由、流量控制、流量整形、熔断降级、系统自适应过载保护、热点流量防护等多个维度来帮助开发者保障微服务的稳定性。
323 3
|
9月前
|
负载均衡 算法 Java
蚂蚁面试:Nacos、Sentinel了解吗?Springcloud 核心底层原理,你知道多少?
40岁老架构师尼恩分享了关于SpringCloud核心组件的底层原理,特别是针对蚂蚁集团面试中常见的面试题进行了详细解析。内容涵盖了Nacos注册中心的AP/CP模式、Distro和Raft分布式协议、Sentinel的高可用组件、负载均衡组件的实现原理等。尼恩强调了系统化学习的重要性,推荐了《尼恩Java面试宝典PDF》等资料,帮助读者更好地准备面试,提高技术实力,最终实现“offer自由”。更多技术资料和指导,可关注公众号【技术自由圈】获取。
蚂蚁面试:Nacos、Sentinel了解吗?Springcloud 核心底层原理,你知道多少?
|
10月前
|
监控 Java Nacos
SpringCloud基础5——微服务保护、Sentinel
sentinel、雪崩问题、流量控制、隔离和降级、授权规则、规则持久化
SpringCloud基础5——微服务保护、Sentinel
|
监控 Java 应用服务中间件
SpringCloud面试之流量控制组件Sentinel详解
SpringCloud面试之流量控制组件Sentinel详解
490 0

热门文章

最新文章