-
Notifications
You must be signed in to change notification settings - Fork 0
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
Local path planner #139
Merged
Merged
Local path planner #139
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alekskl01
reviewed
Mar 17, 2024
theBadMusician
requested changes
Mar 17, 2024
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.
Functionality requirements of the system need to be reviewed. It should be discussed what exactly is the I/O of the planner system.
chrstrom
reviewed
Mar 18, 2024
chrstrom
reviewed
Mar 18, 2024
… will generate new waypoints every time mission_planner is called.
alekskl01
requested changes
Mar 20, 2024
alekskl01
reviewed
Mar 20, 2024
alekskl01
reviewed
Mar 20, 2024
alekskl01
reviewed
Mar 28, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The local path planner finds a path from A to B while avoiding obstacles. Right now it is designed for static environments, and not for collision avoidance in dynamic environment. The local path planner utilizes the D* Lite algorithm, and for it to work it needs to be fed a closed grid of obstacles such that the algorithm doesn't take shortcuts. This means that the mission planner needs to implement the logic needed to create the obstacle grid based on the buoy coordinates from the landmark server. Example of use shown below. The d_star_lite node will send the waypoints to the waypoint manager as a float32[] i.e. [x1, y1, x2, y2, ..., xn, yn].
I would also appreciate help regarding the testing. Especially how to test the ROS2 service that is being used in the d_star_lite_node.