Пример #1
0
 def __init__(self, bin_msg: str):
     self.bin_msg = bin_msg
     self.valid = self._is_valid()
     if self.valid:
         # these are all straight from headers
         self.df = bin2int(self.bin_msg[:5])
         self.icao = bin2hex(self.bin_msg[8:32]).upper()
         self.capability = bin2int(self.bin_msg[5:8])
         self.typecode = bin2int(self.bin_msg[32:37])
         self.bin_data = self.bin_msg[37:88]
         # these require some extra work
         self.type = MessageType.from_tc(self.typecode)
         self.data = DataHandler.dispatch(self)