71 lines
3.1 KiB
ReStructuredText
Raw Normal View History

2021-05-02 14:49:33 +02:00
Rosbag2
=======
The :py:mod:`rosbags.rosbag2` package provides a conformant implementation of rosbag2. It provides read-write access to raw message data saved inside rosbag2 containers, and supports all features present in the C++ reference implementation.
Supported Versions
------------------
2023-03-02 12:55:12 +01:00
All versions up to the current (ROS2 Humble) version 6 are supported.
2021-05-02 14:49:33 +02:00
Supported Features
------------------
Rosbag2 is a flexible format that supports plugging different serialization methods, compression formats, and storage containers together. The rosbag2 C++ reference implementation is build around plugins that provide serialization, compression, and storage. This project implements all rosbag2 core plugins that are distributed with the C++ reference implementation.
:Serializers:
- cdr (without wstring)
:Compressors:
- zstd
:Storages:
- sqlite3
2023-03-02 12:55:12 +01:00
- mcap
2021-05-02 14:49:33 +02:00
Writing rosbag2
---------------
Instances of the :py:class:`Writer <rosbags.rosbag2.Writer>` class can create and write to new rosbag2 files. It is usually used as a context manager. Before the first message of a topic can be written, its topic must first be added to the bag. The following example shows the typical usage pattern:
.. code-block:: python
from rosbags.rosbag2 import Writer
from rosbags.serde import serialize_cdr
from rosbags.typesys.types import std_msgs__msg__String as String
2021-05-02 14:49:33 +02:00
# create writer instance and open for writing
with Writer('/home/ros/rosbag_2020_03_24') as writer:
# add new connection
topic = '/chatter'
msgtype = String.__msgtype__
connection = writer.add_connection(topic, msgtype, 'cdr', '')
2021-05-02 14:49:33 +02:00
# serialize and write message
2022-01-06 12:50:40 +01:00
timestamp = 42
message = String('hello world')
writer.write(connection, timestamp, serialize_cdr(message, msgtype))
2021-05-02 14:49:33 +02:00
Reading rosbag2
---------------
Instances of the :py:class:`Reader <rosbags.rosbag2.Reader>` class are used to read rosbag2 metadata and its contents. Most of the metadata is available on Reader instances right away, messages can only be accessed after the bag has been opened. To this end it is recommended to use the Reader as a context manager. The following example shows the typical usage pattern:
.. code-block:: python
from rosbags.rosbag2 import Reader
from rosbags.serde import deserialize_cdr
# create reader instance and open for reading
with Reader('/home/ros/rosbag_2020_03_24') as reader:
2022-04-21 15:15:10 +02:00
# topic and msgtype information is available on .connections list
for connection in reader.connections:
print(connection.topic, connection.msgtype)
2021-05-02 14:49:33 +02:00
# iterate over messages
for connection, timestamp, rawdata in reader.messages():
if connection.topic == '/imu_raw/Imu':
msg = deserialize_cdr(rawdata, connection.msgtype)
2021-05-02 14:49:33 +02:00
print(msg.header.frame_id)
# messages() accepts connection filters
2022-04-21 15:15:10 +02:00
connections = [x for x in reader.connections if x.topic == '/imu_raw/Imu']
for connection, timestamp, rawdata in reader.messages(connections=connections):
msg = deserialize_cdr(rawdata, connection.msgtype)
2021-05-02 14:49:33 +02:00
print(msg.header.frame_id)