EquiPop (Python)
k-nearest neighbour contexts/neighbourhoods on gridded and hexagonal data: bespoke neighbourhoods, friction-aware growth, distance decay, neighbourhood statistics and segregation measures - for very large datasets.
EquiPop finds, for every populated location, the k nearest individuals (by cumulative population count, expanding over a uniform grid) and reports the composition of that individualised neighbourhood. The gridded design means one pre-computed distance ordering serves every origin, which is what makes millions of locations feasible.
The EquiPop family
This is the first Python implementation. Its relatives: the original C# EquiPop (three generations, two public releases; radial and Flow models, downloadable via Uppsala University) and an R version covering I/O and the basic k-NN parts. This Python version additionally carries friction growth, five decay models, exact neighbourhood statistics (mean/median/SD/SE/Gini/entropy), segregation indices, hexagonal grids, area aggregation and metadata logging.
Install
pip install equipop # core
pip install equipop[geo,io,viz] # shapefiles/rasters, Excel/SPSS, maps
Quick start
import pandas as pd
from equipop import build_cells, run_knn_stats
df = pd.read_csv("individuals.csv") # one row per individual
cd = build_cells(df, e_col="X", n_col="Y",
binary_vars=["treated"], value_vars=["income"],
unit_size=100)
res = run_knn_stats(cd, k_values=[100, 400, 1600, 6400],
stats={"treated": ["ratio"],
"income": ["mean", "median", "gini"]})
For aggregated counts at national scale use the vectorised
run_knn_counts; for friction-constrained growth run_knn_friction;
for segregation profiles seg_profile; for policy-area reporting
aggregate_output; for quick maps map_output. See MANUAL_TOPICS.md.
Repository: https://github.com/GeoJohnSwe/EquiPop
Citing
Please cite the software and the methods you use - see CITATION.cff. Core reference: Östh (2014), Introducing the EquiPop software, Uppsala University. Segregation measures: Östh, Clark & Malmberg (2015), Geographical Analysis 47(1). Decay parameters: Östh, Lyhagen & Reggiani (2016), EJTIR 16(2). Friction growth: Östh & Türk (2020), Handbook of Urban Segregation. Decay profiles in application: Türk, Östh, Kourtit & Nijkamp (2026), Journal of Urban Mobility 9.
License
MIT. Attribution through citation is warmly requested (see above).
Release files for equipop 1.26.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| equipop-1.26.1.tar.gz | 758.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| equipop-1.26.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.1 MB
Release files / equipop-1.26.1.tar.gz
| Download URL | equipop-1.26.1.tar.gz |
|---|---|
| Size | 758.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
cec73907e3d14a65f04122d55ea55faeb351b1c71f14f3075c145021b04e85b2
|
|
BLAKE2b-256 checksum How to use checksums |
2714e27b77b080d02b0e5c7ace2e76928f5ef4c9ca3dc8ea85d7633638dd2723
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.9
|
Release files / equipop-1.26.1-py3-none-any.whl
| Download URL | equipop-1.26.1-py3-none-any.whl |
|---|---|
| Size | 308.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c386cc70962f8ab711c9d1098ee7a7930d2b8afb85bdf8d26113a04e215a76ac
|
|
BLAKE2b-256 checksum How to use checksums |
1eafb204e319aedc6a921427ed1ed026ae578a73e787a2a03ca6d7a519b8d1cc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.9
|