Anisotropic least-cost path, corridor (LCC), FETE and PDI primitives for movement modelling — pure numpy/scipy.
Project description
Itinera
Anisotropic least-cost path (LCP), corridor (LCC), From-Everywhere-To-Everywhere (FETE), stochastic / probabilistic paths and route validation (Path Deviation Index + buffer overlap) primitives for movement modelling — a pure numpy / scipy library extracted from the Itinera QGIS plugin.
Cost is directional (uphill ≠ downhill): each DEM cell becomes a graph node,
edge weights come from a directional cost function of the signed slope, so the
conductance matrix is asymmetric — true anisotropy. Paths are solved with
scipy.sparse.csgraph.dijkstra.
pip install itinera
Only numpy and scipy are required.
Quick start
import numpy as np
from itinera import build_conductance, least_cost_path, tobler, rowcol_to_node
# A small DEM (elevations in metres) on a 10 m grid.
dem = np.random.default_rng(0).random((50, 50)) * 100.0
matrix, rows, cols = build_conductance(
dem, cellsize=10.0, cost_fn=tobler, neighbours=8)
origin = rowcol_to_node(0, 0, cols)
dest = rowcol_to_node(49, 49, cols)
path, total_cost = least_cost_path(matrix, origin, dest) # path = node indices
Turn node indices back into (row, col) with node_to_rowcol(node, cols).
What's included
- Cost functions (ten):
tobler,tobler_offpath,herzog,naismith,llobera_sluckin,irmischer_clarke,minetti,pandolf,wheeled,pack_animal— each(slope, distance, **params) -> cost.pandolfreadsmass/load/terrain;wheeled/pack_animalare experimental heuristics — anisotropic critical-slope presets with illustrative default thresholds, not calibrated published functions. - Conductance:
build_conductance(slope, optional barrier/multiplier,cost_params),build_conductance_friction(friction raster, optional DEM). - Paths:
accumulated_cost,least_cost_path,corridor/corridor_band,fete. - Accessibility:
accessibility— cost-distance surface + catchment mask + isochrone bands from source(s). - Randomized shortest paths:
rsp_passages— a θ-tunable movement-density surface that spans the least-cost path (θ→∞) and the random-walk / circuit current (θ→0), plus the RSP free-energy distance. - Circuit theory:
current_density(graph-Laplacian current + pinch points) andrestoration_score(McRae 2012 barrier / restoration improvement map). - Multi-criteria:
composite_friction— a generic heuristic combiner (not a Litvine 2024 reproduction) merging several penalty rasters into one friction multiplier (weighted sum/product, per-layer invert, NoData masks); min-max normalisation makes it extent-dependent. - Stochastic:
stochastic_lcp(DEM-error + edge-drop + cost-model randomisation viacost_fns/cost_weights/param_jitter, with an early-stop convergence criterion viatol/convergence/return_diagnostics),add_dem_error,simulate_error_field(variogram-based DEM error field),add_global_stochasticity. - Validation:
pdi(Jan et al. 2000: area / straight-line O–D distance, endpoints snapped to the reference O/D),buffer_overlap(Goodchild & Hunter buffer method),mean_pairwise_overlap(route-stability across a set of paths). - Grid helpers:
xy_to_rowcol,check_/assert_regular_geotransform,check_/assert_grids_aligned. - Utilities:
estimate_conductance_bytes,format_bytes,block_reduce_mean.
Scope: bring your own raster I/O
This is a numerics library — it works on numpy arrays + a GDAL-style
geotransform tuple. It does not depend on GDAL and does not read or
write raster files. Load your DEM with whatever you already use
(rasterio, osgeo.gdal, xarray/rioxarray, …) and pass the array in.
Use a projected CRS in metres so slope and distance are metric.
Relation to the QGIS plugin
The same code ships inside the
Itinera QGIS plugin (where it is the
plugin's private core package, plus QGIS/GDAL wrappers). The PyPI package and
the QGIS plugin share the top-level import name itinera; they are meant for
separate environments. Don't pip install itinera into the Python
interpreter that runs QGIS — the plugin already bundles this code, and the two
would shadow each other on sys.path.
Licence
MIT — see LICENSE. References for the methods (Tobler, Naismith,
Herzog, Llobera & Sluckin, Irmischer & Clarke, Minetti, Pandolf/Santee, White &
Barber, Lewis, Jan et al. for PDI, Goodchild & Hunter for buffer overlap,
Panzacchi/Saerens & van Etten for RSP, McRae for circuit theory) are in
docs/REFERENCES.md.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file itinera-0.14.1.tar.gz.
File metadata
- Download URL: itinera-0.14.1.tar.gz
- Upload date:
- Size: 36.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2983b2074ffc381de28c0d989ce73b6adbaff5178e35cb23d69b1c77f00b4224
|
|
| MD5 |
9799c48bef373d23ddf3848a9949bd04
|
|
| BLAKE2b-256 |
2aa0531360ab03d190353cecf43fc3df259a33dd2634e426b4de32d9076413bc
|
Provenance
The following attestation bundles were made for itinera-0.14.1.tar.gz:
Publisher:
publish.yml on leiverkus/itinera
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
itinera-0.14.1.tar.gz -
Subject digest:
2983b2074ffc381de28c0d989ce73b6adbaff5178e35cb23d69b1c77f00b4224 - Sigstore transparency entry: 1837302894
- Sigstore integration time:
-
Permalink:
leiverkus/itinera@e443ea432d3f59b0060e9d31edf497c224e999b8 -
Branch / Tag:
refs/tags/v0.14.1 - Owner: https://github.com/leiverkus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e443ea432d3f59b0060e9d31edf497c224e999b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file itinera-0.14.1-py3-none-any.whl.
File metadata
- Download URL: itinera-0.14.1-py3-none-any.whl
- Upload date:
- Size: 37.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c6537acadd6447aff1e5f9c3fd3b8e8c9fa50dbf331ecc821d8c7777c60dbf5
|
|
| MD5 |
84f450ba708f757c65368b38d5d16e4f
|
|
| BLAKE2b-256 |
3298423679c8c01f4dfecd4cc45f73cffdf11fe899de7903fa0890a6f5df0cc2
|
Provenance
The following attestation bundles were made for itinera-0.14.1-py3-none-any.whl:
Publisher:
publish.yml on leiverkus/itinera
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
itinera-0.14.1-py3-none-any.whl -
Subject digest:
7c6537acadd6447aff1e5f9c3fd3b8e8c9fa50dbf331ecc821d8c7777c60dbf5 - Sigstore transparency entry: 1837303002
- Sigstore integration time:
-
Permalink:
leiverkus/itinera@e443ea432d3f59b0060e9d31edf497c224e999b8 -
Branch / Tag:
refs/tags/v0.14.1 - Owner: https://github.com/leiverkus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e443ea432d3f59b0060e9d31edf497c224e999b8 -
Trigger Event:
release
-
Statement type: