do not ignore flights that passed the IAF

这个提交包含在:
Sven Czarnian
2021-12-17 13:05:53 +01:00
父节点 d1e90cfd22
当前提交 dda7a90ef7

查看文件

@@ -85,7 +85,7 @@ class Worker(Thread):
for callsign in self.ReportQueue:
report = self.ReportQueue[callsign]
if 0 != report.distanceToIAF and '' != report.initialApproachFix:
if '' != report.initialApproachFix:
inbound = Inbound(report, self.PerformanceData)
Node(inbound, inbound.ReportTime, self.WeatherModel, self.Configuration, self.SequencingConfiguration)
if None != inbound.InitialArrivalTime: