Update backup_umap.sh

données phase 2
This commit is contained in:
MaelReboux 2019-10-06 11:44:40 +02:00
parent f342c5b8d5
commit 4a0fb019ed

View file

@ -5,12 +5,23 @@ cd /data/www/vhosts/ar-redadeg_openstreetmap_bzh/htdocs/scripts/backup/
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ # ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# on récupère les couches geojson depuis umap pour sauvegarde au cas où # on récupère les couches geojson depuis umap pour sauvegarde au cas où
# carte phase 1
# le tracé manuel # le tracé manuel
curl -sS http://umap.openstreetmap.fr/fr/datalayer/746021/ > "jour_courant/$(date +%Y%m%d)_$(date +%H%M)_phase_1_trace.geojson" curl -sS http://umap.openstreetmap.fr/fr/datalayer/746021/ > "jour_courant/$(date +%Y%m%d)_$(date +%H%M)_phase_1_trace.geojson"
# PK VIP # PK VIP
curl -sS http://umap.openstreetmap.fr/fr/datalayer/715179/ > "jour_courant/$(date +%Y%m%d)_$(date +%H%M)_phase_1_pk_vip.geojson" curl -sS http://umap.openstreetmap.fr/fr/datalayer/715179/ > "jour_courant/$(date +%Y%m%d)_$(date +%H%M)_phase_1_pk_vip.geojson"
#carte phase 2
# PK secteur
curl -sS http://umap.openstreetmap.fr/fr/datalayer/817220/ > "jour_courant/$(date +%Y%m%d)_$(date +%H%M)_phase_2_pk_secteur.geojson"
# PK technique / PK tecknikel
curl -sS http://umap.openstreetmap.fr/fr/datalayer/817221/ > "jour_courant/$(date +%Y%m%d)_$(date +%H%M)_phase_2_pk_techniques.geojson"
# points coupe tracé
curl -sS http://umap.openstreetmap.fr/fr/datalayer/861810/ > "jour_courant/$(date +%Y%m%d)_$(date +%H%M)_phase_2_points_coupe_trace.geoson"
# et on remonte d'un niveau ceux cd 06h 13h et 18h # et on remonte d'un niveau ceux cd 06h 13h et 18h
# si le nom du fichier matche le motif regexp # si le nom du fichier matche le motif regexp
@ -18,7 +29,8 @@ curl -sS http://umap.openstreetmap.fr/fr/datalayer/715179/ > "jour_courant/$(da
for f in jour_courant/*.geojson for f in jour_courant/*.geojson
do do
if [[ $f =~ [0-9]{8}_(0600|1300|1800)_* ]] #if [[ $f =~ [0-9]{8}_(0600|1300|1800)_* ]]
if [[ $f =~ [0-9]{8}_(0600)_* ]]
then cp $f ./ then cp $f ./
fi fi
done done