Skip to content

Commit

Permalink
Use sensor data qos for pointcloud (autowarefoundation#82)
Browse files Browse the repository at this point in the history
Signed-off-by: Autoware <autoware@tier4.jp>

Co-authored-by: Autoware <autoware@tier4.jp>
  • Loading branch information
wep21 and Autoware authored Mar 11, 2021
1 parent bbc7b3f commit d2d85f7
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoware_launch/rviz/autoware.rviz
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ Visualization Manager:
Depth: 5
Durability Policy: Volatile
History Policy: Keep Last
Reliability Policy: Reliable
Reliability Policy: Best Effort
Value: /sensing/lidar/concatenated/pointcloud
Use Fixed Frame: false
Use rainbow: true
Expand Down Expand Up @@ -439,7 +439,7 @@ Visualization Manager:
Depth: 5
Durability Policy: Volatile
History Policy: Keep Last
Reliability Policy: Reliable
Reliability Policy: Best Effort
Value: /sensing/lidar/no_ground/pointcloud
Use Fixed Frame: true
Use rainbow: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ def launch_setup(context, *args, **kwargs):
"input_topic": "/sensing/lidar/top/rectified/pointcloud",
"output_topic": "/sensing/lidar/pointcloud",
"type": "sensor_msgs/msg/PointCloud2",
"history": "keep_last",
"depth": 5,
"reliability": "best_effort",
'use_sim_time': EnvironmentVariable(name='AW_ROS2_USE_SIM_TIME', default_value='False'),
}],
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ def launch_setup(context, *args, **kwargs):
"input_topic": "/sensing/lidar/top/rectified/pointcloud",
"output_topic": "/sensing/lidar/pointcloud",
"type": "sensor_msgs/msg/PointCloud2",
"history": "keep_last",
"depth": 5,
"reliability": "best_effort",
'use_sim_time': EnvironmentVariable(name='AW_ROS2_USE_SIM_TIME', default_value='False'),
}],
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,9 @@ def launch_setup(context, *args, **kwargs):
"input_topic": "/sensing/lidar/top/outlier_filtered/pointcloud",
"output_topic": "/sensing/lidar/pointcloud",
"type": "sensor_msgs/msg/PointCloud2",
"history": "keep_last",
"depth": 5,
"reliability": "best_effort",
'use_sim_time': EnvironmentVariable(name='AW_ROS2_USE_SIM_TIME', default_value='False'),
}],
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,9 @@ def launch_setup(context, *args, **kwargs):
"input_topic": "/sensing/lidar/top/rectified/pointcloud",
"output_topic": "/sensing/lidar/pointcloud",
"type": "sensor_msgs/msg/PointCloud2",
"history": "keep_last",
"depth": 5,
"reliability": "best_effort",
'use_sim_time': EnvironmentVariable(name='AW_ROS2_USE_SIM_TIME', default_value='False'),
}],
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ def launch_setup(context, *args, **kwargs):
"input_topic": "/sensing/lidar/top/rectified/pointcloud",
"output_topic": "/sensing/lidar/pointcloud",
"type": "sensor_msgs/msg/PointCloud2",
"history": "keep_last",
"depth": 5,
"reliability": "best_effort",
'use_sim_time': EnvironmentVariable(name='AW_ROS2_USE_SIM_TIME', default_value='False'),
}],
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ def launch_setup(context, *args, **kwargs):
"input_topic": "/sensing/lidar/top/rectified/pointcloud",
"output_topic": "/sensing/lidar/pointcloud",
"type": "sensor_msgs/msg/PointCloud2",
"history": "keep_last",
"depth": 5,
"reliability": "best_effort",
'use_sim_time': EnvironmentVariable(name='AW_ROS2_USE_SIM_TIME', default_value='False'),
}],
)
Expand Down

0 comments on commit d2d85f7

Please sign in to comment.