51 lines
1.4 KiB
Python
51 lines
1.4 KiB
Python
# Copyright (C) 2018 Junzi Sun (TU Delft)
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# ------------------------------------------
|
|
# BDS 3,0
|
|
# ACAS active resolution advisory
|
|
# ------------------------------------------
|
|
|
|
from __future__ import absolute_import, print_function, division
|
|
from pyModeS.decoder.common import hex2bin, bin2int, data, allzeros
|
|
|
|
def is30(msg):
|
|
"""Check if a message is likely to be BDS code 2,0
|
|
|
|
Args:
|
|
msg (String): 28 bytes hexadecimal message string
|
|
|
|
Returns:
|
|
bool: True or False
|
|
"""
|
|
|
|
if allzeros(msg):
|
|
return False
|
|
|
|
d = hex2bin(data(msg))
|
|
|
|
if d[0:8] != '00110000':
|
|
return False
|
|
|
|
# threat type 3 not assigned
|
|
if d[28:30] == '11':
|
|
return False
|
|
|
|
# reserved for ACAS III, in far future
|
|
if bin2int(d[15:22]) >= 48:
|
|
return False
|
|
|
|
return True
|