nrl-tracker 1.12.0__py3-none-any.whl → 1.12.1__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-1.12.0.dist-info → nrl_tracker-1.12.1.dist-info}/METADATA +3 -2
- {nrl_tracker-1.12.0.dist-info → nrl_tracker-1.12.1.dist-info}/RECORD +6 -6
- pytcl/__init__.py +2 -2
- {nrl_tracker-1.12.0.dist-info → nrl_tracker-1.12.1.dist-info}/LICENSE +0 -0
- {nrl_tracker-1.12.0.dist-info → nrl_tracker-1.12.1.dist-info}/WHEEL +0 -0
- {nrl_tracker-1.12.0.dist-info → nrl_tracker-1.12.1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: nrl-tracker
|
|
3
|
-
Version: 1.12.
|
|
3
|
+
Version: 1.12.1
|
|
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
|
|
@@ -71,12 +71,13 @@ Requires-Dist: plotly>=5.15.0; extra == "visualization"
|
|
|
71
71
|
|
|
72
72
|
# Tracker Component Library (Python)
|
|
73
73
|
|
|
74
|
-
[](https://pypi.org/project/nrl-tracker/)
|
|
75
75
|
[](https://www.python.org/downloads/)
|
|
76
76
|
[](https://en.wikipedia.org/wiki/Public_domain)
|
|
77
77
|
[](https://github.com/psf/black)
|
|
78
78
|
[](https://github.com/nedonatelli/TCL)
|
|
79
79
|
[](docs/gap_analysis.rst)
|
|
80
|
+
[](htmlcov/index.html)
|
|
80
81
|
[](mypy.ini)
|
|
81
82
|
|
|
82
83
|
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.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pytcl/__init__.py,sha256=
|
|
1
|
+
pytcl/__init__.py,sha256=KpUAbCleWx-AKgGRYDFJytU5s6jWv3riJFEOToaw13M,2032
|
|
2
2
|
pytcl/logging_config.py,sha256=UJaYufQgNuIjpsOMTPo3ewz1XCHPk8a08jTHyP7uoI4,8956
|
|
3
3
|
pytcl/assignment_algorithms/__init__.py,sha256=kUWhmyLhZcs5GiUQA5_v7KA3qETGsvqV6wU8r7paO-k,2976
|
|
4
4
|
pytcl/assignment_algorithms/data_association.py,sha256=tsRxWJZk9aAPmE99BKXGouEpFfZrjPjb4HXvgxFUHhU,11405
|
|
@@ -172,8 +172,8 @@ pytcl/trackers/mht.py,sha256=osEOXMaCeTt1eVn_E08dLRhEvBroVmf8b81zO5Zp1lU,20720
|
|
|
172
172
|
pytcl/trackers/multi_target.py,sha256=RDITa0xnbgtVYAMj5XXp4lljo5lZ2zAAc02KZlOjxbQ,10526
|
|
173
173
|
pytcl/trackers/single_target.py,sha256=Yy3FwaNTArMWcaod-0HVeiioNV4xLWxNDn_7ZPVqQYs,6562
|
|
174
174
|
pytcl/transponders/__init__.py,sha256=5fL4u3lKCYgPLo5uFeuZbtRZkJPABntuKYGUvVgMMEI,41
|
|
175
|
-
nrl_tracker-1.12.
|
|
176
|
-
nrl_tracker-1.12.
|
|
177
|
-
nrl_tracker-1.12.
|
|
178
|
-
nrl_tracker-1.12.
|
|
179
|
-
nrl_tracker-1.12.
|
|
175
|
+
nrl_tracker-1.12.1.dist-info/LICENSE,sha256=rB5G4WppIIUzMOYr2N6uyYlNJ00hRJqE5tie6BMvYuE,1612
|
|
176
|
+
nrl_tracker-1.12.1.dist-info/METADATA,sha256=rTg7VxI7pWVzBVq5rOlRhyqel8-jtfh3XL-FxoSOik4,14133
|
|
177
|
+
nrl_tracker-1.12.1.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
|
|
178
|
+
nrl_tracker-1.12.1.dist-info/top_level.txt,sha256=17megxcrTPBWwPZTh6jTkwTKxX7No-ZqRpyvElnnO-s,6
|
|
179
|
+
nrl_tracker-1.12.1.dist-info/RECORD,,
|
pytcl/__init__.py
CHANGED
|
@@ -6,7 +6,7 @@ systems, dynamic models, estimation algorithms, and mathematical functions.
|
|
|
6
6
|
|
|
7
7
|
This is a Python port of the U.S. Naval Research Laboratory's Tracker Component
|
|
8
8
|
Library originally written in MATLAB.
|
|
9
|
-
**Current Version:** 1.12.
|
|
9
|
+
**Current Version:** 1.12.1 (January 5, 2026)
|
|
10
10
|
**Status:** Production-ready, 2,894 tests passing, 76% line coverage
|
|
11
11
|
Examples
|
|
12
12
|
--------
|
|
@@ -21,7 +21,7 @@ References
|
|
|
21
21
|
no. 5, pp. 18-27, May 2017.
|
|
22
22
|
"""
|
|
23
23
|
|
|
24
|
-
__version__ = "1.12.
|
|
24
|
+
__version__ = "1.12.1"
|
|
25
25
|
__author__ = "Python Port Contributors"
|
|
26
26
|
__original_author__ = "David F. Crouse, Naval Research Laboratory"
|
|
27
27
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|