Skip to main content

IduEdu

Code style: black PyPI version CI Coverage License Docs GitHub

IduEdu logo banner

IduEdu is an open-source Python toolkit for building and analyzing multimodal city networks from OpenStreetMap data. It downloads OSM data via Overpass, builds drive, walk, public-transport and intermodal networks, and stores them as UrbanGraph objects backed by GeoDataFrame node and edge tables.

Benchmark snapshot

The benchmark below isolates city-scale pedestrian graph construction, comparing IduEdu's tabular UrbanGraph representation with OSMnx's widely used NetworkX-backed workflow on the same area of interest for each city. Both simplification modes are shown because simplify changes the trade-off between graph-construction time and the size of the resulting graph.

Pedestrian graph construction benchmark

Across these repeated B1 runs, IduEdu built pedestrian graphs in about 5.8-9.3x less time without simplification and 3.3-6.0x less time with simplification enabled. The resulting geospatial graph object had a 10-12x lower deterministic representation-size estimate. Edge-row counts are shown as a representation detail: UrbanGraph can keep bidirectional walking edges as one row with a direction flag, while NetworkX-style directed multigraphs store separate directed edge rows.

Full protocol notes, limitations and raw-result links are in the benchmark documentation.

Documentation

Full documentation is published at https://iduclub.github.io/IduEdu/. Migrating from the old NetworkX-first API? See the UrbanGraph migration guide. Runnable examples are available for graph construction, UrbanGraph basics, object projection, and shortest paths.

Features

  • Store graph topology, geometry, CRS and edge weights in UrbanGraph, a GeoDataFrame-native graph model.
  • Build drive and walk graphs from OpenStreetMap with local metric projection and optional simplification.
  • Build static public-transport graphs directly from OSM relations for bus, trolleybus, tram and subway.
  • Combine pedestrian and public-transport layers into one intermodal graph by projecting stops, platforms and station access points onto the walking network.
  • Compute shortest paths and OD matrices with Numba-backed CSR routines, cutoff thresholds and adaptive graph reversal for unbalanced origin-destination sets.
  • Work with connected, weakly connected and strongly connected UrbanGraph components.
  • Convert to and from NetworkX through optional compatibility utilities.
  • Snap geometries to graph nodes with nearest_nodes and validate custom graph edits.
  • Store graphs as .urbangraph archives with parquet tables and metadata.
  • Cache Overpass responses and query historical OSM snapshots.

Installation

pip install iduedu

IduEdu requires Python 3.11 or 3.12. The core package uses the standard geospatial stack including GeoPandas, Shapely, PyProj, NumPy, Pandas and SciPy. NetworkX utilities are optional compatibility helpers.

Use pip install "iduedu[io]" to enable .urbangraph parquet archive read/write helpers.

Quickstart

Build an intermodal graph

from iduedu import get_intermodal_graph

graph = get_intermodal_graph(
    osm_id=1114252,  # for example, Saint Petersburg's Vasileostrovsky District
    pt_kwargs={"transport_types": ["bus", "tram", "subway"]},
)

print(graph.nodes_gdf.head())
print(graph.edges_gdf.head())

Graph builders return UrbanGraph. Nodes are stored in graph.nodes_gdf; edges are stored in graph.edges_gdf and include u, v, geometry, length_meter and time_min.

Compute an OD matrix

from iduedu import od_matrix

nodes = graph.nodes_gdf.index.to_list()

matrix = od_matrix(
    graph,
    origins_nodes=nodes[:5],
    destination_nodes=nodes[5:15],
    weight="time_min",
    threshold=30,
)

print(matrix)

Use weight="time_min" for travel time in minutes or weight="length_meter" for distance in meters. Pairs without a path, or outside threshold, are returned as inf.

Work with graph components

from iduedu import largest_component, subgraph_by_nodes

component_nodes = largest_component(graph)
main_graph = subgraph_by_nodes(graph, component_nodes)

Public API

Common entry points are available directly from iduedu:

  • Builders: get_drive_graph, get_walk_graph, get_public_transport_graph, get_intermodal_graph.
  • Graph model: UrbanGraph, UrbanGraphChanges.
  • Editing and transforms: clip_urban_graph, join_urban_graphs, project_objects2urban_graph, relabel_urban_graph, simplify_multiedges, to_directed, to_undirected.
  • Graph utilities: nearest_nodes, validate_graph, UrbanGraph.nearest_nodes, UrbanGraph.validate.
  • Graph IO: read_urban_graph, write_urban_graph, UrbanGraph.read, UrbanGraph.write.
  • Components: connected_components, weakly_connected_components, strongly_connected_components, largest_component.
  • Shortest paths and matrices: single_source_dijkstra_path_length, multi_source_dijkstra_path_length, multi_source_dijkstra_nearest_source, dijkstra_path_length_parallel, od_matrix.
  • Optional NetworkX helpers: graph2gdf, gdf2graph, read_gml, write_gml, clip_nx_graph, reproject_graph.

