-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtest_downsample_curve.py
More file actions
64 lines (51 loc) · 1.62 KB
/
test_downsample_curve.py
File metadata and controls
64 lines (51 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# -*- coding: utf-8 -*-
#
# Licensed under the terms of the BSD 3-Clause
# (see plotpy/LICENSE for details)
"""
DownSampleCurveTool test
This plotpy tool provides a toggle to downsample the current curve with a given factor.
"""
# guitest: show
from __future__ import annotations
from guidata.qthelpers import exec_dialog, qt_app_context
from numpy import linspace, sin
from plotpy.builder import make
from plotpy.config import _
def edit_downsampled_curve(
cdata: tuple[tuple[float, float], ...], dsamp_factor: int
) -> None:
"""
Plot curves and return selected point(s) coordinates
Args:
cdata: tuple of curves to plot
dsamp_factor: downsampling factor
"""
win = make.dialog(
wintitle=_("Right-click on the curve to enable/disable downsampling"),
edit=True,
type="curve",
size=(800, 600),
)
plot = win.manager.get_plot()
for cx, cy in cdata[:-1]:
item = make.mcurve(cx, cy)
plot.add_item(item)
item = make.mcurve(*cdata[-1], "r-+", dsamp_factor=dsamp_factor, use_dsamp=True)
plot.add_item(item)
plot.set_active_item(item)
plot.unselect_item(item)
exec_dialog(win)
def test_edit_curve():
"""Test"""
with qt_app_context(exec_loop=False):
nlines = 1000
x = linspace(-10, 10, num=nlines)
y = 0.25 * sin(sin(sin(x * 0.5)))
x2 = linspace(-10, 10, num=nlines)
y2 = sin(sin(sin(x2)))
cdata = ((x, y), (x2, y2), (x, sin(2 * y)))
for dsamp_factor in (10, 50):
edit_downsampled_curve(cdata, dsamp_factor)
if __name__ == "__main__":
test_edit_curve()