From 0c0039e2f3609ae2c6e2b0b1c85f24f1375e77a5 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Sun, 10 Oct 2021 08:35:09 +0200 Subject: [PATCH] extend the schedule time --- AircraftSchedule.proto | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/AircraftSchedule.proto b/AircraftSchedule.proto index 3413b5d..2f4414d 100644 --- a/AircraftSchedule.proto +++ b/AircraftSchedule.proto @@ -4,8 +4,9 @@ package aman; import "Aircraft.proto"; message AircraftSchedule { - Aircraft aircraft = 1; // aircraft information - string arrivalRoute = 2; // planned arrival route - string arrivalRunway = 3; // planned arrival runway - string reachIafAtTime = 4; // UTC time when the aircraft needs to pass IAF + Aircraft aircraft = 1; // aircraft information + string arrivalRoute = 2; // planned arrival route + string arrivalRunway = 3; // planned arrival runway + string reachIafAtTime = 4; // UTC time when the aircraft needs to pass IAF + string reachRunwayAtTime = 5; // UTC time when the aircraft needs to touch down }