Path distance feature#5387
Conversation
Codecov Report❌ Patch coverage is
... and 10 files with indirect coverage changes 🚀 New features to boost your workflow:
|
SteveMacenski
left a comment
There was a problem hiding this comment.
Great - so after these changes this should be usable to find the closest point on the path. Can you identify the places in the codebase today we check for such things (controller plugins, progress checkers, BT navigators, etc) and how we might use this utility? That seems like the next logical step to me.
Then, expose that feedback to the controller server, a new bt node to use this as well. Once all that is in place, the controller critics for MPPI/DWB would round it all off!
aac9a09 to
7eb827a
Compare
|
@SteveMacenski sorry for late response. I made those changes you wanted. |
4361fe0 to
f419292
Compare
|
I changed util's cmake according to @mini-1235 's warning. Adding clear costmap clearence is a future investment. |
There was a problem hiding this comment.
Pull Request Overview
This PR implements path distance functionality to calculate the minimum distance between a robot's current pose and a path. The feature enables tracking the robot's deviation from a planned path and provides real-time tracking error information.
- Adds path utility functions to compute distance from robot pose to path segments with optional windowed search
- Implements tracking error computation and publishing in the controller server
- Introduces a new TrackingError message type for real-time path deviation monitoring
Reviewed Changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| nav2_util/include/nav2_util/path_utils.hpp | Defines PathSearchResult struct and distance_from_path function interface |
| nav2_util/src/path_utils.cpp | Implements core path distance calculation algorithm with windowed search |
| nav2_util/include/nav2_util/geometry_utils.hpp | Adds distance_to_segment and cross_product_2d utility functions |
| nav2_util/test/test_path_utils.cpp | Comprehensive test suite covering various path scenarios and edge cases |
| nav2_msgs/msg/TrackingError.msg | New message type for tracking error data |
| nav2_controller/include/nav2_controller/controller_server.hpp | Adds tracking error publishing capability to controller server |
| nav2_controller/src/controller_server.cpp | Integrates path distance calculation and publishes tracking error messages |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
You can also share your feedback on Copilot code review for a chance to win a $100 gift card. Take the survey.
|
Hello @SteveMacenski First of all I am not trying to rush the proccess but to inform you about my current local progress so when you have time for my committed codes it will allign with your vision and we can move faster. About DWB Critics: I added the critics and a unit test. I have been able to create a case where that critic can create a diff here are the proof vids and parameters I used About Costmap Layer: I get results in here but incosistent. and to be honest I am not really sure about my expectations in here. First path is not getting a corridor but the second is answering. In addition sometimes I can not get response too. But when I do get response I think I get a decent corridor around the path ahead of robot. BT node: This started to work better with others giving less frequent fails and now able to recover faster. MPPI critic: This one is a bit problematic as mppi is using diff kind of trajectory units. So I either have to convert it (which kills entire philosphy) or create an overloaded function that uses it's input types. I would like to hear your guidance if there is a better and efficient approach. I missed 1 of your comments ( the 1 about doxygen of the util func) but I don't like too many tiny commits I will make it better in next commit. I commit as you give feedback so I can be in synch with you and we can progress step by step. I tried to find places to utilize added functions. I think maybe distance_to_segment can be used in someplace but it can optimize some places if used in place euclidean distance or optimization in planner side of the repo . I am really not sure about it. Maybe create an rviz2 plugin Thanks for your guidance and time from now. |
dab4b9c to
9189594
Compare
|
@SteveMacenski Last local update: |
|
My bad on the delayed reviews. I think this is still relevant though as a next step:
It sounds like you started on this, but I wanted to get a full list of possible uses before implementing to make sure we had the full list. Rather than publishing as a topic, I think this would make sense to be a feedback element of the controller server that can be exposed to the behavior tree via the feedback for use. We can also have a BT node implemented that can compute it itself, I suppose. At that point, I think its worth going into the DWB/MPPI critics once we have something at the higher level -- though we could open the use of it as a separate PR so we can review that separately from the Controller Server / Behavior Tree integration points since those are nicely isolated from each other. I think also publishing this as a topic isn't bad, so we can keep that too! So, I think in summary, can you open a new PR called "Path Tracking Distance - Controller Plugins" with the DWB / MPPI work that we can review since you're far on that already?
I'm not entirely sure what you mean by these. Can you expand?
I think we should pause on this one at the moment and hone in on getting what you have started into the stack. The Controller critics for MPPI/DWB + the controller server / BT node is itself an accomplishment we can boast about 😉 But, if you wanted to look at it for a 3rd PR, basically: (a) create a new layer, (b) from a given path, compute the band of allowable area it can go from that path based on the max allowed deviation, (c) mark anything outside of this band as lethal space or very high space (parameterize the out-of-bounds cost). |
| const double distance_to_goal = nav2_util::geometry_utils::euclidean_distance( | ||
| robot_pose, end_pose_in_robot_frame); | ||
|
|
||
| const auto path_search_result = nav2_util::distance_from_path( |
There was a problem hiding this comment.
Note that there's some related work in #5446 (FYI @mini-1235) which moves the path hanlders into the controller server. This will prune the global path automatically and as such provide a path that is already in the controller server frame (odom) and prune so that the first point on the path is the starting point of the robot. That would astly simplify the logic in this function and above
|
This pull request is in conflict. Could you fix it @silanus23? |
fc090a1 to
2926d3b
Compare
|
@silanus23, your PR has failed to build. Please check CI outputs and resolve issues. |
2926d3b to
8c06085
Compare
|
@silanus23 please don't force push - it actually makes it much harder for me to review since I can't see diffs of what changed. :-) Take a look at CI - a bunch of tests failed and might be caused by this https://app.circleci.com/pipelines/github/ros-navigation/navigation2/16107/workflows/df9141b5-4e21-482e-a3e7-aaba01c88569/jobs/47067/tests |
|
Sorry about that. That's because I have gone through a Git accident. I will post the proper version soon. |
|
@SteveMacenski I think I handled your requests. Added tracking error and publishing it there. I added velocity and distance to goal in tracking_error.msg too and deleted them from path follow to not duplicate. In advance the sign of the |
Signed-off-by: silanus23 <berkantali23@outlook.com>
Signed-off-by: silanus23 <berkantali23@outlook.com>
There was a problem hiding this comment.
Are you using genAI for coding tools? I'm seeing unrelated formatting changes between updates... this seems really odd and making additional iteration cycles that wouldn't otherwise be necessary.
With these changes, I'm happy. @mini-1235 any final thoughts?
Next steps here are to use this for the BT nodes in a follow on PR!
|
I started to use pre_commit normally I use colcon test and it would show the wrongs in styling but this time didn't show. Can it be the problem? |
|
Please fix the styling I pointed out. I'll look into it. It should have been automatically caught. |
Signed-off-by: silanus23 <berkantali23@outlook.com>
Signed-off-by: silanus23 <berkantali23@outlook.com>
mini-1235
left a comment
There was a problem hiding this comment.
Please ensure that all newly added functions are consistent with their doxygen documentation
Signed-off-by: silanus23 <berkantali23@outlook.com>
Signed-off-by: silanus23 <berkantali23@outlook.com>
Signed-off-by: silanus23 <berkantali23@outlook.com>
Signed-off-by: silanus23 <berkantali23@outlook.com>
Signed-off-by: Steve Macenski <stevenmacenski@gmail.com>
|
@silanus23 merged! I think next steps are the BT node (which should be easy thankfully) and perhaps an example XML for how to use this and we're off to the races to use it in the plugins/costmap! |
* geometry utils Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed geometry utils adding 2d Signed-off-by: silanus23 <berkantali23@outlook.com> * created path_utils Signed-off-by: silanus23 <berkantali23@outlook.com> * added tests Signed-off-by: silanus23 <berkantali23@outlook.com> * minor changes in tests Signed-off-by: silanus23 <berkantali23@outlook.com> * lint issue Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed reviews Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes. Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes cpp. Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/test/test_path_utils.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Frame check fix Signed-off-by: silanus23 <berkantali23@outlook.com> * msg Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher fix Signed-off-by: silanus23 <berkantali23@outlook.com> * cross_product Signed-off-by: silanus23 <berkantali23@outlook.com> * handled last_fixes Signed-off-by: silanus23 <berkantali23@outlook.com> * tracking error added to follow path side from side added to tracking error Signed-off-by: silanus23 <berkantali23@outlook.com> * arranged msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * linting of msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * last cpplint Signed-off-by: silanus23 <berkantali23@outlook.com> * frame check for distance_to_goal Signed-off-by: silanus23 <berkantali23@outlook.com> * fixes for follow_path Signed-off-by: silanus23 <berkantali23@outlook.com> * controller linting Signed-off-by: silanus23 <berkantali23@outlook.com> * changing tracking_error to tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * adding remaining_path_length in tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fix Signed-off-by: silanus23 <berkantali23@outlook.com> * start_index_ Signed-off-by: silanus23 <berkantali23@outlook.com> * Name changes and optimizations in controller_server and nav2_util Signed-off-by: silanus23 <berkantali23@outlook.com> * Changing name to tracking_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Documentation changes Signed-off-by: silanus23 <berkantali23@outlook.com> * Last lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Last updates Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_util/src/path_utils.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * ordering problem Signed-off-by: silanus23 <berkantali23@outlook.com> * added deactivate to tracking_feedback_pub_ Signed-off-by: silanus23 <berkantali23@outlook.com> * typo Signed-off-by: silanus23 <berkantali23@outlook.com> * end_pose transform Signed-off-by: silanus23 <berkantali23@outlook.com> * creating the member variable end_pose_global_ and deleting nav_2d_msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * deleting unnecessary transform Signed-off-by: silanus23 <berkantali23@outlook.com> * typo in controller Signed-off-by: silanus23 <berkantali23@outlook.com> * readding remaining path Signed-off-by: silanus23 <berkantali23@outlook.com> * placement of transformation Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary comments Signed-off-by: silanus23 <berkantali23@outlook.com> * tests added Signed-off-by: silanus23 <berkantali23@outlook.com> * Increased test coverage Signed-off-by: silanus23 <berkantali23@outlook.com> * Every part of the result is covered Signed-off-by: silanus23 <berkantali23@outlook.com> * Increasing out of bounds index Signed-off-by: silanus23 <berkantali23@outlook.com> * lint Signed-off-by: silanus23 <berkantali23@outlook.com> * add missing line to cmake Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary test Signed-off-by: silanus23 <berkantali23@outlook.com> * unexptected styling and last functional change Signed-off-by: silanus23 <berkantali23@outlook.com> * simplifying the tranformation of end_pose Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> --------- Signed-off-by: silanus23 <berkantali23@outlook.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Steve Macenski <stevenmacenski@gmail.com>
* geometry utils Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed geometry utils adding 2d Signed-off-by: silanus23 <berkantali23@outlook.com> * created path_utils Signed-off-by: silanus23 <berkantali23@outlook.com> * added tests Signed-off-by: silanus23 <berkantali23@outlook.com> * minor changes in tests Signed-off-by: silanus23 <berkantali23@outlook.com> * lint issue Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed reviews Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes. Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes cpp. Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/test/test_path_utils.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Frame check fix Signed-off-by: silanus23 <berkantali23@outlook.com> * msg Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher fix Signed-off-by: silanus23 <berkantali23@outlook.com> * cross_product Signed-off-by: silanus23 <berkantali23@outlook.com> * handled last_fixes Signed-off-by: silanus23 <berkantali23@outlook.com> * tracking error added to follow path side from side added to tracking error Signed-off-by: silanus23 <berkantali23@outlook.com> * arranged msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * linting of msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * last cpplint Signed-off-by: silanus23 <berkantali23@outlook.com> * frame check for distance_to_goal Signed-off-by: silanus23 <berkantali23@outlook.com> * fixes for follow_path Signed-off-by: silanus23 <berkantali23@outlook.com> * controller linting Signed-off-by: silanus23 <berkantali23@outlook.com> * changing tracking_error to tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * adding remaining_path_length in tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fix Signed-off-by: silanus23 <berkantali23@outlook.com> * start_index_ Signed-off-by: silanus23 <berkantali23@outlook.com> * Name changes and optimizations in controller_server and nav2_util Signed-off-by: silanus23 <berkantali23@outlook.com> * Changing name to tracking_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Documentation changes Signed-off-by: silanus23 <berkantali23@outlook.com> * Last lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Last updates Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_util/src/path_utils.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * ordering problem Signed-off-by: silanus23 <berkantali23@outlook.com> * added deactivate to tracking_feedback_pub_ Signed-off-by: silanus23 <berkantali23@outlook.com> * typo Signed-off-by: silanus23 <berkantali23@outlook.com> * end_pose transform Signed-off-by: silanus23 <berkantali23@outlook.com> * creating the member variable end_pose_global_ and deleting nav_2d_msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * deleting unnecessary transform Signed-off-by: silanus23 <berkantali23@outlook.com> * typo in controller Signed-off-by: silanus23 <berkantali23@outlook.com> * readding remaining path Signed-off-by: silanus23 <berkantali23@outlook.com> * placement of transformation Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary comments Signed-off-by: silanus23 <berkantali23@outlook.com> * tests added Signed-off-by: silanus23 <berkantali23@outlook.com> * Increased test coverage Signed-off-by: silanus23 <berkantali23@outlook.com> * Every part of the result is covered Signed-off-by: silanus23 <berkantali23@outlook.com> * Increasing out of bounds index Signed-off-by: silanus23 <berkantali23@outlook.com> * lint Signed-off-by: silanus23 <berkantali23@outlook.com> * add missing line to cmake Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary test Signed-off-by: silanus23 <berkantali23@outlook.com> * unexptected styling and last functional change Signed-off-by: silanus23 <berkantali23@outlook.com> * simplifying the tranformation of end_pose Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> --------- Signed-off-by: silanus23 <berkantali23@outlook.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Steve Macenski <stevenmacenski@gmail.com>
* geometry utils Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed geometry utils adding 2d Signed-off-by: silanus23 <berkantali23@outlook.com> * created path_utils Signed-off-by: silanus23 <berkantali23@outlook.com> * added tests Signed-off-by: silanus23 <berkantali23@outlook.com> * minor changes in tests Signed-off-by: silanus23 <berkantali23@outlook.com> * lint issue Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed reviews Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes. Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes cpp. Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/test/test_path_utils.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Frame check fix Signed-off-by: silanus23 <berkantali23@outlook.com> * msg Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher fix Signed-off-by: silanus23 <berkantali23@outlook.com> * cross_product Signed-off-by: silanus23 <berkantali23@outlook.com> * handled last_fixes Signed-off-by: silanus23 <berkantali23@outlook.com> * tracking error added to follow path side from side added to tracking error Signed-off-by: silanus23 <berkantali23@outlook.com> * arranged msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * linting of msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * last cpplint Signed-off-by: silanus23 <berkantali23@outlook.com> * frame check for distance_to_goal Signed-off-by: silanus23 <berkantali23@outlook.com> * fixes for follow_path Signed-off-by: silanus23 <berkantali23@outlook.com> * controller linting Signed-off-by: silanus23 <berkantali23@outlook.com> * changing tracking_error to tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * adding remaining_path_length in tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fix Signed-off-by: silanus23 <berkantali23@outlook.com> * start_index_ Signed-off-by: silanus23 <berkantali23@outlook.com> * Name changes and optimizations in controller_server and nav2_util Signed-off-by: silanus23 <berkantali23@outlook.com> * Changing name to tracking_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Documentation changes Signed-off-by: silanus23 <berkantali23@outlook.com> * Last lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Last updates Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_util/src/path_utils.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * ordering problem Signed-off-by: silanus23 <berkantali23@outlook.com> * added deactivate to tracking_feedback_pub_ Signed-off-by: silanus23 <berkantali23@outlook.com> * typo Signed-off-by: silanus23 <berkantali23@outlook.com> * end_pose transform Signed-off-by: silanus23 <berkantali23@outlook.com> * creating the member variable end_pose_global_ and deleting nav_2d_msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * deleting unnecessary transform Signed-off-by: silanus23 <berkantali23@outlook.com> * typo in controller Signed-off-by: silanus23 <berkantali23@outlook.com> * readding remaining path Signed-off-by: silanus23 <berkantali23@outlook.com> * placement of transformation Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary comments Signed-off-by: silanus23 <berkantali23@outlook.com> * tests added Signed-off-by: silanus23 <berkantali23@outlook.com> * Increased test coverage Signed-off-by: silanus23 <berkantali23@outlook.com> * Every part of the result is covered Signed-off-by: silanus23 <berkantali23@outlook.com> * Increasing out of bounds index Signed-off-by: silanus23 <berkantali23@outlook.com> * lint Signed-off-by: silanus23 <berkantali23@outlook.com> * add missing line to cmake Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary test Signed-off-by: silanus23 <berkantali23@outlook.com> * unexptected styling and last functional change Signed-off-by: silanus23 <berkantali23@outlook.com> * simplifying the tranformation of end_pose Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> --------- Signed-off-by: silanus23 <berkantali23@outlook.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Steve Macenski <stevenmacenski@gmail.com> Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com>
Squashed commit of the following: commit bf2e64c Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Tue Oct 21 14:41:42 2025 -0500 Add declaration for use_global_height parameter into add sources function. Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> commit 8453632 Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Tue Oct 21 08:28:19 2025 -0500 Adjusted asserts in third test case for consistent results. Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> commit 725f054 Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Mon Oct 20 21:04:51 2025 -0500 Add additional case for testing pointcloud with no height field. Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> commit 2bb49aa Merge: b02713a cdccfe1 Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Mon Oct 20 18:01:24 2025 -0500 Merge branch 'main' into feat/CustomCollisionPointFields Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> commit b02713a Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Mon Oct 20 17:53:36 2025 -0500 Cleaned up some un-needed parameter changes. commit 21eef62 Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Mon Oct 20 17:49:16 2025 -0500 Added test case for using global height parameter. commit cdccfe1 Author: Sushant Chavan <gitecsvc@gmail.com> Date: Mon Oct 20 23:49:25 2025 +0200 Publish `is_active` status from LifecycleManager (ros-navigation#5627) * Publish `is_active` status from LifecycleManager Signed-off-by: Sushant Chavan <gitecsvc@gmail.com> * Update nav2_lifecycle_manager/src/lifecycle_manager.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> --------- Signed-off-by: Sushant Chavan <gitecsvc@gmail.com> Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> Co-authored-by: Steve Macenski <stevenmacenski@gmail.com> commit b35a4b5 Author: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> Date: Mon Oct 20 22:04:17 2025 +0100 Use the new declare_or_get_parameter API for nav2_controller. (ros-navigation#5624) * Migrate majority of parameter declarations to use the new parameter API. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> * Migrate controller_server.cpp to use declare_or_get_parameter API. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> --------- Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> commit 62ebc54 Author: Steve Macenski <stevenmacenski@gmail.com> Date: Thu Oct 16 07:59:10 2025 -0700 Revert "[RPP] Prevent collision check premature termination (ros-navigation#5598)" (ros-navigation#5620) This reverts commit 6bc74e5. commit 01580bd Author: mini-1235 <mauricepurnawan@gmail.com> Date: Thu Oct 16 02:02:29 2025 +0700 Redesign graceful controller dynamic parameters patterns (ros-navigation#5600) Signed-off-by: mini-1235 <mauricepurnawan@gmail.com> commit b91eda5 Author: Abhishekh Reddy <helloarm@pm.me> Date: Tue Oct 14 14:47:14 2025 -0400 Check if the tolerance circle is feasible when validating goals for path planning. (ros-navigation#5593) * Implemented goal tolerance validity check Signed-off-by: Abhishekh Reddy <helloarm@pm.me> * Fixed description for getCoords function Signed-off-by: Abhishekh Reddy <helloarm@pm.me> * Added a test with lower tolerance for zone validity checking Signed-off-by: Abhishekh Reddy <helloarm@pm.me> * Updated tolerance check function implementation Signed-off-by: Abhishekh Reddy <helloarm@pm.me> * Updated isZoneValid function Signed-off-by: Abhishekh Reddy <helloarm@pm.me> * Updated isZoneValid function Signed-off-by: Abhishekh Reddy <helloarm@pm.me> --------- Signed-off-by: Abhishekh Reddy <helloarm@pm.me> commit 48e7e06 Author: Jay Herpin <159202566+JayHerpin@users.noreply.github.com> Date: Tue Oct 14 12:45:59 2025 -0500 Fixed crash due to incorrect string construction (ros-navigation#5606) Signed-off-by: Jay Herpin <jherpin@metalsharkboats.com> commit 7d37466 Author: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> Date: Tue Oct 14 15:50:30 2025 +0100 Use the new parameter API in nav2_constrained_smoother. (ros-navigation#5608) Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> commit 3935038 Author: Steve Macenski <stevenmacenski@gmail.com> Date: Tue Oct 14 07:48:32 2025 -0700 Fixing CI Cache Misalignment causing builds to fail (ros-navigation#5607) * Aligning caches Signed-off-by: SteveMacenski <stevenmacenski@gmail.com> * Trigger linting (hopefully) Signed-off-by: SteveMacenski <stevenmacenski@gmail.com> * Fix action-ros-lint version format in lint.yml Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> --------- Signed-off-by: SteveMacenski <stevenmacenski@gmail.com> Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> commit 568174c Author: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> Date: Tue Oct 14 01:41:25 2025 +0100 Update new_declare_or_get_parameter API for collision_monitor and map_server (ros-navigation#5588) * Use the new_declare_or_get_parameter API for nav2_collision_monitor. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> * Removed redundant set_parameter calls when preceeded by declare_parameter. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> * Use declare_or_get_parameter without a default value. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> * Simplified definitions that required to determine parameter type from template. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> * Removed self-definition of node_utils.hpp. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> * Address PR feedback: Remove unnecessary linebreaks and improve param docstring. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> --------- Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> commit 6bc74e5 Author: Érico Meger <86668447+EricoMeger@users.noreply.github.com> Date: Mon Oct 13 19:17:23 2025 -0300 [RPP] Prevent collision check premature termination (ros-navigation#5598) * prevent collision check premature termination Signed-off-by: EricoMeger <ericomeger9@gmail.com> * improve comment wording Co-authored-by: Steve Macenski <stevenmacenski@gmail.com> Signed-off-by: Érico Meger <86668447+EricoMeger@users.noreply.github.com> * fix linting error Signed-off-by: EricoMeger <ericomeger9@gmail.com> --------- Signed-off-by: EricoMeger <ericomeger9@gmail.com> Signed-off-by: Érico Meger <86668447+EricoMeger@users.noreply.github.com> Co-authored-by: Steve Macenski <stevenmacenski@gmail.com> commit 4d28c13 Author: silanus <berkantali23@outlook.com> Date: Fri Oct 10 20:42:45 2025 +0300 Path distance feature (ros-navigation#5387) * geometry utils Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed geometry utils adding 2d Signed-off-by: silanus23 <berkantali23@outlook.com> * created path_utils Signed-off-by: silanus23 <berkantali23@outlook.com> * added tests Signed-off-by: silanus23 <berkantali23@outlook.com> * minor changes in tests Signed-off-by: silanus23 <berkantali23@outlook.com> * lint issue Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed reviews Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes. Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes cpp. Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/test/test_path_utils.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Frame check fix Signed-off-by: silanus23 <berkantali23@outlook.com> * msg Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher fix Signed-off-by: silanus23 <berkantali23@outlook.com> * cross_product Signed-off-by: silanus23 <berkantali23@outlook.com> * handled last_fixes Signed-off-by: silanus23 <berkantali23@outlook.com> * tracking error added to follow path side from side added to tracking error Signed-off-by: silanus23 <berkantali23@outlook.com> * arranged msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * linting of msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * last cpplint Signed-off-by: silanus23 <berkantali23@outlook.com> * frame check for distance_to_goal Signed-off-by: silanus23 <berkantali23@outlook.com> * fixes for follow_path Signed-off-by: silanus23 <berkantali23@outlook.com> * controller linting Signed-off-by: silanus23 <berkantali23@outlook.com> * changing tracking_error to tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * adding remaining_path_length in tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fix Signed-off-by: silanus23 <berkantali23@outlook.com> * start_index_ Signed-off-by: silanus23 <berkantali23@outlook.com> * Name changes and optimizations in controller_server and nav2_util Signed-off-by: silanus23 <berkantali23@outlook.com> * Changing name to tracking_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Documentation changes Signed-off-by: silanus23 <berkantali23@outlook.com> * Last lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Last updates Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_util/src/path_utils.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * ordering problem Signed-off-by: silanus23 <berkantali23@outlook.com> * added deactivate to tracking_feedback_pub_ Signed-off-by: silanus23 <berkantali23@outlook.com> * typo Signed-off-by: silanus23 <berkantali23@outlook.com> * end_pose transform Signed-off-by: silanus23 <berkantali23@outlook.com> * creating the member variable end_pose_global_ and deleting nav_2d_msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * deleting unnecessary transform Signed-off-by: silanus23 <berkantali23@outlook.com> * typo in controller Signed-off-by: silanus23 <berkantali23@outlook.com> * readding remaining path Signed-off-by: silanus23 <berkantali23@outlook.com> * placement of transformation Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary comments Signed-off-by: silanus23 <berkantali23@outlook.com> * tests added Signed-off-by: silanus23 <berkantali23@outlook.com> * Increased test coverage Signed-off-by: silanus23 <berkantali23@outlook.com> * Every part of the result is covered Signed-off-by: silanus23 <berkantali23@outlook.com> * Increasing out of bounds index Signed-off-by: silanus23 <berkantali23@outlook.com> * lint Signed-off-by: silanus23 <berkantali23@outlook.com> * add missing line to cmake Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary test Signed-off-by: silanus23 <berkantali23@outlook.com> * unexptected styling and last functional change Signed-off-by: silanus23 <berkantali23@outlook.com> * simplifying the tranformation of end_pose Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> --------- Signed-off-by: silanus23 <berkantali23@outlook.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Steve Macenski <stevenmacenski@gmail.com> commit 04a3e22 Author: Steve Macenski <stevenmacenski@gmail.com> Date: Fri Oct 10 10:09:08 2025 -0700 Improve error message for missing robot footprint (ros-navigation#5597) Updated error message for footprint collision checking. Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> commit ce6b439 Author: Alberto Tudela <ajtudela@gmail.com> Date: Fri Oct 10 00:12:57 2025 +0200 Following (ros-navigation#5565) * Following server Signed-off-by: Alberto Tudela <ajtudela@gmail.com> * feat: migrate to nav2_msgs for FollowObject action and remove opennav_following_msgs Signed-off-by: Alberto Tudela <ajtudela@gmail.com> * Fix mypy test Signed-off-by: Alberto Tudela <ajtudela@gmail.com> * Move FollowObject and FollowObjectCancel action nodes from bt package Signed-off-by: Alberto Tudela <ajtudela@gmail.com> * Update package and circle Signed-off-by: Alberto Tudela <ajtudela@gmail.com> * feat: add FollowObject action support in robot navigator and fix mypy Signed-off-by: Alberto Tudela <ajtudela@gmail.com> * Fix mypy issues Signed-off-by: Alberto Tudela <ajtudela@gmail.com> * feat: add follow_object action to bt_navigator parameters Signed-off-by: Alberto Tudela <ajtudela@gmail.com> * Update key and package Signed-off-by: Alberto Tudela <ajtudela@gmail.com> * Fix precommit Signed-off-by: Alberto Tudela <ajtudela@gmail.com> * Fix mypy? Signed-off-by: Alberto Tudela <ajtudela@gmail.com> * Fix mypy, round two Signed-off-by: Alberto Tudela <ajtudela@gmail.com> --------- Signed-off-by: Alberto Tudela <ajtudela@gmail.com> commit ed0d59f Author: Sakshay Mahna <sakshum19@gmail.com> Date: Thu Oct 9 03:39:30 2025 +0530 [Graceful Controller] Fix Incorrect Motion Target Heading output by controller (ros-navigation#5530) * Fix graceful controller lookahead bug Signed-off-by: Sakshay Mahna <sakshum19@gmail.com> * Shorten logic with goal_pose Signed-off-by: Sakshay Mahna <sakshum19@gmail.com> * Add Linear Interpolation Fix Signed-off-by: Sakshay Mahna <sakshum19@gmail.com> * Update const double and comments Signed-off-by: Sakshay Mahna <sakshum19@gmail.com> --------- Signed-off-by: Sakshay Mahna <sakshum19@gmail.com> commit 14660b4 Author: Vince Reda <60265874+redvinaa@users.noreply.github.com> Date: Wed Oct 8 17:14:57 2025 +0000 Fail PersistentSequence if input port is not set (ros-navigation#5589) * Fail if getInput fails Signed-off-by: redvinaa <redvinaa@gmail.com> * Add test with no input Signed-off-by: redvinaa <redvinaa@gmail.com> * Update error string Co-authored-by: Steve Macenski <stevenmacenski@gmail.com> Signed-off-by: Vince Reda <60265874+redvinaa@users.noreply.github.com> * Fix quotation marks Signed-off-by: redvinaa <redvinaa@gmail.com> --------- Signed-off-by: redvinaa <redvinaa@gmail.com> Signed-off-by: Vince Reda <60265874+redvinaa@users.noreply.github.com> Co-authored-by: Steve Macenski <stevenmacenski@gmail.com> commit aa2cdc5 Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Wed Oct 8 10:43:14 2025 -0500 Apply suggestions from code review Co-authored-by: Steve Macenski <stevenmacenski@gmail.com> Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> commit 5636fc1 Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Tue Oct 7 15:37:13 2025 -0500 Implementing Steve's suggestion for performance and code simplicity. Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> commit b2fbb06 Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Tue Oct 7 12:59:46 2025 -0500 Implemented additional changes for iterator feedback in PR. Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> commit 1cdbc05 Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Tue Oct 7 12:12:31 2025 -0500 Add return false for error state. Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> commit 869b5a9 Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Tue Oct 7 12:10:03 2025 -0500 Address PR formatting feedback. Remove run time error and replaced with log error. Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> commit 11f04c7 Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Tue Oct 7 10:55:18 2025 -0500 Added some pointcloud field checking based on run time error found when running tests. Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> commit ca49b05 Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Tue Oct 7 08:22:05 2025 -0500 Ran ament lint/style tools, cleaned up. Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> commit 7e6ccc9 Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Tue Oct 7 08:08:01 2025 -0500 Add use_global_height_ parameter to allow configuration of height checking by end users. Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> commit 0c20df2 Author: DylanDeCoeyer-Quimesis <102609575+DylanDeCoeyer-Quimesis@users.noreply.github.com> Date: Mon Oct 6 22:29:17 2025 +0200 nav2_smac_planner: make A* return closest path found in case of timeout (ros-navigation#5578) Until now, a path computation timeout would systematically lead to a nav2_core::PlannerTimedOut error, even though a path was found within the tolerance. This commit makes the A* return the best path found if it's within the tolerance. Signed-off-by: Dylan De Coeyer <dylan.decoeyer@quimesis.be> commit f78bac5 Author: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> Date: Mon Oct 6 20:16:30 2025 +0100 Use the new declare_or_get_parameter API for nav2_behaviors. (ros-navigation#5583) Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> commit 269d480 Author: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> Date: Mon Oct 6 20:13:52 2025 +0100 Improve type annotations for ament_mypy (ros-navigation#5575) * Enable tools directory to be mypy compliant. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> * Enable nav2_system_tests to be mypy compliant. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> * Enable nav2_docking to be mypy compliant. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> * Enable nav2_simple_commander to be mypy compliant. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> * Enable nav2_loopback_sim to be mypy compliant. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> * Removed unused ignores for packages for mypy compliance. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> * Added nav2_msgs path fixes to mypy compliance. Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> --------- Signed-off-by: Leander Stephen D'Souza <leanderdsouza1234@gmail.com> commit 5860a27 Author: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Date: Mon Oct 6 12:41:04 2025 -0500 Create iterator for custom height field in pointcloud. Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com> Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com>
* geometry utils Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed geometry utils adding 2d Signed-off-by: silanus23 <berkantali23@outlook.com> * created path_utils Signed-off-by: silanus23 <berkantali23@outlook.com> * added tests Signed-off-by: silanus23 <berkantali23@outlook.com> * minor changes in tests Signed-off-by: silanus23 <berkantali23@outlook.com> * lint issue Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed reviews Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes. Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes cpp. Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/test/test_path_utils.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Frame check fix Signed-off-by: silanus23 <berkantali23@outlook.com> * msg Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher fix Signed-off-by: silanus23 <berkantali23@outlook.com> * cross_product Signed-off-by: silanus23 <berkantali23@outlook.com> * handled last_fixes Signed-off-by: silanus23 <berkantali23@outlook.com> * tracking error added to follow path side from side added to tracking error Signed-off-by: silanus23 <berkantali23@outlook.com> * arranged msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * linting of msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * last cpplint Signed-off-by: silanus23 <berkantali23@outlook.com> * frame check for distance_to_goal Signed-off-by: silanus23 <berkantali23@outlook.com> * fixes for follow_path Signed-off-by: silanus23 <berkantali23@outlook.com> * controller linting Signed-off-by: silanus23 <berkantali23@outlook.com> * changing tracking_error to tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * adding remaining_path_length in tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fix Signed-off-by: silanus23 <berkantali23@outlook.com> * start_index_ Signed-off-by: silanus23 <berkantali23@outlook.com> * Name changes and optimizations in controller_server and nav2_util Signed-off-by: silanus23 <berkantali23@outlook.com> * Changing name to tracking_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Documentation changes Signed-off-by: silanus23 <berkantali23@outlook.com> * Last lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Last updates Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_util/src/path_utils.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * ordering problem Signed-off-by: silanus23 <berkantali23@outlook.com> * added deactivate to tracking_feedback_pub_ Signed-off-by: silanus23 <berkantali23@outlook.com> * typo Signed-off-by: silanus23 <berkantali23@outlook.com> * end_pose transform Signed-off-by: silanus23 <berkantali23@outlook.com> * creating the member variable end_pose_global_ and deleting nav_2d_msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * deleting unnecessary transform Signed-off-by: silanus23 <berkantali23@outlook.com> * typo in controller Signed-off-by: silanus23 <berkantali23@outlook.com> * readding remaining path Signed-off-by: silanus23 <berkantali23@outlook.com> * placement of transformation Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary comments Signed-off-by: silanus23 <berkantali23@outlook.com> * tests added Signed-off-by: silanus23 <berkantali23@outlook.com> * Increased test coverage Signed-off-by: silanus23 <berkantali23@outlook.com> * Every part of the result is covered Signed-off-by: silanus23 <berkantali23@outlook.com> * Increasing out of bounds index Signed-off-by: silanus23 <berkantali23@outlook.com> * lint Signed-off-by: silanus23 <berkantali23@outlook.com> * add missing line to cmake Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary test Signed-off-by: silanus23 <berkantali23@outlook.com> * unexptected styling and last functional change Signed-off-by: silanus23 <berkantali23@outlook.com> * simplifying the tranformation of end_pose Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> --------- Signed-off-by: silanus23 <berkantali23@outlook.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Steve Macenski <stevenmacenski@gmail.com> Signed-off-by: Greg Anderson <107634795+greganderson-vermeer@users.noreply.github.com>
* geometry utils Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed geometry utils adding 2d Signed-off-by: silanus23 <berkantali23@outlook.com> * created path_utils Signed-off-by: silanus23 <berkantali23@outlook.com> * added tests Signed-off-by: silanus23 <berkantali23@outlook.com> * minor changes in tests Signed-off-by: silanus23 <berkantali23@outlook.com> * lint issue Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed reviews Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes. Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes cpp. Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/test/test_path_utils.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Frame check fix Signed-off-by: silanus23 <berkantali23@outlook.com> * msg Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher fix Signed-off-by: silanus23 <berkantali23@outlook.com> * cross_product Signed-off-by: silanus23 <berkantali23@outlook.com> * handled last_fixes Signed-off-by: silanus23 <berkantali23@outlook.com> * tracking error added to follow path side from side added to tracking error Signed-off-by: silanus23 <berkantali23@outlook.com> * arranged msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * linting of msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * last cpplint Signed-off-by: silanus23 <berkantali23@outlook.com> * frame check for distance_to_goal Signed-off-by: silanus23 <berkantali23@outlook.com> * fixes for follow_path Signed-off-by: silanus23 <berkantali23@outlook.com> * controller linting Signed-off-by: silanus23 <berkantali23@outlook.com> * changing tracking_error to tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * adding remaining_path_length in tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fix Signed-off-by: silanus23 <berkantali23@outlook.com> * start_index_ Signed-off-by: silanus23 <berkantali23@outlook.com> * Name changes and optimizations in controller_server and nav2_util Signed-off-by: silanus23 <berkantali23@outlook.com> * Changing name to tracking_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Documentation changes Signed-off-by: silanus23 <berkantali23@outlook.com> * Last lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Last updates Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_util/src/path_utils.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * ordering problem Signed-off-by: silanus23 <berkantali23@outlook.com> * added deactivate to tracking_feedback_pub_ Signed-off-by: silanus23 <berkantali23@outlook.com> * typo Signed-off-by: silanus23 <berkantali23@outlook.com> * end_pose transform Signed-off-by: silanus23 <berkantali23@outlook.com> * creating the member variable end_pose_global_ and deleting nav_2d_msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * deleting unnecessary transform Signed-off-by: silanus23 <berkantali23@outlook.com> * typo in controller Signed-off-by: silanus23 <berkantali23@outlook.com> * readding remaining path Signed-off-by: silanus23 <berkantali23@outlook.com> * placement of transformation Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary comments Signed-off-by: silanus23 <berkantali23@outlook.com> * tests added Signed-off-by: silanus23 <berkantali23@outlook.com> * Increased test coverage Signed-off-by: silanus23 <berkantali23@outlook.com> * Every part of the result is covered Signed-off-by: silanus23 <berkantali23@outlook.com> * Increasing out of bounds index Signed-off-by: silanus23 <berkantali23@outlook.com> * lint Signed-off-by: silanus23 <berkantali23@outlook.com> * add missing line to cmake Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary test Signed-off-by: silanus23 <berkantali23@outlook.com> * unexptected styling and last functional change Signed-off-by: silanus23 <berkantali23@outlook.com> * simplifying the tranformation of end_pose Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> --------- Signed-off-by: silanus23 <berkantali23@outlook.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Steve Macenski <stevenmacenski@gmail.com>
* geometry utils Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed geometry utils adding 2d Signed-off-by: silanus23 <berkantali23@outlook.com> * created path_utils Signed-off-by: silanus23 <berkantali23@outlook.com> * added tests Signed-off-by: silanus23 <berkantali23@outlook.com> * minor changes in tests Signed-off-by: silanus23 <berkantali23@outlook.com> * lint issue Signed-off-by: silanus23 <berkantali23@outlook.com> * fixed reviews Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes. Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fixes cpp. Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/test/test_path_utils.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: silanus23 <berkantali23@outlook.com> * Frame check fix Signed-off-by: silanus23 <berkantali23@outlook.com> * msg Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher Signed-off-by: silanus23 <berkantali23@outlook.com> * controller server publisher fix Signed-off-by: silanus23 <berkantali23@outlook.com> * cross_product Signed-off-by: silanus23 <berkantali23@outlook.com> * handled last_fixes Signed-off-by: silanus23 <berkantali23@outlook.com> * tracking error added to follow path side from side added to tracking error Signed-off-by: silanus23 <berkantali23@outlook.com> * arranged msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * linting of msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * last cpplint Signed-off-by: silanus23 <berkantali23@outlook.com> * frame check for distance_to_goal Signed-off-by: silanus23 <berkantali23@outlook.com> * fixes for follow_path Signed-off-by: silanus23 <berkantali23@outlook.com> * controller linting Signed-off-by: silanus23 <berkantali23@outlook.com> * changing tracking_error to tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * adding remaining_path_length in tracking_error_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Last fix Signed-off-by: silanus23 <berkantali23@outlook.com> * start_index_ Signed-off-by: silanus23 <berkantali23@outlook.com> * Name changes and optimizations in controller_server and nav2_util Signed-off-by: silanus23 <berkantali23@outlook.com> * Changing name to tracking_feedback Signed-off-by: silanus23 <berkantali23@outlook.com> * Documentation changes Signed-off-by: silanus23 <berkantali23@outlook.com> * Last lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_util/include/nav2_util/path_utils.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: silanus <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Last updates Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py Signed-off-by: silanus23 <berkantali23@outlook.com> * update example_follow_path.py lint Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * Update nav2_util/src/path_utils.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> * ordering problem Signed-off-by: silanus23 <berkantali23@outlook.com> * added deactivate to tracking_feedback_pub_ Signed-off-by: silanus23 <berkantali23@outlook.com> * typo Signed-off-by: silanus23 <berkantali23@outlook.com> * end_pose transform Signed-off-by: silanus23 <berkantali23@outlook.com> * creating the member variable end_pose_global_ and deleting nav_2d_msgs Signed-off-by: silanus23 <berkantali23@outlook.com> * deleting unnecessary transform Signed-off-by: silanus23 <berkantali23@outlook.com> * typo in controller Signed-off-by: silanus23 <berkantali23@outlook.com> * readding remaining path Signed-off-by: silanus23 <berkantali23@outlook.com> * placement of transformation Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary comments Signed-off-by: silanus23 <berkantali23@outlook.com> * tests added Signed-off-by: silanus23 <berkantali23@outlook.com> * Increased test coverage Signed-off-by: silanus23 <berkantali23@outlook.com> * Every part of the result is covered Signed-off-by: silanus23 <berkantali23@outlook.com> * Increasing out of bounds index Signed-off-by: silanus23 <berkantali23@outlook.com> * lint Signed-off-by: silanus23 <berkantali23@outlook.com> * add missing line to cmake Signed-off-by: silanus23 <berkantali23@outlook.com> * unnecessary test Signed-off-by: silanus23 <berkantali23@outlook.com> * unexptected styling and last functional change Signed-off-by: silanus23 <berkantali23@outlook.com> * simplifying the tranformation of end_pose Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * doxygen fix Signed-off-by: silanus23 <berkantali23@outlook.com> * Update nav2_controller/src/controller_server.cpp Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> --------- Signed-off-by: silanus23 <berkantali23@outlook.com> Signed-off-by: silanus <berkantali23@outlook.com> Signed-off-by: Steve Macenski <stevenmacenski@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Steve Macenski <stevenmacenski@gmail.com> Signed-off-by: Decwest <fumiyaonishi1016@gmail.com>



Basic Info
Description of contribution in a few bullet points
Only path utils as descripted in the issue. It is finding nearest part in the path and current or waited position of robot. It interpolates between points cause the expected nearest point is between points path most of the time. There are 2 versions global version is reccomended and local version can sometimes fail.
Description of documentation updates required from your changes
At this stage none needed.
Description of how this change was tested
I wrote diffirent trajectories. AI help came in here I used it to calculate the numbers. I have tested the local search with clover leaf and retracting windows too but it failed. This was actually expected as the local search is optimized version. I don't think those failings come from a logical issue but the limitations of the approach behind it.
Future work that may be required in bullet points
Future side of the it is planned as you reccomend. Next one will be about creating a new msg type and publishing it from controller_server.
BTW thanks for patience about my last PR as this is my first open source contribution. I am still learning.
For Maintainers:
backport-*.