-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgui-configuration.py
260 lines (224 loc) · 8.37 KB
/
gui-configuration.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
import streamlit as st
import logging
from streamlit.logger import get_logger
import io
from pathlib import Path
from neptoon_gui_utils import *
st.title(":material/settings: Configuration")
"""
We keep all the different settings and parameters well organized in configuration files.
They are simple text files in [YAML format](https://en.wikipedia.org/wiki/YAML),
editable by any text editor.
To initialize your data processing, you can either use existing exemplary configuration files, or upload your own.
"""
##################################
st.subheader("1. Site and sensor")
"""
The first file is site-specific, it contains all the relevant information for your individual sensor.
"""
##################################
st.selectbox(
"Select a configuration:",
[
"Custom configuration...",
"Example: COSMOS Europe",
# "Example: Hydroinnova",
# "Example: Styx Neutronica",
"Example: Finapp",
],
key="config_sensor_selected",
)
if st.session_state["config_sensor_selected"] == "Example: COSMOS Europe":
st.session_state["config_sensor_file"] = (
Path.cwd() / "default_configuration" / "FSC001_station.yaml"
)
st.success(
":material/check: Using **{:}** for sensor and site configuration.".format(
st.session_state["config_sensor_selected"]
)
)
with st.expander("View"):
st.code(
read_file(st.session_state["config_sensor_file"]),
language="yaml",
)
elif st.session_state["config_sensor_selected"] == "Example: Hydroinnova":
st.session_state["config_sensor_file"] = (
Path.cwd() / "default_configuration" / "A101_station.yaml"
)
st.success(
":material/check: Using **{:}** for sensor and site configuration.".format(
st.session_state["config_sensor_selected"]
)
)
with st.expander("View"):
st.code(
read_file(st.session_state["config_sensor_file"]),
language="yaml",
)
elif st.session_state["config_sensor_selected"] == "Example: Styx Neutronica":
st.session_state["config_sensor_file"] = (
Path.cwd() / "default_configuration" / "StyxHC.yaml"
)
st.success(
":material/check: Using **{:}** for sensor and site configuration.".format(
st.session_state["config_sensor_selected"]
)
)
with st.expander("View"):
st.code(
read_file(st.session_state["config_sensor_file"]),
language="yaml",
)
elif st.session_state["config_sensor_selected"] == "Example: Finapp":
st.session_state["config_sensor_file"] = (
Path.cwd() / "default_configuration" / "FinApp01.yaml"
)
st.success(
":material/check: Using **{:}** for sensor and site configuration.".format(
st.session_state["config_sensor_selected"]
)
)
with st.expander("View"):
st.code(
read_file(st.session_state["config_sensor_file"]),
language="yaml",
)
elif st.session_state["config_sensor_selected"] == "Custom configuration...":
uploaded_file = st.file_uploader(
"Upload your configuration file",
type={"yaml", "yml"},
key="config_sensor_uploaded",
label_visibility="collapsed",
)
if uploaded_file:
# File upload
st.session_state["config_sensor_uploaded_name"] = uploaded_file.name
temp_file_path = save_uploaded_file(uploaded_file)
atexit.register(cleanup, temp_file_path)
st.session_state["config_sensor_uploaded_file"] = temp_file_path
st.session_state["config_sensor_file"] = temp_file_path
if st.session_state["config_sensor_uploaded_file"]:
# Already uploaded
st.success(
":material/check: Using **{:}** for sensor and site configuration.".format(
st.session_state["config_sensor_uploaded_name"]
)
)
with st.expander("View"):
st.code(
read_file(st.session_state["config_sensor_uploaded_file"]),
language="yaml",
)
else:
st.error("Unknown selection.")
##################################
st.subheader("2. Data processing")
"""
The second configuration file contains all the processing methods and parameters.
In most cases, the COSMOS standard processing scheme can be used.
Different settings might be necessary for special cases.
"""
##################################
st.selectbox(
"Select a configuration:",
["COSMOS Standard v1.0", "Custom configuration..."],
key="config_processing_selected",
)
if st.session_state["config_processing_selected"] == "COSMOS Standard v1.0":
st.session_state["config_processing_file"] = (
Path.cwd() / "default_configuration" / "v1_processing_method.yaml"
)
st.success(
":material/check: Using the **{:}** configuration for data processing.".format(
st.session_state["config_processing_selected"]
)
)
with st.expander("View"):
st.code(
read_file(st.session_state["config_processing_file"]),
language="yaml",
)
elif (
st.session_state["config_processing_selected"] == "Custom configuration..."
):
uploaded_file = st.file_uploader(
"Upload your configuration file",
type={"yaml", "yml"},
key="config_processing_uploaded",
label_visibility="collapsed",
)
if uploaded_file:
# File upload
st.session_state["config_processing_uploaded_name"] = (
uploaded_file.name
)
temp_file_path = save_uploaded_file(uploaded_file)
atexit.register(cleanup, temp_file_path)
st.session_state["config_processing_uploaded_file"] = temp_file_path
st.session_state["config_processing_file"] = temp_file_path
if st.session_state["config_processing_uploaded_file"]:
# Already uploaded
st.success(
":material/check: Using **{:}** for data processing.".format(
st.session_state["config_processing_uploaded_name"]
)
)
with st.expander("View"):
st.code(
read_file(st.session_state["config_processing_uploaded_file"]),
language="yaml",
)
else:
st.error("Unknown selection.")
##################
st.subheader("3. Apply configuration")
from neptoon.io.read import ConfigurationManager
from neptoon.workflow import ProcessWithYaml
# @st.cache_data(show_spinner="Checking YAML files...")
def parse_yaml_files():
config = ConfigurationManager()
config.load_configuration(file_path=st.session_state["config_sensor_file"])
config.load_configuration(
file_path=st.session_state["config_processing_file"]
)
st.session_state["yaml"] = ProcessWithYaml(configuration_object=config)
if (
st.session_state["config_sensor_file"]
and st.session_state["config_processing_file"]
):
button_pressed = False
if st.button(":material/settings: Check files and apply", type="primary"):
parse_yaml_files()
button_pressed = True
# st.write(len(st.session_state["yaml"].sensor_config))
st.session_state["config_already_parsed"] = False
st.session_state["data_read_ready"] = False
st.session_state["data_parsed"] = False
st.session_state["data_nmdb_attached"] = False
st.session_state["data_quality_checked"] = False
st.session_state["data_corrections_made"] = False
st.session_state["calibration_read_ready"] = False
st.session_state["calibration_finished"] = False
st.session_state["data_converted"] = False
if st.session_state["yaml"]:
st.success("Configuration is valid :smile:")
st.session_state["yaml_checked"] = True
# with st.expander("View"):
# st.write(st.session_state["yaml"].sensor_config.sensor_info)
elif button_pressed:
st.error("There is a problem with the validity of the settings.")
st.write(st.session_state["config_sensor_file"])
st.write(st.session_state["config_processing_file"])
with st.expander("View"):
st.write(st.session_state["yaml"])
st.write(st.session_state["yaml"].sensor_config)
if st.button("Clear cache"):
# st.session_state.clear()
st.cache_data.clear()
st.cache_resource.clear()
st.rerun()
else:
"""
Select two configuration files from above.
"""