Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SOHViewer
Manage
Activity
Members
Labels
Plan
Issues
14
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
5
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
Merge requests
!318
Fix mass-position data extracted from RT130 log files not being plotted
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix mass-position data extracted from RT130 log files not being plotted
bug-#273-masspos_line_not_read_in_log_file
into
develop
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Kien Le
requested to merge
bug-#273-masspos_line_not_read_in_log_file
into
develop
9 months ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
Closes
#273 (closed)
👍
0
👎
0
Merge request reports
Viewing commit
6d431a84
Show latest version
1 file
+
6
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
6d431a84
Fix the problem
· 6d431a84
Kien Le
authored
9 months ago
sohstationviewer/model/reftek_data/reftek.py
+
6
−
1
Options
@@ -240,8 +240,13 @@ class RT130(GeneralData):
trace
=
{
'
startTmEpoch
'
:
times
[
0
],
'
endTmEpoch
'
:
times
[
-
1
],
'
data
'
:
data
,
'
times
'
:
times
}
if
masspos_chan
not
in
self
.
mass_pos_data
[
data_set_id
]:
if
masspos_chan
[
-
1
]
in
[
'
1
'
,
'
2
'
,
'
3
'
]:
is_visible
=
self
.
include_mp123zne
else
:
is_visible
=
self
.
include_mp456uvw
self
.
mass_pos_data
[
data_set_id
][
masspos_chan
]
=
(
{
'
tracesInfo
'
:
[]}
{
'
tracesInfo
'
:
[],
'
visible
'
:
is_visible
}
)
self
.
mass_pos_data
[
data_set_id
][
masspos_chan
][
'
samplerate
'
]
=
0
trace
[
'
startTmEpoch
'
]
=
times
[
0
]
Loading