flightplotting 0.2.9__tar.gz → 0.2.10__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {flightplotting-0.2.9 → flightplotting-0.2.10}/PKG-INFO +1 -1
- flightplotting-0.2.10/flightplotting/__init__.py +19 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/flightplotting/traces.py +3 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/flightplotting.egg-info/PKG-INFO +1 -1
- flightplotting-0.2.9/flightplotting/__init__.py +0 -4
- {flightplotting-0.2.9 → flightplotting-0.2.10}/.github/workflows/publish_pypi.yml +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/.gitignore +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/.vscode/settings.json +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/COPYING +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/MANIFEST.in +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/README.md +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/flightplotting/data/ColdDraftF3APlane.obj +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/flightplotting/data/__init__.py +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/flightplotting/model.py +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/flightplotting/plots.py +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/flightplotting/templates.py +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/flightplotting/titlerenderer.py +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/flightplotting.egg-info/SOURCES.txt +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/flightplotting.egg-info/dependency_links.txt +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/flightplotting.egg-info/requires.txt +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/flightplotting.egg-info/top_level.txt +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/pyproject.toml +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/requirements.txt +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/setup.cfg +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/tests/__init__.py +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/tests/data/__init__.py +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/tests/data/p23_flight.json +0 -0
- {flightplotting-0.2.9 → flightplotting-0.2.10}/tests/test_plots.py +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from flightplotting.plots import (
|
|
2
|
+
plotsec,
|
|
3
|
+
plot_analysis,
|
|
4
|
+
plotdtw,
|
|
5
|
+
create_3d_plot,
|
|
6
|
+
plot_regions,
|
|
7
|
+
)
|
|
8
|
+
from flightplotting.traces import (
|
|
9
|
+
axestrace,
|
|
10
|
+
trace3d,
|
|
11
|
+
dtwtrace,
|
|
12
|
+
vector,
|
|
13
|
+
vectors,
|
|
14
|
+
boxtrace,
|
|
15
|
+
axis_rate_traces,
|
|
16
|
+
colour_from_scale,
|
|
17
|
+
get_colour,
|
|
18
|
+
pointtrace,
|
|
19
|
+
)
|
|
@@ -69,6 +69,9 @@ def trace3d(datax, datay, dataz, **kwargs):
|
|
|
69
69
|
return go.Scatter3d(x=datax,y=datay,z=dataz,**kwargs)
|
|
70
70
|
|
|
71
71
|
|
|
72
|
+
def pointtrace(p: Point, **kwargs):
|
|
73
|
+
return trace3d(p.x, p.y, p.z, **kwargs)
|
|
74
|
+
|
|
72
75
|
def cgtrace(seq, **kwargs):
|
|
73
76
|
return trace3d(
|
|
74
77
|
*seq.pos.data.T,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|