From 25e5a4e4129063035acb2775a81c96000beef94c Mon Sep 17 00:00:00 2001 From: Junzi Sun Date: Sat, 22 Jul 2017 11:58:29 +0200 Subject: [PATCH] increase roll angle limit --- pyModeS/ehs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyModeS/ehs.py b/pyModeS/ehs.py index 8035af7..b32f9e1 100644 --- a/pyModeS/ehs.py +++ b/pyModeS/ehs.py @@ -498,7 +498,7 @@ def isBDS50(msg): result &= True else: roll = abs(roll50(msg)) - if roll and roll > 30: + if roll and roll > 60: result &= False gs = gs50(msg)