diff --git a/AircraftReport.proto b/AircraftReport.proto index 2461a6f..19c1259 100644 --- a/AircraftReport.proto +++ b/AircraftReport.proto @@ -10,5 +10,5 @@ message AircraftReport { 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 + string timeAtIAF = 6; // UTC time when aircraft is at IAF } diff --git a/AircraftSchedule.proto b/AircraftSchedule.proto index 2fa09b6..5b147c2 100644 --- a/AircraftSchedule.proto +++ b/AircraftSchedule.proto @@ -8,5 +8,5 @@ message AircraftSchedule { Aircraft aircraft = 1; // aircraft information string arrivalRoute = 2; // planned arrival route string arrivalRunway = 3; // planned arrival runway - Time reachIafAtTime = 4; // UTC time when the aircraft needs to pass IAF + string reachIafAtTime = 4; // UTC time when the aircraft needs to pass IAF } diff --git a/BaseTypes.proto b/BaseTypes.proto index a4d7c94..f61837e 100644 --- a/BaseTypes.proto +++ b/BaseTypes.proto @@ -11,8 +11,3 @@ message Dynamics { int32 altitude = 2; // given in feet int32 verticalSpeed = 3; // given in feet/min } - -message Time { - int32 hour = 1; // hours in 24-format - int32 minute = 2; // minutes -}