Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rephrase section on connecting to non-ROS DDS Topics. #125

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions articles/140_topic_and_service_name_mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,14 +309,14 @@ Another option would be to have some markup in the scheme name, for example:
|---------------------------------------|---------------------|-----------------------------|
| `rostopic://image` | `image` | [`rt`] |
| `rostopic+exact://image` | `image` | [] |
| `rostopic+exact://camera_left/image` | `camera_left/image` | [] |
| `rostopic+exact://camera_left/image` | `image` | [`camera_left`] |

Considering the third case, it's not clear if the `/` should be respected or if additional syntax is required to support partitions in the case of "exact" topic names.
You could also imagine:
Note that since `/` is not a valid character in DDS Topic names, anything other than the last token must be necessarily mapped to the DDS Partition.
I.e. the following is not valid:

| ROS Name | DDS Topic | DDS Partition |
|-----------------------------------------|---------------------|-----------------------------|
| `rostopic+exact+ns://camera_left/image` | `image` | [`camera_left`] |
| `rostopic+exact+ns://camera_left/image` | `camera_left/image` | [] |
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe the +ns should be removed here, and it should be taken as "this interpretation of rostopic+exact:// is incorrect".

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, the +ns slipped past me...


## Compare and Contrast with ROS 1

Expand Down