ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
The message is complaining that canTransform()
is not able to get the relationship of simplebot/base_link to /map. This is because you only have a frame called "base_link" instead of "simplebot/base_link".
So modify your code by changing the arguments of canTransform()
in your code.
2 | No.2 Revision |
The message is complaining that canTransform()
is not able to get the relationship of simplebot/base_link to /map. This is because you only have a frame called "base_link" instead of "simplebot/base_link".
So modify your code by changing the arguments of canTransform()
in your code..