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

Blumouse's profile - activity

2019-08-20 03:22:12 -0500 received badge  Nice Answer (source)
2017-05-11 09:48:36 -0500 received badge  Self-Learner (source)
2017-05-11 09:48:36 -0500 received badge  Teacher (source)
2016-07-26 13:25:44 -0500 received badge  Famous Question (source)
2015-07-29 06:53:11 -0500 received badge  Notable Question (source)
2015-05-23 01:42:20 -0500 received badge  Popular Question (source)
2015-05-22 16:53:07 -0500 received badge  Editor (source)
2015-05-22 15:41:04 -0500 received badge  Scholar (source)
2015-05-22 15:40:55 -0500 answered a question Error in Building a URDF from Scrath

Figured it out. Just needing to restart roscore in the end, although It seems like too simple of a fix.

2015-05-22 15:17:04 -0500 received badge  Supporter (source)
2015-05-22 14:06:53 -0500 commented question Error in Building a URDF from Scrath

It's an urdf file in the urdf_tutorial package, but I posted for you as well.

2015-05-22 12:13:05 -0500 asked a question Error in Building a URDF from Scrath

I've been following the tutorial from: http://wiki.ros.org/urdf/Tutorials/Bu...

I am currently attempting to run the 4th example 'Origins' using the command:

roslaunch urdf_tutorial display.launch model:=urdf/03-origins.urdf

However, every time I get an error in Rviz, essentially the leg is sticking straight through the middle of the base rather than being traslated to the side. I'm in the urdf_tutorial directory and have installed the joint_state_publisher package, so these are not the issues.

I'm encountering the error 'No transform from [right_leg] to [base_link]' and 'No tf data. Actual error: Fixed Frame [base_link] does not exist'. Any ideas on how to fix this? (If I was able to, I would upload a screenshot as well)

The urdf file I'm using is the same as from the tutorial, but posted below as well.

<?xml version="1.0"?>
<robot name="origins">
  <link name="base_link">
    <visual>
      <geometry>
        <cylinder length="0.6" radius="0.2"/>
      </geometry>
    </visual>
  </link>

  <link name="right_leg">
    <visual>
      <geometry>
        <box size="0.6 .2 .1"/>
      </geometry>
      <origin rpy="0 1.57075 0" xyz="0 0 -0.3"/>
    </visual>
  </link>

  <joint name="base_to_right_leg" type="fixed">
    <parent link="base_link"/>
    <child link="right_leg"/>
    <origin xyz="0.22 0 .25"/>
  </joint>

</robot>