浏览代码

update the inbound schedule

Sven Czarnian 3 年之前
父节点
当前提交
5e4b9faa16
共有 1 个文件被更改,包括 5 次插入4 次删除
  1. 5 4
      AircraftSchedule.proto

+ 5 - 4
AircraftSchedule.proto

@@ -5,8 +5,9 @@ import "Aircraft.proto";
 import "BaseTypes.proto";
 
 message AircraftSchedule {
-    Aircraft aircraft           = 1; // aircraft information
-    string arrivalRoute         = 2; // planned arrival route
-    string arrivalRunway        = 3; // planned arrival runway
-    repeated Waypoint waypoints = 4; // contains the planned waypoints with the PTA
+    string callsign             = 1; // aircraft's callsign
+    bool fixed                  = 2; // indicates if the sequence is fixed
+    string arrivalRoute         = 3; // planned arrival route
+    string arrivalRunway        = 4; // planned arrival runway
+    repeated Waypoint waypoints = 5; // contains the planned waypoints with the PTA
 }