Skip to content

Commit 8f25892

Browse files
author
Carlos Tampier
committed
CT: Updated default ros parameters and documentation.
1 parent 81d3d92 commit 8f25892

File tree

3 files changed

+16
-15
lines changed

3 files changed

+16
-15
lines changed

README.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -100,16 +100,17 @@ A python script implements a JSON API with the common requests (POST, PUT, GET)
100100

101101
A 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

115116
Additionally, 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. |

doc/Operation_Manual.pdf

176 Bytes
Binary file not shown.

ftt_ros_interface/config/ros2api_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ topics:
1616
local_pose: local_pose
1717
map: map
1818
map_jpeg: map_jpeg
19-
image: image_raw
19+
image: image
2020
image_compressed: image_compressed

0 commit comments

Comments
 (0)