From 7c4497393529ba660f951f4478fa2e9c09782ded Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Thu, 11 Nov 2021 14:39:26 +0100 Subject: [PATCH] define the waypoint with PTA --- BaseTypes.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BaseTypes.proto b/BaseTypes.proto index f61837e..836fb05 100644 --- a/BaseTypes.proto +++ b/BaseTypes.proto @@ -6,6 +6,11 @@ message Coordinate { double longitude = 2; // WGS84 longitude in degrees } +message Waypoint { + string name = 1; // The waypoint's name + string pta = 2; // The planned time of arrival (YYYY-MM-DD HH:MM:SS) +} + message Dynamics { int32 groundSpeed = 1; // given in knots int32 altitude = 2; // given in feet