Difference between revisions of "Implementation of an ADS-B/Mode-S Receiver in GNU Radio"

From Ettus Knowledge Base
Jump to: navigation, search
(Requirements)
(Installation)
Line 32: Line 32:
 
==Installation==
 
==Installation==
  
 +
    $ sudo apt-get install sqlite3 libsqlite3-dev python-zmq python-numpy python-scipy
 
     $ git clone https://github.com/bistromath/gr-air-modes.git
 
     $ git clone https://github.com/bistromath/gr-air-modes.git
 
     $ cd gr-air-modes/
 
     $ cd gr-air-modes/

Revision as of 23:01, 3 May 2016

Application Note Number

AN-363

Revision History

Date Author Details
2016-05-01 Nate Temple Initial creation

Abstract

This AN guides the reader through the implementation of an ADS-B/Mode-S receiver using the gr-air-modes Out-of-Tree (OOT) module for GNU Radio. An explanation of ADS-B is also provided, and several real-world, over-the-air examples and profiled.

Overview

The Ettus Research™ USRP™ (Universal Software Radio Peripheral) is used for a number of military and aerospace applications. In this example, the USRP N200/N210 is used to receive and decode Mode-S beacons from real-world aircraft. The information from these beacons is displayed on Google Earth. This demonstration shows the flexibility offered by GNU Radio, an a open source package and its strong user-base.

The Gnuradio Out-Of-Tree module (OOT) gr-air-modes will be use to receive Mode-S with the USRP.

Requirements

  • Python >= 2.5
  • PyZMQ
  • NumPy and SciPy
  • Gnuradio >= 3.5.0
  • Ettus UHD >= 3.4.0
  • SQLite 3.7 or later
  • CMake 2.6 or later

Installation

   $ sudo apt-get install sqlite3 libsqlite3-dev python-zmq python-numpy python-scipy
   $ git clone https://github.com/bistromath/gr-air-modes.git
   $ cd gr-air-modes/
   $ mkdir build
   $ cd build
   $ cmake ../
   $ make
   $ sudo make install
   $ sudo ldconfig

Usage

After successfully building and installing the gr-air-modes OOT, you will have two applications to receive Mode-S.

  • modes_rx
    • Command line based, textual output of data received


  • modes_gui
    • GUI based interface with Google Maps integration


Additional Resources

For additional information on gr-air-modes please see the gr-air-modes Github Repository.