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

How do i solve this?

asked 2017-04-20 10:43:34 -0500

jhdeanda gravatar image

xacro: Traditional processing is deprecated. Switch to --inorder processing! To check for compatibility of your document, use option --check-order. For more infos, see http://wiki.ros.org/xacro#Processing_... resource not found: create_description ROS path [0]=/opt/ros/kinetic/share/ros ROS path [1]=/home/jhdeanda/catkin_ws/src ROS path [2]=/opt/ros/kinetic/share XacroException('resource not found:',) when processing file: /home/jhdeanda/catkin_ws/src/kobuki/turtlebot_description/urdf/turtlebot_library.urdf.xacro included from: /home/jhdeanda/catkin_ws/src/kobuki/turtlebot_description/robots/kobuki_hexagons_kinect.urdf.xacro while processing /home/jhdeanda/catkin_ws/src/kobuki/turtlebot_gazebo/launch/includes/kobuki.launch.xml: Invalid tag: Cannot load command parameter [robot_description]: command [/opt/ros/kinetic/share/xacro/xacro.py '/home/jhdeanda/catkin_ws/src/kobuki/turtlebot_description/robots/kobuki_hexagons_kinect.urdf.xacro'] returned with code [2].

Param xml is The traceback for the exception was written to the log file

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2017-04-20 18:12:31 -0500

AndyZe gravatar image

updated 2017-04-20 18:14:01 -0500

Find wherever your robot description is launched. Maybe you could grep for it:

grep -r "robot_description" *

Then change the command slightly:

<param name="robot_description" command="$(find xacro)/xacro '$(find robot_description)/urdf/my_robot.urdf.xacro'" />

to

<param name="robot_description" command="$(find xacro)/xacro '--inorder' '$(find robot_description)/urdf/my_robot.urdf.xacro'" />
edit flag offensive delete link more

Comments

1

Can you explain the difference between traditional processing and inorder?

raequin gravatar image raequin  ( 2018-03-23 12:54:44 -0500 )edit

Question Tools

Stats

Asked: 2017-04-20 10:43:34 -0500

Seen: 3,274 times

Last updated: Apr 20 '17