2017-12-21 00:16:31 +08:00
The Python Mode-S Decoder (dev-2.0 branch)
2017-12-21 00:00:02 +08:00
==========================================
2016-03-17 06:11:15 +08:00
2017-09-19 17:19:54 +08:00
Python library for Mode-S message decoding. Support Downlink Formats (DF) are:
2016-03-17 06:11:15 +08:00
- Automatic Dependent Surveillance - Broadcast (ADS-B) (DF17)
2017-07-21 23:45:08 +08:00
- aircraft information that contains: ICAO address, position, altitude, velocity (ground speed), callsign, etc.
- Mode-S Elementary Surveillance (ELS) (DF4 and DF5).
- DF4: Altitude
- DF5: Squawk code
2016-03-17 06:11:15 +08:00
2017-03-23 04:06:51 +08:00
- Mode-S Enhanced Surveillance (EHS) (DF20 and DF21). Additional information in response to SSR interrogation, such as: true airspeed, indicated airspeed, mach number, wind, temperature, etc.
2017-03-23 04:07:59 +08:00
2017-07-21 23:45:08 +08:00
- DF20: Altitude
- DF21: Squawk code
2017-03-23 04:06:51 +08:00
- BDS 2,0 Aircraft identification
- BDS 2,1 Aircraft and airline registration markings
2018-03-28 19:31:24 +08:00
- BDS 3,0 ACAS active resolution advisory
2017-03-23 04:06:51 +08:00
- BDS 4,0 Selected vertical intention
- BDS 4,4 Meteorological routine air report
- BDS 5,0 Track and turn report
- BDS 5,3 Air-referenced state vector
- BDS 6,0 Heading and speed report
2016-03-17 06:11:15 +08:00
2017-09-19 17:19:54 +08:00
Detailed manual on Mode-S decoding is published by the author, at:
2016-08-16 23:07:02 +08:00
http://adsb-decode-guide.readthedocs.io
2016-03-17 06:11:15 +08:00
2017-12-21 00:00:02 +08:00
New features in v2.0
---------------------
2018-03-28 19:31:24 +08:00
- New structure of the libraries
2017-12-21 00:00:02 +08:00
- ADS-B and EHS data streaming
- Active aircraft viewing (in terminal)
- More advanced BDS identification in Enhanced Mode-S
2018-01-16 22:37:04 +08:00
- Optimize decoding speed
2017-12-21 00:00:02 +08:00
2016-03-17 06:11:15 +08:00
Source code
-----------
2016-10-26 03:26:09 +08:00
Checkout and contribute to this open source project at:
2018-03-28 19:31:24 +08:00
https://github.com/junzis/pyModeS/tree/dev-2.0
2016-03-17 06:11:15 +08:00
2016-10-19 22:22:28 +08:00
API documentation at:
2016-08-16 23:07:02 +08:00
http://pymodes.readthedocs.io
2018-03-28 19:31:24 +08:00
[To be updated]
2016-03-17 06:11:15 +08:00
2017-09-19 17:19:54 +08:00
2016-03-17 06:11:15 +08:00
Install
-------
2018-03-12 20:45:48 +08:00
To install latest development version (dev-2.0) from the GitHub:
2017-12-13 04:48:25 +08:00
::
2018-03-12 20:45:48 +08:00
pip install git+https://github.com/junzis/pyModeS@dev-2.0
2017-12-13 04:48:25 +08:00
2017-09-19 17:19:54 +08:00
Use the library
---------------
2016-03-17 06:11:15 +08:00
.. code :: python
2017-11-01 18:53:10 +08:00
import pyModeS as pms
2016-03-17 06:11:15 +08:00
2016-03-23 18:45:38 +08:00
2017-07-21 23:40:10 +08:00
Common functions:
***** ***** ***** **
2016-03-23 18:45:38 +08:00
.. code :: python
2017-11-01 18:53:10 +08:00
pms.df(msg) # Downlink Format
2018-03-28 19:31:24 +08:00
pms.icao(msg) # Infer the ICAO address from the message
2017-11-01 18:53:10 +08:00
pms.crc(msg, encode=False) # Perform CRC or generate parity bit
2016-03-23 18:45:38 +08:00
2018-03-28 19:31:24 +08:00
pms.hex2bin(str) # Convert hexadecimal string to binary string
pms.bin2int(str) # Convert binary string to integer
pms.hex2int(str) # Convert hexadecimal string to integer
pms.gray2int(str) # Convert grey code to interger
2017-07-21 23:40:10 +08:00
2016-03-23 18:45:38 +08:00
2016-03-17 06:11:15 +08:00
Core functions for ADS-B decoding:
2017-07-21 23:40:10 +08:00
***** ***** ***** ***** ***** ***** *** *
2016-03-17 06:11:15 +08:00
.. code :: python
2017-11-01 18:53:10 +08:00
pms.adsb.icao(msg)
pms.adsb.typecode(msg)
2016-10-19 22:22:28 +08:00
2017-11-01 18:53:10 +08:00
# typecode 1-4
pms.adsb.callsign(msg)
2016-10-19 22:22:28 +08:00
2018-03-28 19:31:24 +08:00
# typecode 5-8 (surface), 9-18 (airborne, barometric height), and 9-18 (airborne, GNSS height)
2017-11-01 18:53:10 +08:00
pms.adsb.position(msg_even, msg_odd, t_even, t_odd, lat_ref=None, lon_ref=None)
pms.adsb.airborne_position(msg_even, msg_odd, t_even, t_odd)
pms.adsb.surface_position(msg_even, msg_odd, t_even, t_odd, lat_ref, lon_ref)
2016-10-19 22:22:28 +08:00
2017-11-01 18:53:10 +08:00
pms.adsb.position_with_ref(msg, lat_ref, lon_ref)
pms.adsb.airborne_position_with_ref(msg, lat_ref, lon_ref)
pms.adsb.surface_position_with_ref(msg, lat_ref, lon_ref)
2017-03-07 20:41:07 +08:00
2017-11-01 18:53:10 +08:00
pms.adsb.altitude(msg)
# typecode: 19
pms.adsb.velocity(msg) # handles both surface & airborne messages
pms.adsb.speed_heading(msg) # handles both surface & airborne messages
pms.adsb.surface_velocity(msg)
pms.adsb.airborne_velocity(msg)
2017-03-07 20:41:07 +08:00
2016-03-17 06:11:15 +08:00
2017-09-19 17:19:54 +08:00
Note: When you have a fix position of the aircraft, it is convenient to
2016-10-19 22:22:28 +08:00
use `position_with_ref()` method to decode with only one position message
(either odd or even). This works with both airborne and surface position
messages. But the reference position shall be with in 180NM (airborne)
2017-07-21 23:40:10 +08:00
or 45NM (surface) of the true position.
2018-03-28 19:31:24 +08:00
Common Mode-S functions
***** ***** ***** ***** *** *
2017-07-21 23:40:10 +08:00
.. code :: python
2018-03-28 19:31:24 +08:00
pms.icao(msg) # Infer the ICAO address from the message
pms.bds.infer(msg) # Infer the Modes-S BDS code
2017-07-21 23:40:10 +08:00
2018-03-28 19:31:24 +08:00
pms.bds.is10(msg) # check if BDS is 1,0 explicitly
pms.bds.is17(msg) # check if BDS is 1,7 explicitly
pms.bds.is20(msg) # check if BDS is 2,0 explicitly
pms.bds.is30(msg) # check if BDS is 3,0 explicitly
pms.bds.is40(msg) # check if BDS is 4,0 explicitly
pms.bds.is44(msg) # check if BDS is 4,4 explicitly
pms.bds.is50(msg) # check if BDS is 5,0 explicitly
pms.bds.is60(msg) # check if BDS is 6,0 explicitly
2016-08-16 21:56:05 +08:00
2018-03-28 19:31:24 +08:00
# check if BDS is 5,0 or 6,0, give reference spd, trk, alt (from ADS-B)
pms.bds.is50or60(msg, spd_ref, trk_ref, alt_ref)
Mode-S elementary surveillance (ELS)
***** ***** ***** ***** ***** ***** ***** **
2016-03-17 06:11:15 +08:00
.. code :: python
2018-05-17 16:40:22 +08:00
pms.commb.ovc10(msg) # overlay capability, BDS 1,0
pms.commb.cap17(msg) # GICB capability, BDS 1,7
pms.commb.cs20(msg) # callsign, BDS 2,0
2017-11-01 18:53:10 +08:00
2018-03-28 19:31:24 +08:00
Mode-S enhanced surveillance (EHS)
***** ***** ***** ***** ***** ***** *****
.. code :: python
2017-11-01 18:53:10 +08:00
# for BDS version 4,0
2018-05-17 16:40:22 +08:00
pms.commb.alt40mcp(msg) # MCP/FCU selected altitude (ft)
pms.commb.alt40fms(msg) # FMS selected altitude (ft)
pms.commb.p40baro(msg) # Barometric pressure (mb)
2017-11-01 18:53:10 +08:00
# for BDS version 5,0
2018-05-17 16:40:22 +08:00
pms.commb.roll50(msg) # roll angle (deg)
pms.commb.trk50(msg) # track angle (deg)
pms.commb.gs50(msg) # ground speed (kt)
pms.commb.rtrk50(msg) # track angle rate (deg/sec)
pms.commb.tas50(msg) # true airspeed (kt)
2017-11-01 18:53:10 +08:00
# for BDS version 6,0
2018-05-17 16:40:22 +08:00
pms.commb.hdg60(msg) # heading (deg)
pms.commb.ias60(msg) # indicated airspeed (kt)
pms.commb.mach60(msg) # MACH number
pms.commb.vr60baro(msg) # barometric altitude rate (ft/min)
pms.commb.vr60ins(msg) # inertial vertical speed (ft/min)
2016-03-17 06:11:15 +08:00
2018-03-28 19:31:24 +08:00
Meteorological routine air report (MRAR) [Experimental]
***** ***** ***** ***** ***** ***** ***** ***** ***** ***** *****
.. code :: python
# for BDS version 4,4
2018-05-17 16:40:22 +08:00
pms.commb.wind44(msg, rev=False) # wind speed (kt) and heading (deg)
pms.commb.temp44(msg, rev=False) # temperature (C)
pms.commb.p44(msg, rev=False) # pressure (hPa)
pms.commb.hum44(msg, rev=False) # humidity (%)
2018-03-28 19:31:24 +08:00
2016-09-12 11:48:43 +08:00
Developement
------------
2017-09-19 17:19:54 +08:00
To perform unit tests. First install `` tox `` through pip, Then, run the following commands:
2017-11-01 18:53:10 +08:00
.. code :: bash
$ tox