├── .gitignore ├── README.md ├── data ├── abbrev.txt ├── abbreviations.csv ├── comsimp2014.csv ├── comsimp2014.txt ├── comsimp2014.zip ├── depts2014.csv ├── depts2014.txt ├── epcicom2015.csv ├── poste │ ├── code_postaux_v201410.csv │ └── code_postaux_v201410_corr.csv ├── reg2014.txt ├── reg2015.csv └── reg2015.txt ├── out └── README.md └── scripts ├── README.md ├── abrev.sql ├── abrev_init.sh ├── abrev_load_dep.sh ├── abrev_regexp.csv ├── abrev_update.sh ├── apparie_poste_dgfip.sql ├── check_all.sh ├── check_code_insee.sh ├── check_code_post.sh ├── check_fantoir.sh ├── check_id.sh ├── check_nom_commune.sh ├── check_nom_voie.sh ├── check_numero_rep.sh ├── check_ran.sh ├── check_ran_all.sh ├── clean.sql ├── config.sh ├── convert_all.sh ├── convert_ban2json.sh ├── in_ban2pg.sh ├── init_abbrev.sh ├── init_cog.sh ├── init_dgfip_fantoir.sh ├── init_osm_communes.sh ├── init_osm_noms_cadastre.sh ├── init_poste.sh ├── init_poste.sql ├── init_poste_cp.sh ├── out_check.sh ├── out_check_par_dept.csv ├── out_check_par_type.csv ├── out_compare.sh ├── out_csv_communes.sh ├── out_gml.sh ├── out_odbl.sh ├── out_pg2json.sh └── out_pg2json_all.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | .AppleDouble 4 | .LSOverride 5 | /out/ 6 | /data/ 7 | 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/README.md -------------------------------------------------------------------------------- /data/abbrev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/data/abbrev.txt -------------------------------------------------------------------------------- /data/abbreviations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/data/abbreviations.csv -------------------------------------------------------------------------------- /data/comsimp2014.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/data/comsimp2014.csv -------------------------------------------------------------------------------- /data/comsimp2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/data/comsimp2014.txt -------------------------------------------------------------------------------- /data/comsimp2014.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/data/comsimp2014.zip -------------------------------------------------------------------------------- /data/depts2014.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/data/depts2014.csv -------------------------------------------------------------------------------- /data/depts2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/data/depts2014.txt -------------------------------------------------------------------------------- /data/epcicom2015.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/data/epcicom2015.csv -------------------------------------------------------------------------------- /data/poste/code_postaux_v201410.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/data/poste/code_postaux_v201410.csv -------------------------------------------------------------------------------- /data/poste/code_postaux_v201410_corr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/data/poste/code_postaux_v201410_corr.csv -------------------------------------------------------------------------------- /data/reg2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/data/reg2014.txt -------------------------------------------------------------------------------- /data/reg2015.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/data/reg2015.csv -------------------------------------------------------------------------------- /data/reg2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/data/reg2015.txt -------------------------------------------------------------------------------- /out/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/out/README.md -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/abrev.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/abrev.sql -------------------------------------------------------------------------------- /scripts/abrev_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/abrev_init.sh -------------------------------------------------------------------------------- /scripts/abrev_load_dep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/abrev_load_dep.sh -------------------------------------------------------------------------------- /scripts/abrev_regexp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/abrev_regexp.csv -------------------------------------------------------------------------------- /scripts/abrev_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/abrev_update.sh -------------------------------------------------------------------------------- /scripts/apparie_poste_dgfip.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/apparie_poste_dgfip.sql -------------------------------------------------------------------------------- /scripts/check_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/check_all.sh -------------------------------------------------------------------------------- /scripts/check_code_insee.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/check_code_insee.sh -------------------------------------------------------------------------------- /scripts/check_code_post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/check_code_post.sh -------------------------------------------------------------------------------- /scripts/check_fantoir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/check_fantoir.sh -------------------------------------------------------------------------------- /scripts/check_id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/check_id.sh -------------------------------------------------------------------------------- /scripts/check_nom_commune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/check_nom_commune.sh -------------------------------------------------------------------------------- /scripts/check_nom_voie.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/check_nom_voie.sh -------------------------------------------------------------------------------- /scripts/check_numero_rep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/check_numero_rep.sh -------------------------------------------------------------------------------- /scripts/check_ran.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/check_ran.sh -------------------------------------------------------------------------------- /scripts/check_ran_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/check_ran_all.sh -------------------------------------------------------------------------------- /scripts/clean.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/clean.sql -------------------------------------------------------------------------------- /scripts/config.sh: -------------------------------------------------------------------------------- 1 | export DB="postgresql:///cquest" 2 | 3 | -------------------------------------------------------------------------------- /scripts/convert_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/convert_all.sh -------------------------------------------------------------------------------- /scripts/convert_ban2json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/convert_ban2json.sh -------------------------------------------------------------------------------- /scripts/in_ban2pg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/in_ban2pg.sh -------------------------------------------------------------------------------- /scripts/init_abbrev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/init_abbrev.sh -------------------------------------------------------------------------------- /scripts/init_cog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/init_cog.sh -------------------------------------------------------------------------------- /scripts/init_dgfip_fantoir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/init_dgfip_fantoir.sh -------------------------------------------------------------------------------- /scripts/init_osm_communes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/init_osm_communes.sh -------------------------------------------------------------------------------- /scripts/init_osm_noms_cadastre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/init_osm_noms_cadastre.sh -------------------------------------------------------------------------------- /scripts/init_poste.sh: -------------------------------------------------------------------------------- 1 | psql < init_poste.sql 2 | 3 | -------------------------------------------------------------------------------- /scripts/init_poste.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/init_poste.sql -------------------------------------------------------------------------------- /scripts/init_poste_cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/init_poste_cp.sh -------------------------------------------------------------------------------- /scripts/out_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/out_check.sh -------------------------------------------------------------------------------- /scripts/out_check_par_dept.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/out_check_par_dept.csv -------------------------------------------------------------------------------- /scripts/out_check_par_type.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/out_check_par_type.csv -------------------------------------------------------------------------------- /scripts/out_compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/out_compare.sh -------------------------------------------------------------------------------- /scripts/out_csv_communes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/out_csv_communes.sh -------------------------------------------------------------------------------- /scripts/out_gml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/out_gml.sh -------------------------------------------------------------------------------- /scripts/out_odbl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/out_odbl.sh -------------------------------------------------------------------------------- /scripts/out_pg2json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/out_pg2json.sh -------------------------------------------------------------------------------- /scripts/out_pg2json_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/ban-data/HEAD/scripts/out_pg2json_all.sh --------------------------------------------------------------------------------