19 lines
435 B
Protocol Buffer
19 lines
435 B
Protocol Buffer
syntax = "proto3";
|
|
package vatger.aman;
|
|
|
|
message Coordinate {
|
|
string latitude = 1; // WGS84 latitude in degrees
|
|
string longitude = 2; // WGS84 longitude in degrees
|
|
}
|
|
|
|
message Dynamics {
|
|
int32 groundSpeed = 1; // given in knots
|
|
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
|
|
}
|