AI-generated Key Takeaways
-
The Gridded Population of the World Version 4 (GPWv4), Revision 11 dataset models the distribution of global human population for the years 2000, 2005, 2010, 2015, and 2020.
-
This dataset provides estimates of land area, excluding permanent ice and water, in square kilometers per pixel at a resolution of 927.67 meters.
-
Population data is distributed to grid cells using proportional allocation from census and administrative units and extrapolated to produce estimates for each modeled year.
-
The dataset is provided by NASA SEDAC at the Center for International Earth Science Information Network and is licensed under CC-BY-4.0.
-
This land area dataset was specifically used to calculate the GPWv4 population density datasets.

- Dataset Availability
- 2000-01-01T00:00:00Z–2020-01-01T00:00:00Z
- Dataset Provider
- NASA SEDAC at the Center for International Earth Science Information Network
- Tags
Description
This dataset contains the estimate of the surface area of land in square kilometers per pixel, excluding permanent ice and water, within each pixel, and was used to calculate the GPW v4.11 population density datasets.
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 1 km) 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.
Bands
Pixel Size
927.67 meters
Bands
Name | Min | Max | Pixel Size | Description |
---|---|---|---|---|
land_area |
0* | 0.86* | meters | Estimates for land area within each 30-arc second pixel. |
Terms of Use
Terms of Use
Citations
Center for International Earth Science Information Network - CIESIN - Columbia University. 2018. Gridded Population of the World, Version 4 (GPWv4): Land Area, Revision 11. Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC). https://doi.org/10.7927/H4Z60M4Z. Accessed DAY MONTH YEAR.
DOIs
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.ImageCollection('CIESIN/GPWv411/GPW_Land_Area'); var raster = dataset.select('land_area'); var raster_vis = { 'min': 0.0, 'palette': [ 'ecefb7', '745638' ], 'max': 0.86 }; Map.setCenter(26.4, 19.81, 1); Map.addLayer(raster, raster_vis, 'land_area');