Quellcode durchsuchen

add the waypoints to the scheduling message

Sven Czarnian vor 3 Jahren
Ursprung
Commit
51dfbf0577
1 geänderte Dateien mit 5 neuen und 5 gelöschten Zeilen
  1. 5 5
      AircraftSchedule.proto

+ 5 - 5
AircraftSchedule.proto

@@ -2,11 +2,11 @@ syntax = "proto3";
 package aman;
 
 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
-    string   reachIafAtTime    = 4; // UTC time when the aircraft needs to pass IAF
-    string   reachRunwayAtTime = 5; // UTC time when the aircraft needs to touch down
+    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
 }