ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Persistent Transform Warning in robot_localization

asked 2020-01-24 11:34:01 -0500

haljarrett gravatar image

updated 2020-02-12 10:56:36 -0500

I am fusing odometry, imu, and ultrasonic beacon data using two robot_localization Kalman filters - one creating a fused odometry measurement and publishing the /odom frame, and a second fusing a world pose gathered from Marvelmind Ultrasonic Beacons.

We have used the setup for a number of years with no real issues, but it seems that recently something has changed which is now triggering a stream of warnings from our map kalman filter. It is not obvious when this change was introduced, or if it is detrimental (switching from kinetic to melodic, building ros for python 3, switching hardware platforms)

While our localization runs, we get a stream of messages like this:

Node: /ekf_map

Time: 11:46:05.217432323 (2020-01-24)

Severity: Warn

Published Topics: /diagnostics, /odom_map, /rosout, /tf

Transform from odom to map was unavailable for the time requested. Using latest instead.

Also including warning such as:

[ WARN] [1579896201.631471320]: Transform from beacon_frame to map was unavailable for the time requested. Using latest instead.

[ WARN] [1579896203.627275704]: Transform from imu to base_footprint was unavailable for the time requested. Using latest instead.

I have looked through all the other posts that address this, which are largely centered around nav_sat_transform nodes, where time lag is the root of the issue. Our beacons are emitting measurements at around 4hz, so it makes sense to me that it could be a related problem. However, I have tried all the methods suggested for people having those issues (adjusting transform_time_offset, predict to current time, sensor_timeout values, etc) with no luck.

All of my relevant frames are publishing, and I have verified they are current at the time that the warnings are being generated. I am ultimately at a loss for what the issue may be.

If you are able to provide any additional insight, it would be much appreciated. Find attached the frames, configurations for each kalman filter, and a 60s ros bag of sensor data, fused odometry, and tf output.

I don't have enough karma to upload files directly it seems, so find the files in this shared folder: https://drive.google.com/open?id=1RsL...

A few notes on the tf tree - we have static transforms defining:

map -> beacon_frame
base_footprint -> base_link
base_link -> imu
base_link -> hedge_link

Odometry EKF (fusing imu and wheel encoder data):

frequency: 24 
sensor_timeout: 0.05
two_d_mode: true
transform_time_offset: 0
transform_timeout: 0.0
publish_tf: true
publish_acceleration: false
odom_frame: odom
base_link_frame: base_footprint
world_frame: odom
odom0: odom_wheels
odom0_config: [false,  false,  false,
               false, false, false,
               true, true, false,
               false, false, false,
               false, false, false]
odom0_queue_size: 2

imu0: imu/data
imu0_config: [false, false, false,
              false, false, false,
              false, false, false,
              true,  true,  true,
              false,  false,  false]
imu0_relative: true
imu0_queue_size: 20
imu0_remove_gravitational_acceleration: true

use_control: false
stamped_control: false
control_timeout: 0.2
control_config: [true, false, false, false, false, true]
acceleration_limits: [1.3, 0.0, 0.0, 0.0, 0.0, 3.4]
deceleration_limits: [1.3, 0.0, 0.0, 0.0, 0.0, 4.5]
acceleration_gains: [0.8, 0.0, 0.0, 0.0, 0 ...
(more)
edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2020-02-11 03:47:47 -0500

Tom Moore gravatar image

updated 2020-02-11 03:48:07 -0500

Rather than uploading files, just paste your EKF configs in the question (please remove the boilerplate comments first), and format them as code (the little 101 icon). Also, please include a sample input message from every sensor input.

Anyway, that warning comes from here.

The message you are seeing means that you requested a transform with a target frame of map and a source frame of odom. That means that you are trying to fuse pose data in your map-frame EKF that has a source frame of odom. If you post messages of your sensor inputs, I can comment further.

The tf2 exception type is being hidden from you, but you can always modify the code to get more information about why it's failing, i.e., if it's too old or too new. At the very least, you should print out the requested time stamp and timeout value (the package should really do this by default).

edit flag offensive delete link more

Comments

Hey Tom - thanks for the feedback. I've revised the original question to include data source sample, configs, and additional related warnings. I will poke around and see if I can capture the original exception as well.

haljarrett gravatar image haljarrett  ( 2020-02-12 10:58:28 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2020-01-24 11:34:01 -0500

Seen: 529 times

Last updated: Feb 12 '20