Greg Albrecht W2GMD
Greg Albrecht W2GMD
From a user: > It looks like all headings are off by some fixed offset between the Magnetic heading and the on-icon caret ![Screen Shot 2023-07-20 at 4 30 52...
This feature was added for a special project last year, the use case was to 'only show SAR missions below a certain altitude'. Revive and integrate this feature.
adsbxcot & pytak require some additional packages and libraries on CentOS, to install: 1. Build tools (gcc, et al): ``` sudo yum groupinstall 'Development Tools' ``` 2. Python Library headers:...
Per classes.py, line 103: ``` if filter_key and filter_key in a_known_craft[self.known_craft_key].strip().upper(): ``` Unfortunately that will match a `filter_key` of `441F` to a `a_known_craft[self.known_craft_key].strip().upper()` of `441FA`. Instead what we should do...
See https://github.com/snstac/adsbxcot/issues/14
> If you are using an adsbxchange pi image and using the new adsbcot, use this line in your config.ini: ```FEED_URL = file:///run/adsbexchange-feed/aircraft.json```
I don't know, but I should clear it up in the docs.
``` pi@adsbexchange:~ $ adsbcot -c /etc/adsbcot.ini 2023-02-02 22:52:44,246 pytak INFO - CoT_URL Dest: udp://239.2.3.1:6969 2023-02-02 22:52:44,247 pytak INFO - CoT_URL Dest: udp://239.2.3.1:6969 2023-02-02 22:52:44,247 pytak INFO - Run: 2023-02-02 22:52:44,249...
If you try to run debug with config, you gonna receive different err. output DEBUG=1 adsbcot -c /configpath/myconfig.ini *** ERROR from adsbcot Please reinstall adsbcot with pyModeS support: $ python3...
Service should be: ``` [Unit] Description=ADSBCOT Service After=multi-user.target [Service] ExecStart=/home/pi/.local/bin/adsbcot -c /etc/adsbcot.ini Environment=PYTHONPATH=/home/pi/.local/lib/python3.9/site-packages WorkingDirectory=/home/pi Restart=always RestartSec=5 [Install] WantedBy=multi-user.target ```