add the waypoints to the scheduling message

This commit is contained in:
Sven Czarnian
2021-11-11 14:39:40 +01:00
parent 7c44973935
commit 51dfbf0577

View File

@@ -2,11 +2,11 @@ syntax = "proto3";
package aman; package aman;
import "Aircraft.proto"; import "Aircraft.proto";
import "BaseTypes.proto";
message AircraftSchedule { message AircraftSchedule {
Aircraft aircraft = 1; // aircraft information Aircraft aircraft = 1; // aircraft information
string arrivalRoute = 2; // planned arrival route string arrivalRoute = 2; // planned arrival route
string arrivalRunway = 3; // planned arrival runway string arrivalRunway = 3; // planned arrival runway
string reachIafAtTime = 4; // UTC time when the aircraft needs to pass IAF repeated Waypoint waypoints = 4; // contains the planned waypoints with the PTA
string reachRunwayAtTime = 5; // UTC time when the aircraft needs to touch down
} }