ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Someone finally pointed out that my observation_sources were not in the right namespace. The correct yaml format is the following.
obstacle_layer:
observation_sources: sensorA sensorB sensorC
sensorA: {}
sensorB: {}
sensorC: {}
2 | No.2 Revision |
Someone finally pointed out that my observation_sources were not in the right namespace. The correct yaml format is the following. You have to make sure the observation_sources are under the obstacle_layer namespace like the below.
obstacle_layer:
observation_sources: sensorA sensorB sensorC
sensorA: {}
sensorB: {}
sensorC: {}
3 | No.3 Revision |
Someone finally pointed out that my observation_sources were not in the right namespace. The correct yaml format is the following. You have to make sure the observation_sources are under the obstacle_layer namespace like the below.
obstacle_layer:
obstacle_layer: # I was missing this line
observation_sources: sensorA sensorB sensorC
sensorA: {}
sensorB: {}
sensorC: {}