From 4b6d72f0f328891fbc1fffd626cefa820b9478b9 Mon Sep 17 00:00:00 2001 From: pertl Date: Thu, 10 Sep 2020 21:33:10 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9Eabflussdaten=5Fsammeln.py=E2=80=9C=20?= =?UTF-8?q?=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Messstellenbezeichnung ergänzt --- abflussdaten_sammeln.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/abflussdaten_sammeln.py b/abflussdaten_sammeln.py index 75f05ff..7803e25 100644 --- a/abflussdaten_sammeln.py +++ b/abflussdaten_sammeln.py @@ -21,10 +21,11 @@ def daten_sammeln(): for messstelle in CONFIG["hnd"]: lat = CONFIG["hnd"][messstelle]["lat"] lon = CONFIG["hnd"][messstelle]["lon"] + messstelle = CONFIG["hnd"][messstelle]["text"] geohash = pygeohash.geohash.encode(lat, lon) durchfluss = max(hnd_scraping.scrap_messwerte_hnd(CONFIG["hnd"][messstelle]["url_q"])) pegelstand = max(hnd_scraping.scrap_messwerte_hnd(CONFIG["hnd"][messstelle]["url_h"])) - daten.append({"ts": durchfluss[0], "geohash": geohash, + daten.append({"ts": durchfluss[0], "messstelle": messstelle, "geohash": geohash, "durchfluss": durchfluss[1], "pegelstand": pegelstand[1]}) hydris_daten = hydris_data.get_hydris_data("https://www.salzburg.gv.at/wasser/hydro/grafiken/data.json") @@ -33,7 +34,7 @@ def daten_sammeln(): for number in numbers] for station in hydris_daten_gefiltert: geohash = pygeohash.geohash.encode(station.location.lat, station.location.lon) - daten.append({"ts": station.flow["15m.Cmd.RunOff"].timestamp, "geohash": geohash, + daten.append({"ts": station.flow["15m.Cmd.RunOff"].timestamp, "messstelle": station.name, "geohash": geohash, "durchfluss": station.flow["15m.Cmd.RunOff"].value, "pegelstand": station.water_level["15m.Cmd.WiskiWeb"].value}) return daten