AircraftSchedule.proto 509 B

12345678910111213
  1. syntax = "proto3";
  2. package aman;
  3. import "BaseTypes.proto";
  4. message AircraftSchedule {
  5. string callsign = 1; // aircraft's callsign
  6. bool fixed = 2; // indicates if the sequence is fixed
  7. string arrivalRoute = 3; // planned arrival route
  8. string arrivalRunway = 4; // planned arrival runway
  9. PerformanceData performance = 5; // used performance data
  10. repeated Waypoint waypoints = 6; // contains the planned waypoints with the PTA
  11. }