Skip to content

Commit

Permalink
fix(lane_change): set lane change parameters to real vehicle environm…
Browse files Browse the repository at this point in the history
…ent (autowarefoundation#761)

Signed-off-by: Fumiya Watanabe <[email protected]>
  • Loading branch information
rej55 authored Jan 9, 2024
1 parent fc6d07f commit 24fd44b
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,37 +57,37 @@

# lane expansion for object filtering
lane_expansion:
left_offset: 0.0 # [m]
right_offset: 0.0 # [m]
left_offset: 1.0 # [m]
right_offset: 1.0 # [m]

# lateral acceleration map
lateral_acceleration:
velocity: [0.0, 4.0, 10.0]
min_values: [0.15, 0.15, 0.15]
max_values: [0.5, 0.5, 0.5]
min_values: [0.4, 0.4, 0.4]
max_values: [0.65, 0.65, 0.65]

# target object
target_object:
car: true
truck: true
bus: true
trailer: true
unknown: true
unknown: false
bicycle: true
motorcycle: true
pedestrian: true

# collision check
enable_prepare_segment_collision_check: false
prepare_segment_ignore_object_velocity_thresh: 0.1 # [m/s]
check_objects_on_current_lanes: true
check_objects_on_other_lanes: true
check_objects_on_current_lanes: false
check_objects_on_other_lanes: false
use_all_predicted_path: true

# lane change regulations
regulation:
crosswalk: false
intersection: false
crosswalk: true
intersection: true
traffic_light: true

# ego vehicle stuck detection
Expand All @@ -107,4 +107,4 @@
finish_judge_lateral_threshold: 0.2 # [m]

# debug
publish_debug_marker: false
publish_debug_marker: true

0 comments on commit 24fd44b

Please sign in to comment.