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).
This commit is contained in:
Dan Albert 2021-05-22 01:11:28 -07:00
parent 59e03434e4
commit e332bff362

View File

@ -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)