├── .github ├── dependabot.yml └── workflows │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CITATION.cff ├── LICENSE.txt ├── README.md ├── code ├── 01-construct-models │ ├── 01-prep-ghsl.py │ ├── 02-download-cache.py │ └── 03-create-graphs.py ├── 02-attach-elevation │ ├── 01-aster-srtm │ │ ├── 01-download-aster_v3.py │ │ ├── 02-download-srtmgl1.py │ │ ├── 03-build-vrts.py │ │ └── 04-add-node-elevations.py │ └── 02-google │ │ ├── 01-cluster-nodes.py │ │ ├── 02-make-google-urls.py │ │ ├── 03-download-google-elevations.py │ │ └── 04-choose-best-elevation.py ├── 03-calculate-indicators │ ├── 01-calculate-node-bc.py │ ├── 02-calculate-indicators.py │ ├── 03-merge-indicators.py │ └── 04-create-metadata.py ├── 04-upload-repository │ ├── 01-save-files.py │ ├── 02-stage-files.py │ └── 03-upload-dataverse.py ├── config.json ├── environment.yml └── run.sh └── paper ├── README.md └── latex ├── main.tex └── references.bib /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/README.md -------------------------------------------------------------------------------- /code/01-construct-models/01-prep-ghsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/01-construct-models/01-prep-ghsl.py -------------------------------------------------------------------------------- /code/01-construct-models/02-download-cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/01-construct-models/02-download-cache.py -------------------------------------------------------------------------------- /code/01-construct-models/03-create-graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/01-construct-models/03-create-graphs.py -------------------------------------------------------------------------------- /code/02-attach-elevation/01-aster-srtm/01-download-aster_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/02-attach-elevation/01-aster-srtm/01-download-aster_v3.py -------------------------------------------------------------------------------- /code/02-attach-elevation/01-aster-srtm/02-download-srtmgl1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/02-attach-elevation/01-aster-srtm/02-download-srtmgl1.py -------------------------------------------------------------------------------- /code/02-attach-elevation/01-aster-srtm/03-build-vrts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/02-attach-elevation/01-aster-srtm/03-build-vrts.py -------------------------------------------------------------------------------- /code/02-attach-elevation/01-aster-srtm/04-add-node-elevations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/02-attach-elevation/01-aster-srtm/04-add-node-elevations.py -------------------------------------------------------------------------------- /code/02-attach-elevation/02-google/01-cluster-nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/02-attach-elevation/02-google/01-cluster-nodes.py -------------------------------------------------------------------------------- /code/02-attach-elevation/02-google/02-make-google-urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/02-attach-elevation/02-google/02-make-google-urls.py -------------------------------------------------------------------------------- /code/02-attach-elevation/02-google/03-download-google-elevations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/02-attach-elevation/02-google/03-download-google-elevations.py -------------------------------------------------------------------------------- /code/02-attach-elevation/02-google/04-choose-best-elevation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/02-attach-elevation/02-google/04-choose-best-elevation.py -------------------------------------------------------------------------------- /code/03-calculate-indicators/01-calculate-node-bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/03-calculate-indicators/01-calculate-node-bc.py -------------------------------------------------------------------------------- /code/03-calculate-indicators/02-calculate-indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/03-calculate-indicators/02-calculate-indicators.py -------------------------------------------------------------------------------- /code/03-calculate-indicators/03-merge-indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/03-calculate-indicators/03-merge-indicators.py -------------------------------------------------------------------------------- /code/03-calculate-indicators/04-create-metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/03-calculate-indicators/04-create-metadata.py -------------------------------------------------------------------------------- /code/04-upload-repository/01-save-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/04-upload-repository/01-save-files.py -------------------------------------------------------------------------------- /code/04-upload-repository/02-stage-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/04-upload-repository/02-stage-files.py -------------------------------------------------------------------------------- /code/04-upload-repository/03-upload-dataverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/04-upload-repository/03-upload-dataverse.py -------------------------------------------------------------------------------- /code/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/config.json -------------------------------------------------------------------------------- /code/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/environment.yml -------------------------------------------------------------------------------- /code/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/code/run.sh -------------------------------------------------------------------------------- /paper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/paper/README.md -------------------------------------------------------------------------------- /paper/latex/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/paper/latex/main.tex -------------------------------------------------------------------------------- /paper/latex/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gboeing/street-network-models/HEAD/paper/latex/references.bib --------------------------------------------------------------------------------