ADS-B to Cursor-On-Target Gateway
*********************************
.. image:: https://raw.githubusercontent.com/ampledata/adsbxcot/main/docs/Screenshot_20201026-142037_ATAK-25p.jpg
:alt: Screenshot of ADS-B in ATAK.
:target: https://github.com/ampledata/adsbxcot/blob/main/docs/Screenshot_20201026-142037_ATAK.jpg
The ADS-B to Cursor on Target Gateway (ADSBCOT) transforms Automatic Dependent
Surveillance-Broadcast (ADS-B) aircraft position information into Cursor on
Target for display on `TAK Products <https://tak.gov/>`_ such as ATAK, WinTAK & iTAK.
ADS-B data can be recevied from dump1090 using the following network formats:
1. Aircraft JSON HTTP feed. See `dump1090 README-json.md <https://github.com/flightaware/dump1090/blob/master/README-json.md>`_.
2. Raw TCP (via `pyModeS <https://github.com/junzis/pyModeS>`_)
3. Beast TCP (via `pyModeS <https://github.com/junzis/pyModeS>`_)
.. image:: https://raw.githubusercontent.com/ampledata/adsbcot/main/docs/adsbcot_operation.png
:alt: ADSBCOT Operation Diagram.
:target: https://github.com/ampledata/adsbcot/blob/main/docs/adsbcot_operation.png
If you'd like to feed ADS-B from another source, consider these tools:
* `adsbxcot <https://github.com/ampledata/adsbxcot>`_: ADSBExchange.com to CoT Gateway. Transforms ADS-B position messages to CoT PLI Events.
* `stratuxcot <https://github.com/ampledata/stratuxcot>`_: Stratux ADS-B to CoT Gateway. Transforms position messages to CoT PLI Events.
Support Development
===================
.. image:: https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png
:target: https://www.buymeacoffee.com/ampledata
:alt: Support Development: Buy me a coffee!
**Tech Support**: Email takhelp@undef.net or Signal: +1-310-621-9598
This tool has been developed for the Disaster Response, Public Safety and
Frontline Healthcare community. This software is currently provided at no-cost
to users. Any contribution you can make to further this project's development
efforts is greatly appreciated.
Installation
============
Functionality is provided by a command-line tool called `adsbcot`, which can
be installed either from the Python Package Index, or directly from this
source tree.
ADSBExchange.com Raspberry Pi image ONLY
----------------------------------------
These instructions are exclusively for systems running the ADSBExchange.com
Raspberry Pi image. If you are not running this exact operating system, use the
`Installation for Everyone Else <#Installation for Everyone Else>`_ section in the README::
$ sudo apt update
$ sudo apt install -y python3-pip libatlas-base-dev librtlsdr-dev
$ python3 -m pip install pyrtlsdr
$ python3 -m pip install adsbcot[with_pymodes]
This procedure will install adsbcot and associated libraries in ``~/.local``. To run::
# Start adsbcot, connecting to localhost TCP Beast, forwarding CoT to ATAK Multicast:
PYTHONPATH=./local/lib/python3.9 DUMP1090_URL=tcp+beast://localhost .local/bin/adsbcot
Installation for Everyone Else
------------------------------
**To install with HTTP support ONLY:**
Install ADSBCOT from the Python Package Index (PyPI)::
$ python3 -m pip install adsbcot
**To install with TCP Beast & TCP Raw support:**
You must install ADSBCOT with the extra `pymodes` package::
$ python3 -m pip install adsbcot[with_pymodes]
**Alternate / Developers**
Install ADSBCOT from the source repository::
$ git clone https://github.com/ampledata/adsbcot.git
$ cd adsbcot/
$ python3 setup.py install
Running
=======
ADSBCOT should be started as a background sevice (daemon). Most modern systems
use systemd.
Debian, Ubuntu, RaspberryOS, Raspbian
-------------------------------------
1. Copy the following code block to ``/etc/systemd/system/adsbcot.service``::
[adsbcot]
Description=ADSBCOT Service
After=multi-user.target
[Service]
ExecStart=/usr/bin/adsbcot -c /etc/adsbcot.ini
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.target
(You can create ``adsbcot.service`` using Nano: ``$ sudo nano /etc/systemd/system/adsbcot.service``)
2. Create the ``/etc/adsbcot.ini`` file and add an appropriate configuration, see `Configuration <#Configuration>`_ section of the README::
$ sudo nano /etc/adsbcot.ini
3. Enable cotproxy systemd service::
$ sudo systemctl daemon-reload
$ sudo systemctl enable adsbcot
$ sudo systemctl start adsbcot
4. You can view logs with: ``$ sudo journalctl -xef``
Configuration
-------------
Configuration parameters can be specified either via environment variables or in
a INI-stile configuration file.
Parameters:
* **DUMP1090_URL**: (*optional*) dump1090 source URL, one of: ``tcp+beast://``, ``tcp+raw://`` or ``http://``. Default: ``tcp+beast://piaware.local:30005``
* **COT_URL**: (*optional*) Destination for Cursor-On-Target messages. See `PyTAK <https://github.com/ampledata/pytak#configuration-parameters>`_ for options.
* **POLL_INTERVAL**: (*optional*) Period in seconds to poll a dump1090 HTTP aircraft.json feed.
There are other configuration parameters available via `PyTAK <https://github.com/ampledata/pytak#configuration-parameters>`_.
Configuration parameters are imported in the following priority order:
1. config.ini (if exists) or -c <filename> (if specified).
2. Environment Variables (if set).
3. Defaults.
Example Configurations
======================
**Example 1**: Connect to dump1090's Beast TCP running on host 172.17.2.122,
port 30005 & forward COT to host 172.17.2.152, port 8087 use following config.ini::
[adsbcot]
COT_URL = tcp://172.17.2.152:8087
DUMP1090_URL = tcp+beast://172.17.2.122:30005
.. image:: https://raw.githubusercontent.com/ampledata/adsbcot/main/docs/adsbcot_example.png
:alt: ADSBCOT Example Setup.
:target: https://github.com/ampledata/adsbcot/blob/main/docs/adsbcot_example.png
**Example 2**: Connect to dump1090's Raw TCP running on host 172.17.2.122,
port 30002 & forward COT to UDP Multicast Group 239.2.3.1 port 6969::
[adsbcot]
COT_URL = udp://239.2.3.1:6969
DUMP1090_URL = tcp+raw://172.17.2.122:30002
**Example 3**: Poll dump1090's JSON API at
http://172.17.2.122:8080/data/aircraft.json with a 10 second interval &
forward COT to host 172.17.2.152, port 8089 using TLS::
[adsbcot]
PYTAK_TLS_CLIENT_CERT = /etc/my_client_cert.pem
COT_URL = tls://tak.example.com:8088
DUMP1090_URL = http://172.17.2.122:8080/data/aircraft.json
POLL_INTERVAL = 10
**Example 4**: Use environment variables to set configuration parameters::
$ export COT_URL="udp://10.9.8.7:8087"
$ export DUMP1090_URL="tcp+raw://127.0.0.1:30002"
$ adsbcot
Troubleshooting
===============
To report bugs, please set the DEBUG=1 environment variable to collect logs::
$ DEBUG=1 adsbcot
$ # -OR-
$ export DEBUG=1
$ adsbcot
Source
======
The source for ADSBCOT can be found on Github: https://github.com/ampledata/adsbcot
Author
======
ADSBCOT is written and maintained by Greg Albrecht W2GMD oss@undef.net
https://ampledata.org/
Copyright
=========
* ADSBCOT is Copyright 2023 Greg Albrecht
* `pyModeS <https://github.com/junzis/pyModeS>`_ is an optional extra package, and is Copyright (C) 2015 Junzi Sun (TU Delft).
License
=======
Copyright 2023 Greg Albrecht <oss@undef.net>
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.
* `pyModeS <https://github.com/junzis/pyModeS>`_ is an optional extra package, and is licensed under the GNU General Public License v3.0.