Skip to main content

Python Mode-S Decoder

Project description

Python library for Mode-S message decoding. Two separate methods are implemented to decode the following messages:

  • Automatic Dependent Surveillance - Broadcast (ADS-B) (DF17)

    • aircraft information that contains: ICAO address, position, altitude, velocity (ground speed), callsign, etc.

  • 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.

    • BDS 2,0 Aircraft identification

    • BDS 2,1 Aircraft and airline registration markings

    • 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

A detailed manual on Mode-S decoding is published by the author, at: http://adsb-decode-guide.readthedocs.io

Source code

Checkout and contribute to this open source project at: https://github.com/junzis/pyModeS

API documentation at: http://pymodes.readthedocs.io

Install

Checkout source code, or install using pip:

pip install pyModeS

Usage

import pyModeS as pms

Common function for Mode-S message:

pms.df(msg)                 # Downlink Format
pms.crc(msg, encode=False)  # Perform CRC or generate parity bit

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

Core functions for ADS-B decoding:

pms.adsb.icao(msg)
pms.adsb.callsign(msg)

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)

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)

pms.adsb.altitude(msg)

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)

Hint: When you have a fix position of the aircraft, it is convenient to 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) or 45NM (surface) of the true position.

Core functions for EHS decoding:

pms.ehs.icao(msg)       # ICAO address
pms.ehs.BDS(msg)        # Comm-B Data Selector Version

# for BDS version 2,0
pms.ehs.isBDS20(msg)    # Check if message is BDS 2,0
pms.ehs.callsign(msg)   # Aircraft callsign

# for BDS version 4,0
pms.ehs.isBDS40(msg)    # Check if message is BDS 4,0
pms.ehs.alt40mcp(msg)   # MCP/FCU selected altitude (ft)
pms.ehs.alt40fms(msg)   # FMS selected altitude (ft)
pms.ehs.p40baro(msg)    # Barometric pressure (mb)

# for BDS version 4,4
pms.ehs.isBDS44(msg, rev=False) # Check if message is BDS 4,4
pms.ehs.wind44(msg, rev=False)  # wind speed (kt) and heading (deg)
pms.ehs.temp44(msg, rev=False)  # temperature (C)
pms.ehs.p44(msg, rev=False)     # pressure (hPa)
pms.ehs.hum44(msg, rev=False)   # humidity (%)

# for BDS version 5,0
pms.ehs.isBDS50(msg)    # Check if message is BDS 5,0
pms.ehs.roll50(msg)     # roll angle (deg)
pms.ehs.trk50(msg)      # track angle (deg)
pms.ehs.gs50(msg)       # ground speed (kt)
pms.ehs.rtrk50(msg)     # track angle rate (deg/sec)
pms.ehs.tas50(msg)      # true airspeed (kt)

# for BDS version 5,3
pms.ehs.isBDS53(msg)    # Check if message is BDS 5,3
pms.ehs.hdg53(msg)      # magnetic heading (deg)
pms.ehs.ias53(msg)      # indicated airspeed (kt)
pms.ehs.mach53(msg)     # MACH number
pms.ehs.tas53(msg)      # true airspeed (kt)
pms.ehs.vr53(msg)       # vertical rate (fpm)

# for BDS version 6,0
pms.ehs.isBDS60(msg)    # Check if message is BDS 6,0
pms.ehs.hdg60(msg)      # heading (deg)
pms.ehs.ias60(msg)      # indicated airspeed (kt)
pms.ehs.mach60(msg)     # MACH number
pms.ehs.vr60baro(msg)   # barometric altitude rate (ft/min)
pms.ehs.vr60ins(msg)    # inertial vertical speed (ft/min)

Developement

To run tests, run the following commands: ` $ tox `

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyModeS-1.1.1.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyModeS-1.1.1-py2.py3-none-any.whl (15.2 kB view details)

Uploaded Python 2Python 3

File details

Details for the file pyModeS-1.1.1.tar.gz.

File metadata

  • Download URL: pyModeS-1.1.1.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyModeS-1.1.1.tar.gz
Algorithm Hash digest
SHA256 483aa94c6197826c7b347733f015cf22e88f8bc7836c5adf36702017ec906633
MD5 788c4eebe44bd97b27b718ff2446e021
BLAKE2b-256 78d5be25e8d0460615587deedf1d6a048d8f877a903d2cb8bc9a41a94a1a3901

See more details on using hashes here.

File details

Details for the file pyModeS-1.1.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pyModeS-1.1.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 a3ec680c7fb3b3920bc7c819961f0899b032dda45d8df025d091bd7c97cd9248
MD5 07016f54c275f7b387ffaac075b53a61
BLAKE2b-256 acf4fa081fb5302339d39174398df2b97c4cc7b8abf2f7a0ade8fe2bc06999e7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page