BaseStationReader.Data 1.28.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package BaseStationReader.Data --version 1.28.0
NuGet\Install-Package BaseStationReader.Data -Version 1.28.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BaseStationReader.Data" Version="1.28.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BaseStationReader.Data --version 1.28.0
#r "nuget: BaseStationReader.Data, 1.28.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BaseStationReader.Data as a Cake Addin
#addin nuget:?package=BaseStationReader.Data&version=1.28.0

// Install BaseStationReader.Data as a Cake Tool
#tool nuget:?package=BaseStationReader.Data&version=1.28.0

ADS-B-BaseStationReader

Build Status GitHub issues Coverage Status Releases License: MIT Language Language GitHub code size in bytes

Overview

Application Schematic

  • An RTL2832/R820T2 USB Dongle is plugged into the Raspberry Pi
  • The Raspberry Pi is running the dump1090-mutability service to decode the data from the dongle
  • One of the outputs is a decoded stream of messages in "Basestation" format, that is exposed on a TCP port on the Pi
  • This stream is read by the MessageReader, that exposes an event used to notify subscribers when a new message arrives
  • The AircraftTracker subscribes to these events and passes each new message to the message parsers to have the information it contains extracted into an aircraft tracking object
  • The AircraftTracker enqueues each new tracking object for asynchronous writing to the SQLite database
  • It also exposes events to notify subscribers when aircraft are added, updated and removed
  • On a timed interval, the QueuedWriter processes pending writes from the the queue

The Console Application

Overview

  • The repository includes a console application that uses the Spectre.Console package to render a live view of the aircraft currently being tracked:

Console Application

  • The application subscribes to the events exposed by the AircraftTracker (see below) to implement continuous live updates
  • As an aircraft's details are updated on receipt of a new messages, it's details are immediately updated in the live view
  • As it moves through the tracking states (see below), it will be highlighted in yellow, when it reaches the "Recent" state, and red, when it reaches the "Stale" state
  • When it is removed from the tracker's tracking list, it is also removed from the live table

Configuration File

General Settings and Database Connection String

  • The appsettings.json file in the console application project contains the following keys for controlling the application:
Section Key Command Line Short Name Purpose
ApplicationSettings Host --host -h Host the reader connects to for reading messages
ApplicationSettings Port --port -p Port the reader connects to for reading messages
ApplicationSettings SocketReadTimeout --read-timout -t Timeout, in ms, for read operations on the message stream
ApplicationSettings ApplicationTimeout --app-timeout -a Timeout (ms) after which the terminal application will quit if no messages are recieved
ApplicationSettings TimeToRecent --recent -r Threshold, in ms, after the most recent message at which an aircraft is considered "recent" (see states, below)
ApplicationSettings TimeToStale --stale -s Threshold, in ms, after the most recent message at which an aircraft is considered "stale" (see states, below)
ApplicationSettings TimeToRemoval --remove -x Threshold, in ms, after the most recent message at which an aircraft is removed from tracking (see states, below)
ApplicationSettings TimeToLock --lock -k Threshold, in ms, after which an active aircraft record is locked, having received no updates
ApplicationSettings LogFile --log-file -l Path and name of the log file. If this is blank, no log file is created
ApplicationSettings MinimumLogLevel --log-level -ll Minimum message severity to log (Debug, Info, Warning or Error)
ApplicationSettings EnableSqlWriter --enable-sql-writer -w Set to true to enable the SQL writer or false to disable it
ApplicationSettings WriterInterval --writer-interval -i Interval, in ms, at which the writer writes batches of changes from the queue to the database
ApplicationSettings WriterBatchSize --writer-batch-size -b Maximum number of changes to consider on each WriterInterval
ApplicationSettings RefreshInterval --ui-interval -b GUI live view refresh interval (ms)
ApplicationSettings MaximumRows --max-rows -m Maximum rows in the live table view at any one time or 0 for unlimited rows
ApplicationSettings ReceiverLatitude --latitude -la Receiver latitude, used in aircraft distance calculations
ApplicationSettings ReceiverLongitude --longitude -lo Receiver longitude, used in aircraft distance calculations
ApplicationSettings Columns - - Set of column definitions for columns to be included in the output
ConnectionStrings BaseStationReaderDB - - SQLite connection string for the database
  • Values may also be passed using the indicated command line arguments, in which case the values are first read from the configuration file and then any values specified on the command line are then applied
Column Definitions
  • The Columns property in the ApplicationSettings section of the file contains a list of column definitions:
[
  {
    "Property": "Address",
    "Label": "ID",
    "Format": "",
    "Context": ""
  },
  {
    "Property": "Callsign",
    "Label": "Callsign",
    "Format": "",
    "Context": ""
  },
  {
    "Property": "Latitude",
    "Label": "Latitude",
    "Format": "N5",
    "Context": ""
  }
]
  • Each column definition contains the following items:
