How to change/remap ros node name in launch file?
Hi, I would like to rename a node from a launch file which includes other launch file. Is it possible?? If yes then how is it done.
Here is a launch file I am using. The included launch file names the node as turtlebot_teleop_keyboard. I want to rename the node launched in the included launch file. The following launch file does not rename the node.
<launch>
<include file="$(find turtlebot_teleop)/launch/keyboard_teleop.launch"/>
<remap from="turtlebot_teleop_keyboard" to="teleop"/>
</launch>