2018-07-11 09:44:43 -03:00
|
|
|
# Vehicle odometry data. Fits ROS REP 147 for aerial vehicles
|
2018-08-10 06:27:59 -03:00
|
|
|
uint64 timestamp # time since system start (microseconds)
|
2020-04-28 11:07:19 -03:00
|
|
|
uint64 timestamp_sample
|
|
|
|
|
2022-08-04 13:55:21 -03:00
|
|
|
uint8 POSE_FRAME_UNKNOWN = 0
|
|
|
|
uint8 POSE_FRAME_NED = 1 # NED earth-fixed frame
|
|
|
|
uint8 POSE_FRAME_FRD = 2 # FRD world-fixed frame, arbitrary heading reference
|
|
|
|
uint8 pose_frame # Position and orientation frame of reference
|
2018-07-11 09:44:43 -03:00
|
|
|
|
2022-08-04 13:55:21 -03:00
|
|
|
float32[3] position # Position in meters. Frame of reference defined by local_frame. NaN if invalid/unknown
|
|
|
|
float32[4] q # Quaternion rotation from FRD body frame to reference frame. First value NaN if invalid/unknown
|
2018-07-11 09:44:43 -03:00
|
|
|
|
2022-08-04 13:55:21 -03:00
|
|
|
uint8 VELOCITY_FRAME_UNKNOWN = 0
|
|
|
|
uint8 VELOCITY_FRAME_NED = 1 # NED earth-fixed frame
|
|
|
|
uint8 VELOCITY_FRAME_FRD = 2 # FRD world-fixed frame, arbitrary heading reference
|
|
|
|
uint8 VELOCITY_FRAME_BODY_FRD = 3 # FRD body-fixed frame
|
|
|
|
uint8 velocity_frame # Reference frame of the velocity data
|
2020-05-13 07:43:02 -03:00
|
|
|
|
2022-08-04 13:55:21 -03:00
|
|
|
float32[3] velocity # Velocity in meters/sec. Frame of reference defined by velocity_frame variable. NaN if invalid/unknown
|
2018-07-11 09:44:43 -03:00
|
|
|
|
2022-08-04 13:55:21 -03:00
|
|
|
float32[3] angular_velocity # Angular velocity in body-fixed frame (rad/s). NaN if invalid/unknown
|
2018-07-11 09:44:43 -03:00
|
|
|
|
2022-08-04 13:55:21 -03:00
|
|
|
float32[3] position_variance
|
|
|
|
float32[3] orientation_variance
|
|
|
|
float32[3] velocity_variance
|
2018-07-11 09:44:43 -03:00
|
|
|
|
2022-01-28 16:10:09 -04:00
|
|
|
uint8 reset_counter
|
2022-08-04 13:55:21 -03:00
|
|
|
int8 quality
|
2022-01-28 16:10:09 -04:00
|
|
|
|
2020-10-27 13:33:39 -03:00
|
|
|
# TOPICS vehicle_odometry vehicle_mocap_odometry vehicle_visual_odometry
|
2020-10-27 11:56:11 -03:00
|
|
|
# TOPICS estimator_odometry estimator_visual_odometry_aligned
|