Skip to content

Commit

Permalink
add my name in the ToDo
Browse files Browse the repository at this point in the history
  • Loading branch information
kminoda authored Nov 17, 2022
1 parent 74d38f4 commit 6ae751f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion localization/gyro_odometer/src/gyro_odometer_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ void GyroOdometer::callbackImu(const sensor_msgs::msg::Imu::ConstSharedPtr imu_m
gyro.twist.twist.angular.x = transformed_angular_velocity.vector.x;
gyro.twist.twist.angular.y = transformed_angular_velocity.vector.y;
gyro.twist.twist.angular.z = transformed_angular_velocity.vector.z;
// TODO: The following assumes that the covariance does not change before and after the
// TODO(kminoda): The following assumes that the covariance does not change before and after the
// transformation
gyro.twist.covariance[3 * 6 + 3] = imu_msg_ptr->angular_velocity_covariance[0 * 3 + 0];
gyro.twist.covariance[4 * 6 + 4] = imu_msg_ptr->angular_velocity_covariance[1 * 3 + 1];
Expand Down

0 comments on commit 6ae751f

Please sign in to comment.