-
Notifications
You must be signed in to change notification settings - Fork 682
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
refactor(sensing-vehicle-velocity-converter): rework parameters #5609
refactor(sensing-vehicle-velocity-converter): rework parameters #5609
Conversation
b640972
to
a202acb
Compare
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.
LGTM
speed_scale_factor_ = declare_parameter("speed_scale_factor", 1.0); | ||
stddev_vx_ = declare_parameter<double>("velocity_stddev_xx"); | ||
stddev_wz_ = declare_parameter<double>("angular_velocity_stddev_zz"); | ||
frame_id_ = declare_parameter<string>("frame_id"); |
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.
frame_id_ = declare_parameter<string>("frame_id"); | |
frame_id_ = declare_parameter<std::string>("frame_id"); |
Head branch was pushed to by a user without write access
40470e7
to
3f6bb83
Compare
Signed-off-by: karishma <karishma@interpl.ai>
Signed-off-by: karishma <karishma@interpl.ai>
3f6bb83
to
78c7504
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #5609 +/- ##
==========================================
- Coverage 15.32% 0.00% -15.33%
==========================================
Files 1721 3 -1718
Lines 118559 30 -118529
Branches 37995 0 -37995
==========================================
- Hits 18169 0 -18169
+ Misses 79657 30 -79627
+ Partials 20733 0 -20733
☔ View full report in Codecov by Sentry. |
…warefoundation#5609) * sensing-vehicle-velocity-converter-module Signed-off-by: karishma <karishma@interpl.ai> * sensing-vehicle-velocity-converter Signed-off-by: karishma <karishma@interpl.ai> --------- Signed-off-by: karishma <karishma@interpl.ai>
Description
Implement the ROS Node configuration layout described in https://github.com/orgs/autowarefoundation/discussions/3371 for the vehicle_velocity_converter package.
Tests performed
Not applicable.
Effects on system behavior
Nothing.
Pre-review checklist for the PR author
The PR author must check the checkboxes below when creating the PR.
In-review checklist for the PR reviewers
The PR reviewers must check the checkboxes below before approval.
Post-review checklist for the PR author
The PR author must check the checkboxes below before merging.
After all checkboxes are checked, anyone who has write access can merge the PR.