Skip to content

Commit

Permalink
fix CI and fixed until C-3 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
arsimone committed Oct 13, 2020
1 parent 8090d70 commit ecefd5f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -508,14 +508,14 @@ Edit the `./packages/my_package/launch/multiple_nodes.launch` file to contain th

<group ns="$(arg veh)">

<node pkg="my_package" type="my_publisher_node.py" name="my_publisher_node_1" output="screen"/>
<node pkg="my_package" type="my_publisher_node.py" name="my_publisher_node_2" output="screen"/>
&lt;node pkg="my_package" type="my_publisher_node.py" name="my_publisher_node_1" output="screen"/&gt;
&lt;node pkg="my_package" type="my_publisher_node.py" name="my_publisher_node_2" output="screen"/&gt;

<node pkg="my_package" type="my_subscriber_node.py" name="my_subscriber_node_1" output="screen">
&lt;node pkg="my_package" type="my_subscriber_node.py" name="my_subscriber_node_1" output="screen"&gt;
&lt;remap from="~/chatter" to="/&#36;(arg veh)/my_publisher_node_1/chatter"/&gt;
&lt;/node&gt;

<node pkg="my_package" type="my_subscriber_node.py" name="my_subscriber_node_2" output="screen">
&lt;node pkg="my_package" type="my_subscriber_node.py" name="my_subscriber_node_2" output="screen"&gt;
&lt;remap from="~/chatter" to="/&#36;(arg veh)/my_publisher_node_2/chatter"/&gt;
&lt;/node&gt;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Robotics is innately married to hardware. However, when we develop and test our
## Rosbag {#rosbag}


A bag is a file format in ROS for storing ROS message data. Bags, named so because of their `.bag` extension, have an important role in ROS. Bags are typically created by a tool like `rosbag`, which subscribes to one or more ROS topics, and stores the serialized message data in a file as it is received. These bag files can also be played back in ROS to the same topics they were recorded from, or even remapped to new topics.
A bag is a file format in ROS for storing ROS message data. Bags, named so because of their `.bag` extension, have an important role in ROS. Bags are typically created by a tool like `rosbag`, which subscribes to one or more ROS topics, and stores the sequence of messages in a file as it is received. These bag files can be played back in ROS ith the same topics that were recorded, or even using remapping to new topics. When a bag file is replayed the temporal order of the different messages is always kept.


Please go through [this](http://wiki.ros.org/rosbag/Commandline) link for more information.
Expand All @@ -36,7 +36,9 @@ or simply

$ rosbag record -a

to record all messages being published.
to record all messages being published.

Note: Be careful on recording all the messages published in a ROS system. There might be quite a lot of topics creating very by bag files very quickly, especially using images.


## Rosbag Python API: Reading {#rosbag-read}
Expand Down

0 comments on commit ecefd5f

Please sign in to comment.