création d'un répertoire 'data'
Pour moins de fouilli dans le répertoire scripts.
This commit is contained in:
parent
cecf5cf155
commit
ac5453217d
1
scripts/data/README.md
Normal file
1
scripts/data/README.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Ce dossier contient les fichiers de données nécessaires pour les échanges ou diffusion.
|
|
@ -6,9 +6,9 @@ cd /data/www/vhosts/ar-redadeg_openstreetmap_bzh/htdocs/scripts/
|
||||||
# on récupère les couches geojson depuis umap
|
# on récupère les couches geojson depuis umap
|
||||||
|
|
||||||
# le tracé manuel
|
# le tracé manuel
|
||||||
curl -sS http://umap.openstreetmap.fr/fr/datalayer/746021/ > phase_1_trace.geojson
|
curl -sS http://umap.openstreetmap.fr/fr/datalayer/746021/ > data/phase_1_umap_trace.geojson
|
||||||
# PK VIP
|
# PK VIP
|
||||||
curl -sS http://umap.openstreetmap.fr/fr/datalayer/715179/ > phase_1_pk_vip.geojson
|
curl -sS http://umap.openstreetmap.fr/fr/datalayer/715179/ > data/phase_1_umap_pk_vip.geojson
|
||||||
|
|
||||||
|
|
||||||
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
@ -18,24 +18,24 @@ curl -sS http://umap.openstreetmap.fr/fr/datalayer/715179/ > phase_1_pk_vip.geo
|
||||||
# note : les coordonnées sont en 3857 maisla déclaration de la table = 4326
|
# note : les coordonnées sont en 3857 maisla déclaration de la table = 4326
|
||||||
|
|
||||||
psql -U redadeg -d redadeg -c "DROP TABLE phase_1_trace_3857 CASCADE;"
|
psql -U redadeg -d redadeg -c "DROP TABLE phase_1_trace_3857 CASCADE;"
|
||||||
ogr2ogr -f "PostgreSQL" PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_1_trace.geojson -nln phase_1_trace_3857 -lco GEOMETRY_NAME=the_geom -explodecollections -overwrite
|
ogr2ogr -f "PostgreSQL" PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" data/phase_1_umap_trace.geojson -nln phase_1_trace_3857 -lco GEOMETRY_NAME=the_geom -explodecollections -overwrite
|
||||||
|
|
||||||
psql -U redadeg -d redadeg -c "DROP TABLE phase_1_pk_vip_3857;"
|
psql -U redadeg -d redadeg -c "DROP TABLE phase_1_pk_vip_3857;"
|
||||||
ogr2ogr -f "PostgreSQL" PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_1_pk_vip.geojson -nln phase_1_pk_vip_3857 -lco GEOMETRY_NAME=the_geom -explodecollections -overwrite
|
ogr2ogr -f "PostgreSQL" PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" data/phase_1_umap_pk_vip.geojson -nln phase_1_pk_vip_3857 -lco GEOMETRY_NAME=the_geom -explodecollections -overwrite
|
||||||
|
|
||||||
|
|
||||||
# on crée les tables en 3948
|
# on crée les tables en 3948
|
||||||
psql -U redadeg -d redadeg < traitements.sql
|
psql -U redadeg -d redadeg < traitements_phase_1.sql
|
||||||
|
|
||||||
|
|
||||||
# et on exporte vers Geojson
|
# et on exporte vers Geojson
|
||||||
rm phase_1_pk_auto.geojson
|
rm data/phase_1_pk_auto.geojson
|
||||||
ogr2ogr -f "GeoJSON" phase_1_pk_auto.geojson PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_1_pk_auto_4326
|
ogr2ogr -f "GeoJSON" data/phase_1_pk_auto.geojson PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_1_pk_auto_4326
|
||||||
rm phase_1_trace_4326.geojson
|
rm data/phase_1_trace_4326.geojson
|
||||||
ogr2ogr -f "GeoJSON" phase_1_trace_4326.geojson PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_1_trace_4326
|
ogr2ogr -f "GeoJSON" data/phase_1_trace_4326.geojson PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_1_trace_4326
|
||||||
# les fichiers sont ensuite tout de suite visible dans umap
|
# les fichiers sont ensuite tout de suite visible dans umap
|
||||||
|
|
||||||
# exports supplémentaires
|
# exports supplémentaires
|
||||||
rm phase_1_pk_auto.xlsx
|
rm data/phase_1_pk_auto.xlsx
|
||||||
ogr2ogr -f "XLSX" phase_1_pk_auto.xlsx PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_1_pk_auto_4326
|
ogr2ogr -f "XLSX" data/phase_1_pk_auto.xlsx PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_1_pk_auto_4326
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue