SLAM gmapping, what rotates/ transforms the map?
Basically, I'm implementing a grid of RFID tags on the floor. The Turtlebot drives over each during mapping and assigns each a location based on base_footprint. HOWEVER, the SLAM gmapping algorithm sometimes updates the Map and rotates it, making my tags now in the wrong location. I was wondering what transform causes this rotation so I can apply the same function to my list of tags, hopefully updating them as well. It's not necessarily a problem, as once the map is actually built, I can run over the out of place tags again and update them, but I would like to not have to do this.
I'm running electric.
Thanks!
Thanks dornhege. That's the answer I was looking for (the second one, I had my points in the /map frame). I didn't think there would be an easy solution, like applying the same update to my tag list that was applied to the map. I'll look into graph mapping.