nrl-tracker 0.22.4__tar.gz → 0.22.5__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 (199) hide show
  1. {nrl_tracker-0.22.4/nrl_tracker.egg-info → nrl_tracker-0.22.5}/PKG-INFO +4 -4
  2. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/README.md +3 -3
  3. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5/nrl_tracker.egg-info}/PKG-INFO +4 -4
  4. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pyproject.toml +1 -1
  5. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/__init__.py +1 -1
  6. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/CONTRIBUTING.md +0 -0
  7. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/LICENSE +0 -0
  8. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/MANIFEST.in +0 -0
  9. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/nrl_tracker.egg-info/SOURCES.txt +0 -0
  10. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/nrl_tracker.egg-info/dependency_links.txt +0 -0
  11. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/nrl_tracker.egg-info/requires.txt +0 -0
  12. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/nrl_tracker.egg-info/top_level.txt +0 -0
  13. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/assignment_algorithms/__init__.py +0 -0
  14. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/assignment_algorithms/data_association.py +0 -0
  15. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/assignment_algorithms/gating.py +0 -0
  16. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/assignment_algorithms/jpda.py +0 -0
  17. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/assignment_algorithms/three_dimensional/__init__.py +0 -0
  18. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/assignment_algorithms/three_dimensional/assignment.py +0 -0
  19. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/assignment_algorithms/two_dimensional/__init__.py +0 -0
  20. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/assignment_algorithms/two_dimensional/assignment.py +0 -0
  21. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/assignment_algorithms/two_dimensional/kbest.py +0 -0
  22. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/astronomical/__init__.py +0 -0
  23. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/astronomical/ephemerides.py +0 -0
  24. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/astronomical/lambert.py +0 -0
  25. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/astronomical/orbital_mechanics.py +0 -0
  26. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/astronomical/reference_frames.py +0 -0
  27. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/astronomical/relativity.py +0 -0
  28. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/astronomical/time_systems.py +0 -0
  29. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/atmosphere/__init__.py +0 -0
  30. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/atmosphere/models.py +0 -0
  31. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/clustering/__init__.py +0 -0
  32. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/clustering/dbscan.py +0 -0
  33. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/clustering/gaussian_mixture.py +0 -0
  34. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/clustering/hierarchical.py +0 -0
  35. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/clustering/kmeans.py +0 -0
  36. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/containers/__init__.py +0 -0
  37. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/containers/cluster_set.py +0 -0
  38. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/containers/covertree.py +0 -0
  39. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/containers/kd_tree.py +0 -0
  40. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/containers/measurement_set.py +0 -0
  41. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/containers/rtree.py +0 -0
  42. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/containers/track_list.py +0 -0
  43. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/containers/vptree.py +0 -0
  44. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/coordinate_systems/__init__.py +0 -0
  45. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/coordinate_systems/conversions/__init__.py +0 -0
  46. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/coordinate_systems/conversions/geodetic.py +0 -0
  47. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/coordinate_systems/conversions/spherical.py +0 -0
  48. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/coordinate_systems/jacobians/__init__.py +0 -0
  49. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/coordinate_systems/jacobians/jacobians.py +0 -0
  50. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/coordinate_systems/projections/__init__.py +0 -0
  51. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/coordinate_systems/projections/projections.py +0 -0
  52. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/coordinate_systems/rotations/__init__.py +0 -0
  53. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/coordinate_systems/rotations/rotations.py +0 -0
  54. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/core/__init__.py +0 -0
  55. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/core/array_utils.py +0 -0
  56. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/core/constants.py +0 -0
  57. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/core/validation.py +0 -0
  58. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_estimation/__init__.py +0 -0
  59. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_estimation/batch_estimation/__init__.py +0 -0
  60. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_estimation/imm.py +0 -0
  61. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_estimation/information_filter.py +0 -0
  62. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_estimation/kalman/__init__.py +0 -0
  63. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_estimation/kalman/extended.py +0 -0
  64. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_estimation/kalman/linear.py +0 -0
  65. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_estimation/kalman/square_root.py +0 -0
  66. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_estimation/kalman/unscented.py +0 -0
  67. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_estimation/measurement_update/__init__.py +0 -0
  68. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_estimation/particle_filters/__init__.py +0 -0
  69. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_estimation/particle_filters/bootstrap.py +0 -0
  70. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_estimation/smoothers.py +0 -0
  71. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_models/__init__.py +0 -0
  72. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_models/continuous_time/__init__.py +0 -0
  73. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_models/continuous_time/dynamics.py +0 -0
  74. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_models/discrete_time/__init__.py +0 -0
  75. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_models/discrete_time/coordinated_turn.py +0 -0
  76. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_models/discrete_time/polynomial.py +0 -0
  77. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_models/discrete_time/singer.py +0 -0
  78. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_models/process_noise/__init__.py +0 -0
  79. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_models/process_noise/coordinated_turn.py +0 -0
  80. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_models/process_noise/polynomial.py +0 -0
  81. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/dynamic_models/process_noise/singer.py +0 -0
  82. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/gravity/__init__.py +0 -0
  83. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/gravity/clenshaw.py +0 -0
  84. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/gravity/egm.py +0 -0
  85. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/gravity/models.py +0 -0
  86. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/gravity/spherical_harmonics.py +0 -0
  87. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/gravity/tides.py +0 -0
  88. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/magnetism/__init__.py +0 -0
  89. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/magnetism/emm.py +0 -0
  90. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/magnetism/igrf.py +0 -0
  91. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/magnetism/wmm.py +0 -0
  92. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/__init__.py +0 -0
  93. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/basic_matrix/__init__.py +0 -0
  94. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/basic_matrix/decompositions.py +0 -0
  95. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/basic_matrix/special_matrices.py +0 -0
  96. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/combinatorics/__init__.py +0 -0
  97. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/combinatorics/combinatorics.py +0 -0
  98. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/continuous_optimization/__init__.py +0 -0
  99. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/geometry/__init__.py +0 -0
  100. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/geometry/geometry.py +0 -0
  101. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/interpolation/__init__.py +0 -0
  102. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/interpolation/interpolation.py +0 -0
  103. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/numerical_integration/__init__.py +0 -0
  104. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/numerical_integration/quadrature.py +0 -0
  105. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/polynomials/__init__.py +0 -0
  106. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/signal_processing/__init__.py +0 -0
  107. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/signal_processing/detection.py +0 -0
  108. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/signal_processing/filters.py +0 -0
  109. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/signal_processing/matched_filter.py +0 -0
  110. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/special_functions/__init__.py +0 -0
  111. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/special_functions/bessel.py +0 -0
  112. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/special_functions/debye.py +0 -0
  113. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/special_functions/elliptic.py +0 -0
  114. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/special_functions/error_functions.py +0 -0
  115. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/special_functions/gamma_functions.py +0 -0
  116. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/special_functions/hypergeometric.py +0 -0
  117. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/special_functions/lambert_w.py +0 -0
  118. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/special_functions/marcum_q.py +0 -0
  119. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/statistics/__init__.py +0 -0
  120. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/statistics/distributions.py +0 -0
  121. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/statistics/estimators.py +0 -0
  122. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/transforms/__init__.py +0 -0
  123. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/transforms/fourier.py +0 -0
  124. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/transforms/stft.py +0 -0
  125. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/mathematical_functions/transforms/wavelets.py +0 -0
  126. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/misc/__init__.py +0 -0
  127. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/navigation/__init__.py +0 -0
  128. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/navigation/geodesy.py +0 -0
  129. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/navigation/great_circle.py +0 -0
  130. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/navigation/ins.py +0 -0
  131. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/navigation/ins_gnss.py +0 -0
  132. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/navigation/rhumb.py +0 -0
  133. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/performance_evaluation/__init__.py +0 -0
  134. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/performance_evaluation/estimation_metrics.py +0 -0
  135. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/performance_evaluation/track_metrics.py +0 -0
  136. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/physical_values/__init__.py +0 -0
  137. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/plotting/__init__.py +0 -0
  138. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/plotting/coordinates.py +0 -0
  139. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/plotting/ellipses.py +0 -0
  140. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/plotting/metrics.py +0 -0
  141. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/plotting/tracks.py +0 -0
  142. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/scheduling/__init__.py +0 -0
  143. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/static_estimation/__init__.py +0 -0
  144. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/static_estimation/least_squares.py +0 -0
  145. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/static_estimation/maximum_likelihood.py +0 -0
  146. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/static_estimation/robust.py +0 -0
  147. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/terrain/__init__.py +0 -0
  148. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/terrain/dem.py +0 -0
  149. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/terrain/loaders.py +0 -0
  150. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/terrain/visibility.py +0 -0
  151. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/trackers/__init__.py +0 -0
  152. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/trackers/hypothesis.py +0 -0
  153. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/trackers/mht.py +0 -0
  154. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/trackers/multi_target.py +0 -0
  155. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/trackers/single_target.py +0 -0
  156. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/pytcl/transponders/__init__.py +0 -0
  157. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/setup.cfg +0 -0
  158. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/__init__.py +0 -0
  159. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/conftest.py +0 -0
  160. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_additional_trees.py +0 -0
  161. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_assignment_algorithms.py +0 -0
  162. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_astronomical.py +0 -0
  163. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_clustering.py +0 -0
  164. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_coordinate_systems.py +0 -0
  165. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_coverage_boost.py +0 -0
  166. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_coverage_boost_2.py +0 -0
  167. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_dynamic_models.py +0 -0
  168. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_egm.py +0 -0
  169. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_emm.py +0 -0
  170. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_ephemerides.py +0 -0
  171. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_gaussian_mixtures.py +0 -0
  172. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_geophysical.py +0 -0
  173. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_great_circle.py +0 -0
  174. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_ins.py +0 -0
  175. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_ins_gnss.py +0 -0
  176. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_kalman_filters.py +0 -0
  177. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_mathematical_functions.py +0 -0
  178. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_maximum_likelihood.py +0 -0
  179. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_mht.py +0 -0
  180. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_performance_evaluation.py +0 -0
  181. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_phase6_specialized.py +0 -0
  182. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_plotting.py +0 -0
  183. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_projections.py +0 -0
  184. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_relativity.py +0 -0
  185. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_rhumb.py +0 -0
  186. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_signal_processing.py +0 -0
  187. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_smoothers.py +0 -0
  188. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_spatial_structures.py +0 -0
  189. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_special_functions_phase12.py +0 -0
  190. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_static_estimation.py +0 -0
  191. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_terrain.py +0 -0
  192. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_terrain_loaders.py +0 -0
  193. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_tides.py +0 -0
  194. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_trackers.py +0 -0
  195. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_tracking_containers.py +0 -0
  196. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_transforms.py +0 -0
  197. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_v030_comprehensive.py +0 -0
  198. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/test_v030_features.py +0 -0
  199. {nrl_tracker-0.22.4 → nrl_tracker-0.22.5}/tests/unit/test_core.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nrl-tracker
