nrl-tracker 0.21.4__py3-none-any.whl → 0.22.5__py3-none-any.whl
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.
- {nrl_tracker-0.21.4.dist-info → nrl_tracker-0.22.5.dist-info}/METADATA +4 -4
- {nrl_tracker-0.21.4.dist-info → nrl_tracker-0.22.5.dist-info}/RECORD +28 -26
- pytcl/__init__.py +1 -1
- pytcl/assignment_algorithms/data_association.py +2 -7
- pytcl/astronomical/__init__.py +60 -7
- pytcl/astronomical/ephemerides.py +530 -0
- pytcl/astronomical/relativity.py +472 -0
- pytcl/atmosphere/__init__.py +2 -2
- pytcl/containers/__init__.py +4 -21
- pytcl/containers/cluster_set.py +1 -10
- pytcl/containers/measurement_set.py +1 -9
- pytcl/coordinate_systems/projections/__init__.py +4 -2
- pytcl/dynamic_estimation/imm.py +1 -4
- pytcl/dynamic_estimation/kalman/extended.py +1 -4
- pytcl/dynamic_estimation/kalman/unscented.py +1 -4
- pytcl/dynamic_estimation/smoothers.py +1 -5
- pytcl/dynamic_models/discrete_time/__init__.py +1 -5
- pytcl/dynamic_models/process_noise/__init__.py +1 -5
- pytcl/magnetism/__init__.py +3 -14
- pytcl/mathematical_functions/interpolation/__init__.py +2 -2
- pytcl/mathematical_functions/special_functions/__init__.py +2 -2
- pytcl/navigation/__init__.py +14 -10
- pytcl/navigation/ins.py +1 -5
- pytcl/trackers/__init__.py +3 -14
- pytcl/trackers/multi_target.py +1 -4
- {nrl_tracker-0.21.4.dist-info → nrl_tracker-0.22.5.dist-info}/LICENSE +0 -0
- {nrl_tracker-0.21.4.dist-info → nrl_tracker-0.22.5.dist-info}/WHEEL +0 -0
- {nrl_tracker-0.21.4.dist-info → nrl_tracker-0.22.5.dist-info}/top_level.txt +0 -0
|
@@ -40,8 +40,8 @@ from pytcl.mathematical_functions.special_functions.debye import (
|
|
|
40
40
|
debye_entropy,
|
|
41
41
|
debye_heat_capacity,
|
|
42
42
|
)
|
|
43
|
-
from pytcl.mathematical_functions.special_functions.elliptic import
|
|
44
|
-
|
|
43
|
+
from pytcl.mathematical_functions.special_functions.elliptic import ellipe # noqa: E501
|
|
44
|
+
from pytcl.mathematical_functions.special_functions.elliptic import (
|
|
45
45
|
ellipeinc,
|
|
46
46
|
ellipk,
|
|
47
47
|
ellipkinc,
|
pytcl/navigation/__init__.py
CHANGED
|
@@ -11,8 +11,10 @@ needed in tracking applications, including:
|
|
|
11
11
|
- Rhumb line navigation
|
|
12
12
|
"""
|
|
13
13
|
|
|
14
|
-
from pytcl.navigation.geodesy import (
|
|
15
|
-
GRS80,
|
|
14
|
+
from pytcl.navigation.geodesy import (
|
|
15
|
+
GRS80, # Ellipsoids; Coordinate conversions; Geodetic problems
|
|
16
|
+
)
|
|
17
|
+
from pytcl.navigation.geodesy import (
|
|
16
18
|
SPHERE,
|
|
17
19
|
WGS84,
|
|
18
20
|
Ellipsoid,
|
|
@@ -26,8 +28,8 @@ from pytcl.navigation.geodesy import ( # Ellipsoids; Coordinate conversions; Ge
|
|
|
26
28
|
inverse_geodetic,
|
|
27
29
|
ned_to_ecef,
|
|
28
30
|
)
|
|
29
|
-
from pytcl.navigation.great_circle import
|
|
30
|
-
|
|
31
|
+
from pytcl.navigation.great_circle import EARTH_RADIUS # Great circle navigation
|
|
32
|
+
from pytcl.navigation.great_circle import (
|
|
31
33
|
CrossTrackResult,
|
|
32
34
|
GreatCircleResult,
|
|
33
35
|
IntersectionResult,
|
|
@@ -45,8 +47,10 @@ from pytcl.navigation.great_circle import ( # Great circle navigation
|
|
|
45
47
|
great_circle_waypoint,
|
|
46
48
|
great_circle_waypoints,
|
|
47
49
|
)
|
|
48
|
-
from pytcl.navigation.ins import (
|
|
49
|
-
A_EARTH,
|
|
50
|
+
from pytcl.navigation.ins import (
|
|
51
|
+
A_EARTH, # Constants; State representation; Gravity and Earth rate
|
|
52
|
+
)
|
|
53
|
+
from pytcl.navigation.ins import (
|
|
50
54
|
B_EARTH,
|
|
51
55
|
E2_EARTH,
|
|
52
56
|
F_EARTH,
|
|
@@ -73,8 +77,8 @@ from pytcl.navigation.ins import ( # Constants; State representation; Gravity a
|
|
|
73
77
|
update_attitude_ned,
|
|
74
78
|
update_quaternion,
|
|
75
79
|
)
|
|
76
|
-
from pytcl.navigation.ins_gnss import
|
|
77
|
-
|
|
80
|
+
from pytcl.navigation.ins_gnss import GPS_L1_FREQ # INS/GNSS integration
|
|
81
|
+
from pytcl.navigation.ins_gnss import (
|
|
78
82
|
GPS_L1_WAVELENGTH,
|
|
79
83
|
SPEED_OF_LIGHT,
|
|
80
84
|
GNSSMeasurement,
|
|
@@ -99,8 +103,8 @@ from pytcl.navigation.ins_gnss import ( # INS/GNSS integration
|
|
|
99
103
|
tight_coupled_update,
|
|
100
104
|
velocity_measurement_matrix,
|
|
101
105
|
)
|
|
102
|
-
from pytcl.navigation.rhumb import
|
|
103
|
-
|
|
106
|
+
from pytcl.navigation.rhumb import RhumbDirectResult # Rhumb line navigation
|
|
107
|
+
from pytcl.navigation.rhumb import (
|
|
104
108
|
RhumbIntersectionResult,
|
|
105
109
|
RhumbResult,
|
|
106
110
|
compare_great_circle_rhumb,
|
pytcl/navigation/ins.py
CHANGED
|
@@ -23,11 +23,7 @@ from typing import NamedTuple, Optional, Tuple
|
|
|
23
23
|
import numpy as np
|
|
24
24
|
from numpy.typing import ArrayLike, NDArray
|
|
25
25
|
|
|
26
|
-
from pytcl.coordinate_systems.rotations import
|
|
27
|
-
quat2rotmat,
|
|
28
|
-
quat_multiply,
|
|
29
|
-
rotmat2quat,
|
|
30
|
-
)
|
|
26
|
+
from pytcl.coordinate_systems.rotations import quat2rotmat, quat_multiply, rotmat2quat
|
|
31
27
|
from pytcl.navigation.geodesy import WGS84, Ellipsoid
|
|
32
28
|
|
|
33
29
|
# =============================================================================
|
pytcl/trackers/__init__.py
CHANGED
|
@@ -16,20 +16,9 @@ from pytcl.trackers.hypothesis import (
|
|
|
16
16
|
n_scan_prune,
|
|
17
17
|
prune_hypotheses_by_probability,
|
|
18
18
|
)
|
|
19
|
-
from pytcl.trackers.mht import
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
MHTTracker,
|
|
23
|
-
)
|
|
24
|
-
from pytcl.trackers.multi_target import (
|
|
25
|
-
MultiTargetTracker,
|
|
26
|
-
Track,
|
|
27
|
-
TrackStatus,
|
|
28
|
-
)
|
|
29
|
-
from pytcl.trackers.single_target import (
|
|
30
|
-
SingleTargetTracker,
|
|
31
|
-
TrackState,
|
|
32
|
-
)
|
|
19
|
+
from pytcl.trackers.mht import MHTConfig, MHTResult, MHTTracker
|
|
20
|
+
from pytcl.trackers.multi_target import MultiTargetTracker, Track, TrackStatus
|
|
21
|
+
from pytcl.trackers.single_target import SingleTargetTracker, TrackState
|
|
33
22
|
|
|
34
23
|
__all__ = [
|
|
35
24
|
# Single target
|
pytcl/trackers/multi_target.py
CHANGED
|
@@ -11,10 +11,7 @@ from typing import Callable, List, NamedTuple, Optional
|
|
|
11
11
|
import numpy as np
|
|
12
12
|
from numpy.typing import ArrayLike, NDArray
|
|
13
13
|
|
|
14
|
-
from pytcl.assignment_algorithms import
|
|
15
|
-
chi2_gate_threshold,
|
|
16
|
-
gnn_association,
|
|
17
|
-
)
|
|
14
|
+
from pytcl.assignment_algorithms import chi2_gate_threshold, gnn_association
|
|
18
15
|
|
|
19
16
|
|
|
20
17
|
class TrackStatus(Enum):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|