-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated version of OdometryWithAcceleration
Following up ros/common_msgs#87
- Loading branch information
Showing
2 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# This represents an estimate of a position, velocity, and acceleration in free space. | ||
# The pose in this message should be specified in the coordinate frame given by header.frame_id. | ||
# The velocity in this message should be specified in the coordinate frame given by the child_frame_id. | ||
# The acceleration in this message should be specified in the coordinate frame given by the child_frame_id. | ||
Header header | ||
string child_frame_id | ||
geometry_msgs/Pose pose | ||
UpperTriangularCovariance pose_covariance | ||
geometry_msgs/Twist velocity | ||
UpperTriangularCovariance velocity_covariance | ||
geometry_msgs/Twist acceleration | ||
UpperTriangularCovariance acceleration_covariance |