├── .gitignore ├── Grid_data ├── global_grid_025.geofeather └── global_grid_025.geofeather.crs ├── LICENSE ├── README.md ├── environment.yml ├── figures ├── Figures and supplementary.ipynb └── figure_6.py ├── modules └── pgpkg │ ├── LICENSE │ ├── README.md │ ├── build │ └── lib │ │ └── pgpkg │ │ ├── __init__.py │ │ └── core.py │ ├── dist │ └── pgpkg-0.1.0-py3.8.egg │ ├── pgpkg.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── requires.txt │ └── top_level.txt │ ├── pgpkg │ ├── __init__.py │ ├── core.py │ └── schema.sql │ ├── setup.py │ └── tests │ ├── benchmarks │ └── test_io_benchmarks.py │ ├── conftest.py │ └── test_io.py ├── osmconf.ini ├── scripts ├── __pycache__ │ ├── cisi.cpython-38.pyc │ ├── cisi_exposure.cpython-38.pyc │ ├── extract.cpython-38.pyc │ ├── fetch.cpython-38.pyc │ └── gridmaker.cpython-38.pyc ├── cisi.py ├── cisi_exposure.py ├── cisi_run.py ├── extract.py ├── gridmaker.py ├── transform_to_gpkg.py └── vector_to_raster.py └── validation └── overlay_gdp_pop.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/.gitignore -------------------------------------------------------------------------------- /Grid_data/global_grid_025.geofeather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/Grid_data/global_grid_025.geofeather -------------------------------------------------------------------------------- /Grid_data/global_grid_025.geofeather.crs: -------------------------------------------------------------------------------- 1 | {"proj4": "EPSG:4326"} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/environment.yml -------------------------------------------------------------------------------- /figures/Figures and supplementary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/figures/Figures and supplementary.ipynb -------------------------------------------------------------------------------- /figures/figure_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/figures/figure_6.py -------------------------------------------------------------------------------- /modules/pgpkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/modules/pgpkg/LICENSE -------------------------------------------------------------------------------- /modules/pgpkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/modules/pgpkg/README.md -------------------------------------------------------------------------------- /modules/pgpkg/build/lib/pgpkg/__init__.py: -------------------------------------------------------------------------------- 1 | from pgpkg.core import Geopackage, to_gpkg 2 | -------------------------------------------------------------------------------- /modules/pgpkg/build/lib/pgpkg/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/modules/pgpkg/build/lib/pgpkg/core.py -------------------------------------------------------------------------------- /modules/pgpkg/dist/pgpkg-0.1.0-py3.8.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/modules/pgpkg/dist/pgpkg-0.1.0-py3.8.egg -------------------------------------------------------------------------------- /modules/pgpkg/pgpkg.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/modules/pgpkg/pgpkg.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modules/pgpkg/pgpkg.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/modules/pgpkg/pgpkg.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modules/pgpkg/pgpkg.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pgpkg/pgpkg.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | pygeos 2 | pandas 3 | numpy 4 | pyproj 5 | -------------------------------------------------------------------------------- /modules/pgpkg/pgpkg.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pgpkg 2 | -------------------------------------------------------------------------------- /modules/pgpkg/pgpkg/__init__.py: -------------------------------------------------------------------------------- 1 | from pgpkg.core import Geopackage, to_gpkg 2 | -------------------------------------------------------------------------------- /modules/pgpkg/pgpkg/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/modules/pgpkg/pgpkg/core.py -------------------------------------------------------------------------------- /modules/pgpkg/pgpkg/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/modules/pgpkg/pgpkg/schema.sql -------------------------------------------------------------------------------- /modules/pgpkg/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/modules/pgpkg/setup.py -------------------------------------------------------------------------------- /modules/pgpkg/tests/benchmarks/test_io_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/modules/pgpkg/tests/benchmarks/test_io_benchmarks.py -------------------------------------------------------------------------------- /modules/pgpkg/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/modules/pgpkg/tests/conftest.py -------------------------------------------------------------------------------- /modules/pgpkg/tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/modules/pgpkg/tests/test_io.py -------------------------------------------------------------------------------- /osmconf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/osmconf.ini -------------------------------------------------------------------------------- /scripts/__pycache__/cisi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/scripts/__pycache__/cisi.cpython-38.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/cisi_exposure.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/scripts/__pycache__/cisi_exposure.cpython-38.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/extract.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/scripts/__pycache__/extract.cpython-38.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/fetch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/scripts/__pycache__/fetch.cpython-38.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/gridmaker.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/scripts/__pycache__/gridmaker.cpython-38.pyc -------------------------------------------------------------------------------- /scripts/cisi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/scripts/cisi.py -------------------------------------------------------------------------------- /scripts/cisi_exposure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/scripts/cisi_exposure.py -------------------------------------------------------------------------------- /scripts/cisi_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/scripts/cisi_run.py -------------------------------------------------------------------------------- /scripts/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/scripts/extract.py -------------------------------------------------------------------------------- /scripts/gridmaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/scripts/gridmaker.py -------------------------------------------------------------------------------- /scripts/transform_to_gpkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/scripts/transform_to_gpkg.py -------------------------------------------------------------------------------- /scripts/vector_to_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/scripts/vector_to_raster.py -------------------------------------------------------------------------------- /validation/overlay_gdp_pop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snirandjan/CISI/HEAD/validation/overlay_gdp_pop.ipynb --------------------------------------------------------------------------------