Compare topics between rosbags
Project description
rosbag-compare
Compare the topic content between rosbags
Say you have a bunch of rosbags inside a folder and you don't know whether or not all those rosbags have the same topics. rosbag-compare
will :
- retrieve the topics contained in each rosbag
- export a summary of the ros topics in a JSON file
- plot the topics that are missing for each rosbag :
Installation
rosbag-compare
can be installed from PyPi :
$ pip install rosbag-compare
Usage
rosbag-compare
can be used both as a command line application and in Python code.
Command line
A basic use of rosbag-compare
is to simply call it with the path of the folder that contains rosbags. This will simply generate a JSON file with a summary of the comparison in topics_<name-of-bagfolder>.json
.
$ rosbag-compare -b /path/to/folder/with/rosbags
You can also generate a figure that will show what topics are missing in each rosbag with the --plot/-p
flag. This figure helps when you want to find out if all rosbags of your experiment contains the topics that are of your interest.
$ rosbag-compare -b /path/to/folder/with/rosbags -p
In Python
You can also call rosbag-compare
directly into your Python code :
from rosbag_compare import RosbagComparator
data_path = "/path/to/folder/with/rosbags"
rbag_comp = RosbagComparator(data_path)
# This step may take time as it open each rosbag separately
# Will show a progress bar
rbag_comp.extract_data()
# Export summary to a JSON file
rbag_comp.to_json() # Defaults to topics_<foldername>.json
rbag_comp.to_json("exported_summary.json")
# Generate a figure with the name of the
# missing topics for each rosbag
rbag_comp.plot() # Show figure
rbag_comp.plot(save_fig=True) # Save figure (defaults to missing_topics.png)
rbag_comp.plot(save_fig=True, img_path="topics_summary.jpg") # Save figure to path
Contributing
Pull requests are welcome and don't hesitate to open issues
Development requirements can be installed using pip :
$ python -m venv venv
$ source venv/bin/activate
$ pip install -r requirements/requirements-dev.txt
License
This project is licensed under a MIT license
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file rosbag-compare-0.1.1.tar.gz
.
File metadata
- Download URL: rosbag-compare-0.1.1.tar.gz
- Upload date:
- Size: 58.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41f0a74bd422ba70751452a1fa18bcd4a225f0eeee4b8f090399080b6e624120 |
|
MD5 | a270efa12d9d0f4bf134d65dbb76e6ef |
|
BLAKE2b-256 | 39943b5d95c4edebcfccf58234e600018a40fa648335de827207ccaa49808e1e |
File details
Details for the file rosbag_compare-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: rosbag_compare-0.1.1-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3078e0e00979ea2aed6dd216bc9c6af3478e448cb1b05a2d356cc5f98f207816 |
|
MD5 | 2cbb7a3dff73a5b53598572cdb6a5b8a |
|
BLAKE2b-256 | 3f0d03f0144141e04842bae5e37ca45e15a20c20d1ebc85c0c7285f09f21d063 |