Track aircraft with a Raspberry Pi

Explore the open skies with a Raspberry Pi, an inexpensive radio, and open source software.
100 readers like this.
Overcoming language and distance barriers in open source projects

Opensource.com

I live near a major airport, and I frequently hear aircraft flying over my house. I also have a curious preschooler, and I find myself answering questions like, "What's that?" and "Where's that plane going?" often. While a quick internet search could answer these questions, I wanted to see if I could answer them myself.

With a Raspberry Pi, an inexpensive radio, and open source software, I can track aircraft as far as 200 miles from my house. Whether you're answering relentless questions from your kids or are just curious about what's in the sky above you, this is something you can try, too.

The protocol behind it all

ADS-B is a technology that aircraft use worldwide to broadcast their location. Aircraft use position data gathered from GPS and periodically broadcast it along with speed and other telemetry so that other aircraft and ground stations can track their position.

Since this protocol is well-known and unencrypted, there are many solutions to receive and parse it, including many that are open source.

Gathering the hardware

Pretty much any Raspberry Pi will work for this project. I've used an older Pi 1 Model B, but I'd recommend a Pi 3 or newer to ensure you can keep up with the stream of decoded ADS-B messages.

To receive the ADS-B signals, you need a software-defined radio. Thanks to ultra-cheap radio chips designed for TV tuners, there are quite a few cheap USB receivers to choose from. I use FlightAware's ProStick Plus because it has a built-in filter to weaken signals outside the 1090MHz band used for ADS-B. Filtering is important since strong signals, such as broadcast FM radio and television, can desensitize the receiver. Any receiver based on RTL-SDR should work.

You will also need an antenna for the receiver. The options are limitless here, ranging from the more adventurous DIY options to purchasing a ready-made 1090MHz antenna. Whichever route you choose, antenna placement matters most. ADS-B reception is line-of-sight, so you'll want your antenna to be as high as possible to extend your range. I have mine in my attic, but I got decent results from my house's upper floor.

Visualizing your data with software

Now that your Pi is equipped to receive ADS-B signals, the real magic happens in the software. Two of the most commonly used open source software projects for ADS-B are readsb for decoding ADS-B messages and tar1090 for visualization. Combining both provides an interactive map showing all the aircraft your Pi is tracking.

Both projects provide setup instructions, but using a prebuilt image like the ADSBx Custom Pi Image is the fastest way to get going. The ADSBx image even configures a Prometheus instance with custom metrics like aircraft count.

Keep experimenting

If the novelty of tracking airplanes with your Raspberry Pi wears off, there are plenty of ways to keep experimenting. Try different antenna designs or find the best antenna placement to maximize the number of aircraft you see.

These are just a few of the ways to track aircraft with your Pi, and hopefully, this inspires you to try it out and learn a bit about the world of radio. Happy tracking!

What to read next
User profile image.
Patrick is a principal systems engineer at Red Hat, helping customers and partners use OpenShift for 5G and other edge deployments.

Comments are closed.

Creative Commons LicenseThis work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License.