„abflussdaten_sammeln.py“ ändern

Fehlerkorrektur doppelter Variablenname "messstelle"
master
pertl 4 years ago
parent 4b6d72f0f3
commit d4bdaaa0d7

@ -21,11 +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"]
bezeichnung = 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], "messstelle": messstelle, "geohash": geohash,
daten.append({"ts": durchfluss[0], "messstelle": bezeichnung, "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")

Loading…
Cancel
Save