├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── package.xml ├── resource └── ros2bags ├── ros2bag_convert ├── __init__.py ├── main.py └── ros2bag_convert │ ├── __init__.py │ ├── json_message_converter.py │ ├── message_converter.py │ ├── read_bag.py │ └── save_csv_file.py ├── setup.cfg ├── setup.py ├── test ├── test_copyright.py ├── test_flake8.py └── test_pep257.py └── upload.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/README_EN.md -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/package.xml -------------------------------------------------------------------------------- /resource/ros2bags: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ros2bag_convert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ros2bag_convert/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/ros2bag_convert/main.py -------------------------------------------------------------------------------- /ros2bag_convert/ros2bag_convert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ros2bag_convert/ros2bag_convert/json_message_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/ros2bag_convert/ros2bag_convert/json_message_converter.py -------------------------------------------------------------------------------- /ros2bag_convert/ros2bag_convert/message_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/ros2bag_convert/ros2bag_convert/message_converter.py -------------------------------------------------------------------------------- /ros2bag_convert/ros2bag_convert/read_bag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/ros2bag_convert/ros2bag_convert/read_bag.py -------------------------------------------------------------------------------- /ros2bag_convert/ros2bag_convert/save_csv_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/ros2bag_convert/ros2bag_convert/save_csv_file.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/test/test_copyright.py -------------------------------------------------------------------------------- /test/test_flake8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/test/test_flake8.py -------------------------------------------------------------------------------- /test/test_pep257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/ros2bag_convert/HEAD/test/test_pep257.py -------------------------------------------------------------------------------- /upload.sh: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------