├── .gitattributes ├── .github └── workflows │ ├── docs.yml │ ├── lint.yml │ └── test.yml ├── .gitignore ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── superblockify_concept.png ├── superblockify_logo.png └── superblockify_social.jpg ├── docs ├── _static │ ├── momepy_footprint_tessellation.png │ └── rasterization.png ├── api │ └── index.rst ├── changelog.rst ├── conf.py ├── guide │ ├── 00_partition_requirements.rst │ ├── 10_dist_calc_restricted.myst │ ├── 20_betweenness_centrality.myst │ ├── 30_population_density.myst │ ├── 31_tessellation.myst │ ├── 32_edge_population.myst │ ├── 40_max_graph_size.ipynb │ └── index.rst ├── index.rst ├── installation.md └── usage.myst ├── environment-dev.yml ├── environment.yml ├── examples ├── 00-mwe.ipynb ├── 00-mwe.py ├── 01-getting-started.ipynb ├── 02-restricted-distance.ipynb ├── 03-network-visualization.ipynb ├── 04-distance-calculation-figures.ipynb ├── 05-betweenness-centrality.ipynb ├── 06-population-density.ipynb ├── 07-superblock-boundary.ipynb └── 08-population-tesselation.ipynb ├── paper ├── combined_graphs.png ├── paper.bib └── paper.md ├── pyproject.toml ├── superblockify ├── __init__.py ├── _api.py ├── _version.py ├── attribute.py ├── cities.yml ├── config.py ├── graph_stats.py ├── logging.cfg ├── metrics │ ├── __init__.py │ ├── distances.py │ ├── measures.py │ ├── metric.py │ └── plot.py ├── partitioning │ ├── __init__.py │ ├── approaches │ │ ├── __init__.py │ │ ├── attribute.py │ │ ├── bearing.py │ │ ├── betweenness.py │ │ ├── dummy.py │ │ ├── steiner_tree.py │ │ └── streettype.py │ ├── base.py │ ├── checks.py │ ├── plot.py │ ├── representative.py │ ├── speed.py │ └── utils.py ├── plot.py ├── population │ ├── __init__.py │ ├── approximation.py │ ├── ghsl.py │ └── tessellation.py └── utils.py └── tests ├── __init__.py ├── conftest.py ├── metrics ├── __init__.py ├── test_distances.py ├── test_measures.py ├── test_metric.py └── test_metrics_plot.py ├── partitioning ├── __init__.py ├── approaches │ ├── __init__.py │ ├── test_attribute_abc.py │ ├── test_bearing.py │ ├── test_betweenness.py │ └── test_steiner_tree.py ├── test_base.py ├── test_checks.py ├── test_partitioning_plot.py ├── test_partitioning_utils.py └── test_speed.py ├── population ├── __init__.py ├── test_approximation.py ├── test_ghsl.py └── test_tessellation.py ├── test_attribute.py ├── test_data ├── __init__.py ├── cities │ ├── Adliswil.graphml │ ├── Barcelona.graphml │ ├── Brooklyn.graphml │ ├── Copenhagen.graphml │ ├── Liechtenstein.graphml │ ├── MissionTown.graphml │ ├── Resistencia.graphml │ └── Scheveningen.graphml └── ghsl │ └── GHS_POP_E2025_GLOBE_R2023A_54009_100_V1_0_R10_C29.tif ├── test_graph_stats.py ├── test_plot.py └── test_utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/README.md -------------------------------------------------------------------------------- /assets/superblockify_concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/assets/superblockify_concept.png -------------------------------------------------------------------------------- /assets/superblockify_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/assets/superblockify_logo.png -------------------------------------------------------------------------------- /assets/superblockify_social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/assets/superblockify_social.jpg -------------------------------------------------------------------------------- /docs/_static/momepy_footprint_tessellation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/_static/momepy_footprint_tessellation.png -------------------------------------------------------------------------------- /docs/_static/rasterization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/_static/rasterization.png -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/guide/00_partition_requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/guide/00_partition_requirements.rst -------------------------------------------------------------------------------- /docs/guide/10_dist_calc_restricted.myst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/guide/10_dist_calc_restricted.myst -------------------------------------------------------------------------------- /docs/guide/20_betweenness_centrality.myst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/guide/20_betweenness_centrality.myst -------------------------------------------------------------------------------- /docs/guide/30_population_density.myst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/guide/30_population_density.myst -------------------------------------------------------------------------------- /docs/guide/31_tessellation.myst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/guide/31_tessellation.myst -------------------------------------------------------------------------------- /docs/guide/32_edge_population.myst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/guide/32_edge_population.myst -------------------------------------------------------------------------------- /docs/guide/40_max_graph_size.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/guide/40_max_graph_size.ipynb -------------------------------------------------------------------------------- /docs/guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/guide/index.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/usage.myst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/docs/usage.myst -------------------------------------------------------------------------------- /environment-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/environment-dev.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/environment.yml -------------------------------------------------------------------------------- /examples/00-mwe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/examples/00-mwe.ipynb -------------------------------------------------------------------------------- /examples/00-mwe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/examples/00-mwe.py -------------------------------------------------------------------------------- /examples/01-getting-started.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/examples/01-getting-started.ipynb -------------------------------------------------------------------------------- /examples/02-restricted-distance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/examples/02-restricted-distance.ipynb -------------------------------------------------------------------------------- /examples/03-network-visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/examples/03-network-visualization.ipynb -------------------------------------------------------------------------------- /examples/04-distance-calculation-figures.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/examples/04-distance-calculation-figures.ipynb -------------------------------------------------------------------------------- /examples/05-betweenness-centrality.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/examples/05-betweenness-centrality.ipynb -------------------------------------------------------------------------------- /examples/06-population-density.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/examples/06-population-density.ipynb -------------------------------------------------------------------------------- /examples/07-superblock-boundary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/examples/07-superblock-boundary.ipynb -------------------------------------------------------------------------------- /examples/08-population-tesselation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/examples/08-population-tesselation.ipynb -------------------------------------------------------------------------------- /paper/combined_graphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/paper/combined_graphs.png -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/paper/paper.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/pyproject.toml -------------------------------------------------------------------------------- /superblockify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/__init__.py -------------------------------------------------------------------------------- /superblockify/_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/_api.py -------------------------------------------------------------------------------- /superblockify/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/_version.py -------------------------------------------------------------------------------- /superblockify/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/attribute.py -------------------------------------------------------------------------------- /superblockify/cities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/cities.yml -------------------------------------------------------------------------------- /superblockify/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/config.py -------------------------------------------------------------------------------- /superblockify/graph_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/graph_stats.py -------------------------------------------------------------------------------- /superblockify/logging.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/logging.cfg -------------------------------------------------------------------------------- /superblockify/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/metrics/__init__.py -------------------------------------------------------------------------------- /superblockify/metrics/distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/metrics/distances.py -------------------------------------------------------------------------------- /superblockify/metrics/measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/metrics/measures.py -------------------------------------------------------------------------------- /superblockify/metrics/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/metrics/metric.py -------------------------------------------------------------------------------- /superblockify/metrics/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/metrics/plot.py -------------------------------------------------------------------------------- /superblockify/partitioning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/__init__.py -------------------------------------------------------------------------------- /superblockify/partitioning/approaches/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/approaches/__init__.py -------------------------------------------------------------------------------- /superblockify/partitioning/approaches/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/approaches/attribute.py -------------------------------------------------------------------------------- /superblockify/partitioning/approaches/bearing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/approaches/bearing.py -------------------------------------------------------------------------------- /superblockify/partitioning/approaches/betweenness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/approaches/betweenness.py -------------------------------------------------------------------------------- /superblockify/partitioning/approaches/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/approaches/dummy.py -------------------------------------------------------------------------------- /superblockify/partitioning/approaches/steiner_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/approaches/steiner_tree.py -------------------------------------------------------------------------------- /superblockify/partitioning/approaches/streettype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/approaches/streettype.py -------------------------------------------------------------------------------- /superblockify/partitioning/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/base.py -------------------------------------------------------------------------------- /superblockify/partitioning/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/checks.py -------------------------------------------------------------------------------- /superblockify/partitioning/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/plot.py -------------------------------------------------------------------------------- /superblockify/partitioning/representative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/representative.py -------------------------------------------------------------------------------- /superblockify/partitioning/speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/speed.py -------------------------------------------------------------------------------- /superblockify/partitioning/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/partitioning/utils.py -------------------------------------------------------------------------------- /superblockify/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/plot.py -------------------------------------------------------------------------------- /superblockify/population/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/population/__init__.py -------------------------------------------------------------------------------- /superblockify/population/approximation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/population/approximation.py -------------------------------------------------------------------------------- /superblockify/population/ghsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/population/ghsl.py -------------------------------------------------------------------------------- /superblockify/population/tessellation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/population/tessellation.py -------------------------------------------------------------------------------- /superblockify/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/superblockify/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/metrics/test_distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/metrics/test_distances.py -------------------------------------------------------------------------------- /tests/metrics/test_measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/metrics/test_measures.py -------------------------------------------------------------------------------- /tests/metrics/test_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/metrics/test_metric.py -------------------------------------------------------------------------------- /tests/metrics/test_metrics_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/metrics/test_metrics_plot.py -------------------------------------------------------------------------------- /tests/partitioning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/partitioning/approaches/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/partitioning/approaches/test_attribute_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/partitioning/approaches/test_attribute_abc.py -------------------------------------------------------------------------------- /tests/partitioning/approaches/test_bearing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/partitioning/approaches/test_bearing.py -------------------------------------------------------------------------------- /tests/partitioning/approaches/test_betweenness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/partitioning/approaches/test_betweenness.py -------------------------------------------------------------------------------- /tests/partitioning/approaches/test_steiner_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/partitioning/approaches/test_steiner_tree.py -------------------------------------------------------------------------------- /tests/partitioning/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/partitioning/test_base.py -------------------------------------------------------------------------------- /tests/partitioning/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/partitioning/test_checks.py -------------------------------------------------------------------------------- /tests/partitioning/test_partitioning_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/partitioning/test_partitioning_plot.py -------------------------------------------------------------------------------- /tests/partitioning/test_partitioning_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/partitioning/test_partitioning_utils.py -------------------------------------------------------------------------------- /tests/partitioning/test_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/partitioning/test_speed.py -------------------------------------------------------------------------------- /tests/population/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/population/test_approximation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/population/test_approximation.py -------------------------------------------------------------------------------- /tests/population/test_ghsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/population/test_ghsl.py -------------------------------------------------------------------------------- /tests/population/test_tessellation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/population/test_tessellation.py -------------------------------------------------------------------------------- /tests/test_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_attribute.py -------------------------------------------------------------------------------- /tests/test_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_data/__init__.py -------------------------------------------------------------------------------- /tests/test_data/cities/Adliswil.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_data/cities/Adliswil.graphml -------------------------------------------------------------------------------- /tests/test_data/cities/Barcelona.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_data/cities/Barcelona.graphml -------------------------------------------------------------------------------- /tests/test_data/cities/Brooklyn.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_data/cities/Brooklyn.graphml -------------------------------------------------------------------------------- /tests/test_data/cities/Copenhagen.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_data/cities/Copenhagen.graphml -------------------------------------------------------------------------------- /tests/test_data/cities/Liechtenstein.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_data/cities/Liechtenstein.graphml -------------------------------------------------------------------------------- /tests/test_data/cities/MissionTown.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_data/cities/MissionTown.graphml -------------------------------------------------------------------------------- /tests/test_data/cities/Resistencia.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_data/cities/Resistencia.graphml -------------------------------------------------------------------------------- /tests/test_data/cities/Scheveningen.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_data/cities/Scheveningen.graphml -------------------------------------------------------------------------------- /tests/test_data/ghsl/GHS_POP_E2025_GLOBE_R2023A_54009_100_V1_0_R10_C29.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_data/ghsl/GHS_POP_E2025_GLOBE_R2023A_54009_100_V1_0_R10_C29.tif -------------------------------------------------------------------------------- /tests/test_graph_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_graph_stats.py -------------------------------------------------------------------------------- /tests/test_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_plot.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERDSITU/superblockify/HEAD/tests/test_utils.py --------------------------------------------------------------------------------