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

NameDescriptionMin*Max*
populationEstimated number of people residing in each grid cell021171

* = Values are estimated

影像属性:

NameTypeDescription
UNadjStringUnadjusted: 'yes' or 'no'
countryStringCountry
yearDoubleYear

引用:

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');

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
好的,以下是可以用来提取20102015和2019山西省县区绿化面积的Google Earth Engine代码: ```javascript // Load the boundary of Shanxi province var shanxi = ee.FeatureCollection("users/yourusername/shanxi_boundary"); // Load the county boundaries of Shanxi province var counties = ee.FeatureCollection("users/yourusername/shanxi_counties"); // Load the MODIS Land Cover dataset var modis_lc = ee.ImageCollection('MODIS/006/MCD12Q1'); // Filter MODIS Land Cover to years 2010, 2015, and 2019 var lc_2010 = modis_lc.filter(ee.Filter.calendarRange(2010,2010,'year')).select('LC_Type1'); var lc_2015 = modis_lc.filter(ee.Filter.calendarRange(2015,2015,'year')).select('LC_Type1'); var lc_2019 = modis_lc.filter(ee.Filter.calendarRange(2019,2019,'year')).select('LC_Type1'); // Define a function to calculate the area of each land cover type within each county var calculate_area = function(image){ // Calculate the area of each land cover type within each county var area_by_county = image.addBands(ee.Image.pixelArea()) .reduceRegions({ collection: counties, reducer: ee.Reducer.sum().group(1), scale: 500, }); // Flatten the output and add the year as a property return area_by_county.flatten().set('year', image.date().format('yyyy')); }; // Apply the calculate_area function to each MODIS Land Cover image var area_2010 = calculate_area(lc_2010); var area_2015 = calculate_area(lc_2015); var area_2019 = calculate_area(lc_2019); // Merge the area calculations for all years into a single FeatureCollection var area_all_years = ee.FeatureCollection([area_2010, area_2015, area_2019]); // Filter the FeatureCollection to only include rows with valid area values var area_valid = area_all_years.filter(ee.Filter.notNull(['sum'])); // Join the area calculations with the county boundaries var joined = counties.filterBounds(shanxi).map(function(f){ return f.setMulti(area_valid.filterBounds(f.geometry()).first().toDictionary()); }); // Display the results Map.addLayer(joined, {}, 'County Boundaries'); Map.addLayer(joined.select(['sum', 'year']), {min: 0, max: 1000000}, 'Green Area'); ``` 在这段代码中,我们首先加载了山西省的边界和县区边界的FeatureCollection。然后,我们加载了MODIS Land Cover数据集,并将其筛选为20102015和2019的图像。接下来,我们定义了一个calculate_area函数,用于计算每个县区内每种土地覆盖类型的面积。我们将该函数应用于每个MODIS Land Cover图像,并将结果合并为一个FeatureCollection。最后,我们将结果与县区边界进行联接,并将其在地图上可视化。 请注意,您需要将代码中的“yourusername”替换为您的Google Earth Engine用户名。此外,您还需要确保已经在Earth Engine中具有访问MODIS Land Cover、县区边界和山西省边界的权限。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

此星光明

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

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

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

打赏作者

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

抵扣说明:

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

余额充值