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

Revision history [back]

click to hide/show revision 1
initial version

Running your urdf through an XML formatter returned the following error:

Unable to parse any XML input. Error on line 33: Element type "axis" must be followed by either attribute specifications, ">" or "/>".

And indeed, if we look at your axis elements we see:

<axis = "1 0 0"/>

This is not valid XML, and thus not valid URDF. It's missing the xyz attribute and should be:

<axis xyz="1 0 0"/>

See also the Elements section of the urdf/XML/joint page on the ROS wiki. xyz is a required attribute for axis elements.