From ef8cb0f7a911ea3fc0d943c296f6b87efb89b48e Mon Sep 17 00:00:00 2001 From: Santiago Crespo Date: Mon, 31 Oct 2022 09:51:24 +0000 Subject: [PATCH] Upload files to 'src/pipelines/bicimad' --- src/pipelines/bicimad/procesa_bicimad.sh | 105 +++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 src/pipelines/bicimad/procesa_bicimad.sh diff --git a/src/pipelines/bicimad/procesa_bicimad.sh b/src/pipelines/bicimad/procesa_bicimad.sh new file mode 100644 index 0000000..e0cc277 --- /dev/null +++ b/src/pipelines/bicimad/procesa_bicimad.sh @@ -0,0 +1,105 @@ +#!/bin/bash +# Descarga y procesa las bases de BiciMad +# Santiago Crespo 2022 + +EMAIL="xxxxx" +PASSWORD="XXXX" + +INITIALDIR=`pwd` +TMPDIR=/tmp/bicimad + +DIA=`date +%Y-%m-%d` +HORA=`date +%H-%M-%S` +DIR="$DIA-$HORA" + +mkdir -p current + +echo "$DIR" +mkdir "$DIR" +cd "$DIR" + +rm -rf $TMPDIR +mkdir -p $TMPDIR +cd $TMPDIR + +wget -nv "https://openapi.emtmadrid.es/v1/mobilitylabs/user/login/" --header="email: $EMAIL" --header="password: $PASSWORD" -O token +TOKEN=`awk -F 'accessToken": ' '{print $2}' token | awk -F '"' '{print $2}'` + +wget -nv "https://openapi.emtmadrid.es/v1/transport/bicimad/stations/" --header="accessToken: $TOKEN" -O bicimad_stations.json + +awk -F '"data":' '{print $2}' bicimad_stations.json | perl -pe 's/},/},\n/g' | perl -pe 's/{//g' | perl -pe 's/\["id"//g' > bicimad_stations.txt + +sed -i '1s/^/ "id"/' bicimad_stations.txt + +echo ' +' > bicimad_stations.osm + +ID="70000230000" + +# Para el timestamp +DIA=`date +%Y-%m-%d` +HORA=`date +%H:%M:%S` + +echo "Generando listado de estaciones fuera de servicio..." +wget -nv "https://gbfs.bici.madrid/en/station_status" +wget -nv "https://gbfs.bici.madrid/en/station_information" +#grep '"is_renting":"false","is_returning":"false"' station_status | awk -F '"' '{print "\""$4"\""}' > out-of-service-stations-id +grep '"is_renting":"false","is_returning":"false"' station_status | awk -F '"' '{print $4}' > out-of-service-stations-id + +echo "Getting REF a partir del ID..." +rm -f out-of-service-stations +while IFS='' read -r line || [[ -n "$line" ]]; do + if grep -q '"station_id":"'$line'"' station_information; then + grep '"station_id":"'$line'"' station_information | awk -F '"short_name":' '{print $2}' | awk -F ',' '{print $1}' >> out-of-service-stations + fi +done < out-of-service-stations-id + + +echo "Procesando..." +# $6 = Nombre calle número +# $12 = REF + +while IFS='' read -r line || [[ -n "$line" ]]; do + NAME=`echo $line | awk -F '"' '{print $6}'` + REF=`echo $line | awk -F '"' '{print $12}'` + ADDRESS=`echo $line | awk -F '"' '{print $16}'` + CAPACITY=`echo $line | awk -F '"' '{print $23}' | awk -F ',' '{print $1}' | awk -F ' ' '{print $2}'` + COORDS=`echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}'` + LAT=`echo $COORDS | awk -F ',' '{print $2}' | perl -pe 's/ //g'` + LON=`echo $COORDS | awk -F ',' '{print $1}'` + + if grep -q '"'$REF'"' out-of-service-stations; then + AMENITY="disused:amenity" + else + AMENITY="amenity" + fi + +# "echo -e" para que convierta la codificación a UTF-8: Sof\u00eda -> Sofía + echo -e ' + + + + + + + + + + +' >> bicimad_stations.osm + + + ID=$((ID + 1)) + +done < bicimad_stations.txt + +OUTPUT="amenity-bicycle_rental-bicimad_stations_EMT.osm" +mkdir -p $INITIALDIR/current/ +echo '' >> bicimad_stations.osm && ascii2uni -a U -q bicimad_stations.osm > $OUTPUT && cp $OUTPUT "$INITIALDIR/$DIR/" && cp $OUTPUT "$INITIALDIR/current/" && cd "$INITIALDIR/$DIR/" && echo "$OUTPUT creado!" || exit 1 + + +date +exit 0 + + +