Prepare the Application Environment
In this step, we prepare the folder structure for our "adsb" application, and create a ".env" file containing our basic details.
Create a directory to host our project
We need a directory to host our application. The name of this directory will be the name of our application. Accordingly, we prefer to use /opt/adsb
, so our application is called "adsb":
Generate a UUID
A UUID is a unique identifier that will identify you to various feeding servers. If you already have a UUID
that was generated for the ADSBExchange service, feel free to reuse that one. If you don't have one, you can generate one by logging into your Linux machine (Raspberry Pi, etc.) and giving this command:
You can use the output string of this command (in format of 00000000-0000-0000-0000-000000000000
) as your UUID. Please use the same UUID consistently for each feeder of your station.
Identify your ADS-B dongle's optimal PPM
Every RTL-SDR dongle that does not have TXCO(temperature compensated crystal oscillators) will have a small frequency error as it is cheaply mass produced and not tested for accuracy. This frequency error is linear across the spectrum, and can be adjusted in most SDR programs by entering a PPM (parts per million) offset value. This allows you to adjust the PPM figure using the ADSB_SDR_PPM environment variable.
This step is considered optional and mostly legacy/unnecessary at this point, as modern SDRs have TXCO and are likely to be accurate enough for ADS-B reception. However, if you wish to determine the PPM value for your SDR, you can do so by following the instructions below.
Unplug all SDRs, leaving only the SDR to be used for 1090MHz reception plugged in. Issue the following command:
docker run --rm -it --entrypoint /scripts/estimate_rtlsdr_ppm.sh --device /dev/bus/usb ghcr.io/sdr-enthusiasts/docker-readsb-protobuf:latest
This takes about 30 minutes and will print a numerical value for Estimated optimum PPM setting once it completes.
If you decide not to include a PPM value, then you can either set ADSB_SDR_PPM=
to an empty value in .env
as shown here, or remove the READSB_RTLSDR_PPM
parameter from environment section of the ultrafeeder
or tar1090
service definition in your docker-compose.yml
file. (You can also simply remove the ADSB_SDR_PPM
from your .env
file, but docker compose
will show a warning about it that is safe to ignore.)
Create a heywhatsthat Panorama ID
Heywhatsthat is a website that can generate an overlay on your map that will show the theoretical range of your location based on obstacles and the curvature of the earth. Follow step 1 at the instructions here to generate a panorama for your feeder's location and altitude. In the upper left of the panorama page there will be a URL that will look like this: https://www.heywhatsthat.com/?view=NN3NNNN1
. That code will be used later in the setup instructions.
Create a .env
file to hold our environment's variables
.env
file to hold our environment's variablesInside this directory, create a file named .env
using your favourite text editor. Beginners may find the editor nano
easy to use:
This file will hold all of the commonly used variables (such as our latitude, longitude, and altitude). Initially, add the contents of the file as follows (replacing the values enclosed in <>
with values for your environment):
...where:
FEEDER_ALT_FT
is set your your antenna's height in feet above mean sea levelFEEDER_ALT_M
is set to your antenna's height in metres above mean sea levelFEEDER_LAT
is set to your antenna's latitude (also available at link above)FEEDER_LONG
is set to your antenna's longitude (also available at link above)FEEDER_TZ
is set to your timezone, in "TZ database name" format. You can also see your Pi's timezone by giving this command:cat /etc/timezone
FEEDER_NAME
is set to a location name. This is only used in the title of the map's web page.ADSB_SDR_SERIAL
is set to the serial number for your ADS-B dongle; the previous steps set this to 1090 by default but if you have used a different serial number enter it hereADSB_SDR_GAIN
is set to your desired dongle gain in dB, orautogain
if you would like the software to determine the optimal gainADSB_SDR_PPM
is set to your desired dongle PPM setting. Enter the number from the PPM estimation step earlier on this page.ULTRAFEEDER_UUID
is set to the UUID you generated aboveFEEDER_HEYWHATSTHAT_ID
is set to the code in the URL generated aboveFEEDER_HEYWHATSTHAT_ALTS
is a comma delimited list of altitudes in meters for which the map will display a theoretical maximum range; a common starting position is 3000 meters and 12000 meters
For example:
Note for beginners: If you run an ls
command in that directory, you won't see your .env
file. Files beginning with a period are treated as hidden files. To see the file, you can run ls -a
(-a
for all files).
Last updated