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

How to check your Xacro / urdf model

To be able to check your model, you have to convert your xacro file to plain urdf:

rosrun xacro xacro.py -o model_out.urdf model_in.urdf.xacro

Then you can use:

How to use your Xacro model

To use your xacro model, you have to convert it first to plain urdf. The best way is to convert it at the time you load you model into a ros parameter, so your urdf model will always be up to date, as any modifications on the xacro will be applied on next launch.

See here: Using Xacro to clean urdf file, first paragraph.

How to check your Xacro / urdf model

To be able to check your model, you have to convert your xacro file to plain urdf:

rosrun xacro xacro.py -o model_out.urdf model_in.urdf.xacro

Then you can use:

How to use your Xacro model

To use your xacro model, you have to convert it first to plain urdf. The best way is to convert it at the time you load you model into a ros parameter, so your urdf model will always be up to date, as any modifications on the xacro will be applied on next launch.

See here: Using Xacro to clean urdf file, first paragraph.