Remapping topics in gazebo, not working?
I am trying to remap a camera stream from /camera to /camera1_ns in gazebo.
<launch>
<!-- set use_sim_time flag -->
<param name="/use_sim_time" value="true" />
<!-- start gazebo with an empty plane -->
<node name="gazebo" pkg="gazebo" type="gazebo" args="$(find gazebo_worlds)/worlds/empty.world" respawn="false" output="screen"/>
<!-- start gui -->
<node name="gazebo_gui" pkg="gazebo" type="gui" respawn="false" output="screen"/>
<!-- spawn model -->
<node name="spawn_arm" pkg="gazebo" type="spawn_model" args="-file simple_arm.model -gazebo -model simple_arm" respawn="false" output="screen" >
<!-- remapping topics -->
<remap from="/camera1_ns" to="/camera" />
</node>
</launch>
But there is no /camera1_ns listed with rostopic list. Is this approach correct or should it be done otherwise?