Google Earth Engine(GEE)——全球建筑物矢量图免费下载Open Buildings V1 Polygons

简介: Google Earth Engine(GEE)——全球建筑物矢量图免费下载Open Buildings V1 Polygons

   之前我们已经介绍过了关于微软全球建筑物提取的矢量图

全球建筑物提取数据集(免费下载):微软/GlobalMLBuildingFootprints_此星光明2021年博客之星云计算Top3的博客-CSDN博客_建筑物提取数据集

数据介绍:

这个大规模的开放数据集包括从高分辨率的50厘米卫星图像中得出的建筑物轮廓。它包含了5.16亿个建筑物的检测结果,覆盖了1940万平方公里的区域(占非洲大陆的64%)。

对于这个数据集中的每一栋建筑,我们都包括描述其在地面上的足迹的多边形、表明我们对这是一栋建筑的确定程度的信心分数,以及与建筑中心相对应的Plus代码。没有关于建筑物类型、街道地址或除几何形状以外的任何细节的信息。

建筑物足迹对一系列重要的应用很有用:从人口估计、城市规划和人道主义反应到环境和气候科学。该项目设在加纳,目前的重点是非洲大陆。

推断工作是在2021年4月期间进行的。

时间:

2021-04-30T00:00:00 - 2021-04-30T00:00:00

Dataset Provider

Google Research - Open Buildings

Collection Snippet

ee.FeatureCollection("GOOGLE/Research/open-buildings/v1/polygons")

代码:

image.png

// Visualization of GOOGLE/Research/open-buildings/v1/polygons.
var t = ee.FeatureCollection('GOOGLE/Research/open-buildings/v1/polygons');
var t_060_065 = t.filter('confidence >= 0.60 && confidence < 0.65');
var t_065_070 = t.filter('confidence >= 0.65 && confidence < 0.70');
var t_gte_070 = t.filter('confidence >= 0.70');
Map.addLayer(t_060_065, {color: 'FF0000'}, 'Buildings confidence [0.60; 0.65)');
Map.addLayer(t_065_070, {color: 'FFFF00'}, 'Buildings confidence [0.65; 0.70)');
Map.addLayer(t_gte_070, {color: '00FF00'}, 'Buildings confidence >= 0.70');
Map.setCenter(3.389, 6.492, 17);  // Lagos, Nigeria
Map.setOptions('SATELLITE');

 

image.png

image.png

FeatureView Snippet(快速加载矢量的最新方法,没有瓦片感)

ui.Map.FeatureViewLayer("GOOGLE/Research/open-buildings/v1/polygons_FeatureView")

代码:

 

var fvLayer = ui.Map.FeatureViewLayer(
  'GOOGLE/Research/open-buildings/v1/polygons_FeatureView');
var visParams = {
  rules: [
    {
      filter: ee.Filter.expression('confidence >= 0.60 && confidence < 0.65'),
      color: 'FF0000'
    },
    {
      filter: ee.Filter.expression('confidence >= 0.65 && confidence < 0.70'),
      color: 'FFFF00'
    },
    {
      filter: ee.Filter.expression('confidence >= 0.70'),
      color: '00FF00'
    },
  ]
};
fvLayer.setVisParams(visParams);
fvLayer.setName('Buildings');
Map.setCenter(3.389, 6.492, 17);  // Lagos, Nigeria
Map.add(fvLayer);
Map.setOptions('SATELLITE');

FeatureView ID

GOOGLE/Research/open-buildings/v1/polygons_FeatureView

Ingestion parameters

Thinning option Value
Max features per tile 12000
Thinning strategy Higher density

sourceVersion

2021-07-20T21:22:23.620127Z

波段:

Name Type Description
area_in_meters Double Area in square meters of the polygon.
confidence Double Confidence score [0.5;1.0] assigned by the model.
full_plus_code String The full [Plus Code](https://plus.codes/) at the building polygon centroid.
longitude_latitude undefined Centroid of the polygon.

数据引用:

W. Sirko, S. Kashubin, M. Ritter, A. Annkah, Y.S.E. Bouchareb, Y. Dauphin, D. Keysers, M. Neumann, M. Cisse, J.A. Quinn. Continental-scale building detection from high resolution satellite imagery. arXiv:2107.12283, 2021.


相关文章
|
2月前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
505 0
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
2月前
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
104 0
|
2月前
GEE——Google dynamic world中在影像导出过程中无法完全导出较大面积影像的解决方案(投影的转换)EPSG:32630和EPSG:4326的区别
GEE——Google dynamic world中在影像导出过程中无法完全导出较大面积影像的解决方案(投影的转换)EPSG:32630和EPSG:4326的区别
41 0
|
1月前
|
存储 编解码 数据可视化
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
【2月更文挑战第14天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,按照给定的地表分类数据,对每一种不同的地物类型,分别加以全球范围内随机抽样点自动批量选取的方法~
258 0
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
|
2月前
|
API Go 网络架构
GEE Colab——如何从本地/Google云盘/Google Cloud Storage (GCS)上传和下载
GEE Colab——如何从本地/Google云盘/Google Cloud Storage (GCS)上传和下载
87 4
|
2月前
|
机器学习/深度学习 存储 人工智能
GEE Colab——初学者福音快速入门 Google Colab(Colaboratory)
GEE Colab——初学者福音快速入门 Google Colab(Colaboratory)
72 3
|
2月前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
24 0
|
2月前
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
43 0
|
2月前
|
编解码
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
21 0
|
2月前
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
43 0

热门文章

最新文章