-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
lurte-mes.sh
executable file
·128 lines (114 loc) · 6.28 KB
/
lurte-mes.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#!/bin/bash
apikey=$APIKEY_AEMET
error="
La APIKEY esta vacía, sin APIKEY no puedes obtener ningún dato.
Echale un ojo al README: https://github.com/vulturno/lurte#lo-que-necesitas
"
if [ -z "$apikey" ]; then
printf "%b\n" "\e[31m$error"
exit
fi
function openAemet {
# El mes que queremos descargar
mes=$1
# El número de estación de la AEMET
year=$2
# El año que queremos descargar
station=$3
read -r "$1"
case $1 in
enero)
curl --silent --request GET --insecure \
--url 'https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/'"${year}"'-01-01T00:00:00UTC/fechafin/'"${year}"'-01-31T23:59:59UTC/estacion/'"${station}"'/?api_key='"${apikey}"'' > "$mes".json
;;
febrero)
curl --silent --request GET --insecure \
--url 'https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/'"${year}"'-02-01T00:00:00UTC/fechafin/'"${year}"'-02-29T23:59:59UTC/estacion/'"${station}"'/?api_key='"${apikey}"'' > "$mes".json
;;
marzo)
curl --silent --request GET --insecure \
--url 'https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/'"${year}"'-03-01T00:00:00UTC/fechafin/'"${year}"'-03-31T23:59:59UTC/estacion/'"${station}"'/?api_key='"${apikey}"'' > "$mes".json
;;
abril)
curl --silent --request GET --insecure \
--url 'https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/'"${year}"'-04-01T00:00:00UTC/fechafin/'"${year}"'-04-30T23:59:59UTC/estacion/'"${station}"'/?api_key='"${apikey}"'' > "$mes".json
;;
mayo)
curl --silent --request GET --insecure \
--url 'https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/'"${year}"'-05-01T00:00:00UTC/fechafin/'"${year}"'-05-31T23:59:59UTC/estacion/'"${station}"'/?api_key='"${apikey}"'' > "$mes".json
;;
junio)
curl --silent --request GET --insecure \
--url 'https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/'"${year}"'-06-01T00:00:00UTC/fechafin/'"${year}"'-06-30T23:59:59UTC/estacion/'"${station}"'/?api_key='"${apikey}"'' > "$mes".json
;;
julio)
curl --silent --request GET --insecure \
--url 'https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/'"${year}"'-07-01T00:00:00UTC/fechafin/'"${year}"'-07-31T23:59:59UTC/estacion/'"${station}"'/?api_key='"${apikey}"'' > "$mes".json
;;
agosto)
curl --silent --request GET --insecure \
--url 'https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/'"${year}"'-08-01T00:00:00UTC/fechafin/'"${year}"'-08-31T23:59:59UTC/estacion/'"${station}"'/?api_key='"${apikey}"'' > "$mes".json
;;
septiembre)
curl --silent --request GET --insecure \
--url 'https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/'"${year}"'-09-01T00:00:00UTC/fechafin/'"${year}"'-09-30T23:59:59UTC/estacion/'"${station}"'/?api_key='"${apikey}"'' > "$mes".json
;;
octubre)
curl --silent --request GET --insecure \
--url 'https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/'"${year}"'-10-01T00:00:00UTC/fechafin/'"${year}"'-10-31T23:59:59UTC/estacion/'"${station}"'/?api_key='"${apikey}"'' >> "$mes".json
;;
noviembre)
curl --silent --request GET --insecure \
--url 'https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/'"${year}"'-11-01T00:00:00UTC/fechafin/'"${year}"'-11-30T23:59:59UTC/estacion/'"${station}"'/?api_key='"${apikey}"'' > "$mes".json
;;
diciembre)
curl --silent --request GET --insecure \
--url 'https://opendata.aemet.es/opendata/api/valores/climatologicos/diarios/datos/fechaini/'"${year}"'-12-01T00:00:00UTC/fechafin/'"${year}"'-12-31T23:59:59UTC/estacion/'"${station}"'/?api_key='"${apikey}"'' > "$mes".json
;;
*)
echo "No has introducido ningún mes, vuelve a probar introduciendo el nombre del mes en minúsculas."
;;
esac
jq -r '.datos' "$mes".json > temp.json && mv temp.json "$mes".json &&
while read -r line
do
curl --silent --request GET --insecure "$line" >> "$mes".json
done < "$mes".json
# Al concatenar todos los meses el objeto JSON no esta bien construido
# Mierdas varias para que el JSON quede formateado conforme es debido
sed -i 's/],/,/' "$mes".json &&
# Mierdas varias para que el JSON final quede formateado conforme es debido
sed -i '$ s/,/]/' "$mes".json &&
sed -i '$ s/],/,/' "$mes".json &&
# Cambiamos el separador de coma por punto
sed -i 's/\([0-9]\),/\1\./g' "$mes".json &&
# Cambiamos Ip por 0 ver https://github.com/jorgeatgu/lurte/issues/9
sed -i 's/Ip/0/' "$mes".json &&
# Eliminamos las comillas de los números, incluídos los negativos
sed -i -r 's/"(\-{0,1}[[:digit:]]+(\.[[:digit:]]+){0,1})"/\1/' "$mes".json &&
# Eliminamos el cero a la izquierda que esta en los resultados de la dirección de viento
sed -r -i 's/0*([0-9])/\1/' "$mes".json &&
sed -i '1d' "$mes".json &&
cp "$mes.json" "$station"-"$mes".json &&
rm "$mes".json
}
showLoading() {
mypid=$!
loadingText=$1
printf "%s.\r\e[35m" "$loadingText"
while kill -0 $mypid 2>/dev/null
do
printf "%s.\r\e[35m" "$loadingText"
sleep 0.5
printf "%s..\r\e[35m" "$loadingText"
sleep 0.5
printf "%s...\r\e[35m" "$loadingText"
sleep 0.5
printf "\\n"
printf "%s\r\e[35m" "$loadingText"
sleep 0.5
done
echo "$loadingText...
\Descarga completada!"
}
openAemet "$1" "$2" "$3" & showLoading "Descargando todos los datos de la AEMET"