SatNOGS: A Ground Station for Under €100 | telcokwaks.comSatNOGS: A Ground Station for Under €100<br>15 March 2025 · 6 min · 1175 words · Riri | Translations:Fr
Table of Contents<br>The SatNOGS Network Project#<br>The goal of the SatNOGS project, as its “about” page indicates, is to have a global network of ground stations. An interface allows you to manage your station, observations, etc.<br>The observations are freely accessible to anyone who wishes.<br>It is possible to participate in the project by installing one or more stations, which allows access to other features, such as scheduling observations on your own station or on others'.<br>The PoC (Proof of Concept)#<br>In its current state, I consider the station I’ve set up to be just a PoC. It has allowed me to learn a bit more about the world of radio and satellite reception.<br>The Hardware#<br>For the first iteration of the project, I didn’t want to have a huge budget. I already had a Raspberry Pi and an RTL-SDR dongle.<br>I was only missing an antenna and possibly a Low Noise Amplifier (LNA). The LNA is a device that amplifies weak signals from an antenna. In our case, it’s best to have it as close to the antenna as possible (within about 1 meter): this way, it amplifies the signal before it gets attenuated by the coaxial cable losses. Placed too far from the antenna, it would amplify an already degraded signal (noise included) without improving the signal-to-noise ratio.<br>There are several types of antennas: dipole, wire, directional, Yagi, parabolic, and many others. The choice of antenna depends on our needs (frequency, distance, interference, cost, etc.).<br>In my case, I wanted an antenna that was as versatile as possible for several reasons. I don’t know how long I’ll keep the station running (a week, a month, several years), and I’d like to use it for projects other than satellite reception.<br>I decided to go with a discone antenna. It’s versatile in terms of frequency range (25-2000MHz in my case), relatively inexpensive (mine cost less than €100), and it’s omnidirectional.<br>SatNOGS Account#<br>Before setting up your station, you need to create an account on the website.<br>Then, you just need to create your station. In your account dashboard, you can add a new station.<br>You must give your station a name, and it’s a good idea to add a description of the hardware you’re using.<br>In the “Antennas” tab, you must specify the type of your antenna and the frequency or frequency range it can receive. In the “Settings” tab, it is recommended to set your station to “Testing.” You can change this later when you consider your station to be reliable.<br>After saving, you can see your station in your dashboard. It won’t be “online” yet because the client software hasn’t been installed and configured.<br>Client Installation#<br>The SatNOGS application is divided into several parts: the server, the client, the signal reception, the antenna rotator (not installed in my case), and the antenna.
What we will be setting up is the chain from the client to the antenna. The rotator part isn’t necessary in our case since we have an omnidirectional antenna.<br>The installation is very simple and automated.<br>First, I installed the Raspberry Pi OS Lite image. Then, connect to your Raspberry Pi via SSH.<br>A single command installs and launches the SatNOGS configuration. The setup is done through a menu, and the management is handled by Ansible.<br>curl -sfL https://satno.gs/install | sh -s --
At the end of the installation, the satnogs-setup command is executed.<br>This will allow us to configure our client.
You will see this interface. First, let’s go into Basic.
This is the minimum configuration required. If you are using an RTL-SDR dongle like me, you can copy this configuration.<br>You need to change the following variables:<br>SATNOGS_API_TOKEN<br>SATNOGS_STATION_ELEV is the station’s elevation above sea level in meters.<br>SATNOGS_STATION_ID is the ID of the station you just created on the website.<br>SATNOGS_STATION_LAT and SATNOGS_STATION_LON correspond to your station’s latitude and longitude (the more precise the coordinates, the more accurate the predictions and recordings will be, but your anonymity will be reduced).<br>You can find more information in the documentation.<br>Here is the final configuration, which can be displayed from the main menu by selecting “Show”.
Note that I modified the gain, mainly because the signal was often too weak.<br>The gain corresponds to the equipment’s ability to amplify the received signal. A higher gain will increase the signal strength, which can be useful for weak signals. Be careful, however, as too high a gain can also amplify noise and saturate the receiver, degrading the reception quality.<br>To change it, go to “Advanced > Radio” and modify the value of SATNOGS_RF_GAIN.<br>Then, just exit the menu, and the station will...