Problem mixing lidar bag with live tf
During development, I am trying to replay lidar data from a bag file and combine it with simulated new robot positions, generated during the simulation run. The lidar data I recorded a few weeks ago, and the simulated positions are computed on the fly by a controller and command based odometry nodes.
However there is some problem with tf occuring, and causing assemble_scans to give no output. Assemble_scans works fine when I replay tf's recorded inside the bag together with the lidar; but not when I filter them out of the bag file and play my live versions. (I'm running in simtime mode.)
Further info: I'm on ROS Indigo on Ubuntu and using Python; I have use_sim_time true set and am using --clock. There are no error messages displayed by laser_assemble or anything else, it just sits there doing nothing (giving empty data when called as a service.) After 20s I get this warning message,
WARN 1430939127.391484409, 1429541092.395955176: MessageFilter target=map : Dropped 100.00% of messages so far. Please turn the ros.laser_assembler.message_notifier rosconsole logger to DEBUG for more information.
But I'm not sure how to change this DEBUG setting ?
Some experiments I did,
1 I filtered scan and tf into a new bag file, to remove any potential confusion from other messages; laser_assemble works with this bag replayed wit --clock.
2 I filtered scan and tf into separate bags, and played them via a single rosbag node with --clock, laser_assemble works
3 I filtered scan and tf into separate bag files and replay them with two separate rosbag nodes, both with --clock. This gives back in time errors (as expected)
4 As (3) but with --clock set only on the scan bag player and not on the tf bag player; laser_assemble works fine.
Case 4 is interesting as its most similar to the original failure mode, as I understand it the tf bag player will take its time stamps from ros::time rather than from its own bag file, as would be the case for the live tf posts.
So it seems there is some different between tf publications that are created by bag files and those that are created live? The nearest discussion I found -- from 2012 -- was here, http://answers.ros.org/question/11477... which AFAICT is about the opposite problem, restamping bagged tf's so they look like they are happening in real time. (I'm the other way, I want real time tf's to look like sim times.)
Please let me know if there are any additional log files I could read and post here to get more info too, or any ideas what else could be going wrong here?