define the first version of the protocol buffers

This commit is contained in:
Sven Czarnian
2021-08-08 20:50:50 +02:00
parent d8219d8d8f
commit 2f7a1d1e19
4 changed files with 62 additions and 0 deletions

13
AircraftReport.proto Normal file
View File

@@ -0,0 +1,13 @@
syntax = "proto3";
package vatger.aman;
import "Aircraft.proto";
import "BaseTypes.proto";
message AircraftReport {
Aircraft aircraft = 1; // aircraft information
string initialApproachFix = 2; // last waypoint of the route
Coordinate position = 3; // current WGS84 position
Dynamics dynamics = 4; // current aircraft dynamics
Time timeAtIAF = 5; // UTC time when aircraft is at IAF
}