You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would suggest doing number 1. Floating point numbers are stored in scientific notation, so having typical measurements that small will not inherently cause numeric issues.
Numeric conditioning errors come from adding or subtracting numbers of vastly different scales. Ex. (1e10 + 1e-10 - 1e10) = 0 is incorrect, but (1e-10 + 1e-10) = 2e-10 is fine.
ROS MagneticField message defines its output in Tesla.
http://docs.ros.org/jade/api/sensor_msgs/html/msg/MagneticField.html
3dm-gx4 measures magnetic filed in Gauss and the driver outputs is thus in Gauss
http://www.microstrain.com/inertial/3dm-gx4-25
The conversion between tesla and gauss is 1 Tesla = 10000 Gauss
This inconsistency is not very well documented and thus may cause confusion.
We could
The text was updated successfully, but these errors were encountered: