From 5e4b9faa16ad37c00c42af971c7a99ff129cc815 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Sat, 13 Nov 2021 10:02:52 +0100 Subject: [PATCH] update the inbound schedule --- AircraftSchedule.proto | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/AircraftSchedule.proto b/AircraftSchedule.proto index d46bb92..9857ccb 100644 --- a/AircraftSchedule.proto +++ b/AircraftSchedule.proto @@ -5,8 +5,9 @@ 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 + 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 }