ar_redadeg/scripts/traitements_phase_1.sh

42 lines
1.8 KiB
Bash
Raw Normal View History

2019-01-01 19:52:23 +00:00
#!/bin/sh
2019-02-09 12:41:31 +00:00
cd /data/www/vhosts/ar-redadeg_openstreetmap_bzh/htdocs/scripts/
2019-01-01 19:52:23 +00:00
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# on récupère les couches geojson depuis umap
# le tracé manuel
curl -sS http://umap.openstreetmap.fr/fr/datalayer/746021/ > data/phase_1_umap_trace.geojson
2019-01-01 19:52:23 +00:00
# PK VIP
curl -sS http://umap.openstreetmap.fr/fr/datalayer/715179/ > data/phase_1_umap_pk_vip.geojson
2019-01-01 19:52:23 +00:00
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# on charge dans postgis
# après avoir supprimé les tables
2019-10-28 11:04:44 +00:00
# note : les coordonnées sont en 3857 mais la déclaration de la table = 4326
2019-01-01 19:52:23 +00:00
2019-01-08 21:10:15 +00:00
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" data/phase_1_umap_trace.geojson -nln phase_1_trace_3857 -lco GEOMETRY_NAME=the_geom -explodecollections -overwrite
2019-01-01 19:52:23 +00:00
2019-01-08 21:10:15 +00:00
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" data/phase_1_umap_pk_vip.geojson -nln phase_1_pk_vip_3857 -lco GEOMETRY_NAME=the_geom -explodecollections -overwrite
2019-01-01 19:52:23 +00:00
# on crée les tables en 3948
psql -U redadeg -d redadeg < traitements_phase_1.sql
2019-01-01 19:52:23 +00:00
# et on exporte vers Geojson
rm data/phase_1_pk_auto.geojson
ogr2ogr -f "GeoJSON" data/phase_1_pk_auto.geojson PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_1_pk_auto_4326
rm data/phase_1_trace_4326.geojson
ogr2ogr -f "GeoJSON" data/phase_1_trace_4326.geojson PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_1_trace_4326
2019-01-01 19:52:23 +00:00
# les fichiers sont ensuite tout de suite visible dans umap
# exports supplémentaires
rm data/phase_1_pk_auto.xlsx
ogr2ogr -f "XLSX" data/phase_1_pk_auto.xlsx PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_1_pk_auto_4326