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

How to convert a Hydro launch file to an indigo launch file

asked 2014-10-25 17:00:26 -0500

udmamrl gravatar image

updated 2014-10-26 16:01:14 -0500

gvdhoorn gravatar image

Thank you in advance for your help, I have the following launch file which runs well on other ubuntu 12.04 systems with ros hydro. My system is ubuntu 14.04 with ros indigo, and the files do not work. I believe the problem is within the launch file shown below, along with the error I receive.

<launch>
  <param name="/use_sim_time" value="true"/>
  <node pkg="stage_ros" type="stageros" name="IGVC_stage" args="$(find stageroscam)/world/20Mx20M.world" output="screen">
  </node>
 <!--include file="$(find stageroscam)/rviz.launch"/-->
 </launch>

Error:

raise ResourceNotFound(name, ros_paths=self._ros_paths)
ResourceNotFound: stageroscam
ROS path [0]=/opt/ros/indigo/share/ros
ROS path [1]=/home/martin/catkin_ws/src
ROS path [2]=/opt/ros/indigo/share
ROS path [3]=/opt/ros/indigo/stacks
edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2014-10-26 15:46:21 -0500

Murilo F. M. gravatar image

The problem is not in your launch file.

A ResourceNotFound error means a resource was not found!

In this case, it is the package you are trying to find in $(find stageroscam). That hints the package is not installed/available on your system.

You should either install the package (if it is available), or clone the git repo in your catkin workspace. Mind you the package may not yet be compatible with ROS Indigo.

edit flag offensive delete link more

Comments

Thanks, I had the Stageroscam files in the wrong folder.

udmamrl gravatar image udmamrl  ( 2014-10-27 20:20:20 -0500 )edit

Question Tools

Stats

Asked: 2014-10-25 17:00:26 -0500

Seen: 268 times

Last updated: Oct 26 '14