OpenTAKServer
OpenTAKServer copied to clipboard
Yet another open source TAK Server for ATAK, iTAK, and WinTAK
Connect to Traccar's websocket and save the tracker data it sends. Also add an API route to accept data from the Android and iOS Traccar clients directly.
Enable MQTT in RabbitMQ and parse data from Meshtastic devices. Here is a [sample script](https://github.com/ianmcorvidae/meshtastic-python-scripts/blob/main/mqtt-script.py)
https://github.com/tkuester/taky/blob/main/taky/util/anc.py This will remove the jdk dependency as well as fix #16, #11, and #12.
``` /home/administrator/.opentakserver_venv/lib/python3.10/site-packages/opentakserver/models/EUD.py:76: SAWarning: Multiple rows returned with uselist=False for lazily-loaded attribute 'EUD.data_packages' 'data_packages': self.data_packages.to_json(False) if include_data_packages and self.data_packages else None, /home/administrator/.opentakserver_venv/lib/python3.10/site-packages/opentakserver/models/EUD.py:59: SAWarning: Multiple rows returned with uselist=False for lazily-loaded attribute...
Also add `OTS_RABBITMQ_TTL` option. ```python channel.basic_publish( exchange='', routing_key='hello_world', properties=pika.BasicProperties( expiration='60000', ), body='my message' ) ```