Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyModeS/decoder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ def tell(msg: str) -> None:
from pyModeS import common, adsb, commb, bds

def _print(label, value, unit=None):
print("%20s: " % label, end="")
print("%28s: " % label, end="")
print("%s " % value, end="")
if unit:
print(unit)
Expand Down Expand Up @@ -127,7 +127,7 @@ def _print(label, value, unit=None):
lnav = adsb.lnav_mode(msg)
_print("Selected altitude", alt, "feet")
_print("Altitude source", alt_source)
_print("Barometric pressure setting", baro, "millibars")
_print("Barometric pressure setting", baro, "" if baro == None else "millibars")
_print("Selected Heading", hdg, "°")
if not (common.bin2int((common.hex2bin(msg)[32:])[46]) == 0):
_print("Autopilot", types_29[autopilot] if autopilot else None)
Expand Down
3 changes: 1 addition & 2 deletions pyModeS/decoder/bds/bds62.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,7 @@ def baro_pressure_setting(msg):
)

baro = common.bin2int(mb[20:29])
baro = None if baro == 0 else 800 + (baro - 1) * 0.8
baro = round(baro, 1)
baro = None if baro == 0 else round(800 + (baro - 1) * 0.8, 1)

return baro

Expand Down