- 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
- string destination = 5; // the destination airport
- Time timeAtIAF = 6; // UTC time when aircraft is at IAF
- }
|