14 lines
		
	
	
		
			333 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			333 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| package aman;
 | |
| 
 | |
| message Coordinate {
 | |
|     double latitude  = 1; // WGS84 latitude in degrees
 | |
|     double 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
 | |
| }
 |