forked from tier4/hesai_pandar
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: amc-nu <[email protected]>
- Loading branch information
Showing
6 changed files
with
268 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
Channel,Elevation,Azimuth,,, | ||
1,19.5,0,,, | ||
2,18.2,0,,, | ||
3,16.9,0,,, | ||
4,15.6,0,,, | ||
5,14.3,0,,, | ||
6,13.0,0,,, | ||
7,11.7,0,,, | ||
8,10.4,0,,, | ||
9,9.1,0,,, | ||
10,7.8,0,,, | ||
11,6.5,0,,, | ||
12,5.2,0,,, | ||
13,3.9,0,,, | ||
14,2.6,0,,, | ||
15,1.3,0,,, | ||
16,0.0,0,,, | ||
17,-1.3,0,,, | ||
18,-2.6,0,,, | ||
19,-3.9,0,,, | ||
20,-5.2,0,,, | ||
21,-6.5,0,,, | ||
22,-7.8,0,,, | ||
23,-9.1,0,,, | ||
24,-10.4,0,,, | ||
25,-11.7,0,,, | ||
26,-13.0,0,,, | ||
27,-14.3,0,,, | ||
28,-15.6,0,,, | ||
29,-16.9,0,,, | ||
30,-18.2,0,,, | ||
31,-19.5,0,,, | ||
32,-20.8,0,,, | ||
Channel,Elevation,Azimuth | ||
1,19.5,0 | ||
2,18.2,0 | ||
3,16.9,0 | ||
4,15.6,0 | ||
5,14.3,0 | ||
6,13.0,0 | ||
7,11.7,0 | ||
8,10.4,0 | ||
9,9.1,0 | ||
10,7.8,0 | ||
11,6.5,0 | ||
12,5.2,0 | ||
13,3.9,0 | ||
14,2.6,0 | ||
15,1.3,0 | ||
16,0.0,0 | ||
17,-1.3,0 | ||
18,-2.6,0 | ||
19,-3.9,0 | ||
20,-5.2,0 | ||
21,-6.5,0 | ||
22,-7.8,0 | ||
23,-9.1,0 | ||
24,-10.4,0 | ||
25,-11.7,0 | ||
26,-13.0,0 | ||
27,-14.3,0 | ||
28,-15.6,0 | ||
29,-16.9,0 | ||
30,-18.2,0 | ||
31,-19.5,0 | ||
32,-20.8,0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<launch> | ||
<arg name="launch_driver" default="true" /> | ||
|
||
<arg name="pcap" default=""/> | ||
<arg name="device_ip" default="192.168.1.201"/> | ||
<arg name="lidar_port" default="2368"/> | ||
<arg name="gps_port" default="10110"/> | ||
<arg name="scan_phase" default="0"/> | ||
<arg name="return_mode" default="Strongest"/> | ||
<arg name="dual_return_distance_threshold" default="0.1"/> | ||
<arg name="model" default="PandarXTM"/> | ||
<arg name="frame_id" default="pandar"/> | ||
<arg name="calibration" default="$(find pandar_pointcloud)/config/xtm.csv"/> | ||
<arg name="manager" default="pandar_nodelet_manager"/> | ||
|
||
<!-- nodelet manager --> | ||
<node pkg="nodelet" type="nodelet" name="$(arg manager)" args="manager" output="screen" /> | ||
|
||
<!-- pandar driver --> | ||
<node pkg="nodelet" type="nodelet" name="$(arg manager)_driver" | ||
args="load pandar_driver/DriverNodelet $(arg manager)" if="$(arg launch_driver)" output="screen"> | ||
<param name="pcap" type="string" value="$(arg pcap)"/> | ||
<param name="device_ip" type="string" value="$(arg device_ip)"/> | ||
<param name="lidar_port" type="int" value="$(arg lidar_port)"/> | ||
<param name="gps_port" type="int" value="$(arg gps_port)"/> | ||
<param name="scan_phase" type="double" value="$(arg scan_phase)"/> | ||
<param name="model" type="string" value="$(arg model)"/> | ||
<param name="frame_id" type="string" value="$(arg frame_id)"/> | ||
</node> | ||
|
||
<!-- pandar cloud --> | ||
<node pkg="nodelet" type="nodelet" name="$(arg manager)_cloud" | ||
args="load pandar_pointcloud/CloudNodelet $(arg manager)" output="screen"> | ||
<remap from="pandar_points" to="pointcloud_raw" /> | ||
<remap from="pandar_points_ex" to="pointcloud_raw_ex" /> | ||
<param name="scan_phase" type="double" value="$(arg scan_phase)"/> | ||
<param name="return_mode" type="string" value="$(arg return_mode)"/> | ||
<param name="dual_return_distance_threshold" type="double" value="$(arg dual_return_distance_threshold)"/> | ||
<param name="model" type="string" value="$(arg model)"/> | ||
<param name="device_ip" type="string" value="$(arg device_ip)"/> | ||
<param name="calibration" type="string" value="$(arg calibration)"/> | ||
</node> | ||
</launch> |
Oops, something went wrong.