From 34e8181cc9db413b76b86e8436d3e9d413520528 Mon Sep 17 00:00:00 2001 From: James Turner Date: Sat, 29 Dec 2012 13:46:29 +0000 Subject: [PATCH] Bug 941, lower minimum speed for GPS sequencing. 10kts is fine, apparently some people 'fly' very slowly. --- src/Instrumentation/gps.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Instrumentation/gps.cxx b/src/Instrumentation/gps.cxx index 5f04de2e6..e9d7a2a44 100644 --- a/src/Instrumentation/gps.cxx +++ b/src/Instrumentation/gps.cxx @@ -767,7 +767,7 @@ void GPS::updateTurn() bool printProgress = false; if (_computeTurnData) { - if (_last_speed_kts < 60) { + if (_last_speed_kts < 10) { // need valid leg course and sensible ground speed to compute the turn return; } -- 2.39.5