├── .github ├── ISSUE_TEMPLATE.md ├── dependabot.yml └── workflows │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── notebooks ├── 00-osmnx-features-demo.ipynb ├── 01-overview-osmnx.ipynb ├── 02-routing-speed-time.ipynb ├── 03-graph-place-queries.ipynb ├── 04-simplify-graph-consolidate-nodes.ipynb ├── 05-save-load-networks.ipynb ├── 06-stats-indicators-centrality.ipynb ├── 07-plot-graph-over-shape.ipynb ├── 08-custom-filters-infrastructure.ipynb ├── 09-example-figure-ground.ipynb ├── 10-building-footprints.ipynb ├── 11-interactive-web-mapping.ipynb ├── 12-node-elevations-edge-grades.ipynb ├── 13-isolines-isochrones.ipynb ├── 14-osmnx-to-igraph.ipynb ├── 15-advanced-plotting.ipynb ├── 16-download-osm-geospatial-features.ipynb ├── 17-street-network-orientations.ipynb ├── 18-network-constrained-clustering.ipynb └── input_data │ ├── West-Oakland.osm.bz2 │ ├── ZillowNeighborhoods-CA │ ├── ZillowNeighborhoods-CA.dbf │ ├── ZillowNeighborhoods-CA.prj │ ├── ZillowNeighborhoods-CA.shp │ ├── ZillowNeighborhoods-CA.shp.xml │ └── ZillowNeighborhoods-CA.shx │ ├── elevation1.tif │ └── elevation2.tif └── pyproject.toml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/README.md -------------------------------------------------------------------------------- /notebooks/00-osmnx-features-demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/00-osmnx-features-demo.ipynb -------------------------------------------------------------------------------- /notebooks/01-overview-osmnx.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/01-overview-osmnx.ipynb -------------------------------------------------------------------------------- /notebooks/02-routing-speed-time.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/02-routing-speed-time.ipynb -------------------------------------------------------------------------------- /notebooks/03-graph-place-queries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/03-graph-place-queries.ipynb -------------------------------------------------------------------------------- /notebooks/04-simplify-graph-consolidate-nodes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/04-simplify-graph-consolidate-nodes.ipynb -------------------------------------------------------------------------------- /notebooks/05-save-load-networks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/05-save-load-networks.ipynb -------------------------------------------------------------------------------- /notebooks/06-stats-indicators-centrality.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/06-stats-indicators-centrality.ipynb -------------------------------------------------------------------------------- /notebooks/07-plot-graph-over-shape.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/07-plot-graph-over-shape.ipynb -------------------------------------------------------------------------------- /notebooks/08-custom-filters-infrastructure.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/08-custom-filters-infrastructure.ipynb -------------------------------------------------------------------------------- /notebooks/09-example-figure-ground.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/09-example-figure-ground.ipynb -------------------------------------------------------------------------------- /notebooks/10-building-footprints.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/10-building-footprints.ipynb -------------------------------------------------------------------------------- /notebooks/11-interactive-web-mapping.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/11-interactive-web-mapping.ipynb -------------------------------------------------------------------------------- /notebooks/12-node-elevations-edge-grades.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/12-node-elevations-edge-grades.ipynb -------------------------------------------------------------------------------- /notebooks/13-isolines-isochrones.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/13-isolines-isochrones.ipynb -------------------------------------------------------------------------------- /notebooks/14-osmnx-to-igraph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/14-osmnx-to-igraph.ipynb -------------------------------------------------------------------------------- /notebooks/15-advanced-plotting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/15-advanced-plotting.ipynb -------------------------------------------------------------------------------- /notebooks/16-download-osm-geospatial-features.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/16-download-osm-geospatial-features.ipynb -------------------------------------------------------------------------------- /notebooks/17-street-network-orientations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/17-street-network-orientations.ipynb -------------------------------------------------------------------------------- /notebooks/18-network-constrained-clustering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/18-network-constrained-clustering.ipynb -------------------------------------------------------------------------------- /notebooks/input_data/West-Oakland.osm.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/input_data/West-Oakland.osm.bz2 -------------------------------------------------------------------------------- /notebooks/input_data/ZillowNeighborhoods-CA/ZillowNeighborhoods-CA.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/input_data/ZillowNeighborhoods-CA/ZillowNeighborhoods-CA.dbf -------------------------------------------------------------------------------- /notebooks/input_data/ZillowNeighborhoods-CA/ZillowNeighborhoods-CA.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/input_data/ZillowNeighborhoods-CA/ZillowNeighborhoods-CA.prj -------------------------------------------------------------------------------- /notebooks/input_data/ZillowNeighborhoods-CA/ZillowNeighborhoods-CA.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/input_data/ZillowNeighborhoods-CA/ZillowNeighborhoods-CA.shp -------------------------------------------------------------------------------- /notebooks/input_data/ZillowNeighborhoods-CA/ZillowNeighborhoods-CA.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/input_data/ZillowNeighborhoods-CA/ZillowNeighborhoods-CA.shp.xml -------------------------------------------------------------------------------- /notebooks/input_data/ZillowNeighborhoods-CA/ZillowNeighborhoods-CA.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/input_data/ZillowNeighborhoods-CA/ZillowNeighborhoods-CA.shx -------------------------------------------------------------------------------- /notebooks/input_data/elevation1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/input_data/elevation1.tif -------------------------------------------------------------------------------- /notebooks/input_data/elevation2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/notebooks/input_data/elevation2.tif -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/osmnx-examples/HEAD/pyproject.toml --------------------------------------------------------------------------------