Additional Simulation Worlds ================================ In addtion to the default ``warthog_world.launch`` file, ``warthog_gazebo`` contains three additional launch files: * ``empty_world.launch``, which spawns Warthog in a featureless, infinite plane; * ``warthog_race.launch``, which spawns a world with lots of linear barriers; and * ``spawn_warthog.launch``, which is intended to be included in any custom world to add a Warthog simulation to it. To add a Warthog to any of your own worlds, simply include the ``spawn_warthog.launch`` file in your own world's launch: .. code-block:: xml Finally, Clearpath provides an additional suite of simulation environments that can be downloaded separately and used with Warthog, as described below. Clearpath Gazebo Worlds ------------------------ The Clearpath Gazebo Worlds collection contains 4 different simulation worlds, representative of different environments our robots are designed to operate in: * Inspection World: a hilly outdoor world with water and a cave * Agriculture World: a flat outdoor world with a barn, fences, and solar farm * Office World: a flat indoor world with enclosed rooms and furniture * Construction World: office world, under construction with small piles of debris and partial walls Warthog is supported in Inspection and Agriculture Worlds. Installation --------------- To download the Clearpath Gazebo Worlds, clone the repository from github into the same workspace as your Warthog: .. code-block:: bash cd ~/catkin_ws/src git clone https://github.com/clearpathrobotics/cpr_gazebo.git Before you can build the package, make sure to install dependencies. Because Clearpath Gazebo Worlds depends on all of our robots' simulation packages, and some of these are currently only available as source code, installing dependencies with ``rosdep install --from-paths [...]`` will likely fail. All four simulation environments need the ``gazebo_ros`` package. The Inspection World also needs the ``uuv_gazebo_worlds`` package, which can be installed by running .. code-block:: bash sudo apt-get install ros-$ROS_DISTRO-uuv-gazebo-worlds Once the dependencies are installed, you can build the package: .. code-block:: bash cd ~/catkin_ws catkin_make source devel/setup.bash Running the Inspection Simulation ------------------------------------ Inspection World is a hilly, outdoor world that includes a water feature, bridge, pipeline, small cave/mine, and a small solar farm. It is intended to simulate a variety of missions, including pipeline inspection, cave/underground navigation, and localization on non-planar terrain. .. image:: graphics/warthog_inspection_bridge.png :alt: Warthog driving over the bridge in the inspection world To launch the inspection simulation, run .. code-block:: bash roslaunch cpr_inspection_gazebo inspection_world.launch platform:=warthog To customize Warthog's payload, for example to add additional sensors, see :ref:`customizepayload`. Once the simulation is running you can use rviz and other tools as described in :doc:`WarthogSimulation` to control and monitor the robot. For example, below we can see Warthog exploring the cave: .. image:: graphics/warthog_inspection_cave.png :alt: Warthog exploring the cave and Warthog's perception of the inside of the cave as a 3D pointcloud in rviz: .. image:: graphics/warthog_rviz_inspection_cave.png :alt: Warthog in rviz exploring the cave You can see the complete layout of the Inspection World below: .. image:: graphics/inspection_world.png :alt: Inspection World Running the Agriculture Simulation ------------------------------------ Agriculture World is a flat, mixed indoor/outdoor world that include a large barn, open fields surrounded by fences, and a large solar farm. It is intended to simulate missions such as solar panel inspection and area coverage. .. image:: graphics/warthog_agriculture_world.png :alt: Warthog in the agriculture world To launch the agriculture simulation, run .. code-block:: bash roslaunch cpr_agriculture_gazebo agriculture_world.launch platform:=warthog To customize Warthog's payload, for example to add additional sensors, see :ref:`customizepayload`. Once the simulation is running you can use rviz and other tools as described in :doc:`WarthogSimulation` to control and monitor the robot. .. image:: graphics/agriculture_world.png :alt: Agriculture World .. _customizepayload: Customizing Warthog's Payload ------------------------------- To customize Warthog's payload you must use the environment variables described in :doc:`WarthogPackages`. You can add additional sensors by creating a customized URDF and setting the ``WARTHOG_URDF_EXTRAS`` environment variable to point to it. For example, let's suppose you want to equip Warthog with an Intel RealSense D435 camera. First, install the ``realsense2_camera`` and ``realsense2_description`` packages, along with the gazebo plugins: .. code-block:: bash sudo apt-get install ros-$ROS_DISTRO-realsense2-camera ros-$ROS_DISTRO-realsense2-description ros-$ROS_DISTRO-gazebo-plugins Then create your customized URDF file, for example ``$HOME/Desktop/realsense.urdf.xacro``. Put the following in it: .. code-block:: xml true 30 1.5184351666666667 1.0122901111111111 640 480 RGB8 0.01 50.0 0.2 true 30 realsense color/image_raw color/camera_info depth/image_rect_raw depth/camera_info depth/color/points front_realsense_gazebo 0.105 8.0 0.00000001 0.00000001 0.00000001 0.00000001 0.00000001 0 0 0 0 0 This file defines the additional links for adding a RealSense camera to the robot, as well as configuring the ``openni_kinect`` plugin for Gazebo to simulate data from a depth camera. The camera itself will be connected to the Warthog's ``front_mount`` link, offset 5cm towards the front of the robot. Now, set the ``WARTHOG_URDF_EXTRAS`` environment variable and try viewing the Warthog model: .. code-block:: bash export WARTHOG_URDF_EXTRAS=$HOME/Desktop/realsense.urdf.xacro roslaunch warthog_viz view_model.launch You should see the Warthog model in rviz, with the RealSense camera mounted to it: .. image:: graphics/warthog_realsense.png :alt: Warthog with a RealSense D435 connected to it To launch the customized Warthog in any of the new simulation environments, similarly run: .. code-block:: bash export WARTHOG_URDF_EXTRAS=$HOME/Desktop/realsense.urdf.xacro roslaunch cpr_inspection_gazebo inspection_world.launch platform:=warthog You should see Warthog spawn in the office world with the RealSense camera: .. image:: graphics/warthog_inspection_cave.png You can view the sensor data from the RealSense camera by running .. code-block:: bash roslaunch warthog_viz view_robot.launch and adding the camera & pointcloud from the ``/realsense/color/image_raw`` and ``/realsense/depth/color/points`` topics: .. image:: graphics/warthog_rviz_inspection_cave.png :alt: Warthog with a RealSense in rviz showing pointcloud data