We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a9267ff + 1fdfa59 commit c7d32e7Copy full SHA for c7d32e7
icos_jupyter_notebooks/station_characterization/stiltStations.py
@@ -25,6 +25,7 @@ def getStilt():
25
url="https://stilt.icos-cp.eu/viewer/stationinfo"
26
df = pd.read_csv(url)
27
28
+
29
# add ICOS flag to the station
30
icosStations = cpstation.getIdList()
31
icosStations = list(icosStations['id'][icosStations.theme=='AS'])
@@ -34,6 +35,10 @@ def getStilt():
34
35
36
# fill dictionary with ICOS station id, latitude, longitude and altitude
37
for ist in sorted(allStations):
38
39
+ if not ist in df['STILT id'].values:
40
+ continue
41
42
stations[ist] = {}
43
# get filename of link (original stiltweb directory structure) and extract location information
44
0 commit comments