flightdata 0.1.2__tar.gz → 0.1.4__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.1.2 → flightdata-0.1.4}/PKG-INFO +5 -4
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata/data.py +2 -2
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata/fields.py +1 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata.egg-info/PKG-INFO +5 -4
- flightdata-0.1.4/flightdata.egg-info/top_level.txt +1 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/setup.cfg +1 -1
- flightdata-0.1.2/flightdata.egg-info/top_level.txt +0 -1
- {flightdata-0.1.2 → flightdata-0.1.4}/LICENSE +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/README.md +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata/__init__.py +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata/config/__init__.py +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata/config/ardupilot.py +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata/field_mapping/__init__.py +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata/field_mapping/ardupilot.py +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata/field_mapping/ardupilot_ekfv2.py +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata/field_mapping/ardupilot_ekfv3.py +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata/field_mapping/fc_json_2_1.py +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata.egg-info/SOURCES.txt +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata.egg-info/dependency_links.txt +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/flightdata.egg-info/requires.txt +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/setup.py +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/test/test_ardupilot.py +0 -0
- {flightdata-0.1.2 → flightdata-0.1.4}/test/test_data.py +0 -0
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: flightdata
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Module for handling UAV flight log data
|
|
5
5
|
Home-page: https://github.com/PyFlightCoach/FlightData
|
|
6
6
|
Author: Thomas David
|
|
7
7
|
Author-email: thomasdavid0@gmail.com
|
|
8
|
-
License: UNKNOWN
|
|
9
|
-
Platform: UNKNOWN
|
|
10
8
|
Description-Content-Type: text/markdown
|
|
11
9
|
License-File: LICENSE
|
|
10
|
+
Requires-Dist: numpy
|
|
11
|
+
Requires-Dist: pandas
|
|
12
|
+
Requires-Dist: pfc-geometry
|
|
13
|
+
Requires-Dist: pint
|
|
12
14
|
|
|
13
15
|
This repo is designed for the storage of and access to flight log data.
|
|
14
16
|
|
|
@@ -95,4 +97,3 @@ IMT2 TimeUS,DelT,DelvT,DelAX,DelAY,DelAZ,DelVX,DelVY,DelVZ
|
|
|
95
97
|
IMT3 TimeUS,DelT,DelvT,DelAX,DelAY,DelAZ,DelVX,DelVY,DelVZ
|
|
96
98
|
ORGN TimeUS,Type,Lat,Lng,Alt
|
|
97
99
|
RPM TimeUS,rpm1,rpm2
|
|
98
|
-
|
|
@@ -40,8 +40,8 @@ class Flight(object):
|
|
|
40
40
|
def __getattr__(self, name):
|
|
41
41
|
if name in Fields.all_names:
|
|
42
42
|
return self.data[name]
|
|
43
|
-
if name
|
|
44
|
-
return self.
|
|
43
|
+
if name in fdict.keys():
|
|
44
|
+
return self.data[fdict[name]]
|
|
45
45
|
|
|
46
46
|
def __getitem__(self, sli):
|
|
47
47
|
if isinstance(sli, int) or isinstance(sli, float):
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: flightdata
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Module for handling UAV flight log data
|
|
5
5
|
Home-page: https://github.com/PyFlightCoach/FlightData
|
|
6
6
|
Author: Thomas David
|
|
7
7
|
Author-email: thomasdavid0@gmail.com
|
|
8
|
-
License: UNKNOWN
|
|
9
|
-
Platform: UNKNOWN
|
|
10
8
|
Description-Content-Type: text/markdown
|
|
11
9
|
License-File: LICENSE
|
|
10
|
+
Requires-Dist: numpy
|
|
11
|
+
Requires-Dist: pandas
|
|
12
|
+
Requires-Dist: pfc-geometry
|
|
13
|
+
Requires-Dist: pint
|
|
12
14
|
|
|
13
15
|
This repo is designed for the storage of and access to flight log data.
|
|
14
16
|
|
|
@@ -95,4 +97,3 @@ IMT2 TimeUS,DelT,DelvT,DelAX,DelAY,DelAZ,DelVX,DelVY,DelVZ
|
|
|
95
97
|
IMT3 TimeUS,DelT,DelvT,DelAX,DelAY,DelAZ,DelVX,DelVY,DelVZ
|
|
96
98
|
ORGN TimeUS,Type,Lat,Lng,Alt
|
|
97
99
|
RPM TimeUS,rpm1,rpm2
|
|
98
|
-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
flightdata
|
|
@@ -5,7 +5,7 @@ author_email = thomasdavid0@gmail.com
|
|
|
5
5
|
description = Module for handling UAV flight log data
|
|
6
6
|
long_description = file: README.md
|
|
7
7
|
long_description_content_type = text/markdown
|
|
8
|
-
version = 0.1.
|
|
8
|
+
version = 0.1.4
|
|
9
9
|
url = https://github.com/PyFlightCoach/FlightData
|
|
10
10
|
|
|
11
11
|
[options]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
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
|