Files
aman-com/AircraftSchedule.proto
2021-11-13 22:52:05 +01:00

13 lines
446 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
repeated Waypoint waypoints = 5; // contains the planned waypoints with the PTA
}