Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SOHViewer
Manage
Activity
Members
Labels
Plan
Issues
11
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Public
PASSOFT
SOHViewer
Commits
46ef8853
Commit
46ef8853
authored
1 year ago
by
Lan Dam
Browse files
Options
Downloads
Patches
Plain Diff
change dir_names to list_of_dirs for better description
parent
317ad36d
No related branches found
No related tags found
1 merge request
!122
allow to select multi folder to load
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sohstationviewer/view/channel_prefer_dialog.py
+8
-8
8 additions, 8 deletions
sohstationviewer/view/channel_prefer_dialog.py
with
8 additions
and
8 deletions
sohstationviewer/view/channel_prefer_dialog.py
+
8
−
8
View file @
46ef8853
...
@@ -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
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment