BaseTypes.proto 643 B

123456789101112131415161718192021222324
  1. syntax = "proto3";
  2. package aman;
  3. message Coordinate {
  4. double latitude = 1; // WGS84 latitude in degrees
  5. double longitude = 2; // WGS84 longitude in degrees
  6. }
  7. message WindData {
  8. int32 altitude = 1; // The altitude of the wind data
  9. int32 direction = 2; // The wind direction
  10. int32 speed = 3; // The wind speed
  11. }
  12. message Waypoint {
  13. string name = 1; // The waypoint's name
  14. string pta = 2; // The planned time of arrival (YYYY-MM-DD HH:MM:SS)
  15. }
  16. message Dynamics {
  17. int32 groundSpeed = 1; // given in knots
  18. int32 altitude = 2; // given in feet
  19. int32 verticalSpeed = 3; // given in feet/min
  20. }