From 997360aa76411dd5a6234822420882b0c59d5c6c Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Sat, 13 Nov 2021 10:03:08 +0100 Subject: [PATCH] extend the report by wind, etc. --- Communication.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Communication.proto b/Communication.proto index be618e4..f3edb87 100644 --- a/Communication.proto +++ b/Communication.proto @@ -3,6 +3,7 @@ package aman; import "AircraftReport.proto"; import "AircraftSchedule.proto"; +import "BaseTypes.proto"; message AircraftUpdate { repeated AircraftReport reports = 1; // Contains all updated aircrafts @@ -10,5 +11,6 @@ message AircraftUpdate { message AircraftSequence { string airport = 1; // Contains the airport ICAO for an easy filter - repeated AircraftSchedule sequence = 2; // Contains the sequence for the airport + repeated WindData windData = 2; // Contains the wind information + repeated AircraftSchedule sequence = 3; // Contains the sequence for the airport }