Item Comments
Property Case-sensitive name of the property on the Aircraft entity to be rendered in this column
Label Column title
Format The C# format string used to render the property (for Decimal and DateTime types) or blank
Context Specifies the named context in which the column definition is used (GUI only, see below)
  • The application will show only the columns listed in this section of the configuration file, showing them in the order in which they appear here and formatted according to the format specifier
Row Limits and Column Control
  • The maximum row limit and custom column control are intended to support running the application on small screens
  • The following shows the console application running on a Raspberry Pi with 3.5" LCD screen:

Raspberry Pi

The GUI

  • The repository includes a UI built using Avalonia UI:

UI

Configuration File

  • The application configuration file is very similar to the Console Application configuration file (see above)
  • For the GUI, the format specifier given in the column definitions is a "String.Format" string adhering to the guidelines in the following article:

String.Format Method

  • The Context that forms part of the column definition (see above) is also respected and may be one of the following values:
Value Applies To
Blank Live view and the database search results
TrackedAircraftGrid Live view only
DatabaseGrid Database search results only

Tracking Menu

  • The tracking menu is only available when the "Live View" or "Map View" tabs are selected
  • To start live tracking, select the "Start live tracking" option on this menu
  • To stop live tracking, select the "Stop live tracking" option on this menu
Tracking Filters
  • To filter the live tracking view, make sure the application is currently tracking
  • Open the "Tracking Filters" dialog (Tracking > Filters)

<img src="Diagrams/tracking-filters.png" alt="Tracking Filters" width="200">

  • Enter the required filtering criteria and click "OK"
  • To clear the live tracking filters, make sure the application is currently tracking
  • Select "Clear filters"on the Tracking Menu
Tracking Options
  • To view/edit the tracking options, make sure the application is not currently tracking
  • Open the "Tracking Options" dialog (Tracking > Options)
  • The resulting dialog allows you to specify many of the tracking parameters described under "Configuration File", above

<img src="Diagrams/tracking-options.png" alt="Tracking Options" width="500">

Database Menu

  • The database menu is only available when the "Database Search" tab is selected
  • To search the database, select the "Search" option from the "Database" menu

<img src="Diagrams/database-search.png" alt="Database Search" width="400">

  • Enter the search criteria then click OK
  • The database grid will be populated with any records matching the specified criteria
  • To export the records currently shown in the database search results, select "Export" from the "Database" menu
  • A file selection dialog will be displayed allowing you to export the results in either XLSX or CSV format

Aircraft Tracking

Adding and Updating Tracking Objects

  • Aircraft are identified by their ICAO 24-bit address
  • When a new aircraft is seen for the first time in a session, it is added to the collection of tracked aircraft
  • In the first instance, the tracking object is populated with data from the initial message that caused it to be added to the tracking collection
  • As new messages come in for that aircraft, the existing tracking object is updated with new/updated information from each new message

Event Model

  • The AircraftTracker exposes the following events that subscribers can subscribe to to receive updates on tracked aircraft:
    • Aircraft added
    • Aircraft updated
    • Aircraft removed
  • The event notification for each event includes the current tracking object for the aircraft

Tracked Aircraft Statuses

  • Tracked aircraft pass through the following set of statuses from the point where they are added:
Status Value Meaning
Active 0 The aircraft has just been added and ongoing messages are being received
Inactive 1 Messages have been received recently but are not currently being received
Stale 2 Messages have not been received for a while - scheduled for removal
Locked 3 Aircraft's database record has been locked against further updates
  • Changes in status are communicated to AircraftTracker subscribers via the "aircraft updated" event (see above), with the status as a property of the tracking object

Message Parsing

  • The AircraftTracker is supplied with a dictionary of message parsers, each associated with a Basestation message type
  • As messages are received, the tracker selects the appropriate parser based on the message type
  • Currently, the only parser that has been implemented is for the MSG message type

SQLite Database

Database Schema

  • Each aircraft tracked in a given session has a record in the AIRCRAFT table that is created when the aircraft is first seen and updated as further messages are received from that aircraft:

Tracking Table

  • The altitude, latitude and longitude of an aircraft are recorded in the AIRCRAFT_POSITION table as changes are reported
  • The AIRCRAFT_POSITION table has a foreign key back to the related record in the AIRCRAFT table:

<img src="Diagrams/position_table.png" alt="Tracking Table" width="300">

Database Management

  • The application uses Entity Framework Core and initial creation and management of the database is achieved using EF Core database migrations
  • To create the database for the first time, first install the .NET Core SDK and then install the "dotnet ef" tool:
dotnet tool install --global dotnet-ef
  • Update the database path in the "appsettings.json" file in the terminal application project to point to the required database location
  • Build the solution
  • Open a terminal window and change to the BaseStation.Data project
  • Run the following command, making sure to use the path separator appropriate for your OS:
