35 lines
1.6 KiB
Bash
Executable File
35 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
echo "convertir les fichiers de données depuis etalab_data/irve_bornes_recharge en fichier osm "
|
|
overpass_website="https://overpass-api.de/api/interpreter"
|
|
# personnaliser les scripts:
|
|
# aire Essonne: id 3600007401
|
|
# aire IDF: id 3600008649
|
|
# aire FR: id 3602202162
|
|
|
|
output_file_name='irve_osm_latest'
|
|
|
|
bash ./get_datasets.sh
|
|
|
|
cd ..
|
|
pwd
|
|
echo " - mapping du fichier IRVE publié par Etalab "
|
|
ts-node convert_to_osm_tags.ts --engine=true --source="etalab_data/irve_bornes_recharge/latest.json" --outname="_irve-latest-etalab"
|
|
geojson2osm "$PWD/output/my_converted_data_set__irve-latest-etalab.json" > "$PWD/osm_output/bornes-irve-filetered_latest.osm"
|
|
|
|
# convert existing data
|
|
geojson2osm "$PWD/data_other/irve_osm_latest.geojson" > "$PWD/osm_output/osm-existing-bornes-irve.osm"
|
|
|
|
|
|
echo " - mapping des analyses Osmose sur l'item 8411 (charging_station)"
|
|
ts-node convert_to_osm_tags.ts --osmose=true --engine=true --source="etalab_data/irve_bornes_recharge/osmose-item-irve-8411-intégrables.json" --outname="_irve-latest-osmose"
|
|
geojson2osm "$PWD/output/my_converted_data_set__irve-latest-osmose.json" > "osm_output/my_converted_data_set__irve-latest-osmose.osm"
|
|
|
|
#ts-node convert_to_osm_tags.ts --osmose=true --engine=true --source="etalab_data/défibrillateurs/dae-osmose-8370.json" --outname="_dae-osmose-8370-latest-osmose"
|
|
#geojson2osm "$PWD/output/my_converted_data_set__dae-osmose-8370-latest-osmose.json" > "osm_output/my_converted_data_set__dae-osmose-8370-latest-osmose.osm"
|
|
|
|
echo "fichier généré: $PWD/output/converted__irve-latest-etalab.json"
|
|
|
|
|
|
|
|
cd update_scripts
|