Skip to content
Snippets Groups Projects
Commit f4a7792b authored by Clemens Berteld's avatar Clemens Berteld
Browse files

Usin global var stationList. Working now

parent 01da0c19
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,8 @@ def loadDWDGauges():
return stationList
def filterDWDGauges(stationList):
def filterDWDGauges():
global stationList
stationList = stationList.loc[stationList['country'] == "Germany"]
stationList['lat'] = pd.to_numeric(stationList['lat'], errors='coerce', downcast='float')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment