Skip to content

Commit 3e6f51d

Browse files
Merge pull request #683 from tier4/beta-to-tier4-main-sync
chore: sync beta branch beta/v0.39 with tier4/main
2 parents 3c8fda1 + a25bfe1 commit 3e6f51d

File tree

33 files changed

+14197
-27
lines changed

33 files changed

+14197
-27
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*.param.yaml
22
*.rviz
3+
**/diagnostic_graph_aggregator/
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**:
2+
ros__parameters:
3+
use_pointcloud: false # use pointcloud as obstacle check
4+
use_dynamic_object: true # use dynamic object as obstacle check
5+
collision_distance: 0.1 # Distance at which an object is determined to have collided with ego [m]
6+
nearby_filter_radius: 5.0 # Radius to filter nearby objects [m]
7+
keep_ignoring_time: 10.0 # Time to keep filtering objects that first appeared in the vicinity
8+
nearby_object_type_filters: # Classes subject to filtering for objects first appearing in the vicinity
9+
filter_car: false
10+
filter_truck: false
11+
filter_bus: false
12+
filter_trailer: false
13+
filter_bicycle: false
14+
filter_motorcycle: false
15+
filter_pedestrian: false
16+
filter_unknown: true

autoware_launch/config/control/trajectory_follower/longitudinal/pid.param.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# state transition
1212
drive_state_stop_dist: 0.5
1313
drive_state_offset_stop_dist: 1.0
14-
stopping_state_stop_dist: 0.5
14+
stopping_state_stop_dist: 0.49
1515
stopped_state_entry_duration_time: 0.1
1616
stopped_state_entry_vel: 0.01
1717
stopped_state_entry_acc: 0.1

autoware_launch/config/localization/ekf_localizer.param.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
enable_yaw_bias_estimation: true
66
predict_frequency: 50.0
77
tf_rate: 50.0
8-
publish_tf: true
98
extend_state_step: 50
109

1110
pose_measurement:

autoware_launch/config/perception/object_recognition/detection/image_projection_based_fusion/fusion_common.param.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
timeout_ms: 70.0
55
match_threshold_ms: 50.0
66
image_buffer_size: 15
7+
point_project_to_unrectified_image: false
78
debug_mode: false
89
filter_scope_min_x: -100.0
910
filter_scope_min_y: -100.0

autoware_launch/config/planning/scenario_planning/common/costmap_generator.param.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
grid_length_y: 70.0
1313
grid_position_x: 0.0
1414
grid_position_y: 0.0
15-
maximum_lidar_height_thres: 0.3
16-
minimum_lidar_height_thres: -2.2
15+
maximum_lidar_height_thres: 2.5 # [m] when use_points is true, ignore points with a z value above this (in the vehicle_frame)
16+
minimum_lidar_height_thres: 0.0 # [m] when use_points is true, ignore points with a z value bellow this (in the vehicle_frame)
1717
use_wayarea: true
1818
use_parkinglot: true
1919
use_objects: true

autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/goal_planner/goal_planner.param.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
maximum_jerk: 1.0
6060
path_priority: "efficient_path" # "efficient_path" or "close_goal"
6161
efficient_path_order: ["SHIFT", "ARC_FORWARD", "ARC_BACKWARD"] # only lane based pull over(exclude freespace parking)
62-
lane_departure_check_expansion_margin: 0.0
62+
lane_departure_check_expansion_margin: 0.2
6363

6464
# shift parking
6565
shift_parking:

autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/lane_change/lane_change.param.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
backward_length_buffer_for_end_of_lane: 3.0 # [m]
88
backward_length_buffer_for_blocking_object: 3.0 # [m]
9+
backward_length_from_intersection: 5.0 # [m]
910

1011
lane_changing_lateral_jerk: 0.5 # [m/s3]
1112

autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/detection_area.param.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
hold_stop_margin_distance: 0.0
1010
distance_to_judge_over_stop_line: 0.5
1111
enable_rtc: false # if true, the scene modules should be approved by (request to cooperate)rtc function. if false, the module can be run without approval from rtc.
12+
suppress_pass_judge_when_stopping: false

autoware_launch/config/planning/scenario_planning/lane_driving/motion_planning/obstacle_cruise_planner/obstacle_cruise_planner.param.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@
4242

4343
outside:
4444
unknown: false
45-
car: true
46-
truck: true
47-
bus: true
48-
trailer: true
49-
motorcycle: true
50-
bicycle: true
51-
pedestrian: true
45+
car: false
46+
truck: false
47+
bus: false
48+
trailer: false
49+
motorcycle: false
50+
bicycle: false
51+
pedestrian: false
5252

5353
cruise_obstacle_type:
5454
inside:

0 commit comments

Comments
 (0)