-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
177 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
def hex2bin(hexstr: str) -> str: ... | ||
def bin2int(binstr: str) -> int: ... | ||
def hex2int(hexstr: str) -> int: ... | ||
def bin2hex(binstr: str) -> str: ... | ||
|
||
|
||
def df(msg: str) -> int: ... | ||
def crc(msg: str, encode: bool = False) -> int: ... | ||
|
||
|
||
def floor(x: float) -> float: ... | ||
def icao(msg: str) -> str: ... | ||
def is_icao_assigned(icao: str) -> bool: ... | ||
|
||
|
||
def typecode(msg: str) -> int: ... | ||
def cprNL(lat: float) -> int: ... | ||
|
||
|
||
def idcode(msg: str) -> str: ... | ||
def squawk(binstr: str) -> str: ... | ||
|
||
|
||
def altcode(msg: str) -> int: ... | ||
def altitude(binstr: str) -> int: ... | ||
|
||
|
||
def data(msg: str) -> str: ... | ||
def allzeros(msg: str) -> bool: ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# noqa | ||
|
||
"""ADS-B module. | ||
The ADS-B module also imports functions from the following modules: | ||
|
Oops, something went wrong.