xacro to urdf #459
Answered
by
danzimmerman
RafaelBrunet
asked this question in
Q&A
-
Hi, I need to convert the xacro file to a urdf. Is there a way to run this command below to convert the file to a urdf? ros2 run xacro xacro ur.urdf.xacro > ur10e.urdf Thanks in advance for your help. |
Beta Was this translation helpful? Give feedback.
Answered by
danzimmerman
Aug 4, 2022
Replies: 1 comment
-
Yes, but you need to add
You can probably just invoke
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
destogl
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, but you need to add
ur_type
and, apparently,name
, likeros2 run xacro xacro ur.urdf.xacro ur_type:=ur10e name:=some_robot_name > ur10e.urdf
You can probably just invoke
xacro
directly like:xacro ur.urdf.xacro ur_type:=ur10e name:=some_robot_name > ur10e.urdf