Skip to content

Commit

Permalink
doc: readme: fix example conversion configs: all -> all_topics (#1661)
Browse files Browse the repository at this point in the history
* fix example conversion configs: all -> all_topics

Signed-off-by: Jonas Otto <[email protected]>

* update topic and service selection arguments in conversion config in readme

Signed-off-by: Jonas Otto <[email protected]>

* add all_services: true to first example

Co-authored-by: Michael Orlov <[email protected]>
Signed-off-by: Jonas Otto <[email protected]>

* add all_services: true to second example

Co-authored-by: Michael Orlov <[email protected]>
Signed-off-by: Jonas Otto <[email protected]>

---------

Signed-off-by: Jonas Otto <[email protected]>
Co-authored-by: Michael Orlov <[email protected]>
  • Loading branch information
ottojo and MichaelOrlov authored May 21, 2024
1 parent 5a06430 commit 938fafa
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,17 @@ output_bags:
max_bagfile_duration: 0
storage_preset_profile: ""
storage_config_uri: ""
all: false
all_topics: false
topics: []
topic_types: []
all_services: false
services: []
rmw_serialization_format: "" # defaults to using the format of the input topic
regex: ""
exclude: ""
exclude_regex: ""
exclude_topics: []
exclude_topic_types: []
exclude_services: []
compression_mode: ""
compression_format: ""
compression_queue_size: 1
Expand All @@ -247,7 +253,8 @@ $ ros2 bag convert -i bag1 -i bag2 -o out.yaml
# out.yaml
output_bags:
- uri: merged_bag
all: true
all_topics: true
all_services: true
```

Example split:
Expand All @@ -271,7 +278,8 @@ $ ros2 bag convert -i bag1 -o out.yaml
# out.yaml
output_bags:
- uri: compressed
all: true
all_topics: true
all_services: true
compression_mode: file
compression_format: zstd
```
Expand Down

0 comments on commit 938fafa

Please sign in to comment.