ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I have edited turtle_tf_listener.py, and added tf.ExtrapolationException to the list of exceptions caught on line 58, so that my line 58 now reads:
except (tf.LookupException, tf.ConnectivityException, tf.ExtrapolationException):
This basically just catches the exception and moves on. Not sure if this is the recommended solution, but at least I can move on with the tutorial now :)