mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-02-07 02:32:25 +08:00
- update all msgs to be directly compatible with ROS2 - microdds_client improvements - timesync - reduced code size - add to most default builds if we can afford it - lots of other little changes - purge fastrtps (I tried to save this multiple times, but kept hitting roadblocks)
20 lines
629 B
Plaintext
20 lines
629 B
Plaintext
# GPS home position in WGS84 coordinates.
|
|
|
|
uint64 timestamp # time since system start (microseconds)
|
|
|
|
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
|
|
|
|
float32 yaw # Yaw angle in radians
|
|
|
|
bool valid_alt # true when the altitude has been set
|
|
bool valid_hpos # true when the latitude and longitude have been set
|
|
bool valid_lpos # true when the local position (xyz) has been set
|
|
|
|
bool manual_home # true when home position was set manually
|