浏览代码

do not ignore flights that passed the IAF

Sven Czarnian 3 年之前
父节点
当前提交
dda7a90ef7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      aman/sys/Worker.py

+ 1 - 1
aman/sys/Worker.py

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