ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
One option could be to use relative param names in xyz.launch (instead of absolute ones) and put the include file inside a group with a namespace:
<launch>
<group ns="prefix">
<include file="xyz.launch"/>
</group>
</launch>
<launch>
<param name="a/hello" value="10" />
</launch>
Not exactly a remap, but if you just whant to add a prefix, it should work.