GPS points will be predefined for the robot to navigate to the destination avoiding obstacles.
This repo package was tested on:
- Nvidia Jetson TX2 with Ubuntu 18.04
- Razor 9DOF IMU,
- ZED F9P (RTK2) GPS, and
- RPLidar A1 lidar.
- Laptop with Ubuntu 18.04
This work was performed to participate in University Rover Challenge (URC) 2019 for Team Interplanetar (BUET Mars Rover Robotics Team). Special thanks goes to Daniel Snider for open sourcing his work:
- ROS Rover <code>
- Simple Drive <code> <ROS Wiki>
- Follow Waypoints <code> <ROS Wiki>
- GPS Goal <code> <ROS Wiki>
- ROS Offline Google Maps for MapViz <code>
- Advanced Terminal Organization <code1> <code2>
In your terminal, navigate to your catkin_ws's source (src) directory & run:
cd catkin_ws/src
git clone https://github.com/ArghyaChatterjee/gps-waypoint-based-autonomous-navigation-in-ros.git gps_waypoint_nav
cd ..
catkin_make --only-pkg-with-deps gps_waypoint_nav
In that terminal, launch the navigation file:
source devel/setup.bash
roslaunch gps_waypoint_nav gps_waypoint_nav.launch
In another terminal, launch the joystick controller file:
source devel/setup.bash
roslaunch gps_waypoint_nav joy_launch_control.launch
Run the rover with the joystick. During the run, press "LB" to start collecting waypoints. The waypoints will be saved inside 'points_outdoor.txt'. When the run is finished, press "RB" to start following waypoints.
This package uses a combination of the following packages:
- ekf_localization to fuse odometry data with IMU and GPS data.
- navsat_transform to convert GPS data to odometry and to convert latitude and longitude points to the robot's odometry coordinate system.
- GMapping to create a map and detect obstacles.
- move_base to navigate to the goals while avoiding obstacles
- goals are set using recorded or inputted waypoints.
The Navigation package within this repo includes the following custom nodes:
- gps_waypoint to read the waypoint file, convert waypoints to points in the map frame and then send the goals to move_base.
- gps_waypoint_continuous1 for continuous navigation between waypoints using one controller.
- gps_waypoint_continuous2 for continuous navigation between waypoints using another seperate controller.
- collect_gps_waypoint to allow the user to drive the robot around and collect their own waypoints.
- calibrate_heading to set the heading of the robot at startup and fix issues with poor magnetometer data.
- plot_gps_waypoints to save raw data from the GPS for plotting purposes.
- gps_waypoint_mapping to combine waypoint navigation with Mandala Robotics' 3D mapping software for 3D mapping.
If you want to convert /navsat/fix topic from gps sensor to /navsat/odom topic (local cordinate frame), use these 2 packages directly:
- Geonav Transform <code> <ROS wiki>
- Geographic Info <code> <ROS wiki> <website> <ROS wiki2>
- Lattitude, Longitude & Altitude to Pose Stamped <code>
- Eagle Eye for GPS & IMU Fused Odometry <code> <youtube>
- IMU GPS Localization: Using EKF to fuse IMU and GPS data <code>
- GPSD <code> <ROS Tutorial>
- Robot localization navsat transform node does not publish
- Imu and GPS fusion without odom robot localization package
- How to fuse imu and gps using robot localization package
- GPS navigation with mobile robot
- Robot Localization using GPS <website>
We have used mapviz package to visualize the path and the cordinates.
sudo apt-get install ros-melodic-mapviz \
ros-melodic-mapviz-plugins \
ros-melodic-tile-map \
ros-melodic-multires-image
cd catkin_ws/src
git clone https://github.com/swri-robotics/mapviz.git
rosdep install --from-paths src --ignore-src
catkin_make
Delete any previous configuration file that you have worked with. The sequence of plugins in your panel is vital as Mapviz draws its plugins in the order that they are listed in the plugin panel. If navsat is listed first, it will draw that first, and then it will draw the tile_map over that, so you would not be able to see any fixes.
sudo rm ~/.mapviz_config
In one terminal run:
roscore
In another terminal, launch the mapviz file. Your mapviz.launch
file should look like this:
<launch>
<node pkg="mapviz" type="mapviz" name="mapviz"></node>
<node pkg="swri_transform_util" type="initialize_origin.py" name="initialize_origin" >
<param name="local_xy_frame" value="/map"/>
<param name="local_xy_origin" value="auto"/>
<!--<param name="local_xy_origin" value="swri"/>-->
<rosparam param="local_xy_origins">
[{ name: swri,
latitude: 29.45196669,
longitude: -98.61370577,
altitude: 233.719,
heading: 0.0},
{ name: back_40,
latitude: 29.447507,
longitude: -98.629367,
altitude: 200.0,
heading: 0.0}]
</rosparam>
<remap from="fix" to="/navsat/fix"/>
</node>
<node pkg="tf" type="static_transform_publisher" name="swri_transform" args="0 0 0 0 0 0 /map /origin 100" />
</launch>
Use the following command to launch the mapviz.launch
file:
cd catkin_ws
source devel/setup.bash
roslaunch mapviz mapviz.launch
In the panel, leave the 1st box (fixed frame "Map" and target frame "None") as it is, add tile_map and then add navsat plugin (select topic /navsat/fix). Perform it sequencially.
Now, you need a sample bag file which will publish the gps in /navsat/fix
topic. Download the rosbag from here. Run the rosbag in another terminal:
rosbag play CA-20190828184706_blur_align.bag
cd catkin_ws/src
git clone https://github.com/nobleo/rviz_satellite.git
catkin_make
Use the following command to launch the rviz.launch
file:
cd catkin_ws
source devel/setup.bash
roslaunch rviz_satellite demo.launch
You need a sample bag file which will publish the gps in /navsat/fix
topic. Download the rosbag from here. Run the rosbag in another terminal:
rosbag play CA-20190828184706_blur_align.bag
cd catkin_ws/src
git clone https://github.com/dheera/rosboard.git
catkin_make
Use the following command to launch the rviz.launch
file:
cd catkin_ws
source devel/setup.bash
rosrun rosboard rosboard_node
You need a sample bag file which will publish the gps in /navsat/fix
topic. Download the rosbag from here. Run the rosbag in another terminal:
rosbag play CA-20190828184706_blur_align.bag
Go to http://localhost:8888 (in case in a robot http://your-robot-ip:8888/) on your local browser and add the topic you want to visualize from top left menu. You should be able to visualize the topics.
I would like to acknowledge the contribution of the websites which helped me while making this repo.