This repository provides waypoint navigation mainly for the Tsukuba Challenge.
Find a file
2023-10-20 05:08:53 +00:00
.github Create pull_request_template.md 2023-10-08 17:54:27 +09:00
rviz_plugins Add rviz_plugins package 2023-09-04 10:55:04 +00:00
waypoint_manager Merge from humble-devel 2023-10-20 05:08:53 +00:00
waypoint_navigation Add tandem_run_manager params 2023-10-03 07:56:36 +00:00
.gitignore Add gitignore 2023-09-07 14:00:29 +00:00
README.md Update README.md 2023-10-16 21:19:28 +09:00

orange_navigation

This repository provides ROS packages to support waypoint navigation and a Python project for editing waypoints, mainly for Tsukuba Challenge.

Setup

  1. Clone this repository into src directory of ROS workspace
  2. Install waypoint_navigation package dependencies
$ rosdep install -r -y -i --from-paths .
$ catkin build
  1. Create environment for waypoint_manager
$ cd waypoint_manager
$ python3 -m venv venv
$ source venv/bin/active
(venv) $ pip install -r requirements.txt
(venv) $ deactivate
  1. With ubuntu, it is recommended to register for alias
$ echo "alias waypoint_manager='path/to/orange_navigation/waypoint_manager/run_app.sh'" >> ~/.bashrc

Documentaion