13 lines
397 B
Protocol Buffer
13 lines
397 B
Protocol Buffer
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
|
|
repeated Waypoint waypoints = 4; // contains the planned waypoints with the PTA
|
|
}
|