
- Dataset Availability
- 1975-01-01T00:00:00Z–2030-12-31T00:00:00
- Dataset Provider
- EC JRC
- Earth Engine Snippet
-
ee.ImageCollection("JRC/GHSL/P2023A/GHS_POP")
- Tags
Description
The GHS-POP R2023A dataset depicts the distribution of residential population, expressed as the number of people per cell. Residential population estimates between 1975 and 2020 in 5-year intervals and projections to 2025 and 2030 derived from CIESIN GPWv4.11 were disaggregated from census or administrative units to grid cells, informed by the distribution, volume and classification of built-up as mapped in the Global Human Settlement Layer (GHSL) global layer per corresponding epoch.
The Global Human Settlement Layer (GHSL) project is supported by the European Commission, Joint Research Center, and Directorate-General for Regional and Urban Policy.
Bands
Resolution
100 meters
Bands
Name | Min | Max | Description |
---|---|---|---|
population_count |
0* | 1.34419e+06* | Number of people per cell |
Terms of Use
Terms of Use
The GHSL has been produced by the EC JRC as open and free data. Reuse is authorised, provided the source is acknowledged. For more information, please read the use conditions (European Commission Reuse and Copyright Notice).
Citations
Schiavina M., Freire S., Carioli A., MacManus K. (2023): GHS-POP R2023A - GHS population grid multitemporal (1975-2030). European Commission, Joint Research Centre (JRC) PID: http://data.europa.eu/89h/2ff68a52-5b5b-4a22-8f40-c41da8332cfe, doi:10.2905/2FF68A52-5B5B-4A22-8F40-C41DA8332CFE
DOIs
Explore with Earth Engine
Code Editor (JavaScript)
var image = ee.Image("JRC/GHSL/P2023A/GHS_POP/2030"); var populationCountVis = { min: 0.0, max: 20.0, palette: ['060606', '337663', '337663', 'ffffff'] }; Map.setCenter(78.22, 22.59, 3); Map.addLayer(image, populationCountVis, 'Population Count');