-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoctomap_merged.launch
26 lines (19 loc) · 998 Bytes
/
octomap_merged.launch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<launch>
<arg name="robot_name" default="X2" />
<node ns="$(arg robot_name)_merged" pkg="octomap_server" type="octomap_server_node" name="octomap_server">
<param name="resolution" value="0.2" />
<!-- fixed map frame (set to 'map' if SLAM or localization running!) -->
<param name="frame_id" type="string" value="world" />
<!-- maximum range to integrate (speedup!) -->
<param name="sensor_model/max_range" value="70000.0" />
<!-- data source to integrate (PointCloud2) -->
<remap from="cloud_in" to="/X2/merged_pc" />
<!-- the robot's base frame in which the ground plane detection is performed -->
<!-- <remap from="base_frame_id" to="/X1/base_link" /> -->
<!-- remove ground plane occupancy from occupancy grid (boolean)-->
<!-- <param name="filter_ground" value="false" /> -->
<!-- Publish free cells vis_array (boolean)-->
<param name="publish_free_space" value="true" />
</node>
</launch>