-
Notifications
You must be signed in to change notification settings - Fork 668
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
fix(goal_planner): fix zero velocity in middle of path #8563
fix(goal_planner): fix zero velocity in middle of path #8563
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
17f422f
to
1bf6654
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8563 +/- ##
==========================================
- Coverage 24.10% 24.09% -0.01%
==========================================
Files 1399 1403 +4
Lines 102460 102498 +38
Branches 38936 38928 -8
==========================================
Hits 24696 24696
- Misses 75281 75319 +38
Partials 2483 2483
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
9b59327
to
74f0566
Compare
I added comment why it is ok to remove zero velocity of previous output path
|
0cc76ef
to
29a3ccf
Compare
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
29a3ccf
to
7234eb4
Compare
…ation#8563) * fix(goal_planner): fix zero velocity in middle of path Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> * add comment Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> --------- Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
…ation#8563) * fix(goal_planner): fix zero velocity in middle of path Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> * add comment Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> --------- Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
…ation#8563) * fix(goal_planner): fix zero velocity in middle of path Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> * add comment Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> --------- Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> Signed-off-by: Batuhan Beytekin <batuhanbeytekin@gmail.com>
…ation#8563) * fix(goal_planner): fix zero velocity in middle of path Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> * add comment Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> --------- Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
…ation#8563) * fix(goal_planner): fix zero velocity in middle of path Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> * add comment Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> --------- Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
…ation#8563) * fix(goal_planner): fix zero velocity in middle of path Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> * add comment Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> --------- Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
…ation#8563) * fix(goal_planner): fix zero velocity in middle of path Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> * add comment Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> --------- Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
…arefoundation#8563)" This reverts commit 0c9046b.
Description
When extending a path, if the end of the original target path contains 0 velocity, then 0 velocity remains in the middle of the extended_path. This causes more stuck before the goal.
This issue was observed when the goal planner was activated after the LC was activated, for example.
before
after
Related links
Parent Issue:
Private Links:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.