EUROCONTROL ASTERIX encoder/decoder A library that encodes and decodes in the EUROCONTROL ASTERIX format as specified in the document EUROCONTROL-SPEC-0149. refrence from:https://github.com/vitorafsr/asterixed sample code: def bytes2hexstr(_bytes): return "".join("%02X" % b for b in _byte...
Pure python library for parsing/decoding EUROCONTROL ASTERIX protocol binary data. This library tries to be an easy way to use Python as Asterix decoder without the need of a big library. Focus is currently not yet on speed but to be simple and userfriendly. The code is based on the disco...