Configuration

from iduedu import config

config.set_overpass_url("https://overpass-api.de/api/interpreter")
config.set_timeout(120)
config.set_rate_limit(min_interval=1.0, max_retries=3, backoff_base=0.5)
config.set_enable_tqdm(True)
config.configure_logging(level="INFO")

Overpass cache

Overpass caching is enabled by default and uses .iduedu_cache in the current working directory.

from iduedu import config

config.set_overpass_cache(enabled=False)
config.set_overpass_cache(cache_dir="/tmp/overpass_cache", enabled=True)

Environment variables:

export OVERPASS_CACHE_DIR="/tmp/overpass_cache"
export OVERPASS_CACHE_ENABLED="1"

Historical snapshots

from iduedu import config

config.set_overpass_date(date="2020-01-01")
config.set_overpass_date(year=2020, month=5)
config.set_overpass_date()  # reset to current OSM data

When a historical date is set, detailed subway stop-area queries may be skipped because Overpass does not always support those relation patterns at arbitrary timestamps.

Development

This project uses uv.

uv sync --all-groups

Useful commands:

make test           # fast tests, no network
make test-network   # Overpass/network tests
make test-all       # all tests
make coverage       # terminal coverage for fast tests
make coverage-xml   # CI coverage, includes network tests
make format-check
make lint
make docs

See CONTRIBUTING.md for the full development, testing, Conventional Commits and release workflow.

Releases

Releases are automated from Conventional Commit messages on main using python-semantic-release. Do not bump versions or create tags manually. The single source of truth for the package version is iduedu/_version.py; pyproject.toml reads it dynamically at build time.

Contacts

Acknowledgments

Реализовано при финансовой поддержке Фонда поддержки проектов Национальной технологической инициативы в рамках реализации "дорожной карты" развития высокотехнологичного направления "Искусственный интеллект" на период до 2030 года (Договор № 70-2021-00187)

This research is financially supported by the Foundation for National Technology Initiative's Projects Support as a part of the roadmap implementation for the development of the high-tech field of Artificial Intelligence for the period up to 2030 (agreement 70-2021-00187)


License

IduEdu is distributed under the BSD 3-Clause License. See LICENSE.txt for details.


Publications

Coming soon...

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

iduedu-2.0.0.tar.gz (77.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

iduedu-2.0.0-py3-none-any.whl (91.3 kB view details)

Uploaded Python 3

File details

Details for the file iduedu-2.0.0.tar.gz.

File metadata

  • Download URL: iduedu-2.0.0.tar.gz
  • Upload date:
  • Size: 77.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for iduedu-2.0.0.tar.gz
Algorithm Hash digest
SHA256 a68d0917798a41cdb00aad35fd90cb60005fc9078750a0f7bfbd97fa7fccc4e5
MD5 186bf3ab7b1668e4b0fbac1c352c6b41
BLAKE2b-256 e7411eadc4eb340c17ae34acecf5707d77096c0540bf863fe4c4f455928ebd51

See more details on using hashes here.

Provenance

The following attestation bundles were made for iduedu-2.0.0.tar.gz:

Publisher: release.yml on DDonnyy/IduEdu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iduedu-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: iduedu-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 91.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for iduedu-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 47002a90f0d5b333fa3f9d4d65a7cb99e71a45216368435a4499d7a10263bc23
MD5 b9cf78766878a895332d2a714d519086
BLAKE2b-256 66c8209b2e5cb74b9e197a6a289868874f0e70d9b5b11374ea35eaedeb60f34c

See more details on using hashes here.

Provenance

The following attestation bundles were made for iduedu-2.0.0-py3-none-any.whl:

Publisher: release.yml on DDonnyy/IduEdu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

2.0.0 This release

2 files

1.2.2

2 files

1.2.1

2 files

1.2.0

2 files

1.1.0

2 files

1.0.5

2 files

1.0.4

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

0.5.8

2 files

0.5.7

2 files

0.5.6

2 files

0.5.5

2 files

0.5.4

2 files

0.5.3

2 files

0.5.2

1 file

0.5.1

2 files

0.5.0

2 files

0.4.1

2 files

0.4.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page