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
3fcd4f00
Commit
3fcd4f00
authored
1 year ago
by
Lan Dam
Browse files
Options
Downloads
Patches
Plain Diff
recalculate total points for plot_time_dots, plot_multi_color_dots and plot_up_down_dots
parent
9d993577
No related branches found
No related tags found
3 merge requests
!149
Fix bug happen when zooming in overlap section
,
!148
fix zooming, order, y for the combination of 2 channels GPS_lk_Unlk and GPS_clock_power
,
!145
Change to use matplotlib's lim for zooming
Pipeline
#2781
passed with stage
in 3 minutes
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sohstationviewer/view/plotting/plotting_widget/plotting_widget.py
+13
-11
13 additions, 11 deletions
...onviewer/view/plotting/plotting_widget/plotting_widget.py
with
13 additions
and
11 deletions
sohstationviewer/view/plotting/plotting_widget/plotting_widget.py
+
13
−
11
View file @
3fcd4f00
...
...
@@ -2,6 +2,7 @@
Class of which object is used to plot data
"""
from
typing
import
List
,
Optional
,
Union
import
numpy
as
np
import
matplotlib.text
from
matplotlib
import
pyplot
as
pl
from
matplotlib.transforms
import
Bbox
...
...
@@ -570,8 +571,11 @@ class PlottingWidget(QtWidgets.QScrollArea):
new_max_y
=
None
if
hasattr
(
ax
,
'
x_list
'
):
if
not
hasattr
(
ax
,
'
y_list
'
):
# dotForTime plots have attribute 'x_list' but not
# 'y_list'
# plot_time_dots and plot_multi_color_dots
x
=
ax
.
x_list
[
0
]
new_x_indexes
=
np
.
where
(
(
x
>=
self
.
min_x
)
&
(
x
<=
self
.
max_x
))[
0
]
ax
.
center_total_point_lbl
.
set_text
(
new_x_indexes
.
size
)
continue
total_points
=
0
tr_min_ys
=
[]
...
...
@@ -591,16 +595,14 @@ class PlottingWidget(QtWidgets.QScrollArea):
new_min_y
=
min
(
tr_min_ys
)
new_max_y
=
max
(
tr_max_ys
)
ax
.
center_total_point_lbl
.
set_text
(
total_points
)
elif
hasattr
(
ax
,
'
x
'
):
total_points
=
len
(
ax
.
x
)
if
hasattr
(
ax
,
'
y
'
)
and
len
(
ax
.
y
)
>
0
:
new_min_y
=
min
(
ax
.
y
)
new_max_y
=
max
(
ax
.
y
)
ax
.
center_total_point_lbl
.
set_text
(
total_points
)
else
:
# for case of having top and bottom total points
ax
.
bottom_total_point_lbl
.
set_text
(
len
(
ax
.
x0
))
ax
.
top_total_point_lbl
.
set_text
(
len
(
ax
.
x1
))
# plot_up_down_dots
new_x0_indexes
=
np
.
where
(
(
ax
.
x0
>=
self
.
min_x
)
&
(
ax
.
x0
<=
self
.
max_x
))[
0
]
ax
.
bottom_total_point_lbl
.
set_text
(
new_x0_indexes
.
size
)
new_x1_indexes
=
np
.
where
(
(
ax
.
x1
>=
self
.
min_x
)
&
(
ax
.
x1
<=
self
.
max_x
))[
0
]
ax
.
top_total_point_lbl
.
set_text
(
new_x1_indexes
.
size
)
if
new_min_y
is
not
None
:
self
.
plotting_axes
.
set_axes_ylim
(
...
...
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