mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
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:
parent
59e03434e4
commit
e332bff362
@ -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)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user