You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stat1=st.selectbox('Select station/group (see map in sidebar for location):', statios)
'krummhoern', 'coast', 'niedersachsen', 'inland' should be capatilized, 'oe' should be replaced by 'ö' and it would be helpful to add something like 'Krummhörn (region)' to make clear which selections are regions.
This could be achieved with a dictionary for label names of the stations.
The text was updated successfully, but these errors were encountered:
@cojacoo, when implementing this, should we use a hard-coded list of stations, or write something that derives the station names from the available netCDF?
Is it likely, that the list of stations might change?
@cojacoo maybe you can give an answer to this comment:
@cojacoo, when implementing this, should we use a hard-coded list of stations, or write something that derives the station names from the available netCDF?
Is it likely, that the list of stations might change?
I guess the 'correct' and full station names are the following:
'Norderney',
'Emden-Nesserland',
'Bremerhaven',
'Cuxhaven',
'Elpersbüttel',
'Sankt Peter-Ording',
'Soltau',
'Diepholz',
'Lüchow',
'Braunschweig-Gliesmarode',
'Alfeld',
'Lingen',
'Bremervörde (A)'
'Krummhörn (region)'
'Coastal (region)'
'Niedersachsen (region)'
'Inland (region)'
So for example 'Sankt Peter-Ording' instead of 'Ording' or 'Elpersbüttel' instead of 'Elpers'.
Obtaining the station names from the weather data
results in the following list of station names:
'Norderney', 'Emden', 'Bremerhaven', 'Cuxhaven', 'Elpers', 'Ording', 'Soltau', 'Diepholz', 'Lüchow', 'Braunschweig', 'Alfeld', 'Lingen', 'Bremervörde', 'krummhoern', 'coast', 'niedersachsen', 'inland'.
In the text in station selectboxes, e.g.:
RUINSapp/ruins/apps/weather.py
Line 157 in acf5830
'krummhoern', 'coast', 'niedersachsen', 'inland' should be capatilized, 'oe' should be replaced by 'ö' and it would be helpful to add something like 'Krummhörn (region)' to make clear which selections are regions.
This could be achieved with a dictionary for label names of the stations.
The text was updated successfully, but these errors were encountered: