-
Notifications
You must be signed in to change notification settings - Fork 0
/
simulation.launch
32 lines (22 loc) · 1.22 KB
/
simulation.launch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<launch>
<!--set to the required robot type and world-->
<arg name="robot_type" value="mpo_500"/>
<arg name="robot_world" value="neo_track1.world"/>
<!--To launch RVIZ set the value to true-->
<arg name="rviz" value="false"/>
<!--To launch move base set the value to true-->
<arg name="autonomous_navigation" value="false"/>
<!---=================================================================================================================================================================-->
<!-- Basic Simulation -->
<include file="$(find neo_simulation)/launch/$(arg robot_type)/$(arg robot_type)_simulation_basic.launch"/>
<!-- Autonomous Navigation -->
<group if="$(arg autonomous_navigation)">
<include file="$(find neo_simulation)/launch/$(arg robot_type)/$(arg robot_type)_autonomous_navigation.launch"/>
</group>
<!-- RVIZ -->
<group if="$(arg rviz)">
<include file="$(find neo_simulation)/launch/$(arg robot_type)/$(arg robot_type)_rviz.launch"/>
</group>
<!---=================================================================================================================================================================-->
</launch>