-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from jkk-research/ZZtest_01_16
Z ztest 01 16
- Loading branch information
Showing
18 changed files
with
375 additions
and
45 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
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
Submodule kalman_pos
updated
34 files
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
Submodule lexus_bringup
updated
5 files
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
Submodule autoware_msgs
updated
50 files
Submodule tier4_autoware_msgs
updated
17 files
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,102 @@ | ||
from launch import LaunchDescription | ||
from launch.actions import IncludeLaunchDescription | ||
from launch.actions import DeclareLaunchArgument | ||
from launch.substitutions import LaunchConfiguration | ||
from launch.conditions import LaunchConfigurationEquals | ||
from launch.launch_description_sources import PythonLaunchDescriptionSource, AnyLaunchDescriptionSource | ||
from ament_index_python.packages import get_package_share_directory | ||
from os.path import join | ||
|
||
|
||
def generate_launch_description(): | ||
# NODES | ||
|
||
environmental_fusion = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('prcp_situation_analysis'), | ||
'launch', | ||
'environmental_fusion.launch.py') | ||
) | ||
) | ||
|
||
behavior_planning = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('plan_behavior_planning'), | ||
'launch', | ||
'behavior_planning.launch.py' | ||
) | ||
) | ||
) | ||
|
||
motion_planning = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('plan_motion_planning'), | ||
'launch', | ||
'motion_planning.launch.py' | ||
) | ||
) | ||
) | ||
|
||
planner_lat_lane_follow_ldm = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('plan_lat_lane_follow_ldm'), | ||
'launch', | ||
'plan_lat_lane_follow_ldm.launch.py' | ||
) | ||
) | ||
) | ||
|
||
planner_lon_intelligent_speed_adjust = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('plan_lon_intelligent_speed_adjust'), | ||
'launch', | ||
'plan_lon_intelligent_speed_adjust.launch.py' | ||
) | ||
) | ||
) | ||
|
||
vehicle_control = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('ctrl_vehicle_control'), | ||
'launch', | ||
'ctrl_vehicle_control.launch.py') | ||
) | ||
) | ||
|
||
vehicle_control_lat = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('ctrl_vehicle_control_lqr'), | ||
'launch', | ||
'lat_lon_control_lqr.launch.py') | ||
) | ||
) | ||
|
||
# vehicle_control_long = IncludeLaunchDescription( | ||
# PythonLaunchDescriptionSource( | ||
# join( | ||
# get_package_share_directory('ctrl_vehicle_control_long'), | ||
# 'launch', | ||
# 'ctrl_vehicle_control_long.launch.py') | ||
# ) | ||
# ) | ||
|
||
return LaunchDescription([ | ||
# nodes | ||
environmental_fusion, | ||
behavior_planning, | ||
planner_lat_lane_follow_ldm, | ||
planner_lon_intelligent_speed_adjust, | ||
motion_planning, | ||
vehicle_control, | ||
vehicle_control_lat, | ||
# vehicle_control_long, | ||
|
||
|
||
]) |
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,102 @@ | ||
from launch import LaunchDescription | ||
from launch.actions import IncludeLaunchDescription | ||
from launch.actions import DeclareLaunchArgument | ||
from launch.substitutions import LaunchConfiguration | ||
from launch.conditions import LaunchConfigurationEquals | ||
from launch.launch_description_sources import PythonLaunchDescriptionSource, AnyLaunchDescriptionSource | ||
from ament_index_python.packages import get_package_share_directory | ||
from os.path import join | ||
|
||
|
||
def generate_launch_description(): | ||
# NODES | ||
|
||
environmental_fusion = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('prcp_situation_analysis'), | ||
'launch', | ||
'environmental_fusion.launch.py') | ||
) | ||
) | ||
|
||
behavior_planning = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('plan_behavior_planning'), | ||
'launch', | ||
'behavior_planning.launch.py' | ||
) | ||
) | ||
) | ||
|
||
motion_planning = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('plan_motion_planning'), | ||
'launch', | ||
'motion_planning.launch.py' | ||
) | ||
) | ||
) | ||
|
||
planner_lat_lane_follow_ldm = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('plan_lat_lane_follow_ldm'), | ||
'launch', | ||
'plan_lat_lane_follow_ldm.launch.py' | ||
) | ||
) | ||
) | ||
|
||
planner_lon_intelligent_speed_adjust = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('plan_lon_intelligent_speed_adjust'), | ||
'launch', | ||
'plan_lon_intelligent_speed_adjust.launch.py' | ||
) | ||
) | ||
) | ||
|
||
vehicle_control = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('ctrl_vehicle_control'), | ||
'launch', | ||
'ctrl_vehicle_control.launch.py') | ||
) | ||
) | ||
|
||
vehicle_control_lat = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('ctrl_vehicle_control_lat_pure_p'), | ||
'launch', | ||
'ctrl_vehicle_control_lat_pure_p.launch.py') | ||
) | ||
) | ||
|
||
vehicle_control_long = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
join( | ||
get_package_share_directory('ctrl_vehicle_control_long'), | ||
'launch', | ||
'ctrl_vehicle_control_long.launch.py') | ||
) | ||
) | ||
|
||
return LaunchDescription([ | ||
# nodes | ||
environmental_fusion, | ||
behavior_planning, | ||
planner_lat_lane_follow_ldm, | ||
planner_lon_intelligent_speed_adjust, | ||
motion_planning, | ||
vehicle_control, | ||
vehicle_control_lat, | ||
vehicle_control_long, | ||
|
||
|
||
]) |
Oops, something went wrong.