-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
308 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
![ATAK screenshot with PyTAK logo.](https://adsbcot.readthedocs.io/en/latest/media/atak_screenshot_with_pytak_logo-x25.png) | ||
|
||
# Display Aircraft in TAK - ADS-B feed to TAK Gateway | ||
|
||
ADSBXCOT is software for monitoring and analyzing aviation surveillance data via the Team Awareness Kit (TAK) ecosystem of products. | ||
|
||
For detailed documentation, visit the [official documentation](https://adsbxcot.rtfd.io). | ||
|
||
## Features | ||
|
||
- Converts ADS-B messages to Cursor on Target (CoT) format. | ||
- Compatible with TAK products: ATAK, WinTAK, and iTAK. | ||
- Supports multiple ADS-B data aggregators. | ||
- Retains aircraft track, course, speed, and metadata. | ||
- Runs on Python 3.7+ in both Windows and Linux environments. | ||
|
||
## Supported ADS-B Aggregators | ||
|
||
- ADS-B Exchange: https://www.adsbexchange.com/ | ||
- adsb.fi: https://adsb.fi/ | ||
- ADS-B Hub: https://www.adsbhub.org/ | ||
- Airplanes.Live: https://airplanes.live/ | ||
|
||
## Related Projects | ||
|
||
- [ADSBCOT](https://adsbcot.rtfd.io): For users with their own ADS-B receiver. | ||
- [AirTAK](https://www.snstac.com/store/p/airtak-v1): A turn-key ADS-B to TAK Gateway solution. | ||
|
||
## Copyright & License | ||
|
||
Copyright Sensors & Signals LLC https://www.snstac.com | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,28 +14,10 @@ | |
# limitations under the License. | ||
# | ||
|
||
""" | ||
Display Aircraft in TAK. | ||
"""Display Aircraft in TAK.""" | ||
|
||
:author: Greg Albrecht <[email protected]> | ||
:copyright: Copyright Sensors & Signals LLC https://www.snstac.com | ||
:license: Apache License, Version 2.0 | ||
:source: <https://github.com/snstac/adsbxcot> | ||
""" | ||
__version__ = "7.0.0" | ||
|
||
__version__ = "6.0.4" | ||
__author__ = "Greg Albrecht <[email protected]>" | ||
__copyright__ = "Copyright Sensors & Signals LLC https://www.snstac.com" | ||
__license__ = "Apache License, Version 2.0" | ||
|
||
# Python 3.6 test/build work-around: | ||
try: | ||
from .constants import DEFAULT_POLL_INTERVAL, DEFAULT_LIGHT_COT # NOQA | ||
from .functions import adsbx_to_cot, create_tasks # NOQA | ||
from .classes import ADSBXWorker # NOQA | ||
except ImportError: | ||
import warnings | ||
|
||
warnings.warn( | ||
"Unable to import required modules, ignoring (Python 3.6 build work-around)." | ||
) | ||
from .constants import DEFAULT_POLL_INTERVAL, DEFAULT_RAPIDAPI_HOST # NOQA | ||
from .functions import adsbx_to_cot, create_tasks # NOQA | ||
from .classes import ADSBXWorker # NOQA |
Oops, something went wrong.