ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Hi snuzero,

I hope you have found a solution by now but I thought I would post an answer if case anyone else comes looking.

<group if="$(arg foo)">

</group>

Hi snuzero,

I hope you have found a solution by now but I thought I would post an answer if case anyone else comes looking.

Adding the following to your launch file should do the trick.

<launch>
    <group if="$(arg foo)">
        <include file="$(find pkg)/launch/launch_name.launch"/>
    </group>
    <!-- The stuff you want to run in all cases -->
</launch>

</group>

Hi snuzero,

I hope you have found a solution by now but I thought I would post an answer if case anyone else comes looking.

Adding the following to your launch file should do the trick.

<launch>
    <group if="$(arg foo)">
        <include file="$(find pkg)/launch/launch_name.launch"/>
    </group>
     <!-- The stuff you want to run in all cases -->
</launch>

Hi snuzero,

I hope you have found a solution by now but I thought I would post an answer if case anyone else comes looking.

Adding the following to your launch file should do the trick.

<launch>
    <group if="$(arg foo)">
        <include file="$(find pkg)/launch/launch_name.launch"/>
    </group>

    <!-- The stuff you want to run in all cases -->
</launch>

Wiki on the include tag: http://wiki.ros.org/roslaunch/XML/include

Hi snuzero,

I hope you have found a solution by now but I thought I would post an answer if case anyone else comes looking.

Adding the following to your launch file should do the trick.

<launch>
    <group if="$(arg foo)">
        <include file="$(find pkg)/launch/launch_name.launch"/>
    </group>

    <!-- The stuff you want to run in all cases -->
</launch>

In the included launch file, add your SLAM nodes.

Wiki on the include tag: http://wiki.ros.org/roslaunch/XML/include

Hi snuzero,

I hope you have found a solution by now but I thought I would post an answer if case anyone else comes looking.

Adding the following to your launch file should do the trick.

<launch>
    <group if="$(arg foo)">
        <include file="$(find pkg)/launch/launch_name.launch"/>
    </group>

    <!-- The stuff you want to run in all cases -->
</launch>

In the included launch file, add your SLAM nodes.

Wiki on the include tag: http://wiki.ros.org/roslaunch/XML/include

If you want to start nodes dynamically, I would recommend launching them anyway but add a dynamic parameter to them which will only activate them when set. I.e. set up the node to periodically check for the given parameter, when set, do something but keep checking. This should allow you, or another node, to activate it using the rosparam server.

Hi snuzero,

I hope you have found a solution by now but I thought I would post an answer if case anyone else comes looking.

Adding the following to your launch file should do the trick.

<launch>
    <group if="$(arg foo)">
        <include file="$(find pkg)/launch/launch_name.launch"/>
    </group>

    <!-- The stuff you want to run in all cases -->
</launch>

In the included launch file, add your SLAM nodes.

Wiki on the include tag: http://wiki.ros.org/roslaunch/XML/include

If you want to start nodes dynamically, I would recommend launching them anyway but add a dynamic parameter to them which will only activate them when set. I.e. set up the node to periodically check for the given parameter, when set, do something but keep checking. This should allow you, or another node, to activate it using the rosparam server.