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

Anand B's profile - activity

2014-12-06 16:56:27 -0500 received badge  Enlightened (source)
2012-08-24 20:54:41 -0500 received badge  Good Answer (source)
2012-05-12 05:59:30 -0500 received badge  Nice Answer (source)
2012-04-29 07:14:48 -0500 received badge  Teacher (source)
2012-04-29 07:14:48 -0500 received badge  Necromancer (source)
2012-03-02 08:15:02 -0500 answered a question tf/tutorials demo problem ros-electric

Add tf.ExtrapolationException to the list of exceptions to be discarded when making the call to tf.lookupTransform. New code will look like this,

    try:
        (trans,rot) = listener.lookupTransform('/turtle2', '/turtle1', rospy.Time())
    except (tf.LookupException, tf.ConnectivityException, tf.ExtrapolationException):
        continue