From 4a7c71997881786ba3d15b304bdf462716409515 Mon Sep 17 00:00:00 2001 From: Chris <62892866+chrislanzara@users.noreply.github.com> Date: Wed, 3 Jul 2024 22:49:24 +0100 Subject: [PATCH] Fixed "Magnetic" typo --- pyModeS/decoder/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyModeS/decoder/__init__.py b/pyModeS/decoder/__init__.py index 63341df0..43c7015e 100644 --- a/pyModeS/decoder/__init__.py +++ b/pyModeS/decoder/__init__.py @@ -211,7 +211,7 @@ def _print(label, value, unit=None): _print("True airspeed", commb.tas50(msg), "knots") if BDS == "BDS60": - _print("Megnatic Heading", commb.hdg60(msg), "degrees") + _print("Magnetic Heading", commb.hdg60(msg), "degrees") _print("Indicated airspeed", commb.ias60(msg), "knots") _print("Mach number", commb.mach60(msg)) _print("Vertical rate (Baro)", commb.vr60baro(msg), "feet/minute")