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

ratmcu's profile - activity

2016-11-23 01:03:48 -0500 received badge  Enthusiast
2016-11-21 03:36:31 -0500 received badge  Supporter (source)
2015-12-24 22:40:56 -0500 answered a question how to run ROS program with eclipse

I had this problem recently what I found was that in the run configuration you need to direct the eclipse to the binary. Check if you have the path to the binary and verify the binary is present in the place. it will be something like this

/home/username/catkin_ws/devel/lib/package_name/executable_name

I also recommend you to follow this answer

http://answers.ros.org/question/52013/catkin-and-eclipse/

2015-12-24 22:40:55 -0500 answered a question how to get the resolution of a map from the map_server

I found this method much easier to get the parameter value from the server

 double map_resolution;
  // **rosparam list** < use this command to see all the parameters
  if (ros::param::get("/move_base/global_costmap/resolution", map_resolution))
  {
    ROS_INFO("map resolution: %f",map_resolution);
  }
  else
      ROS_INFO("couldn't get map resolution");