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.
@@ -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 ( # noqa: E501
44
- ellipe,
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,
@@ -11,8 +11,10 @@ needed in tracking applications, including:
11
11
  - Rhumb line navigation
12
12
  """
13
13
 
14
- from pytcl.navigation.geodesy import ( # Ellipsoids; Coordinate conversions; Geodetic problems
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 ( # Great circle navigation
30
- EARTH_RADIUS,
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 ( # Constants; State representation; Gravity and Earth rate
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 ( # INS/GNSS integration
77
- GPS_L1_FREQ,
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 ( # Rhumb line navigation
103
- RhumbDirectResult,
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
  # =============================================================================
@@ -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
- MHTConfig,
21
- MHTResult,
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
@@ -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):