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_map_provider/include/autoware/local_map_provider/local_map_provider_node.hpp
-7
Original file line number
Diff line number
Diff line change
@@ -26,20 +26,13 @@ class LocalMapProviderNode : public rclcpp::Node
Copy file name to clipboardexpand all lines: planning/mapless_architecture/autoware_local_mission_planner/include/autoware/local_mission_planner/mission_planner_node.hpp
+7-12
Original file line number
Diff line number
Diff line change
@@ -30,14 +30,15 @@
30
30
namespaceautoware::mapless_architecture
31
31
{
32
32
33
-
//Create Direction data type
33
+
// Direction data type
34
34
typedefint Direction;
35
35
const Direction stay = 0;
36
36
const Direction left = 1;
37
37
const Direction right = 2;
38
38
const Direction left_most = 3;
39
39
const Direction right_most = 4;
40
40
41
+
// Define Lanes
41
42
structLanes
42
43
{
43
44
std::vector<int> ego;
@@ -204,10 +205,6 @@ class MissionPlannerNode : public rclcpp::Node
Copy file name to clipboardexpand all lines: planning/mapless_architecture/autoware_local_mission_planner_common/include/autoware/local_mission_planner_common/helper_functions.hpp
+19-24
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ class Pose2D
30
30
Pose2D();
31
31
Pose2D(constdouble x, constdouble y, constdouble psi = 0.0);
32
32
33
-
//accessors and mutators
33
+
//Accessors and mutators
34
34
doubleget_x() const;
35
35
doubleget_y() const;
36
36
Eigen::Vector2d get_xy() const;
@@ -43,7 +43,7 @@ class Pose2D
43
43
voidset_psi(constdouble psi);
44
44
45
45
private:
46
-
//data variables
46
+
//Data variables
47
47
Eigen::Vector2d xy_;
48
48
double psi_;
49
49
};
@@ -57,9 +57,9 @@ class Pose2D
57
57
* providing the absolute pose of the new cosy as "pose_prev" and the
58
58
* absolute pose of the old/current cosy as "cosy_rel".
59
59
*
60
-
* @param cosy_rel translation and rotation between the current/old cosy and
60
+
* @param cosy_rel Translation and rotation between the current/old cosy and
61
61
* a new/go-to cosy
62
-
* @param pose_prev coordinates and heading of a pose in the current/old cosy
62
+
* @param pose_prev Coordinates and heading of a pose in the current/old cosy
63
63
* @return Pose coordinates and heading of pose_prev in the new cosy
64
64
* (defined by the shift cosy_rel between previous and current cosy)
Copy file name to clipboardexpand all lines: planning/mapless_architecture/autoware_local_road_provider/include/autoware/local_road_provider/local_road_provider_node.hpp
-7
Original file line number
Diff line number
Diff line change
@@ -26,20 +26,13 @@ class LocalRoadProviderNode : public rclcpp::Node
Copy file name to clipboardexpand all lines: planning/mapless_architecture/autoware_mission_lane_converter/include/autoware/mission_lane_converter/mission_lane_converter_node.hpp
+32-19
Original file line number
Diff line number
Diff line change
@@ -27,30 +27,21 @@ class MissionLaneConverterNode : public rclcpp::Node
Copy file name to clipboardexpand all lines: planning/mapless_architecture/autoware_mission_lane_converter/test/include/test_mission_planner_converter.hpp
+6-1
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,13 @@
7
7
namespaceautoware::mapless_architecture
8
8
{
9
9
10
+
/**
11
+
* @brief Test the ConvertMissionToTrajectory() function.
0 commit comments