Google Earth Engine ——数据全解析专辑(世界第 4 版网格化人口 (GPWv4) 修订版30 弧秒1公里格网)人口计数和密度网格的输入单元的平均面积数据集

2024-05-24 08:52:29 浏览数 (1)

The Gridded Population of World Version 4 (GPWv4), Revision 11 models the distribution of global human population for the years 2000, 2005, 2010, 2015, and 2020 on 30 arc-second (approximately 1km) grid cells. Population is distributed to cells using proportional allocation of population from census and administrative units. Population input data are collected at the most detailed spatial resolution available from the results of the 2010 round of censuses, which occurred between 2005 and 2014. The input data are extrapolated to produce population estimates for each modeled year.

The mean area of the input unit(s) from which population count and density grids are created.

代码语言:javascript复制
世界第 4 版网格化人口 (GPWv4) 修订版 11 对 2000、2005、2010、2015 和 2020 年在 30 弧秒(约 1 公里)网格单元上的全球人口分布进行建模。使用人口普查和行政单位的人口比例分配将人口分配到单元格。人口输入数据是在 2010 年普查结果中可用的最详细的空间分辨率收集的,普查结果发生在 2005 年和 2014 年之间。输入数据被外推以产生每个建模年份的人口估计值。

创建人口计数和密度网格的输入单元的平均面积。

Resolution

30 arc seconds

Bands Table

Name

Description

Min*

Max*

mean_administrative_unit_area

Displays a quantitative surface that indicates the size of the input units in square kilometers from which population count and density grids are derived.

0

767642

代码:

代码语言:javascript复制
var dataset = ee.Image("CIESIN/GPWv411/GPW_Mean_Administrative_Unit_Area");
var raster = dataset.select('mean_administrative_unit_area');
var raster_vis = {
  "min": 0.0,
  "palette": [
    "ffffff",
    "747474",
    "656565",
    "3c3c3c",
    "2f2f2f",
    "000000"
  ],
  "max": 40000.0
};
Map.setCenter(-88.6, 26.4, 1);
Map.addLayer(raster, raster_vis, 'mean_administrative_unit_area');

0 人点赞