homogénéisation des scripts
This commit is contained in:
parent
a84d63fa58
commit
a8c2fd0c23
|
@ -1,9 +1,14 @@
|
||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
#cd /data/www/vhosts/ar-redadeg_openstreetmap_bzh/htdocs/scripts/
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
PSQL=/usr/bin/psql
|
||||||
|
DB_HOST=localhost
|
||||||
|
DB_NAME=redadeg
|
||||||
|
DB_USER=redadeg
|
||||||
|
DB_PASSWD=redadeg
|
||||||
|
|
||||||
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# on récupère les couches geojson depuis umap
|
|
||||||
|
|
||||||
|
|
||||||
echo "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
|
echo "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
|
||||||
|
@ -26,10 +31,10 @@ echo ""
|
||||||
echo " chargement des fichiers dans la BD"
|
echo " chargement des fichiers dans la BD"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
psql -U redadeg -d redadeg -c "DROP TABLE phase_1_trace_3857 CASCADE;"
|
$PSQL -h $DB_HOST -U $DB_USER -d $DB_NAME -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
|
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 -h $DB_HOST -U $DB_USER -d $DB_NAME -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
|
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
|
||||||
|
|
||||||
echo " fait"
|
echo " fait"
|
||||||
|
@ -41,7 +46,7 @@ echo " Application des traitements SQL "
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
# on crée les tables en 3948
|
# on crée les tables en 3948
|
||||||
psql -U redadeg -d redadeg < traitements_phase_1.sql
|
$PSQL -h $DB_HOST -U $DB_USER -d $DB_NAME < traitements_phase_1.sql
|
||||||
|
|
||||||
echo " fait"
|
echo " fait"
|
||||||
echo ""
|
echo ""
|
||||||
|
@ -56,14 +61,14 @@ echo ""
|
||||||
|
|
||||||
# et on exporte vers Geojson
|
# et on exporte vers Geojson
|
||||||
rm data/phase_1_pk_auto.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
|
ogr2ogr -f "GeoJSON" data/phase_1_pk_auto.geojson PG:"host=$DB_HOST user=$DB_USER password=$DB_PASSWD dbname=$DB_NAME" phase_1_pk_auto_4326
|
||||||
rm data/phase_1_trace_4326.geojson
|
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
|
ogr2ogr -f "GeoJSON" data/phase_1_trace_4326.geojson PG:"host=$DB_HOST user=$DB_USER password=$DB_PASSWD dbname=$DB_NAME" 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 data/phase_1_pk_auto.xlsx
|
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
|
ogr2ogr -f "XLSX" data/phase_1_pk_auto.xlsx PG:"host=$DB_HOST user=$DB_USER password=$DB_PASSWD dbname=$DB_NAME" phase_1_pk_auto_4326
|
||||||
|
|
||||||
echo " fait"
|
echo " fait"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
|
@ -7,10 +7,9 @@ PSQL=/usr/bin/psql
|
||||||
DB_HOST=localhost
|
DB_HOST=localhost
|
||||||
DB_NAME=redadeg
|
DB_NAME=redadeg
|
||||||
DB_USER=redadeg
|
DB_USER=redadeg
|
||||||
|
DB_PASSWD=redadeg
|
||||||
|
|
||||||
|
|
||||||
#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
|
||||||
|
|
||||||
|
@ -40,11 +39,11 @@ echo " chargement des fichiers dans la BD"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
echo "phase_2_pk_secteur_3857"
|
echo "phase_2_pk_secteur_3857"
|
||||||
$PSQL -U $DB_USER -d $DB_NAME -c "DROP TABLE IF EXISTS phase_2_pk_secteur_3857 CASCADE;"
|
$PSQL -h $DB_HOST -U $DB_USER -d $DB_NAME -c "DROP TABLE IF EXISTS phase_2_pk_secteur_3857 CASCADE;"
|
||||||
ogr2ogr -f "PostgreSQL" PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" data/phase_2_umap_pk_secteur.geojson -nln phase_2_pk_secteur_3857 -lco GEOMETRY_NAME=the_geom -explodecollections -overwrite
|
ogr2ogr -f "PostgreSQL" PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" data/phase_2_umap_pk_secteur.geojson -nln phase_2_pk_secteur_3857 -lco GEOMETRY_NAME=the_geom -explodecollections -overwrite
|
||||||
|
|
||||||
echo "phase_2_point_nettoyage_3857"
|
echo "phase_2_point_nettoyage_3857"
|
||||||
$PSQL -U $DB_USER -d $DB_NAME -c "DROP TABLE IF EXISTS phase_2_point_nettoyage_3857 CASCADE;"
|
$PSQL -h $DB_HOST -U $DB_USER -d $DB_NAME -c "DROP TABLE IF EXISTS phase_2_point_nettoyage_3857 CASCADE;"
|
||||||
ogr2ogr -f "PostgreSQL" PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" data/phase_2_umap_point_nettoyage.geojson -nln phase_2_point_nettoyage_3857 -lco GEOMETRY_NAME=the_geom -explodecollections -overwrite
|
ogr2ogr -f "PostgreSQL" PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" data/phase_2_umap_point_nettoyage.geojson -nln phase_2_point_nettoyage_3857 -lco GEOMETRY_NAME=the_geom -explodecollections -overwrite
|
||||||
|
|
||||||
echo " fait"
|
echo " fait"
|
||||||
|
@ -57,7 +56,7 @@ echo "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
|
||||||
echo " Application des traitements SQL 2.1"
|
echo " Application des traitements SQL 2.1"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
$PSQL -U $DB_USER -d $DB_NAME < traitements_phase_2.1.sql
|
$PSQL -h $DB_HOST -U $DB_USER -d $DB_NAME < traitements_phase_2.1.sql
|
||||||
|
|
||||||
echo " fait"
|
echo " fait"
|
||||||
echo ""
|
echo ""
|
||||||
|
@ -215,7 +214,7 @@ echo "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
|
||||||
echo " Application des traitements SQL 2.2"
|
echo " Application des traitements SQL 2.2"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
$PSQL -U $DB_USER -d $DB_NAME < traitements_phase_2.2.sql
|
$PSQL -h $DB_HOST -U $DB_USER -d $DB_NAME < traitements_phase_2.2.sql
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -231,11 +230,11 @@ echo " exports geojson"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
rm data/phase_2_pk_secteur.geojson
|
rm data/phase_2_pk_secteur.geojson
|
||||||
ogr2ogr -f "GeoJSON" data/phase_2_pk_secteur.geojson PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_2_pk_secteur_4326
|
ogr2ogr -f "GeoJSON" data/phase_2_pk_secteur.geojson PG:"host=$DB_HOST user=$DB_USER password=$DB_PASSWD dbname=$DB_NAME" phase_2_pk_secteur_4326
|
||||||
rm data/phase_2_trace_pgr.geojson
|
rm data/phase_2_trace_pgr.geojson
|
||||||
ogr2ogr -f "GeoJSON" data/phase_2_trace_pgr.geojson PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_2_trace_pgr_4326
|
ogr2ogr -f "GeoJSON" data/phase_2_trace_pgr.geojson PG:"host=$DB_HOST user=$DB_USER password=$DB_PASSWD dbname=$DB_NAME" phase_2_trace_pgr_4326
|
||||||
rm data/phase_2_trace_secteur.geojson
|
rm data/phase_2_trace_secteur.geojson
|
||||||
ogr2ogr -f "GeoJSON" data/phase_2_trace_secteur.geojson PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_2_trace_secteur_4326
|
ogr2ogr -f "GeoJSON" data/phase_2_trace_secteur.geojson PG:"host=$DB_HOST user=$DB_USER password=$DB_PASSWD dbname=$DB_NAME" phase_2_trace_secteur_4326
|
||||||
# les fichiers sont ensuite tout de suite visible dans umap
|
# les fichiers sont ensuite tout de suite visible dans umap
|
||||||
|
|
||||||
|
|
||||||
|
@ -244,9 +243,9 @@ echo " exports supplémentaires"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
rm data/phase_2_tdb.xlsx
|
rm data/phase_2_tdb.xlsx
|
||||||
ogr2ogr -f "XLSX" data/phase_2_tdb.xlsx PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_2_tdb
|
ogr2ogr -f "XLSX" data/phase_2_tdb.xlsx PG:"host=$DB_HOST user=$DB_USER password=$DB_PASSWD dbname=$DB_NAME" phase_2_tdb
|
||||||
rm data/phase_2_tdb.csv
|
rm data/phase_2_tdb.csv
|
||||||
ogr2ogr -f "CSV" data/phase_2_tdb.csv PG:"host=localhost user=redadeg password=redadeg dbname=redadeg" phase_2_tdb
|
ogr2ogr -f "CSV" data/phase_2_tdb.csv PG:"host=$DB_HOST user=$DB_USER password=$DB_PASSWD dbname=$DB_NAME" phase_2_tdb
|
||||||
|
|
||||||
echo " fait"
|
echo " fait"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
|
@ -4,13 +4,12 @@ set -e
|
||||||
set -u
|
set -u
|
||||||
|
|
||||||
PSQL=/usr/bin/psql
|
PSQL=/usr/bin/psql
|
||||||
DB_HOST=192.168.56.131
|
DB_HOST=breizhpolenovo
|
||||||
DB_NAME=redadeg
|
DB_NAME=redadeg
|
||||||
DB_USER=redadeg
|
DB_USER=redadeg
|
||||||
|
DB_PASSWD=redadeg
|
||||||
|
|
||||||
|
|
||||||
#cd /data/www/vhosts/ar-redadeg_openstreetmap_bzh/htdocs/scripts/
|
|
||||||
|
|
||||||
|
|
||||||
echo "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
|
echo "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
|
||||||
echo " Création des données phase 3"
|
echo " Création des données phase 3"
|
||||||
|
@ -36,13 +35,13 @@ echo " exports geojson"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
rm data/phase_3_pk_auto.geojson
|
rm data/phase_3_pk_auto.geojson
|
||||||
ogr2ogr -f "GeoJSON" data/phase_3_pk_auto.geojson PG:"host=$DB_HOST user=redadeg password=redadeg dbname=redadeg" phase_3_pk_auto_4326
|
ogr2ogr -f "GeoJSON" data/phase_3_pk_auto.geojson PG:"host=$DB_HOST user=$DB_USER password=$DB_PASSWD dbname=$DB_NAME" phase_3_pk_auto_4326
|
||||||
rm data/phase_3_pk_sens_verif.geojson
|
rm data/phase_3_pk_sens_verif.geojson
|
||||||
ogr2ogr -f "GeoJSON" data/phase_3_pk_sens_verif.geojson PG:"host=$DB_HOST user=redadeg password=redadeg dbname=redadeg" phase_3_pk_sens_verif_4326
|
ogr2ogr -f "GeoJSON" data/phase_3_pk_sens_verif.geojson PG:"host=$DB_HOST user=$DB_USER password=$DB_PASSWD dbname=$DB_NAME" phase_3_pk_sens_verif_4326
|
||||||
rm data/phase_3_trace_troncons.geojson
|
rm data/phase_3_trace_troncons.geojson
|
||||||
ogr2ogr -f "GeoJSON" data/phase_3_trace_troncons.geojson PG:"host=$DB_HOST user=redadeg password=redadeg dbname=redadeg" phase_3_trace_troncons_4326
|
ogr2ogr -f "GeoJSON" data/phase_3_trace_troncons.geojson PG:"host=$DB_HOST user=$DB_USER password=$DB_PASSWD dbname=$DB_NAME" phase_3_trace_troncons_4326
|
||||||
rm data/phase_3_trace_secteurs.geojson
|
rm data/phase_3_trace_secteurs.geojson
|
||||||
ogr2ogr -f "GeoJSON" data/phase_3_trace_secteurs.geojson PG:"host=$DB_HOST user=redadeg password=redadeg dbname=redadeg" phase_3_trace_secteurs_4326
|
ogr2ogr -f "GeoJSON" data/phase_3_trace_secteurs.geojson PG:"host=$DB_HOST user=$DB_USER password=$DB_PASSWD dbname=$DB_NAME" phase_3_trace_secteurs_4326
|
||||||
|
|
||||||
echo " fait"
|
echo " fait"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
Loading…
Reference in a new issue