-
In the latest update, it says:
But I don't know how to make use of that... I'm using the python fleet adapter template with EasyFullControl. I added an endpoint to my robot where I can load a new map and send data (position and orientation) for initial localization, but how do I add it to the API, so it gets triggered by RMF? The documentation doesn't seem to be updated yet in this regard. My idea was to trigger a map change and localization on the robot when the map in a navigate (to the next waypoint) request is different to the previous one. The problem is that there is no way of knowing the robot's orientation that it took when moving into the lift, is there? (position should be obvious). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi! Thanks for bringing this up, this hasn't been documented, but here's an example of how you can pass the localize callback when returning RobotCallbacks to be triggered by RMF:
where |
Beta Was this translation helpful? Give feedback.
Hi! Thanks for bringing this up, this hasn't been documented, but here's an example of how you can pass the localize callback when returning RobotCallbacks to be triggered by RMF:
where
estimate
is a Destination object contain…