Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 807 Bytes

README.md

File metadata and controls

26 lines (23 loc) · 807 Bytes

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