2015-04-26 00:44:54 -03:00
|
|
|
# GPS home position in WGS84 coordinates.
|
|
|
|
|
|
|
|
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 05:57:42 -03:00
|
|
|
|
|
|
|
float32 yaw # Yaw angle in radians
|
2017-12-05 16:29:19 -04:00
|
|
|
|
|
|
|
bool valid_alt # true when the altitude has been set
|
|
|
|
bool valid_hpos # true when the latitude and longitude have been set
|
2017-12-18 23:15:34 -04:00
|
|
|
|
2017-12-18 20:03:31 -04:00
|
|
|
bool manual_home # true when home position was set manually
|