2019-01-12 13:24:17 +00:00
|
|
|
#!/bin/bash
|
2019-01-08 21:40:50 +00:00
|
|
|
|
2019-02-09 13:03:49 +00:00
|
|
|
cd /data/www/vhosts/ar-redadeg_openstreetmap_bzh/htdocs/scripts/backup/
|
2019-01-12 12:42:15 +00:00
|
|
|
|
2019-01-08 21:40:50 +00:00
|
|
|
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
|
|
# on récupère les couches geojson depuis umap pour sauvegarde au cas où
|
|
|
|
|
2019-10-06 09:44:40 +00:00
|
|
|
# carte phase 1
|
2019-01-08 21:40:50 +00:00
|
|
|
# le tracé manuel
|
2019-01-19 09:47:32 +00:00
|
|
|
curl -sS http://umap.openstreetmap.fr/fr/datalayer/746021/ > "jour_courant/$(date +%Y%m%d)_$(date +%H%M)_phase_1_trace.geojson"
|
2019-01-08 21:40:50 +00:00
|
|
|
# PK VIP
|
2019-01-12 13:24:17 +00:00
|
|
|
curl -sS http://umap.openstreetmap.fr/fr/datalayer/715179/ > "jour_courant/$(date +%Y%m%d)_$(date +%H%M)_phase_1_pk_vip.geojson"
|
|
|
|
|
|
|
|
|
2019-10-06 09:44:40 +00:00
|
|
|
#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"
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-01-12 13:24:17 +00:00
|
|
|
# et on remonte d'un niveau ceux cd 06h 13h et 18h
|
|
|
|
|
|
|
|
# si le nom du fichier matche le motif regexp
|
|
|
|
# on copie le fichier dans un autre répertoire
|
|
|
|
|
|
|
|
for f in jour_courant/*.geojson
|
|
|
|
do
|
2019-10-06 09:44:40 +00:00
|
|
|
#if [[ $f =~ [0-9]{8}_(0600|1300|1800)_* ]]
|
2019-10-08 18:44:27 +00:00
|
|
|
if [[ $f =~ [0-9]{8}_(1200)_* ]]
|
2019-01-12 13:30:40 +00:00
|
|
|
then cp $f ./
|
2019-01-12 13:24:17 +00:00
|
|
|
fi
|
|
|
|
done
|
2019-01-08 21:40:50 +00:00
|
|
|
|