ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Problem launching costmap_node within <group> tag

asked 2014-02-08 11:18:17 -0500

This is my issue: When I launch costmap_node outside group tag all goes fine:

<launch>
   ... 
   <rosparam file="$(find vinter_utils)/launch/costmap_params.yaml" command="load" ns="costmap_node/costmap"/>
   <node name="costmap_node" type="costmap_2d_node" pkg="costmap_2d" output="screen">
      <remap from="/map" to="/intersection/map"/>
   </node>
  ...
</launch>

But when I want to launch the node within a group tag, the costmap is not published:

<launch>
   ... 
   <group ns="intersection">
      ...
      <rosparam file="$(find vinter_utils)/launch/costmap_params.yaml" command="load" ns="costmap_node/costmap"/>
      <node name="costmap_node" type="costmap_2d_node" pkg="costmap_2d" output="screen">
         <remap from="/map" to="/intersection/map"/>
      </node>
      ...
   </group>
  ...
</launch>

I guess is something related with naming but I can't figure out what is this.

This is the .yaml file:

global_frame: "/map"
robot_base_frame: "/intersection_0"
update_frequency: 5.0
publish_frequency: 5.0
obstacle_range: 10
raytrace_range: 15

inflation_radius: 0.05
robot_radius: 0.03 

observation_sources: "base_0 base_1 base_2 base_3"

#North East Base laser
base_0:
  topic: "/base_0/base_scan"
  data_type: "LaserScan"
  observation_persistence: 0.0
  clearing: true

#South East Base laser
base_1:
  topic: "base_1/base_scan"
  data_type: "LaserScan"
  observation_persistence: 0.0
  clearing: true

#South West Base laser
base_2:
  topic: "base_2/base_scan"
  data_type: "LaserScan"
  observation_persistence: 0.0
  clearing: true

#North West Base laser
base_3:
  topic: "base_3/base_scan"
  data_type: "LaserScan"
  observation_persistence: 0.0
  clearing: true

static_map: true
publish_voxel_map: true
track_unknown_space: true
edit retag flag offensive close merge delete

Comments

What is the output of rosparam list?

David Lu gravatar image David Lu  ( 2014-02-09 11:31:37 -0500 )edit

Hi David, I finally solve this. I was about to answer your question and launched both cases and they work well. Sorry, I don't know what happened before. One more question, Can you help me with this-> http://answers.ros.org/question/119051/local-costmap-empty-using-move_base_node/ :D

gustavo.velascoh gravatar image gustavo.velascoh  ( 2014-02-09 15:09:44 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
0

answered 2014-02-09 14:50:06 -0500

updated 2014-02-09 15:12:32 -0500

I solve this moving rosparam tag within node tag and modifying ns:

<group ns="intersection">
...
<node name="costmap_node" type="costmap_2d_node" pkg="costmap_2d" output="screen">
    <rosparam file="$(find vinter_utils)/launch/costmap_params_rw.yaml" command="load" ns="costmap"/>
    <remap from="/map" to="/intersection/map"/>
</node>
...
</group>

EDIT: I launched the 2nd case on the question and it worked fine. That's was weird, so I think this was a dummy question :P

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2014-02-08 11:18:17 -0500

Seen: 268 times

Last updated: Feb 09 '14