Skip to content

Commit

Permalink
custom params changes
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Sanchez <[email protected]>
  • Loading branch information
danielsanchezaran committed Dec 5, 2023
1 parent b30c57a commit e2805c6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions autoware_launch/config/planning/preset/default_preset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ launch:
default: "false"
- arg:
name: launch_avoidance_by_lane_change_module
default: "false"
default: "true"
- arg:
name: launch_dynamic_avoidance_module
default: "false"
Expand All @@ -14,10 +14,10 @@ launch:
default: "true"
- arg:
name: launch_lane_change_right_module
default: "false"
default: "true"
- arg:
name: launch_lane_change_left_module
default: "false"
default: "true"
- arg:
name: launch_external_request_lane_change_right_module
default: "false"
Expand All @@ -26,13 +26,13 @@ launch:
default: "false"
- arg:
name: launch_goal_planner_module
default: "false"
default: "true"
- arg:
name: launch_start_planner_module
default: "false"
default: "true"
- arg:
name: launch_side_shift_module
default: "false"
default: "true"
- arg:
name: use_experimental_lane_change_function
default: "false"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**:
ros__parameters:
verbose: false
verbose: true
max_iteration_num: 100

traffic_light_signal_timeout: 1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
enable_bezier: False
resolution: 0.5 # [m] target distance between sampled path points
previous_path_reuse_points_nb: 2 # number of points reused from the previously generated path (0:no reuse, 1:replan from end of prev path, 2: end and mid of prev path, etc)
target_lengths: [15.0, 20.0, 40.0] # [m] target lengths of the sampled paths
nb_target_lateral_positions: 10 # number of lateral positions to use for sampling (in addition to 0.0 and the current lateral deviation)
target_lateral_positions: [-4.5,-2.5, 0.0, 2.5,4.5] # manual values that are only used if nb_target_lateral_positions = 0
target_lengths: [ 20.0, 40.0] # [m] target lengths of the sampled paths
nb_target_lateral_positions: 0 # number of lateral positions to use for sampling (in addition to 0.0 and the current lateral deviation)
target_lateral_positions: [-2.5, 0.0, 2.5] # manual values that are only used if nb_target_lateral_positions = 0
frenet: # target values for the sampled "lateral deviation over longitudinal position" polynomial
target_lateral_velocities: [-0.5, 0.0, 0.5]
target_lateral_accelerations: [-0.1, 0.0, 0.1]
Expand Down

0 comments on commit e2805c6

Please sign in to comment.