Closed mkquda closed 5 hours ago
Thank you for contributing to the Autoware project!
🚧 If your pull request is in progress, switch it to draft mode.
Please ensure:
Attention: Patch coverage is 73.21429%
with 60 lines
in your changes missing coverage. Please review.
Project coverage is 28.95%. Comparing base (
740d42a
) to head (29604aa
). Report is 20 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Description
Refactor lane change parameters to:
Changes
parameters.hpp
TrajectoryParameters
SafetyParameters
CollisionCheckParameters
lane_change.param.yaml
README
Related links
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
ROS Parameter Changes
Modifications
Trajectory generation parameters
prepare_duration
double
4.0
trajectory.prepare_duration
double
4.0
lane_changing_lateral_jerk
double
0.5
trajectory.lateral_jerk
double
0.5
minimum_lane_changing_velocity
double
2.78
trajectory.min_velocity
double
2.78
longitudinal_acceleration_sampling_num
int
5
trajectory.lon_acc_sampling_num
int
5
lateral_acceleration_sampling_num
int
3
trajectory.lat_acc_sampling_num
int
3
max_longitudinal_acc
double
1.0
trajectory.max_longitudinal_acc
double
1.0
min_longitudinal_acc
double
-1.0
trajectory.min_longitudinal_acc
double
-1.0
Collision check parameters
enable_collision_check_for_prepare_phase.general_lanes
bool
false
collision_check.enable_for_prepare_phase.general_lanes
bool
false
enable_collision_check_for_prepare_phase.intersection
bool
true
collision_check.enable_for_prepare_phase.intersection
bool
true
enable_collision_check_for_prepare_phase.turns
bool
true
collision_check.enable_for_prepare_phase.turns
bool
true
prediction_time_resolution
double
0.5
collision_check.prediction_time_resolution
double
0.5
safety_check.collision_check_yaw_diff_threshold
double
3.1416
collision_check.yaw_diff_threshold
double
3.1416
check_objects_on_current_lanes
bool
false
collision_check.check_current_lanes
bool
false
check_objects_on_other_lanes
bool
false
collision_check.check_other_lanes
bool
false
use_all_predicted_path
bool
false
collision_check.use_all_predicted_paths
bool
false
Effects on system behavior
None.