From 3fcf7262184e288cb158f686bbaf6d2062020336 Mon Sep 17 00:00:00 2001 From: MaelREBOUX Date: Mon, 22 Mar 2021 12:18:59 +0100 Subject: [PATCH] Update traitements_phase_1.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ajustements traitement bash… --- scripts/traitements_phase_1.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/traitements_phase_1.sh b/scripts/traitements_phase_1.sh index 14d2029..8ec7451 100755 --- a/scripts/traitements_phase_1.sh +++ b/scripts/traitements_phase_1.sh @@ -14,7 +14,7 @@ DB_PASSWD=redadeg # varaibles liées au millésimes echo "millesime de travail = $1" -rep_data=../data/$millesime/ +rep_data=../data/$millesime echo "rep_data = $rep_data" echo "base de données = $DB_NAME" echo "" @@ -79,14 +79,14 @@ echo " exports geojson" echo "" # et on exporte vers Geojson -rm $rep_data/phase_1_pk_auto.geojson +rm -f $rep_data/phase_1_pk_auto.geojson ogr2ogr -f "GeoJSON" $rep_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 $rep_data/phase_1_trace_4326.geojson ogr2ogr -f "GeoJSON" $rep_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 # exports supplémentaires -rm $rep_data/phase_1_pk_auto.xlsx +rm -f $rep_data/phase_1_pk_auto.xlsx ogr2ogr -f "XLSX" $rep_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"