3
- Version: 0.22.4
3
+ Version: 0.22.5
4
4
  Summary: Python port of the U.S. Naval Research Laboratory's Tracker Component Library for target tracking algorithms
5
5
  Author: Original: David F. Crouse, Naval Research Laboratory
6
6
  Maintainer: Python Port Contributors
@@ -60,15 +60,15 @@ Requires-Dist: nrl-tracker[astronomy,dev,geodesy,optimization,signal,visualizati
60
60
 
61
61
  # Tracker Component Library (Python)
62
62
 
63
- [![PyPI version](https://img.shields.io/badge/pypi-v0.22.0-blue.svg)](https://pypi.org/project/nrl-tracker/)
63
+ [![PyPI version](https://img.shields.io/badge/pypi-v0.22.5-blue.svg)](https://pypi.org/project/nrl-tracker/)
64
64
  [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
65
65
  [![License: Public Domain](https://img.shields.io/badge/License-Public%20Domain-brightgreen.svg)](https://en.wikipedia.org/wiki/Public_domain)
66
66
  [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
67
- [![Tests](https://img.shields.io/badge/tests-1530%20passing-success.svg)](https://github.com/nedonatelli/TCL)
67
+ [![Tests](https://img.shields.io/badge/tests-1598%20passing-success.svg)](https://github.com/nedonatelli/TCL)
68
68
 
69
69
  A Python port of the [U.S. Naval Research Laboratory's Tracker Component Library](https://github.com/USNavalResearchLaboratory/TrackerComponentLibrary), a comprehensive collection of algorithms for target tracking, estimation, coordinate systems, and related mathematical functions.
70
70
 
71
- **800+ functions** | **144 modules** | **1,530 tests** | **15+ algorithm categories**
71
+ **800+ functions** | **144 modules** | **1,598 tests** | **15+ algorithm categories**
72
72
 
73
73
  ## Overview
74
74
 
@@ -1,14 +1,14 @@
1
1
  # Tracker Component Library (Python)
2
2
 
3
- [![PyPI version](https://img.shields.io/badge/pypi-v0.22.0-blue.svg)](https://pypi.org/project/nrl-tracker/)
3
+ [![PyPI version](https://img.shields.io/badge/pypi-v0.22.5-blue.svg)](https://pypi.org/project/nrl-tracker/)
4
4
  [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
5
5
  [![License: Public Domain](https://img.shields.io/badge/License-Public%20Domain-brightgreen.svg)](https://en.wikipedia.org/wiki/Public_domain)
6
6
  [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
7
- [![Tests](https://img.shields.io/badge/tests-1530%20passing-success.svg)](https://github.com/nedonatelli/TCL)
7
+ [![Tests](https://img.shields.io/badge/tests-1598%20passing-success.svg)](https://github.com/nedonatelli/TCL)
8
8
 
9
9
  A Python port of the [U.S. Naval Research Laboratory's Tracker Component Library](https://github.com/USNavalResearchLaboratory/TrackerComponentLibrary), a comprehensive collection of algorithms for target tracking, estimation, coordinate systems, and related mathematical functions.
10
10
 
11
- **800+ functions** | **144 modules** | **1,530 tests** | **15+ algorithm categories**
11
+ **800+ functions** | **144 modules** | **1,598 tests** | **15+ algorithm categories**
12
12
 
13
13
  ## Overview
14
14
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nrl-tracker
3
- Version: 0.22.4
3
+ Version: 0.22.5
4
4
  Summary: Python port of the U.S. Naval Research Laboratory's Tracker Component Library for target tracking algorithms
5
5
  Author: Original: David F. Crouse, Naval Research Laboratory
6
6
  Maintainer: Python Port Contributors
@@ -60,15 +60,15 @@ Requires-Dist: nrl-tracker[astronomy,dev,geodesy,optimization,signal,visualizati
60
60
 
61
61
  # Tracker Component Library (Python)
62
62
 
63
- [![PyPI version](https://img.shields.io/badge/pypi-v0.22.0-blue.svg)](https://pypi.org/project/nrl-tracker/)
63
+ [![PyPI version](https://img.shields.io/badge/pypi-v0.22.5-blue.svg)](https://pypi.org/project/nrl-tracker/)
64
64
  [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
65
65
  [![License: Public Domain](https://img.shields.io/badge/License-Public%20Domain-brightgreen.svg)](https://en.wikipedia.org/wiki/Public_domain)
66
66
  [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
67
- [![Tests](https://img.shields.io/badge/tests-1530%20passing-success.svg)](https://github.com/nedonatelli/TCL)
67
+ [![Tests](https://img.shields.io/badge/tests-1598%20passing-success.svg)](https://github.com/nedonatelli/TCL)
68
68
 
69
69
  A Python port of the [U.S. Naval Research Laboratory's Tracker Component Library](https://github.com/USNavalResearchLaboratory/TrackerComponentLibrary), a comprehensive collection of algorithms for target tracking, estimation, coordinate systems, and related mathematical functions.
70
70
 
71
- **800+ functions** | **144 modules** | **1,530 tests** | **15+ algorithm categories**
71
+ **800+ functions** | **144 modules** | **1,598 tests** | **15+ algorithm categories**
72
72
 
73
73
  ## Overview
74
74
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "nrl-tracker"
7
- version = "0.22.4"
7
+ version = "0.22.5"
8
8
  description = "Python port of the U.S. Naval Research Laboratory's Tracker Component Library for target tracking algorithms"
9
9
  readme = "README.md"
10
10
  authors = [
@@ -20,7 +20,7 @@ References
20
20
  no. 5, pp. 18-27, May 2017.
21
21
  """
22
22
 
23
- __version__ = "0.22.4"
23
+ __version__ = "0.22.5"
24
24
  __author__ = "Python Port Contributors"
25
25
  __original_author__ = "David F. Crouse, Naval Research Laboratory"
26
26
 
File without changes
File without changes
File without changes