From d4bdaaa0d7e58b4f50e27ac0464b0c1b287a102c Mon Sep 17 00:00:00 2001 From: pertl Date: Thu, 10 Sep 2020 21:34:59 +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 Fehlerkorrektur doppelter Variablenname "messstelle" --- abflussdaten_sammeln.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/abflussdaten_sammeln.py b/abflussdaten_sammeln.py index 7803e25..327c698 100644 --- a/abflussdaten_sammeln.py +++ b/abflussdaten_sammeln.py @@ -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")