Commit ad79c78 1 parent 0e15671 commit ad79c78 Copy full SHA for ad79c78
File tree 3 files changed +3
-3
lines changed
planning/behavior_path_lane_change_module
include/behavior_path_lane_change_module/utils
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ struct LaneChangeStatus
43
43
LaneChangePath lane_change_path{};
44
44
lanelet::ConstLanelets current_lanes{};
45
45
lanelet::ConstLanelets target_lanes{};
46
- lanelet::ConstLanelet current_lane {};
46
+ lanelet::ConstLanelet ego_lane {};
47
47
std::vector<lanelet::Id> lane_follow_lane_ids{};
48
48
std::vector<lanelet::Id> lane_change_lane_ids{};
49
49
bool is_safe{false };
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ void NormalLaneChange::updateLaneChangeStatus()
64
64
RCLCPP_DEBUG (logger_, " ego's current lane not in route" );
65
65
return ;
66
66
}
67
- status_.current_lane = current_lane;
67
+ status_.ego_lane = current_lane;
68
68
69
69
const auto ego_footprint =
70
70
utils::lane_change::getEgoCurrentFootprint (getEgoPose (), getCommonParam ().vehicle_info );
Original file line number Diff line number Diff line change @@ -1347,7 +1347,7 @@ bool has_overtaking_turn_lane_object(
1347
1347
}
1348
1348
1349
1349
const auto & target_lanes = status.target_lanes ;
1350
- const auto & ego_current_lane = status.current_lane ;
1350
+ const auto & ego_current_lane = status.ego_lane ;
1351
1351
1352
1352
const auto target_lane_poly =
1353
1353
lanelet::utils::combineLaneletsShape (target_lanes).polygon2d ().basicPolygon ();
You can’t perform that action at this time.
0 commit comments