-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: nebula for aip launcher (#157)
* feat: add nebula to VLP16, VLP32C, VLS128 launch files Signed-off-by: David Wong <[email protected]> * chore: update package dependencies Signed-off-by: David Wong <[email protected]> * feat: add Hesai XT32, update parameters for Velodyne sensors Signed-off-by: David Wong <[email protected]> * ci(pre-commit): autofix * fix: add view_direction parameter for Velodyne Signed-off-by: David Wong <[email protected]> * ci(pre-commit): autofix * fix: add host ip to prevent broadcast IP being used Signed-off-by: David Wong <[email protected]> * fix: parameter typos Signed-off-by: David Wong <[email protected]> * ci(pre-commit): autofix * fix: change velodyne to use min and max angle parameters instead of view angle, increase max view angle to 360 Signed-off-by: David Wong <[email protected]> * fix: parameter name correction Signed-off-by: David Wong <[email protected]> --------- Signed-off-by: David Wong <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
4b0994b
commit 5eb758d
Showing
8 changed files
with
236 additions
and
174 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
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,38 @@ | ||
<launch> | ||
|
||
<!-- Params --> | ||
<arg name="launch_driver" default="true"/> | ||
|
||
<arg name="model" default="PandarXT32"/> | ||
<arg name="sensor_frame" default="pandar"/> | ||
<arg name="return_mode" default="Strongest"/> | ||
<arg name="device_ip" default="192.168.1.201"/> | ||
<arg name="host_ip" default="255.255.255.255"/> | ||
<arg name="data_port" default="2368"/> | ||
<arg name="scan_phase" default="0.0"/> | ||
<arg name="cloud_min_angle" default="0"/> | ||
<arg name="cloud_max_angle" default="360"/> | ||
<arg name="dual_return_distance_threshold" default="0.1"/> | ||
<arg name="vehicle_mirror_param_file"/> | ||
<arg name="use_pointcloud_container" default="false"/> | ||
<arg name="container_name" default="hesai_node_container"/> | ||
|
||
<include file="$(find-pkg-share common_sensor_launch)/launch/nebula_node_container.launch.py"> | ||
<arg name="launch_driver" value="$(var launch_driver)"/> | ||
<arg name="sensor_model" value="$(var model)"/> | ||
<arg name="return_mode" value="$(var return_mode)"/> | ||
<arg name="frame_id" value="$(var sensor_frame)"/> | ||
<arg name="device_ip" value="$(var device_ip)"/> | ||
<arg name="host_ip" value="$(var host_ip)"/> | ||
<arg name="data_port" value="$(var data_port)"/> | ||
<arg name="scan_phase" value="$(var scan_phase)"/> | ||
<arg name="cloud_min_angle" value="0"/> | ||
<arg name="cloud_max_angle" value="360"/> | ||
<arg name="dual_return_distance_threshold" value="$(var dual_return_distance_threshold)"/> | ||
<arg name="vehicle_mirror_param_file" value="$(var vehicle_mirror_param_file)"/> | ||
<arg name="use_intra_process" value="true"/> | ||
<arg name="use_multithread" value="true"/> | ||
<arg name="use_pointcloud_container" value="$(var use_pointcloud_container)"/> | ||
<arg name="container_name" value="$(var container_name)"/> | ||
</include> | ||
</launch> |
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
Oops, something went wrong.