flightplotting 0.2.8__tar.gz → 0.2.9__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.
Files changed (27) hide show
  1. {flightplotting-0.2.8 → flightplotting-0.2.9}/PKG-INFO +1 -1
  2. {flightplotting-0.2.8 → flightplotting-0.2.9}/flightplotting/plots.py +1 -1
  3. {flightplotting-0.2.8 → flightplotting-0.2.9}/flightplotting.egg-info/PKG-INFO +1 -1
  4. {flightplotting-0.2.8 → flightplotting-0.2.9}/.github/workflows/publish_pypi.yml +0 -0
  5. {flightplotting-0.2.8 → flightplotting-0.2.9}/.gitignore +0 -0
  6. {flightplotting-0.2.8 → flightplotting-0.2.9}/.vscode/settings.json +0 -0
  7. {flightplotting-0.2.8 → flightplotting-0.2.9}/COPYING +0 -0
  8. {flightplotting-0.2.8 → flightplotting-0.2.9}/MANIFEST.in +0 -0
  9. {flightplotting-0.2.8 → flightplotting-0.2.9}/README.md +0 -0
  10. {flightplotting-0.2.8 → flightplotting-0.2.9}/flightplotting/__init__.py +0 -0
  11. {flightplotting-0.2.8 → flightplotting-0.2.9}/flightplotting/data/ColdDraftF3APlane.obj +0 -0
  12. {flightplotting-0.2.8 → flightplotting-0.2.9}/flightplotting/data/__init__.py +0 -0
  13. {flightplotting-0.2.8 → flightplotting-0.2.9}/flightplotting/model.py +0 -0
  14. {flightplotting-0.2.8 → flightplotting-0.2.9}/flightplotting/templates.py +0 -0
  15. {flightplotting-0.2.8 → flightplotting-0.2.9}/flightplotting/titlerenderer.py +0 -0
  16. {flightplotting-0.2.8 → flightplotting-0.2.9}/flightplotting/traces.py +0 -0
  17. {flightplotting-0.2.8 → flightplotting-0.2.9}/flightplotting.egg-info/SOURCES.txt +0 -0
  18. {flightplotting-0.2.8 → flightplotting-0.2.9}/flightplotting.egg-info/dependency_links.txt +0 -0
  19. {flightplotting-0.2.8 → flightplotting-0.2.9}/flightplotting.egg-info/requires.txt +0 -0
  20. {flightplotting-0.2.8 → flightplotting-0.2.9}/flightplotting.egg-info/top_level.txt +0 -0
  21. {flightplotting-0.2.8 → flightplotting-0.2.9}/pyproject.toml +0 -0
  22. {flightplotting-0.2.8 → flightplotting-0.2.9}/requirements.txt +0 -0
  23. {flightplotting-0.2.8 → flightplotting-0.2.9}/setup.cfg +0 -0
  24. {flightplotting-0.2.8 → flightplotting-0.2.9}/tests/__init__.py +0 -0
  25. {flightplotting-0.2.8 → flightplotting-0.2.9}/tests/data/__init__.py +0 -0
  26. {flightplotting-0.2.8 → flightplotting-0.2.9}/tests/data/p23_flight.json +0 -0
  27. {flightplotting-0.2.8 → flightplotting-0.2.9}/tests/test_plots.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: flightplotting
3
- Version: 0.2.8
3
+ Version: 0.2.9
4
4
  Summary: Tools for Plotting Flight Data in Plotly
5
5
  Author-email: Thomas David <thomasdavid0@gmail.com>
6
6
  License: GNU GPL v3
@@ -52,7 +52,7 @@ def plotsec(
52
52
  showkeys = False
53
53
 
54
54
  for i, sec in enumerate(secs):
55
- text = sec.data.t - sec.data.t.iloc[0]
55
+ text = sec.data.t #- sec.data.t.iloc[0]
56
56
  _color = color if color is not None else px.colors.qualitative.Plotly[i]
57
57
  if ribb:
58
58
  traces += ribbon(sec, scale * 1.85, _color, name=keys[i])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: flightplotting
3
- Version: 0.2.8
3
+ Version: 0.2.9
4
4
  Summary: Tools for Plotting Flight Data in Plotly
5
5
  Author-email: Thomas David <thomasdavid0@gmail.com>
6
6
  License: GNU GPL v3
File without changes
File without changes
File without changes