-
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
feat(planning_topic_converter): add new package #5484
feat(planning_topic_converter): add new package #5484
Conversation
36f3579
to
31c9884
Compare
<param name="input_topic" value="hoge"/> | ||
<param name="output_topic" value="fuga"/> |
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.
(nits: only Japanese know hoge/fuga)
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.
:tashikani:
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.
Fixed.
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.
better! thanks
TrajectoryPoint convertToTrajectoryPoint(const PathPoint & point) | ||
{ | ||
TrajectoryPoint traj_point; | ||
traj_point.pose = tier4_autoware_utils::getPose(point); | ||
traj_point.longitudinal_velocity_mps = point.longitudinal_velocity_mps; | ||
traj_point.lateral_velocity_mps = point.lateral_velocity_mps; | ||
traj_point.heading_rate_rps = point.heading_rate_rps; | ||
return traj_point; | ||
} |
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.
(similar functions exist in other motion planner nodes, so better to use them as utils in the future)
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.
I totally agree with you. Create tickets to remind that task.
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
31c9884
to
0bae12b
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #5484 +/- ##
==========================================
- Coverage 14.86% 14.85% -0.01%
==========================================
Files 1666 1668 +2
Lines 116258 116286 +28
Branches 36266 36266
==========================================
Hits 17277 17277
- Misses 79476 79504 +28
Partials 19505 19505
*This pull request uses carry forward flags. Click here to find out more.
☔ View full report in Codecov by Sentry. |
Description
🤖 Generated by Copilot at 36f3579
This pull request adds a new package called
planning_topic_converter
, which provides a common interface and a concrete implementation for converting planning topics from one type to another. The package consists of a CMakeLists.txt file, a package.xml file, a README.md file, and two header and source files for the base and derived classes. The package also supports composable ROS 2 nodes.Tests performed
Psim
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.