10 releases (5 breaking)

0.6.3 May 27, 2024
0.6.1 Sep 2, 2022
0.6.0 May 25, 2022
0.5.0 Feb 20, 2022
0.2.0 Apr 18, 2018

#19 in Robotics

Download history 33/week @ 2024-10-25 24/week @ 2024-11-01 8/week @ 2024-11-08 52/week @ 2024-11-15 22/week @ 2024-11-22 65/week @ 2024-11-29 104/week @ 2024-12-06 228/week @ 2024-12-13 100/week @ 2024-12-20 28/week @ 2024-12-27 188/week @ 2025-01-03 70/week @ 2025-01-10 91/week @ 2025-01-17 45/week @ 2025-01-24 79/week @ 2025-01-31 78/week @ 2025-02-07

310 downloads per month
Used in 2 crates (via unbag-rs)

MIT/Apache

41KB
877 lines

rosbag-rs

Crate Docs Apache2/MIT licensed Rust Version Build Status Dependency Status

A pure Rust crate for reading ROS bag files.

Example

use rosbag::{ChunkRecord, MessageRecord, IndexRecord, RosBag};

let bag = RosBag::new(path)?;
// Iterate over records in the chunk section
for record in bag.chunk_records() {
    match record? {
        ChunkRecord::Chunk(chunk) => {
            // iterate over messages in the chunk
            for msg in chunk.messages() {
                match msg? {
                    MessageRecord::MessageData(msg_data) => {
                        // ..
                    }
                    MessageRecord::Connection(conn) => {
                        // ..
                    }
                }
            }
        },
        ChunkRecord::IndexData(index_data) => {
            // ..
        },
    }
}
// Iterate over records in the index section
for record in bag.index_records() {
    match record? {
        IndexRecord::IndexData(index_data) => {
            // ..
        }
        IndexRecord::Connection(conn) => {
            // ..
        }
        IndexRecord::ChunkInfo(chunk_info) => {
            // ..
        }
    }
}

License

The crate is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~2.5MB
~43K SLoC

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy