You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The launch file hunter_platform/hunter_pltf_gazebo/launch/launch_sim.launch.py brings up the gazebo sim for the hunter. When this is launched it, by default, has no namespace as expected.
Ideally a namespace is applied through this launch file being included under a GroupAction with an associated PushRosNamespace. However under this approach, only the following topics and nodes are namespaces appropriately when deployed with PushRosNamespace('GROUP'):
Included within the launch_sim.launch.py file is the spawn_entity node. This can take an additional argument of: '-robot_namespace', '/SPAWN', which should (when absent) use the rclpy.get_namespace() by default. When set manually, this will apply a namespace to:
Further in this launch file, is the robot_description_content which can apply a prefix to the xacro file. When this is applied as "prefix:='DESC_'",, it will add the prefix to the following items:
These should all namespace appropriately given the launch file being run with a RosPushNamespace. Each of the files associated with this need to have namespacing compatibility available.
Steps To Reproduce
Additional Information
No response
The text was updated successfully, but these errors were encountered:
Description of the bug
The launch file
hunter_platform/hunter_pltf_gazebo/launch/launch_sim.launch.py
brings up the gazebo sim for the hunter. When this is launched it, by default, has no namespace as expected.Ideally a namespace is applied through this launch file being included under a GroupAction with an associated PushRosNamespace. However under this approach, only the following topics and nodes are namespaces appropriately when deployed with
PushRosNamespace('GROUP')
:Included within the
launch_sim.launch.py
file is the spawn_entity node. This can take an additional argument of:'-robot_namespace', '/SPAWN',
which should (when absent) use therclpy.get_namespace()
by default. When set manually, this will apply a namespace to:Further in this launch file, is the
robot_description_content
which can apply a prefix to the xacro file. When this is applied as"prefix:='DESC_'",
, it will add the prefix to the following items:With all three applied, the following topics and nodes are still not namespaced:
These should all namespace appropriately given the launch file being run with a RosPushNamespace. Each of the files associated with this need to have namespacing compatibility available.
Steps To Reproduce
Additional Information
No response
The text was updated successfully, but these errors were encountered: