flightdata 0.2.24__tar.gz → 0.2.25__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.
- {flightdata-0.2.24 → flightdata-0.2.25}/PKG-INFO +9 -4
- {flightdata-0.2.24 → flightdata-0.2.25}/README.md +6 -3
- {flightdata-0.2.24 → flightdata-0.2.25}/pyproject.toml +5 -5
- {flightdata-0.2.24 → flightdata-0.2.25}/uv.lock +17 -32
- {flightdata-0.2.24 → flightdata-0.2.25}/.github/workflows/publish_pypi.yml +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/.gitignore +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/.vscode/launch.json +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/.vscode/settings.json +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/LICENSE +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/examples/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/examples/data/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/examples/data/manual_F3A_F23_22_04_28_00000231.json +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/examples/data/manual_F3A_P23_22_05_31_00000350.json +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/examples/data/manual_F3A_P23_23_08_11_00000094.json +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/examples/flight_dynamics/00000150.json +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/examples/flight_dynamics/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/examples/flight_dynamics/box.f3a +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/examples/flight_dynamics/param_id.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/examples/state_analysis/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/examples/state_analysis/axes.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/examples/state_analysis/state_fill_plot.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/base/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/base/collection.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/base/constructs.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/base/labeling.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/base/numpy_encoder.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/base/table.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/bindata.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/coefficients.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/environment/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/environment/environment.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/environment/wind.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/flight/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/flight/ardupilot.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/flight/fields.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/flight/flight.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/flight/parameters.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/flow.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/model/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/model/aerodynamic.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/model/thrust.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/origin.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/py.typed +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/schemas/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/schemas/fcj.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/scripts/collect_logs.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/scripts/flightline.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/src/flightdata/state.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/EmailedBox.f3a +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/base/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/base/test_base_constructs.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/base/test_table.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/conftest.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/data/bin_parser_GPS.csv +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/data/bin_parser_POS.csv +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/data/make_inputs.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/data/manual_F3A_P23.json +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/data/p23.BIN +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/data/p23.json +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/data/p23_box.f3a +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/data/p23_fc.json +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/data/p23_flight.json +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/data/vtol_hover.bin +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/data/vtol_hover.json +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/data/web_bin_parse.json +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_bindata.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_environment/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_environment/test_environment.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_environment/test_environment_wind.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_fields.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_flight.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_model/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_model/test_model_coefficients.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_model/test_model_flow.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_origin.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_state/__init__.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_state/test_state.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_state/test_state_builders.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_state/test_state_conversions.py +0 -0
- {flightdata-0.2.24 → flightdata-0.2.25}/test/test_state/test_state_measurements.py +0 -0
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: flightdata
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.25
|
|
4
4
|
Summary: Python tools for handling flight data
|
|
5
5
|
Author-email: Thomas David <thomasdavid0@gmail.com>
|
|
6
6
|
Requires-Python: >=3.12
|
|
7
7
|
Requires-Dist: numpy>=2.1.3
|
|
8
8
|
Requires-Dist: pandas>=2.2.3
|
|
9
9
|
Requires-Dist: pfc-geometry>=0.2.13
|
|
10
|
+
Provides-Extra: dataflash
|
|
11
|
+
Requires-Dist: ardupilot-log-reader>=0.3.5; extra == 'dataflash'
|
|
10
12
|
Description-Content-Type: text/markdown
|
|
11
13
|
|
|
12
14
|
## FlightData
|
|
@@ -28,11 +30,14 @@ Further documentation will be provided here: https://pfcdocumentation.readthedoc
|
|
|
28
30
|
### Installation
|
|
29
31
|
|
|
30
32
|
```bash
|
|
31
|
-
pip install
|
|
33
|
+
pip install flightdata
|
|
34
|
+
# or to include ardupilot dataflash log parsing capability:
|
|
35
|
+
pip install flightdata[dataflash]
|
|
32
36
|
```
|
|
33
37
|
|
|
34
38
|
### Setup from source
|
|
35
39
|
|
|
36
40
|
```bash
|
|
37
|
-
pip install .
|
|
38
|
-
```
|
|
41
|
+
pip install .
|
|
42
|
+
```
|
|
43
|
+
|
|
@@ -17,11 +17,14 @@ Further documentation will be provided here: https://pfcdocumentation.readthedoc
|
|
|
17
17
|
### Installation
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
pip install
|
|
20
|
+
pip install flightdata
|
|
21
|
+
# or to include ardupilot dataflash log parsing capability:
|
|
22
|
+
pip install flightdata[dataflash]
|
|
21
23
|
```
|
|
22
24
|
|
|
23
25
|
### Setup from source
|
|
24
26
|
|
|
25
27
|
```bash
|
|
26
|
-
pip install .
|
|
27
|
-
```
|
|
28
|
+
pip install .
|
|
29
|
+
```
|
|
30
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "flightdata"
|
|
3
|
-
version = "
|
|
3
|
+
version = "0.2.25"
|
|
4
4
|
description = "Python tools for handling flight data"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Thomas David", email = "thomasdavid0@gmail.com" }]
|
|
@@ -15,9 +15,9 @@ dependencies = [
|
|
|
15
15
|
requires = ["hatchling"]
|
|
16
16
|
build-backend = "hatchling.build"
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
|
|
19
|
+
[project.optional-dependencies]
|
|
20
|
+
dataflash = ["ardupilot_log_reader>=0.3.5"]
|
|
21
21
|
|
|
22
22
|
[dependency-groups]
|
|
23
|
-
dev = ["
|
|
23
|
+
dev = ["pytest>=8.3.3"]
|
|
@@ -4,24 +4,17 @@ requires-python = ">=3.12"
|
|
|
4
4
|
[[package]]
|
|
5
5
|
name = "ardupilot-log-reader"
|
|
6
6
|
version = "0.3.5"
|
|
7
|
-
source = {
|
|
7
|
+
source = { registry = "https://pypi.org/simple" }
|
|
8
8
|
dependencies = [
|
|
9
9
|
{ name = "numpy" },
|
|
10
10
|
{ name = "pandas" },
|
|
11
11
|
{ name = "pymavlink" },
|
|
12
12
|
]
|
|
13
|
-
|
|
14
|
-
[
|
|
15
|
-
|
|
16
|
-
{ name = "numpy", specifier = ">=2.1.3" },
|
|
17
|
-
{ name = "pandas", specifier = ">=2.2.3" },
|
|
18
|
-
{ name = "pymavlink", specifier = ">=2.4.42" },
|
|
13
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d4/81/f2f4b0d24cfee5b9bda0aa454cb6aaacc92f5cba2afc281be6fc9c466b4c/ardupilot_log_reader-0.3.5.tar.gz", hash = "sha256:8523a963e3c89254b6c7a72b5adedfe152ed1aec256e9fc2c1bbd7dd5c3033a9", size = 76674282 }
|
|
14
|
+
wheels = [
|
|
15
|
+
{ url = "https://files.pythonhosted.org/packages/00/1f/1f49ca2e43e1e9abce1ff42d22409ccff3321c9dd4cd378d335b945966c3/ardupilot_log_reader-0.3.5-py3-none-any.whl", hash = "sha256:8f4aaae17a81fd6296ff883bc1d924b16ab4aa3783cc68131c10c222f6a87d91", size = 3756 },
|
|
19
16
|
]
|
|
20
17
|
|
|
21
|
-
[package.metadata.requires-dev]
|
|
22
|
-
dev = [{ name = "pytest", specifier = ">=8.3.3" }]
|
|
23
|
-
lint = [{ name = "ruff", specifier = ">=0.7.3" }]
|
|
24
|
-
|
|
25
18
|
[[package]]
|
|
26
19
|
name = "colorama"
|
|
27
20
|
version = "0.4.6"
|
|
@@ -33,7 +26,7 @@ wheels = [
|
|
|
33
26
|
|
|
34
27
|
[[package]]
|
|
35
28
|
name = "flightdata"
|
|
36
|
-
version = "0.2.
|
|
29
|
+
version = "0.2.25"
|
|
37
30
|
source = { editable = "." }
|
|
38
31
|
dependencies = [
|
|
39
32
|
{ name = "numpy" },
|
|
@@ -41,26 +34,26 @@ dependencies = [
|
|
|
41
34
|
{ name = "pfc-geometry" },
|
|
42
35
|
]
|
|
43
36
|
|
|
37
|
+
[package.optional-dependencies]
|
|
38
|
+
dataflash = [
|
|
39
|
+
{ name = "ardupilot-log-reader" },
|
|
40
|
+
]
|
|
41
|
+
|
|
44
42
|
[package.dev-dependencies]
|
|
45
43
|
dev = [
|
|
46
|
-
{ name = "ardupilot-log-reader" },
|
|
47
|
-
{ name = "pymavlink" },
|
|
48
44
|
{ name = "pytest" },
|
|
49
45
|
]
|
|
50
46
|
|
|
51
47
|
[package.metadata]
|
|
52
48
|
requires-dist = [
|
|
49
|
+
{ name = "ardupilot-log-reader", marker = "extra == 'dataflash'", specifier = ">=0.3.5" },
|
|
53
50
|
{ name = "numpy", specifier = ">=2.1.3" },
|
|
54
51
|
{ name = "pandas", specifier = ">=2.2.3" },
|
|
55
|
-
{ name = "pfc-geometry",
|
|
52
|
+
{ name = "pfc-geometry", specifier = ">=0.2.13" },
|
|
56
53
|
]
|
|
57
54
|
|
|
58
55
|
[package.metadata.requires-dev]
|
|
59
|
-
dev = [
|
|
60
|
-
{ name = "ardupilot-log-reader", editable = "../ArdupilotLogReader" },
|
|
61
|
-
{ name = "pymavlink", specifier = ">=2.4.42" },
|
|
62
|
-
{ name = "pytest", specifier = ">=8.3.3" },
|
|
63
|
-
]
|
|
56
|
+
dev = [{ name = "pytest", specifier = ">=8.3.3" }]
|
|
64
57
|
|
|
65
58
|
[[package]]
|
|
66
59
|
name = "future"
|
|
@@ -206,22 +199,14 @@ wheels = [
|
|
|
206
199
|
[[package]]
|
|
207
200
|
name = "pfc-geometry"
|
|
208
201
|
version = "0.2.13"
|
|
209
|
-
source = {
|
|
202
|
+
source = { registry = "https://pypi.org/simple" }
|
|
210
203
|
dependencies = [
|
|
211
204
|
{ name = "numpy" },
|
|
212
205
|
{ name = "pandas" },
|
|
213
206
|
]
|
|
214
|
-
|
|
215
|
-
[
|
|
216
|
-
|
|
217
|
-
{ name = "numpy", specifier = ">=2.1.3" },
|
|
218
|
-
{ name = "pandas", specifier = ">=2.2.3" },
|
|
219
|
-
]
|
|
220
|
-
|
|
221
|
-
[package.metadata.requires-dev]
|
|
222
|
-
dev = [
|
|
223
|
-
{ name = "numpy-quaternion", specifier = ">=2023.0.3" },
|
|
224
|
-
{ name = "pytest", specifier = ">=8.3.3" },
|
|
207
|
+
sdist = { url = "https://files.pythonhosted.org/packages/32/fb/496a3e54f846b296d3e52a7b7249e21469ac00209688687378c1ce55e35b/pfc_geometry-0.2.13.tar.gz", hash = "sha256:86fa4966d5e95f28dde75c7f39594ca14e4f3146d53bd9a8ccfbc0db3f5e424d", size = 28602 }
|
|
208
|
+
wheels = [
|
|
209
|
+
{ url = "https://files.pythonhosted.org/packages/fe/2b/38166979e43c98b7b72c7c16d86e6994087a0e924a8f11f772aa2d1f09e6/pfc_geometry-0.2.13-py3-none-any.whl", hash = "sha256:29747fa647b4d72b67bf5d0a90fb0eac2bc973013da329518df1a554a293c2ea", size = 19823 },
|
|
225
210
|
]
|
|
226
211
|
|
|
227
212
|
[[package]]
|
|
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
|
|
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
|
|
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
|
|
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
|