This makes it possible to run tar1090 with a different source directory than /run/dump1090-fa which is the default.
46 lines
1.0 KiB
Markdown
46 lines
1.0 KiB
Markdown
# tar1090
|
|
|
|
Provides an improved dump1090-fa webinterface
|
|
|
|
- Improved adjustable history
|
|
- Show All Tracks much faster than original with many planes
|
|
|
|
|
|
### Installation
|
|
|
|
```
|
|
sudo bash -c "$(wget -q -O - https://raw.githubusercontent.com/wiedehopf/tar1090/master/install.sh)"
|
|
```
|
|
|
|
## View the added webinterface
|
|
|
|
Click the following URL and replace the IP address with address of your Raspberry Pi:
|
|
|
|
http://192.168.x.yy/tar1090
|
|
|
|
## Configuration (optional):
|
|
|
|
Edit the configuration file to change the interval in seconds and number of history files saved:
|
|
```
|
|
sudo nano /etc/default/tar1090
|
|
```
|
|
Ctrl-x to exit, y (yes) and enter to save.
|
|
|
|
Apply the configuration:
|
|
```
|
|
sudo systemctl restart tar1090
|
|
```
|
|
|
|
The duration of the history in seconds can be calculated as interval times history_size.
|
|
|
|
### Installation to work with another folder, for example /run/combine1090
|
|
|
|
```
|
|
wget -q -O /tmp/install.sh https://raw.githubusercontent.com/wiedehopf/tar1090/master/install.sh
|
|
sudo bash /tmp/install.sh /run/combine1090
|
|
```
|
|
|
|
## Remove / Uninstall
|
|
|
|
coming soon ;)
|