-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proposed new messages to replace IMU message. #101
base: jade-devel
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
std_msgs/Header header | ||
|
||
geometry_msgs/Vector3 angular_velocity | ||
float64[9] angular_velocity_covariance # Row major about x, y, z axes | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# This message represents 3D attitude | ||
|
||
int8 ENU=1 | ||
int8 NED=2 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why not enforce one of these? Now all subscribers should handle this. I would like it better when there is only one definition within the ROS ecosystem. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you clarify how the enforcing should be done? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Stating in the message header-comment that ENU convention should be used. |
||
int8 ENU_FLOATING=3 | ||
int8 NED_FLOATING=4 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There'd be a comment here explaining what these mean and what their relationship is to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Define these right above There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Prefix the constants with |
||
|
||
std_msgs/Header header | ||
|
||
geometry_msgs/Quaternion orientation | ||
float64[9] orientation_covariance # Row major about x, y, z axes | ||
|
||
uint8 reference_frame_type # NED, ENU, NED_FLOATING, ENU_FLOATING | ||
string sensor_frame # The coordinate frame in the system of the observation. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Isn't this duplicating info from header? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No. From https://groups.google.com/g/ros-sig-drivers/c/2NvgNBOjcFQ/m/LfG6fhFbIBwJ:
The
... where the TF frames There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Something along these lines should probably added as a comment to this message. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
std_msgs/Header header | ||
geometry_msgs/Vector3 linear_acceleration | ||
float64[9] linear_acceleration_covariance # Row major x, y z | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe consider adding |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably copy the comment from the
sensor_msgs/Imu
message here:common_msgs/sensor_msgs/msg/Imu.msg
Lines 5 to 8 in 20a833b