Why would you remap the tf topic?
I've seen some code that looks like this:
<node name="jointState2tf"
pkg="robot_state_publisher"
type="robot_state_publisher">
<remap from="tf" to="hand/tf"/>
<remap from="joint_states" to="hand/joint_states"/>
</node>
Why would one remap the /tf
topic to something else (in this case, hand/tf
)? Shouldn't all Transform messages go on the /tf
topic anyways?