Respected Prof,
I was trying to solve the exercise. I launched the .launch file with the following code lines:
<node pkg="gmapping" type="slam_gmapping" name="slam_gmapping" output="screen">
<rosparam file="$(find my_mapping_launcher)/params/gmapping_params.yaml" command="load" />
</node>
</launch>
It wasn’t working. Then I went through exercise solution and realized that the following lines are missing:
arg name=“scan_topic” default="/kobuki/laser/scan" /
remap from=“scan” to="$(arg scan_topic)"/
- Why does it not work without these lines ?
- What does these lines do ?