From 51dfbf0577585952f5c06b0b3b3581b606176e8a Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Thu, 11 Nov 2021 14:39:40 +0100 Subject: [PATCH] add the waypoints to the scheduling message --- AircraftSchedule.proto | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/AircraftSchedule.proto b/AircraftSchedule.proto index 2f4414d..d46bb92 100644 --- a/AircraftSchedule.proto +++ b/AircraftSchedule.proto @@ -2,11 +2,11 @@ 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 - string reachIafAtTime = 4; // UTC time when the aircraft needs to pass IAF - string reachRunwayAtTime = 5; // UTC time when the aircraft needs to touch down + 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 }