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

jbranchaud's profile - activity

2013-04-11 09:03:54 -0500 received badge  Popular Question (source)
2013-04-11 09:03:54 -0500 received badge  Notable Question (source)
2013-04-11 09:03:54 -0500 received badge  Famous Question (source)
2012-05-06 04:49:38 -0500 received badge  Scholar (source)
2012-05-06 04:49:29 -0500 received badge  Supporter (source)
2012-05-04 10:05:10 -0500 received badge  Student (source)
2012-05-04 04:36:46 -0500 asked a question Constraints on Nested Tags in Launch Files

What kinds of tag nesting are allowed in ROS launch files?

For instance, I know I can have global params within the <launch> tag as well as node params within a specific <node> tag.

But can other things be nested inside of the <node> tag, such as <rosparam>, <include>, other <node> tags?

Example 1:

<node>
    <rosparam ... some-file.yml />
</node>

Example 2:

<node>
    <include ... />
</node>

Example 3:

<node>
    <node ... >
        ...
    </node>
</node>

It seems like example 3 would be illegal, but I am unsure about example 1 and 2. Any help is appreciated.