@@ -12,7 +12,6 @@ Checks applied to each trajectory:
1212
1313- Data validity: removes trajectories that contain NaNs, non‑finite numbers, inconsistent timestamps, or are too short.
1414- Lane adherence: removes trajectories that will exit all lanelets within the configured look‑ahead time.
15- - Collision risk: removes trajectories whose estimated time‑to‑collision with any predicted object falls below threshold in the look‑ahead time.
1615- Vehicle constraint: removes trajectories that violates vehicle constraints, such as maximum speed, acceleration, and deceleration.
1716
1817After these checks, the remaining trajectories, along with their original ` generator_info ` , are published.
@@ -31,18 +30,16 @@ After these checks, the remaining trajectories, along with their original `gener
3130
3231### Parameters
3332
34- | Parameter name | Type | Default | Description |
35- | --------------------------------------- | ------------ | ------- | ----------------------------------------------------------------------------- |
36- | ` filter_names ` | string array | [ ] | List of safety filter plugins to use (e.g., OutOfLaneFilter, CollisionFilter) |
37- | ` out_of_lane.time ` | double | 3.0 | Look-ahead time [ s] during which the trajectory must stay inside a lane |
38- | ` out_of_lane.min_value ` | double | 0.0 | Minimum distance [ m] from lane boundary |
39- | ` collision.time ` | double | 3.0 | Look-ahead time [ s] for collision search |
40- | ` collision.min_value ` | double | 2.0 | Minimum acceptable time to collision [ s] |
41- | ` vehicle_constraint.max_speed ` | double | 16.7 | Maximum allowed speed [ m/s] |
42- | ` vehicle_constraint.max_acceleration ` | double | 5.0 | Maximum allowed acceleration [ m/s^2] |
43- | ` vehicle_constraint.max_deceleration ` | double | 5.0 | Maximum allowed deceleration; positive but represents deceleration [ m/s^s] |
44- | ` vehicle_constraint.max_steering_angle ` | double | 0.8 | Maximum allowed steering angle [ rad] |
45- | ` vehicle_constraint.max_steering_rate ` | double | 0.3 | Maximum allowed steering rate [ rad/s] |
33+ | Parameter name | Type | Default | Description |
34+ | --------------------------------------- | ------------ | ------- | -------------------------------------------------------------------------- |
35+ | ` filter_names ` | string array | [ ] | List of safety filter plugins to use (e.g., OutOfLaneFilter) |
36+ | ` out_of_lane.time ` | double | 3.0 | Look-ahead time [ s] during which the trajectory must stay inside a lane |
37+ | ` out_of_lane.min_value ` | double | 0.0 | Minimum distance [ m] from lane boundary |
38+ | ` vehicle_constraint.max_speed ` | double | 16.7 | Maximum allowed speed [ m/s] |
39+ | ` vehicle_constraint.max_acceleration ` | double | 5.0 | Maximum allowed acceleration [ m/s^2] |
40+ | ` vehicle_constraint.max_deceleration ` | double | 5.0 | Maximum allowed deceleration; positive but represents deceleration [ m/s^s] |
41+ | ` vehicle_constraint.max_steering_angle ` | double | 0.8 | Maximum allowed steering angle [ rad] |
42+ | ` vehicle_constraint.max_steering_rate ` | double | 0.3 | Maximum allowed steering rate [ rad/s] |
4643
4744## Future Work
4845
0 commit comments