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

change dir_names to list_of_dirs for better description

parent 317ad36d
No related branches found
No related tags found
1 merge request!122allow to select multi folder to load
...@@ -46,7 +46,7 @@ class InputDialog(QDialog): ...@@ -46,7 +46,7 @@ class InputDialog(QDialog):
class ChannelPreferDialog(OneWindowAtATimeDialog): class ChannelPreferDialog(OneWindowAtATimeDialog):
def __init__(self, parent, dir_names): def __init__(self, parent, list_of_dir):
""" """
Dialog to create lists of preferred SOH channels that users want to Dialog to create lists of preferred SOH channels that users want to
select for plotting. select for plotting.
...@@ -55,12 +55,12 @@ class ChannelPreferDialog(OneWindowAtATimeDialog): ...@@ -55,12 +55,12 @@ class ChannelPreferDialog(OneWindowAtATimeDialog):
:param parent: QWidget/QMainWindow - widget that calls this plotting :param parent: QWidget/QMainWindow - widget that calls this plotting
widget widget
:param dir_names: str - absolute path to the folder that contains :param list_of_dir: str - absolute path to the folder that contains
data data
""" """
super(ChannelPreferDialog, self).__init__() super(ChannelPreferDialog, self).__init__()
self.parent = parent self.parent = parent
self.dir_names = dir_names self.list_of_dir = list_of_dir
self.setWindowTitle("SOH Channel Preferences") self.setWindowTitle("SOH Channel Preferences")
self.setGeometry(100, 100, 1100, 800) self.setGeometry(100, 100, 1100, 800)
main_layout = QtWidgets.QVBoxLayout() main_layout = QtWidgets.QVBoxLayout()
...@@ -90,7 +90,7 @@ class ChannelPreferDialog(OneWindowAtATimeDialog): ...@@ -90,7 +90,7 @@ class ChannelPreferDialog(OneWindowAtATimeDialog):
""" """
self.add_db_chan_btn: Union[QtWidgets.QPushButton, None] = None self.add_db_chan_btn: Union[QtWidgets.QPushButton, None] = None
""" """
scan_chan_btn: Button to scan through all channels from dir_names scan_chan_btn: Button to scan through all channels from list_of_dir
folder for the list of channels and data type to add folder for the list of channels and data type to add
to the current row to the current row
""" """
...@@ -394,7 +394,7 @@ class ChannelPreferDialog(OneWindowAtATimeDialog): ...@@ -394,7 +394,7 @@ class ChannelPreferDialog(OneWindowAtATimeDialog):
@QtCore.Slot() @QtCore.Slot()
def scan_channels(self): def scan_channels(self):
""" """
Scan for all available channels in folder self.dir_names to add to Scan for all available channels in folder self.list_of_dir to add to
preferred channel list. preferred channel list.
For RT130, all SOH channels are kept in a log file. It will be more For RT130, all SOH channels are kept in a log file. It will be more
reasonable to get channels from DB because the task of getting reasonable to get channels from DB because the task of getting
...@@ -406,7 +406,7 @@ class ChannelPreferDialog(OneWindowAtATimeDialog): ...@@ -406,7 +406,7 @@ class ChannelPreferDialog(OneWindowAtATimeDialog):
data_type = 'RT130' data_type = 'RT130'
else: else:
try: try:
data_type = detect_data_type(self.dir_names) data_type = detect_data_type(self.list_of_dir)
except Exception as e: except Exception as e:
QtWidgets.QMessageBox.warning(self, "Scan Channels", str(e)) QtWidgets.QMessageBox.warning(self, "Scan Channels", str(e))
return return
...@@ -428,9 +428,9 @@ class ChannelPreferDialog(OneWindowAtATimeDialog): ...@@ -428,9 +428,9 @@ class ChannelPreferDialog(OneWindowAtATimeDialog):
else: else:
self.scan_chan_btn.setEnabled(True) self.scan_chan_btn.setEnabled(True)
ret = read_mseed_channels(self.tracking_info_text_browser, ret = read_mseed_channels(self.tracking_info_text_browser,
self.dir_names) self.list_of_dir)
if ret == ([], [], [], []): if ret == ([], [], [], []):
msg = "No data can be read from " + ', '.join(self.dir_names) msg = "No data can be read from " + ', '.join(self.list_of_dir)
return QtWidgets.QMessageBox.warning(self, "No data", msg) return QtWidgets.QMessageBox.warning(self, "No data", msg)
(soh_chan_ids, mass_pos_chan_ids, (soh_chan_ids, mass_pos_chan_ids,
......
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