From e332bff36289149fd088cbd7a27e97c2640e62da Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Sat, 22 May 2021 01:11:28 -0700 Subject: [PATCH] Decrease error margin on TOT planning. Everyone seems to do pretty okay generally, with the exception of estimating ground ops time, which I've also increased (and is a non-issue for runway/air start defaults). --- gen/flights/traveltime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen/flights/traveltime.py b/gen/flights/traveltime.py index 2fa05690..6b787f95 100644 --- a/gen/flights/traveltime.py +++ b/gen/flights/traveltime.py @@ -52,7 +52,7 @@ class GroundSpeed: class TravelTime: @staticmethod def between_points(a: Point, b: Point, speed: Speed) -> timedelta: - error_factor = 1.1 + error_factor = 1.05 distance = meters(a.distance_to_point(b)) return timedelta(hours=distance.nautical_miles / speed.knots * error_factor)