URDF
URDF = Unified Robot Description Format - used to generate TFs
making a urdf file¶
urdf files end with .urdf and are in XML format
<?xml version="1.0"?>
<robot name="myrobot">
<!-- your links and joints go here! -->
</robot>
link¶
<link name="base_link">
<visual> <!-- physical properties -->
<geometry>
<box size=".2 .4 .6"/> <!-- in meters -->
</geometry>
<origin xyz="0 0 0" rpy="0 0 0"/>
<material name="orange">
</visual>
</link>
joint¶
<joint name="my_cool_joint" type="fixed">
<parent link="mom"/>
<child link="son"/>
<origin xyz="0 0 0.5" rpy="0 0 0"/>
</joint>