Google Earth Engine——世界人口数据集描述了2010年、2015年和其他年份居住在每个网格单元的估计人数。

简介: Google Earth Engine——世界人口数据集描述了2010年、2015年和其他年份居住在每个网格单元的估计人数。

WorldPop Project Population Data: Estimated Residential Population per 100x100m Grid Square [deprecated]

High-resolution, contemporary data on human population distributions are a prerequisite for the accurate measurement of the impacts of population growth, for monitoring changes, and for planning interventions. The WorldPop project aims to meet these needs through the provision of detailed and open access population distribution datasets built using transparent and peer-reviewed approaches.

Full details on the methods and datasets used in constructing the data, along with open access publications, are provided on the WorldPop website. In brief, recent census-based population counts matched to their associated administrative units are disaggregated to ≈100x100m grid cells through machine learning approaches that exploit the relationships between population densities and a range of geospatial covariate layers. The datasets depict estimated number of people residing in each grid cell in 2010, 2015, and other years.

Further WorldPop gridded datasets on population age structures, poverty, urban growth, and population dynamics are freely available on the WorldPop website. WorldPop represents a collaboration between researchers at the University of Southampton, Universite Libre de Bruxelles, and University of Louisville. The project is principally funded by the Bill and Melinda Gates Foundation.


关于人类人口分布的高分辨率和当代数据是准确测量人口增长的影响、监测变化和规划干预措施的先决条件。世界人口项目旨在通过提供使用透明和同行评议的方法建立的详细和开放的人口分布数据集来满足这些需求。

关于构建数据的方法和数据集的全部细节,以及公开访问的出版物,都在WorldPop网站上提供。简而言之,通过机器学习方法,利用人口密度和一系列地理空间协变量层之间的关系,将最近基于人口普查的人口计数与相关的行政单位相匹配,分解到≈100x100米的网格单元。这些数据集描述了2010年、2015年和其他年份居住在每个网格单元的估计人数。

更多关于人口年龄结构、贫困、城市增长和人口动态的WorldPop网格化数据集可在WorldPop网站上免费获取。WorldPop是南安普顿大学、布鲁塞尔自由大学和路易斯维尔大学的研究人员之间的合作。该项目主要由比尔和梅林达-盖茨基金会资助。

Dataset Availability

2010-01-01T00:00:00 - 2016-01-01T00:00:00

Dataset Provider

WorldPop

Collection Snippet

ee.ImageCollection("WorldPop/POP")

Resolution

92.77 meters

Bands Table

Name Description Min* Max*
population Estimated number of people residing in each grid cell 0 21171

* = Values are estimated

影像属性:

Name Type Description
UNadj String Unadjusted: 'yes' or 'no'
country String Country
year Double Year


引用:

Please cite the WorldPop website as the source: [www.worldpop.org] (www.worldpop.org).

Americas population data: Alessandro Sorichetta, Graeme M. Hornby, Forrest R. Stevens, Andrea E. Gaughan, Catherine Linard, Andrew J. Tatem, 2015, High-resolution gridded population datasets for Latin America and the Caribbean in 2010, 2015, and 2020, Scientific Data, [doi:10.1038/sdata.2015.45] (High-resolution gridded population datasets for Latin America and the Caribbean in 2010, 2015, and 2020 | Scientific Data)

Africa population count data: Linard, C., Gilbert, M., Snow, R.W., Noor, A.M. and Tatem, A.J., 2012, Population distribution, settlement patterns and accessibility across Africa in 2010, PLoS ONE, 7(2): e31743.

Asia population count data: Gaughan AE, Stevens FR, Linard C, Jia P and Tatem AJ, 2013, High resolution population distribution maps for Southeast Asia in 2010 and 2015, PLoS ONE, 8(2): e55882.

代码:

var dataset = ee.ImageCollection('WorldPop/POP');
var population = dataset.select('population');
var populationVis = {
  min: 0.0,
  max: 50.0,
  palette: ['24126c', '1fff4f', 'd4ff50'],
};
Map.setCenter(113.643, 34.769, 7);
Map.addLayer(population, populationVis, 'Population');


相关文章
|
7月前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
2691 1
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
7月前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
101 0
|
7月前
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
251 0
|
7月前
|
存储 编解码 数据可视化
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
【2月更文挑战第14天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,按照给定的地表分类数据,对每一种不同的地物类型,分别加以全球范围内随机抽样点自动批量选取的方法~
662 1
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
|
7月前
|
数据处理
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
124 0
|
7月前
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
165 0
|
7月前
|
编解码
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
88 0
|
7月前
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
291 0
|
7月前
|
传感器 编解码 数据处理
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
148 0
|
7月前
Google Earth Engine(GEE)——当加载图表的时候出现错误No features contain non-null values of “system:time_start“.
Google Earth Engine(GEE)——当加载图表的时候出现错误No features contain non-null values of “system:time_start“.
136 0