2015-04-25 23:44:54 -04:00
|
|
|
# GPS home position in WGS84 coordinates.
|
|
|
|
|
|
2018-08-07 14:42:32 +01:00
|
|
|
uint64 timestamp # time since system start (microseconds)
|
2018-08-07 01:30:05 +01:00
|
|
|
|
2015-04-25 23:44:54 -04:00
|
|
|
float64 lat # Latitude in degrees
|
|
|
|
|
float64 lon # Longitude in degrees
|
|
|
|
|
float32 alt # Altitude in meters (AMSL)
|
|
|
|
|
|
|
|
|
|
float32 x # X coordinate in meters
|
|
|
|
|
float32 y # Y coordinate in meters
|
|
|
|
|
float32 z # Z coordinate in meters
|
2015-10-27 09:57:42 +01:00
|
|
|
|
|
|
|
|
float32 yaw # Yaw angle in radians
|
2017-12-06 07:29:19 +11:00
|
|
|
|
|
|
|
|
bool valid_alt # true when the altitude has been set
|
|
|
|
|
bool valid_hpos # true when the latitude and longitude have been set
|
2020-10-19 11:00:31 +02:00
|
|
|
bool valid_lpos # true when the local position (xyz) has been set
|
2017-12-18 22:15:34 -05:00
|
|
|
|
2017-12-19 01:03:31 +01:00
|
|
|
bool manual_home # true when home position was set manually
|