@@ -100,16 +100,17 @@ A python script implements a JSON API with the common requests (POST, PUT, GET)
100100
101101A ROS node that fetches the robot data to create database entries. It can be run either as a Python or a C++ node. The following data are subscribed:
102102
103- | Data | Type |
104- | ------------------------- | ---------------------------------------------------- |
105- | Operation mode | industrial_msgs/RobotMode |
106- | GPS position | sensor_msgs/NavSatFix |
107- | Local position | TF (map -> robot frame) or geometry_msgs/PoseStamped |
108- | Environment map | nav_msgs/OccupancyGrid |
109- | Map image<sup >\* </sup > | sensor_msgs/CompressedImage |
110- | Camera Image<sup >\* </sup > | sensor_msgs/Image or sensor_msgs/CompressedImage |
111-
112- <span style =" font-size :smaller " >\* Only in the Python implementation.</span >
103+ | Data | Type |
104+ | ----------------------------- | ---------------------------------------------------- |
105+ | Operation mode | industrial_msgs/RobotMode |
106+ | GPS position | sensor_msgs/NavSatFix |
107+ | Local position | TF (map -> robot frame) or geometry_msgs/PoseStamped |
108+ | Environment map | nav_msgs/OccupancyGrid |
109+ | Map image<sup >\* </sup > | sensor_msgs/CompressedImage |
110+ | Camera image | sensor_msgs/Image |
111+ | Compressed image<sup >\* </sup > | sensor_msgs/CompressedImage |
112+
113+ <span style =" font-size :smaller " >\* Options added only to the Python implementation to improve efficiency.</span >
113114<br /><br />
114115
115116Additionally, the node advertises the following services to interact with the web user interface:
@@ -444,9 +445,9 @@ Once the logging is activated, the node's parameters are read, the subscribers f
444445| ----------------------------- | --------------------------- |
445446| robot_mode | industrial_msgs/RobotMode |
446447| robot_position | sensor_msgs/NavSatFix |
447- | Environment map | nav_msgs/OccupancyGrid |
448- | Map image <sup >\* </sup > | sensor_msgs/CompressedImage |
449- | image_raw< sup > \* </ sup > | sensor_msgs/Image |
448+ | map | nav_msgs/OccupancyGrid |
449+ | map_jpeg <sup >\* </sup > | sensor_msgs/CompressedImage |
450+ | image | sensor_msgs/Image |
450451| image_compressed<sup >\* </sup > | sensor_msgs/CompressedImage |
451452
452453<span style =" font-size :smaller " >\* Only in the Python implementation.</span >
@@ -527,7 +528,7 @@ The FTT ROS interface node has its parameters loaded from a YAML file in the pac
527528| topics/gps_position | robot_position | Name of the topic for GPS position data. |
528529| topics/map | map | Name of the topic for the map of the environment. |
529530| topics/map_jpeg | map_jpeg | Name of the topic for the map image (must be the same map as the above). |
530- | topics/image | image_raw | Name of the topic for robot frontal camera (raw) images. |
531+ | topics/image | image | Name of the topic for robot frontal camera (raw) images. |
531532| topics/image_compressed | image_compressed | Name of the topic for robot frontal camera (compressed) images. |
532533| params/use_tf | true | Flag to create a TF listener to extract the robot's local position. |
533534| params/map_frame | map | Name of the map frame for the tf listener. |
0 commit comments