-
Notifications
You must be signed in to change notification settings - Fork 38
Module #6: Path Planning
Muhammad Luqman edited this page Mar 29, 2024
·
2 revisions
- package : path_planning
- Writing Astar algorithm for searching the path in RVIZ
- Occupancy Grids
- Astar Algorithm
- Ubuntu 22.04 LTS
- Vscode
- ROS2 Humble
- Create you own workspace ( if not done already )
mkdir -p ~/ros2_my_ws/src cd ~/ros2_my_ws/src
- Clone repository ( if not done already )
https://github.com/Robotisim/robotics_software_engineer.git
- Install dependencies
cd ~/ros2_my_ws/src/robotics_software_engineer vcs import < dependencies.repos cd ~/ros2_my_ws/ rosdep install --from-paths src --ignore-src -r -y
- Build your workspace
cd ~/ros2_my_ws/ colcon build && source ~/ros2_my_ws/install/setup.bash
- Run Rviz and Astar Search Algorithm
ros2 launch path_planning astart.launch.py