navsat_transform_node ********************* ``navsat_transform_node`` takes as input a `nav_msgs/Odometry `_ message (usually the output of ``ekf_localization_node`` or ``ukf_localization_node``), a `sensor_msgs/Imu.html `_ containing an accurate estimate of your robot's heading, and a `sensor_msgs/NavSatFix.html `_ message containing GPS data. It produces an odometry message in coordinates that are consistent with your robot's world frame. This value can be directly fused into your state estimate. .. note:: If you fuse the output of this node with any of the state estimation nodes in ``robot_localization``, you should make sure that the ``odomN_differential`` setting is *false* for that input. Parameters ========== ~frequency ^^^^^^^^^^ The real-valued frequency, in Hz, at which ``navsat_transform_node`` checks for new `sensor_msgs/NavSatFix.html `_ messages, and publishes filtered `sensor_msgs/NavSatFix.html `_ when ``publish_filtered_gps`` is set to *true*. ~delay ^^^^^^ The time, in seconds, to wait before calculating the transform from GPS coordinates to your robot's world frame. ~magnetic_declination_radians ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Enter the magnetic declination for your location. If you don't know it, see `http://www.ngdc.noaa.gov/geomag-web `_ (make sure to convert the value to radians). This parameter is needed if your IMU prodives its orientation with respect to the magnetic north. ~yaw_offset ^^^^^^^^^^^ Your IMU should read 0 for yaw when facing east. If it doesn't, enter the offset here (desired_value = offset + sensor_raw_value). For example, if your IMU reports 0 when facing north, as most of them do, this parameter would be ``pi/2`` (~1.5707963). This parameter changed in version ``2.2.1``. Previously, ``navsat_transform_node`` assumed that IMUs read 0 when facing north, so yaw_offset was used acordingly. ~zero_altitude ^^^^^^^^^^^^^^ If this is *true*, the `nav_msgs/Odometry `_ message produced by this node has its pose Z value set to 0. ~publish_filtered_gps ^^^^^^^^^^^^^^^^^^^^^ If *true*, ``navsat_transform_node`` will also transform your robot's world frame (e.g., *map*) position back to GPS coordinates, and publish a `sensor_msgs/NavSatFix.html `_ message on the ``/gps/filtered`` topic. ~broadcast_utm_transform ^^^^^^^^^^^^^^^^^^^^^^^^ If this is *true*, ``navsat_transform_node`` will broadcast the transform between the UTM grid and the frame of the input odometry data. See Published Transforms below for more information. ~use_odometry_yaw ^^^^^^^^^^^^^^^^^ If *true*, ``navsat_transform_node`` will not get its heading from the IMU data, but from the input odometry message. Users should take care to only set this to true if your odometry message has orientation data specified in an earth-referenced frame, e.g., as produced by a magnetometer. Additionally, if the odometry source is one of the state estimation nodes in ``robot_localization``, the user should have at least one source of absolute orientation data being fed into the node, with the ``_differential`` and ``_relative`` parameters set to *false*. ~wait_for_datum ^^^^^^^^^^^^^^^ If *true*, ``navsat_transform_node`` will wait to get a datum from either: * The ``datum`` parameter * The ``set_datum`` service Subscribed Topics ================= * ``imu/data`` A `sensor_msgs/Imu.html `_ message with orientation data * ``odometry/filtered`` A `nav_msgs/Odometry `_ message of your robot's current position. This is needed in the event that your first GPS reading comes after your robot has attained some non-zero pose. * ``gps/fix`` A `sensor_msgs/NavSatFix.html `_ message containing your robot's GPS coordinates Published Topics ================ * ``odometry/gps`` A `nav_msgs/Odometry `_ message containing the GPS coordinates of your robot, transformed into its world coordinate frame. This message can be directly fused into ``robot_localization``'s state estimation nodes. * ``gps/filtered`` (optional) A `sensor_msgs/NavSatFix.html `_ message containing your robot's world frame position, transformed into GPS coordinates Published Transforms ==================== * ``world_frame->utm`` (optional) - If the ``broadcast_utm_transform`` parameter is set to *true*, ``navsat_transform_node`` calculates a transform from the *utm* frame to the ``frame_id`` of the input odometry data. However, to avoid re-parenting the odometry frame (and avoid making assumptions about the user's setup), we instead define the inverse transform so that the *utm* frame is a child of the odometry frame.