Skip to content
Snippets Groups Projects
Commit fdccba21 authored by Lan Dam's avatar Lan Dam
Browse files

main_window.py: add rt130_waveform_data_req to data_loader.init_loader to allow DS to be plotted

parent 042a537b
No related branches found
No related tags found
1 merge request!152intergrate rt130
Pipeline #2813 failed with stage
in 2 minutes and 41 seconds
......@@ -571,6 +571,13 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow):
else:
self.gap_minimum = None
# if waveform channels are selected, Event DS will be read from EH/ET
# header
# rt130_waveform_data_req is to read data for wave form data
rt130_waveform_data_req = False
if self.raw_check_box.isChecked() or self.tps_check_box.isChecked():
rt130_waveform_data_req = True
if self.mseed_wildcard_edit.text().strip() != '':
try:
check_chan_wildcards_format(self.mseed_wildcard_edit.text())
......@@ -657,7 +664,8 @@ class MainWindow(QtWidgets.QMainWindow, UIMainWindow):
read_start=self.start_tm,
read_end=self.end_tm,
include_mp123=self.mass_pos_123zne_check_box.isChecked(),
include_mp456=self.mass_pos_456uvw_check_box.isChecked()
include_mp456=self.mass_pos_456uvw_check_box.isChecked(),
rt130_waveform_data_req=rt130_waveform_data_req
)
self.data_loader.worker.finished.connect(self.data_loaded)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment