├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── database ├── preprocessing │ ├── 0-downloading │ │ ├── README.md │ │ ├── downloading-abruzzo.py │ │ ├── downloading-brandenburg.txt │ │ ├── downloading-czechia.py │ │ ├── downloading-mecklenburg-vorpommern.py │ │ ├── downloading-microsoft.py │ │ ├── downloading-niedersachsen.py │ │ ├── downloading-openstreetmap.py │ │ ├── downloading-poland.ipynb │ │ ├── downloading-sachsen.py │ │ ├── downloading-spain.py │ │ ├── downloading-thueringen.py │ │ ├── downloading-vienna.py │ │ ├── downloading_helsinki.py │ │ ├── submit-microsoft.sh │ │ ├── submit-osm.sh │ │ └── submit-spain.sh │ ├── 1-parsing │ │ ├── duplicate-removal │ │ │ ├── remove_duplicates_abruzzo.ipynb │ │ │ ├── remove_duplicates_lazio.py │ │ │ └── remove_duplicates_piemonte.ipynb │ │ ├── inputs-parsing-msft.csv │ │ ├── inputs-parsing-osm.csv │ │ ├── inputs-parsing-v1.csv │ │ ├── inputs-parsing.csv │ │ ├── main-parsing.py │ │ ├── matching │ │ │ ├── run_match_nl.py │ │ │ └── submit-matching_nl.sh │ │ └── validation │ │ │ ├── run-validation.py │ │ │ └── submit-stats.sh │ ├── 2-db-set-up │ │ ├── check_no_zeros.ipynb │ │ ├── db-set-up.py │ │ ├── lau-matching.ipynb │ │ ├── loss-db-set-up.ipynb │ │ ├── merge.py │ │ ├── merge_fix_gov.py │ │ ├── params-db-set-up-v1-gov.csv │ │ ├── params-gov.csv │ │ ├── params-merge.csv │ │ ├── params-msft.csv │ │ ├── params-osm.csv │ │ ├── slurm-config.yml │ │ ├── split_fr.py │ │ └── submit-split.sh │ ├── 3-attrib-cleaning │ │ ├── attrib_cleaning.py │ │ ├── params-generator.yml │ │ ├── params.yml │ │ ├── run_create_id.py │ │ ├── slurm-config.yml │ │ └── type-mapping │ │ │ ├── type-country.ipynb │ │ │ ├── type-germany.ipynb │ │ │ └── type-osm.ipynb │ └── 5-release │ │ ├── create_example_cities.py │ │ ├── final_test.py │ │ ├── params_example_cities.yml │ │ ├── params_overview.yml │ │ ├── params_release.yml │ │ ├── run-overview.py │ │ ├── run_create_submission.py │ │ └── slurm-config.yml └── slurm-config.yml ├── eubucco ├── preproc │ ├── attribs.py │ ├── create_overview.py │ ├── create_submission.py │ ├── db_set_up.py │ ├── merge.py │ ├── parsing.py │ └── reproj.py ├── ufo_map └── utils │ ├── concate.py │ ├── extra_cases.py │ ├── load.py │ └── validation_funcs.py ├── metadata ├── building-type-categories-v1.csv └── source_dataset_mapping-v1.json ├── requirements.txt └── tutorials ├── admin-codes-matches-v0.1.zip ├── downloading-openstreetmap.ipynb ├── downloading-parsing-osm.ipynb ├── downloading-spain-cadaster.ipynb ├── getting-started.ipynb ├── v0_1-FRA_1_2_3_11_1-Vichy.gpkg.zip └── website └── getting-started-website.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/README.md -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/README.md -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/downloading-abruzzo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/downloading-abruzzo.py -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/downloading-brandenburg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/downloading-brandenburg.txt -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/downloading-czechia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/downloading-czechia.py -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/downloading-mecklenburg-vorpommern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/downloading-mecklenburg-vorpommern.py -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/downloading-microsoft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/downloading-microsoft.py -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/downloading-niedersachsen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/downloading-niedersachsen.py -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/downloading-openstreetmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/downloading-openstreetmap.py -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/downloading-poland.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/downloading-poland.ipynb -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/downloading-sachsen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/downloading-sachsen.py -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/downloading-spain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/downloading-spain.py -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/downloading-thueringen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/downloading-thueringen.py -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/downloading-vienna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/downloading-vienna.py -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/downloading_helsinki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/downloading_helsinki.py -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/submit-microsoft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/submit-microsoft.sh -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/submit-osm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/submit-osm.sh -------------------------------------------------------------------------------- /database/preprocessing/0-downloading/submit-spain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/0-downloading/submit-spain.sh -------------------------------------------------------------------------------- /database/preprocessing/1-parsing/duplicate-removal/remove_duplicates_abruzzo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/1-parsing/duplicate-removal/remove_duplicates_abruzzo.ipynb -------------------------------------------------------------------------------- /database/preprocessing/1-parsing/duplicate-removal/remove_duplicates_lazio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/1-parsing/duplicate-removal/remove_duplicates_lazio.py -------------------------------------------------------------------------------- /database/preprocessing/1-parsing/duplicate-removal/remove_duplicates_piemonte.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/1-parsing/duplicate-removal/remove_duplicates_piemonte.ipynb -------------------------------------------------------------------------------- /database/preprocessing/1-parsing/inputs-parsing-msft.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/1-parsing/inputs-parsing-msft.csv -------------------------------------------------------------------------------- /database/preprocessing/1-parsing/inputs-parsing-osm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/1-parsing/inputs-parsing-osm.csv -------------------------------------------------------------------------------- /database/preprocessing/1-parsing/inputs-parsing-v1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/1-parsing/inputs-parsing-v1.csv -------------------------------------------------------------------------------- /database/preprocessing/1-parsing/inputs-parsing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/1-parsing/inputs-parsing.csv -------------------------------------------------------------------------------- /database/preprocessing/1-parsing/main-parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/1-parsing/main-parsing.py -------------------------------------------------------------------------------- /database/preprocessing/1-parsing/matching/run_match_nl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/1-parsing/matching/run_match_nl.py -------------------------------------------------------------------------------- /database/preprocessing/1-parsing/matching/submit-matching_nl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/1-parsing/matching/submit-matching_nl.sh -------------------------------------------------------------------------------- /database/preprocessing/1-parsing/validation/run-validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/1-parsing/validation/run-validation.py -------------------------------------------------------------------------------- /database/preprocessing/1-parsing/validation/submit-stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/1-parsing/validation/submit-stats.sh -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/check_no_zeros.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/check_no_zeros.ipynb -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/db-set-up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/db-set-up.py -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/lau-matching.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/lau-matching.ipynb -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/loss-db-set-up.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/loss-db-set-up.ipynb -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/merge.py -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/merge_fix_gov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/merge_fix_gov.py -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/params-db-set-up-v1-gov.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/params-db-set-up-v1-gov.csv -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/params-gov.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/params-gov.csv -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/params-merge.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/params-merge.csv -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/params-msft.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/params-msft.csv -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/params-osm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/params-osm.csv -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/slurm-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/slurm-config.yml -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/split_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/split_fr.py -------------------------------------------------------------------------------- /database/preprocessing/2-db-set-up/submit-split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/2-db-set-up/submit-split.sh -------------------------------------------------------------------------------- /database/preprocessing/3-attrib-cleaning/attrib_cleaning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/3-attrib-cleaning/attrib_cleaning.py -------------------------------------------------------------------------------- /database/preprocessing/3-attrib-cleaning/params-generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/3-attrib-cleaning/params-generator.yml -------------------------------------------------------------------------------- /database/preprocessing/3-attrib-cleaning/params.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/3-attrib-cleaning/params.yml -------------------------------------------------------------------------------- /database/preprocessing/3-attrib-cleaning/run_create_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/3-attrib-cleaning/run_create_id.py -------------------------------------------------------------------------------- /database/preprocessing/3-attrib-cleaning/slurm-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/3-attrib-cleaning/slurm-config.yml -------------------------------------------------------------------------------- /database/preprocessing/3-attrib-cleaning/type-mapping/type-country.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/3-attrib-cleaning/type-mapping/type-country.ipynb -------------------------------------------------------------------------------- /database/preprocessing/3-attrib-cleaning/type-mapping/type-germany.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/3-attrib-cleaning/type-mapping/type-germany.ipynb -------------------------------------------------------------------------------- /database/preprocessing/3-attrib-cleaning/type-mapping/type-osm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/3-attrib-cleaning/type-mapping/type-osm.ipynb -------------------------------------------------------------------------------- /database/preprocessing/5-release/create_example_cities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/5-release/create_example_cities.py -------------------------------------------------------------------------------- /database/preprocessing/5-release/final_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/5-release/final_test.py -------------------------------------------------------------------------------- /database/preprocessing/5-release/params_example_cities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/5-release/params_example_cities.yml -------------------------------------------------------------------------------- /database/preprocessing/5-release/params_overview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/5-release/params_overview.yml -------------------------------------------------------------------------------- /database/preprocessing/5-release/params_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/5-release/params_release.yml -------------------------------------------------------------------------------- /database/preprocessing/5-release/run-overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/5-release/run-overview.py -------------------------------------------------------------------------------- /database/preprocessing/5-release/run_create_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/5-release/run_create_submission.py -------------------------------------------------------------------------------- /database/preprocessing/5-release/slurm-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/preprocessing/5-release/slurm-config.yml -------------------------------------------------------------------------------- /database/slurm-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/database/slurm-config.yml -------------------------------------------------------------------------------- /eubucco/preproc/attribs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/eubucco/preproc/attribs.py -------------------------------------------------------------------------------- /eubucco/preproc/create_overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/eubucco/preproc/create_overview.py -------------------------------------------------------------------------------- /eubucco/preproc/create_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/eubucco/preproc/create_submission.py -------------------------------------------------------------------------------- /eubucco/preproc/db_set_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/eubucco/preproc/db_set_up.py -------------------------------------------------------------------------------- /eubucco/preproc/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/eubucco/preproc/merge.py -------------------------------------------------------------------------------- /eubucco/preproc/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/eubucco/preproc/parsing.py -------------------------------------------------------------------------------- /eubucco/preproc/reproj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/eubucco/preproc/reproj.py -------------------------------------------------------------------------------- /eubucco/ufo_map: -------------------------------------------------------------------------------- 1 | ../ufo-map/ufo_map -------------------------------------------------------------------------------- /eubucco/utils/concate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/eubucco/utils/concate.py -------------------------------------------------------------------------------- /eubucco/utils/extra_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/eubucco/utils/extra_cases.py -------------------------------------------------------------------------------- /eubucco/utils/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/eubucco/utils/load.py -------------------------------------------------------------------------------- /eubucco/utils/validation_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/eubucco/utils/validation_funcs.py -------------------------------------------------------------------------------- /metadata/building-type-categories-v1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/metadata/building-type-categories-v1.csv -------------------------------------------------------------------------------- /metadata/source_dataset_mapping-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/metadata/source_dataset_mapping-v1.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/requirements.txt -------------------------------------------------------------------------------- /tutorials/admin-codes-matches-v0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/tutorials/admin-codes-matches-v0.1.zip -------------------------------------------------------------------------------- /tutorials/downloading-openstreetmap.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/tutorials/downloading-openstreetmap.ipynb -------------------------------------------------------------------------------- /tutorials/downloading-parsing-osm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/tutorials/downloading-parsing-osm.ipynb -------------------------------------------------------------------------------- /tutorials/downloading-spain-cadaster.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/tutorials/downloading-spain-cadaster.ipynb -------------------------------------------------------------------------------- /tutorials/getting-started.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/tutorials/getting-started.ipynb -------------------------------------------------------------------------------- /tutorials/v0_1-FRA_1_2_3_11_1-Vichy.gpkg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/tutorials/v0_1-FRA_1_2_3_11_1-Vichy.gpkg.zip -------------------------------------------------------------------------------- /tutorials/website/getting-started-website.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai4up/eubucco/HEAD/tutorials/website/getting-started-website.ipynb --------------------------------------------------------------------------------