generated from autowarefoundation/sample_sensor_kit_launch
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: fix to be able to use nebula (#19)
* Merge https://github.com/knzo25/awsim_sensor_kit_launch/tree/test/awsim_nebula_integration Signed-off-by: Shintaro Sakoda <[email protected]> * Fixed some code Signed-off-by: Shintaro Sakoda <[email protected]> * Fixed order Signed-off-by: Shintaro Sakoda <[email protected]> * FIxed order Signed-off-by: Shintaro Sakoda <[email protected]> --------- Signed-off-by: Shintaro Sakoda <[email protected]>
- Loading branch information
1 parent
df41e52
commit aafb524
Showing
5 changed files
with
246 additions
and
24 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
5 changes: 5 additions & 0 deletions
5
common_awsim_sensor_launch/config/distortion_corrector_node.param.yaml
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,5 @@ | ||
/**: | ||
ros__parameters: | ||
base_frame: base_link | ||
use_imu: true | ||
use_3d_distortion_correction: false |
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
39 changes: 39 additions & 0 deletions
39
common_awsim_sensor_launch/launch/velodyne_VLP16.launch.xml
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,39 @@ | ||
<launch> | ||
|
||
<!-- Params --> | ||
<arg name="launch_driver" default="true"/> | ||
|
||
<arg name="model" default="VLP16"/> | ||
<arg name="max_range" default="130.0"/> | ||
<arg name="min_range" default="0.4"/> | ||
<arg name="sensor_frame" default="velodyne"/> | ||
<arg name="return_mode" default="SingleStrongest"/> | ||
<arg name="sensor_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="vehicle_mirror_param_file"/> | ||
<arg name="container_name" default="velodyne_node_container"/> | ||
|
||
<include file="$(find-pkg-share common_awsim_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="max_range" value="$(var max_range)"/> | ||
<arg name="min_range" value="$(var min_range)"/> | ||
<arg name="frame_id" value="$(var sensor_frame)"/> | ||
<arg name="sensor_ip" value="$(var sensor_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="$(var cloud_min_angle)"/> | ||
<arg name="cloud_max_angle" value="$(var cloud_max_angle)"/> | ||
<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="container_name" value="$(var container_name)"/> | ||
</include> | ||
|
||
</launch> |
14 changes: 0 additions & 14 deletions
14
common_awsim_sensor_launch/launch/velodyne_lidar.launch.xml
This file was deleted.
Oops, something went wrong.