dotnet ef database update -s ../BaseStationReader.Terminal/BaseStationReader.Terminal.csproj
  • If the database doesn't exist, it will create it
  • It will then bring the database up to date by applying all pending migrations

Record Locking

  • As stated above, the ICAO 24-bit address is used as the unique identifier for an aircraft when writing updates to the database
  • Consequently, if an aircraft goes out of range then comes back into range, the original record would be picked up again on the second pass, though that pass may represent a different flight on a different date
  • Further, from this article:

Mode S equipped aircraft are assigned a unique ICAO 24-bit address or (informally) Mode-S "hex code" upon national registration and this address becomes a part of the aircraft's Certificate of Registration. Normally, the address is never changed, however, the transponders are reprogrammable and, occasionally, are moved from one aircraft to another (presumably for operational or cost purposes), either by maintenance or by changing the appropriate entry in the aircraft's Flight management system

  • The record for a given address should only be updated while the aircraft in question remains in range
  • Once it passes out of range, or when a new tracking session is started, if the address is seen again it should result in a new tracking record
  • This is achieved using the "Locked" status on tracking records (see the screenshot, above):
    • When an aircraft moves out of range and is removed from the tracking collection, a notional "lock timer" starts
    • If it's seen again within the timout, the record remains unlocked to avoid duplication of aircraft records for the same flight
    • Once the timeout is reached, the record is locked and any further updates for that ICAO address result in a new record
    • When the QueuedWriter starts, it immediately queues updates to mark all records that are not currently locked as locked, before accepting any other updates into the queue
  • Records marked as "Locked" are not considered candidates for further updates

Queued Writing

  • SQLite has been chosen as an appropriate DBMS for storing the data
  • It allows multiple readers but, at any one time, there can only be a single writer
  • As indicated above, the AircraftTracker exposes multiple events that require updates to be written to the database
  • If the console application attempts to write to the database from the event handlers as soon as an event notification is received, at some point a conflict arises between multiple concurrent updates and a "database is locked" error is thrown
  • Asynchronous, queued writing to the tracking database is required to avoid these conflicts and this is what the FIFO queue and the QueuedWriter implement
  • This architecture has the further advantage that database updates are separated from the subscribing application

Querying the Database

  • To avoid conflicts between readers and writers that may cause a "database is locked" error and halt the application, WAL journal mode should be used when querying the database if the application is running
  • The following is an example query that uses a PRAGMA to enable WAL mode then lists all aircraft in the database matching the specified ICAO 24-bit address:
PRAGMA journal_mode=WAL;

SELECT *
FROM AIRCRAFT
WHERE Address = '3949F8';

Simulator

  • The project includes a simulator that broadcasts messages in BaseStation format on the local machine
  • A set of simulated aircraft, with random ICAO addresses and callsigns, are created
  • At specified intervals, an MSG message with a random transmission type and a randomly selected aircraft is generated and sent to all connected clients
  • Simulated aircraft have a configurable lifespan after which no further messages are sent from them, to simulate real behaviour and exercise the tracking lifecycle (see above)
  • The simulator is intended for development use when no ADS-B receiver is available to provide a real message stream
  • The simulator is controlled via an "appsettings.json" configuration file, supporting the following keys:
Section Key Command Line Short Name Purpose
ApplicationSettings Port --port -p Port the simlator broadcasts on
ApplicationSettings SendInterval --send-interval -s Interval at which messages are sent (ms)
ApplicationSettings NumberOfAircraft --number -n Number of active simulated aircraft
ApplicationSettings AircraftLifespan --lifespan -ls Aircraft lifespan (ms)
ApplicationSettings LogFile --log-file -l Path and name of the log file. If this is blank, no log file is created
ApplicationSettings MinimumLogLevel --log-level -ll Minimum message severity to log (Debug, Info, Warning or Error)

Authors

Feedback

To file issues or suggestions, please use the Issues page for this project on GitHub.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on BaseStationReader.Data:

Package Downloads
BaseStationReader.Logic

Base Station Reader Business Logic

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.31.0 109 4/8/2024
1.30.0 118 9/28/2023
1.29.0 111 9/28/2023
1.28.0 114 9/27/2023
1.27.0 104 9/25/2023
1.26.0 111 9/24/2023
1.25.0 115 9/23/2023
1.24.0 103 9/22/2023
1.23.0 101 9/22/2023
1.22.0 113 9/19/2023
1.19.0 132 9/2/2023
1.18.0 127 9/1/2023
1.17.0 130 8/29/2023
1.16.0 128 8/28/2023
1.15.0 143 8/27/2023
1.14.0 130 8/27/2023
1.13.0 132 8/27/2023
1.12.0 133 8/27/2023
1.11.0 133 8/27/2023
1.9.0 127 8/24/2023
1.8.0 121 8/24/2023