You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: planning/mapless_architecture/autoware_local_mission_planner/include/autoware/local_mission_planner/mission_planner_node.hpp
+4-1
Original file line number
Diff line number
Diff line change
@@ -248,8 +248,10 @@ class MissionPlannerNode : public rclcpp::Node
248
248
Direction target_lane_ = stay;
249
249
Direction mission_ = stay;
250
250
int retry_attempts_ = 0;
251
+
int recenter_counter_ = 0;
251
252
bool lane_change_trigger_success_ = true;
252
253
Direction lane_change_direction_ = stay;
254
+
float deadline_target_lane_ = 1000;
253
255
254
256
lanelet::BasicPoint2d goal_point_;
255
257
std::vector<int> ego_lane_;
@@ -262,9 +264,10 @@ class MissionPlannerNode : public rclcpp::Node
Copy file name to clipboardexpand all lines: planning/mapless_architecture/autoware_local_mission_planner/param/mission_planner_default.yaml
+1
Original file line number
Diff line number
Diff line change
@@ -5,3 +5,4 @@
5
5
projection_distance_on_goallane: 20.0# [m] projection distance of goal point
6
6
retrigger_attempts_max: 10# number of attempts for triggering a lane change
7
7
local_map_frame: map # Identifier of local map frame. Currently, there is no way to set global ROS params https://github.com/ros2/ros2cli/issues/778 -> This param has to be set in the mission converter also!
8
+
recenter_period: 10# recenter goal point after 10 odometry updates
Copy file name to clipboardexpand all lines: planning/mapless_architecture/autoware_local_mission_planner_common/include/autoware/local_mission_planner_common/helper_functions.hpp
+10
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,16 @@ class Pose2D
66
66
double psi_;
67
67
};
68
68
69
+
classID
70
+
{
71
+
public:
72
+
ID() : value_(0) {}
73
+
unsignedintReturnIDAndIncrement();
74
+
75
+
private:
76
+
unsignedint value_;
77
+
};
78
+
69
79
/**
70
80
* Represent a 2D pose (pose_prev) in a new origin / coordinate system, which
71
81
* is given in relation to the previous coordinate system / origin
Copy file name to clipboardexpand all lines: planning/mapless_architecture/autoware_mission_lane_converter/include/autoware/mission_lane_converter/mission_lane_converter_node.hpp
0 commit comments