Browse Source

extend the report by wind, etc.

Sven Czarnian 3 years ago
parent
commit
997360aa76
1 changed files with 3 additions and 1 deletions
  1. 3 1
      Communication.proto

+ 3 - 1
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
 }