Cognised existence: Population is the measured quantity and density of inhabitants across space and time.

Question: What is the population count, density, and demographic profile in this area?

Population is typically represented as raster grids or statistical polygons, not as settlement place points.


Realisations

Global population grids

Global gridded datasets estimate population counts and density on regular cells (for example 1 km or 100 m depending on product/version).

Representative products:

ProductGeometryTypical ResolutionScope
GHSL Population Grid (GHS-POP)Raster grid250 m to 1 kmGlobal
WorldPopRaster grid~100 m (country dependent)Global (modelled)
GPWv4 (CIESIN)Raster grid~1 kmGlobal

EU population grids

For Europe, population is commonly distributed in harmonized grid systems for comparable regional analysis.

Representative products:

ProductGeometryTypical ResolutionScope
GEOSTAT population gridGrid polygon / raster equivalent1 kmEurope
National statistical population gridsGrid polygon / raster100 m to 1 kmCountry-specific

Census and administrative statistics

Population can also be represented as areal totals linked to administrative units (municipality, region, census tract, etc.).

Python load (example pattern)

import geopandas as gpd
import rasterio
 
# Raster grid example (population count per cell)
with rasterio.open("population_grid.tif") as src:
    pop_grid = src.read(1)
    transform = src.transform
 
# Polygon example (population per statistical unit)
admin_pop = gpd.read_file("population_by_admin_units.gpkg")
admin_pop["pop_density"] = admin_pop["population"] / admin_pop.to_crs(3857).area * 1_000_000

Geometry Representations

Rep IDSource DatasetGeometry TypeNative CRSSuitable ForNot Suitable For
population_grid_globalGHSL / WorldPop / GPWRaster gridProduct-specificDensity surfaces, exposure modelling, regional comparisonsHousehold-level counts, legal reporting
population_grid_euGEOSTAT / national EU gridsGrid polygon or rasterProduct-specificHarmonized European population comparisons, density analysisFine-grained individual-level inference
population_admin_unitsCensus by admin areaPolygonNational statistical CRSOfficial reporting, demographic indicators by areaWithin-unit spatial heterogeneity

Limitations

  • Gridded population products are modelled estimates, not exact headcounts per cell.
  • Census polygons introduce the modifiable areal unit problem (MAUP).
  • Temporal mismatch across products is common; always check reference year.
  • Settlement point datasets should be treated as populated-area proxies, not full population measures.