-
-
Notifications
You must be signed in to change notification settings - Fork 168
Add Hybrid A* Star Path Planner #33
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
Conversation
This README provides an overview of the Hybrid A* Path Planner, including highlights, code explanations, tuning parameters, references, and simulations.
|
@shreyshet Thank you so much for the PR! This looks great. I'm a bit tied up right now, but I'll review it in detail and get back to you soon. Please bear with me for a bit! And then, your changes looks like has conflict. So please resolve it before I start reviewing. |
This README provides an overview of the Hybrid A* Path Planner, detailing its features, code explanation, tuning parameters, references, and simulations.
|
Hi @ShisatoYano, |
|
@shreyshet I confirmed that the conflict was resolved and all unit tests passed, so I merged your PR into main branch. Thanks you for your great contribution!! |
This PR presents a Hybrid A* implementation. The new planner enables path generation for non-holonomic vehicles (like cars) by incorporating a minimum turning radius and continuous state-space exploration.
Run standalone Hybrid A* simulation
python src/simulations/path_planning/astar_hybrid_path_planning/astar_hybrid_path_planning.py
Run tests
python -m pytest test/test_astar_hybrid_path_planning.py -v