# navigation2 **Repository Path**: flyingChen/navigation2 ## Basic Information - **Project Name**: navigation2 - **Description**: ROS2 Navigation - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: crystal-devel - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-25 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: OpenSource ## README # Navigation2 ROS2 Navigation System [![Build Status](https://circleci.com/gh/ros-planning/navigation2/tree/master.svg?style=svg)](https://circleci.com/gh/ros-planning/navigation2/tree/master) CircleCI [![Build Status](https://travis-ci.org/ros-planning/navigation2.svg?branch=master)](https://travis-ci.org/ros-planning/navigation2) Travis [![Build Status](http://build.ros2.org/job/Cdev__navigation2__ubuntu_bionic_amd64/badge/icon)](http://build.ros2.org/job/Cdev__navigation2__ubuntu_bionic_amd64/) ROS Build Farm [![Pulls](https://shields.beevelop.com/docker/pulls/stevemacenski/navigation2.svg?style=flat-square)](https://hub.docker.com/r/stevemacenski/navigation2) # Overview The ROS 2 Navigation System is the control system that enables a robot to autonomously reach a goal state, such as a specific position and orientation relative to a specific map. Given a current pose, a map, and a goal, such as a destination pose, the navigation system generates a plan to reach the goal, and outputs commands to autonomously drive the robot, respecting any safety constraints and avoiding obstacles encountered along the way. # Contributing We are currently in the pre-release development phase, contributions are welcome. To contribute, see the [documentation README](doc/README.md). # Building the source For instructions on how to download and build this repo, see the [BUILD.md](doc/BUILD.md) file. # Creating a docker image To build an image from the Dockerfile in the navigation2 folder: First, clone the repo to your local system (or see Building the source above) ``` sudo docker build -t nav2/latest . ``` If proxies are needed: ``` sudo docker build -t nav2/latest --build-arg http_proxy=http://proxy.my.com:### --build-arg https_proxy=http://proxy.my.com:### . ``` Note: You may also need to configure your docker for DNS to work. See article here for details: https://development.robinwinslow.uk/2016/06/23/fix-docker-networking-dns/ ## Using CI build docker container We allow for you to pull the latest docker image from the master branch at any time. As new releases and tags are made, docker containers on docker hub will be versioned as well to chose from. ``` sudo docker pull stevemacenski/navigation2:latest ```