14 lines
509 B
Protocol Buffer
14 lines
509 B
Protocol Buffer
syntax = "proto3";
|
|
package aman;
|
|
|
|
import "BaseTypes.proto";
|
|
|
|
message AircraftSchedule {
|
|
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
|
|
PerformanceData performance = 5; // used performance data
|
|
repeated Waypoint waypoints = 6; // contains the planned waypoints with the PTA
|
|
}
|