Google Earth Engine(GEE)——全球免费的高分辨率人口数据集(30米分辨率)

简介: Google Earth Engine(GEE)——全球免费的高分辨率人口数据集(30米分辨率)

与哥伦比亚大学的国际地球科学信息网络中心(CIESIN)合作,Facebook使用最先进的计算机视觉技术,从可公开获取的地图服务中识别建筑物,以创建世界上最准确的人口数据集。你可以在这里阅读关于他们的项目。这些是可在人道主义数据交换中心下载的世界上几乎所有国家的数据集。

总人口密度

男性

女性

育龄妇女(15-49岁)

儿童 (0-5岁)

青年 (15-24岁)

老年人 (60岁以上)

要参考这个数据,请使用以下引文。

Facebook连接性实验室和国际地球科学信息网络中心 - CIESIN - 哥伦比亚大学。2016.高分辨率沉降层(HRSL)。HRSL的源图像版权所有 2016 DigitalGlobe。访问日月年。数据共享。Creative Commons Attribution International。

你可以在这里获得方法。

Facebook Connectivity Lab and Center for International Earth Science Information Network - CIESIN - Columbia University. 2016. High Resolution Settlement Layer (HRSL). Source imagery for HRSL Copyright 2016 DigitalGlobe. Accessed DAY MONTH YEAR. Data shared under: Creative Commons Attribution International.

你可以在这里查看方法:

https://dataforgood.fb.com/docs/methodology-high-resolution-population-density-maps-demographic-estimates/

可以在这里下载数据集:

https://dataforgood.fb.com/docs/high-resolution-population-density-maps-demographic-estimates-documentation/

License: Creative Commons Attribution International

当然我们也可以在GEE中引用此数据:

//我们分别加载不同年龄段的数据
var HRSL_general = ee.ImageCollection("projects/sat-io/open-datasets/hrsl/hrslpop");
var HRSL_men = ee.ImageCollection("projects/sat-io/open-datasets/hrsl/hrsl_men");
var HRSL_women = ee.ImageCollection("projects/sat-io/open-datasets/hrsl/hrsl_women");
var HRSL_youth = ee.ImageCollection("projects/sat-io/open-datasets/hrsl/hrsl_youth");
var HRSL_children_under_five = ee.ImageCollection("projects/sat-io/open-datasets/hrsl/hrsl_children_under_five");
var HRSL_women_reproductive_age = ee.ImageCollection("projects/sat-io/open-datasets/hrsl/hrsl_women_reproductive_age");
var HRSL_elderly_over_sixty = ee.ImageCollection("projects/sat-io/open-datasets/hrsl/hrsl_elderly_over_sixty");
var countries = ee.FeatureCollection("USDOS/LSIB_SIMPLE/2017")
// 加载可视化数包
var palettes = require('users/gena/packages:palettes')
var style = require('users/gena/packages:style')
print('Total images',HRSL_general.size())
//设定地图中心点和缩放
Map.setCenter(28.9853, 41.0703,10)
//画出边界
Map.addLayer(ee.Image().paint(countries,0,1), {color:'00FF00'}, 'Area of Interest')
//用中位数的合成方法完成加载
Map.addLayer(HRSL_general.median(),{palette: palettes.colorbrewer.Reds[9]},'HRSL')
Map.addLayer(HRSL_men.median(),{palette: palettes.colorbrewer.Blues[9]},'HRSL men',false)
Map.addLayer(HRSL_women.median(),{palette: palettes.colorbrewer.PuOr[9]},'HRSL women',false)
Map.addLayer(HRSL_youth.median(),{palette: palettes.colorbrewer.PuBuGn[9]},'HRSL youth',false)
Map.addLayer(HRSL_children_under_five.median(),{palette: palettes.colorbrewer.YlOrRd[9]},'HRSL Children under five',false)
Map.addLayer(HRSL_women_reproductive_age.median(),{palette: palettes.colorbrewer.RdYlBu[9]},'HRSL Women of reproductive age',false)
Map.addLayer(HRSL_elderly_over_sixty.median(),{palette: palettes

 

相关文章
|
8月前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
115 0
|
8月前
GEE——Google dynamic world中在影像导出过程中无法完全导出较大面积影像的解决方案(投影的转换)EPSG:32630和EPSG:4326的区别
GEE——Google dynamic world中在影像导出过程中无法完全导出较大面积影像的解决方案(投影的转换)EPSG:32630和EPSG:4326的区别
156 0
|
8月前
|
API Go 网络架构
GEE Colab——如何从本地/Google云盘/Google Cloud Storage (GCS)上传和下载
GEE Colab——如何从本地/Google云盘/Google Cloud Storage (GCS)上传和下载
393 4
|
8月前
|
机器学习/深度学习 存储 人工智能
GEE Colab——初学者福音快速入门 Google Colab(Colaboratory)
GEE Colab——初学者福音快速入门 Google Colab(Colaboratory)
265 3
|
8月前
|
数据处理
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
129 0
|
8月前
|
数据采集 编解码 人工智能
Google Earth Engine(GEE)——全球每日近地表空气温度(2003-2020年)
Google Earth Engine(GEE)——全球每日近地表空气温度(2003-2020年)
275 0
|
8月前
|
人工智能
Google Earth Engine(GEE)——1984-2019年美国所有土地上的大火烧伤严重程度和范围数据集
Google Earth Engine(GEE)——1984-2019年美国所有土地上的大火烧伤严重程度和范围数据集
86 0
|
8月前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
2825 1
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
8月前
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
175 0
|
8月前
|
编解码
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
94 0

热门文章

最新文章