add a new entry

This commit is contained in:
Sven Czarnian
2021-10-10 08:34:57 +02:00
parent 0742083144
commit ff7dea200c

View File

@@ -5,10 +5,11 @@ import "Aircraft.proto";
import "BaseTypes.proto"; import "BaseTypes.proto";
message AircraftReport { message AircraftReport {
Aircraft aircraft = 1; // aircraft information string reportTime = 1; // UTC time of the report
string initialApproachFix = 2; // last waypoint of the route Aircraft aircraft = 2; // aircraft information
Coordinate position = 3; // current WGS84 position string initialApproachFix = 3; // last waypoint of the route
Dynamics dynamics = 4; // current aircraft dynamics Coordinate position = 4; // current WGS84 position
string destination = 5; // the destination airport Dynamics dynamics = 5; // current aircraft dynamics
int32 distanceToIAF = 6; // distance to IAF in NM string destination = 6; // the destination airport
int32 distanceToIAF = 7; // distance to IAF in NM
} }