Yes, but you have to do it for each of the 4 feeders individually.
.
-
Flightaware feeder
From your “My ADSB” page: For Beginners - How To Set Receiver Location -
Flightradar24 feeder
sudo fr24feed --signup
enter your email, sharing key, say yes to MLAT, then enter NEW figures for Latitude, Longitude and Antenna height. -
Planefinder feeder
From web browser at this address http://[ip-of-pi]:30053/setup.html
Click Enable Configuration Mode button at top-right of page. You will need your sharing key. Change Latitude and Longitude in Configuration page opened. -
Adsbexchange feeder
sudo nano adsb-receiver/build/adsbexchange/adsbexchange-mlat_maint.sh
This will open file
adsbexchange-mlat_maint.sh
with following text#! /bin/sh
while true
do
sleep 30
/usr/bin/mlat-client --input-type dump1090 --input-connect 127.0.0.1:30005 --lat XX.XXXX --lon YY.YYYY --alt ZZZ --user YOUR_USER_NAME --server feed.adsbexchange.com:31090 --no-udp --results beast,connect,127.0.0.1:30104
done
Change
--lat
,--lon
, and--alt
values by NEW values.
Save file (Ctrl+o), and Close (Ctrl+x).
Reboot
sudo reboot