Skip to content

Commit

Permalink
feat(autoware_planning_msgs): migrate autoware_auto_planning_msg to a…
Browse files Browse the repository at this point in the history
…utoware_planning_msg (#66)

* add-autoware-planning-msg

Signed-off-by: jack.song <[email protected]>

* add-autoware-planning-msg

Signed-off-by: jack.song <[email protected]>

* add-autoware-planning-msg

Signed-off-by: jack.song <[email protected]>

* add-autoware-planning-msg

Signed-off-by: jack.song <[email protected]>

* add-autoware-planning-msg

Signed-off-by: jack.song <[email protected]>

* delete old port

Signed-off-by: jack.song <[email protected]>

* delete old port

Signed-off-by: jack.song <[email protected]>

* delete old port

Signed-off-by: jack.song <[email protected]>

* delete old port

Signed-off-by: jack.song <[email protected]>

* add-autoware-planning-msg

Signed-off-by: jack.song <[email protected]>

* style(pre-commit): autofix

---------

Signed-off-by: jack.song <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>
  • Loading branch information
3 people authored Aug 2, 2023
1 parent f358f1b commit 62f341d
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 0 deletions.
8 changes: 8 additions & 0 deletions autoware_planning_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,18 @@ rosidl_generate_interfaces(${PROJECT_NAME}
"msg/LaneletRoute.msg"
"msg/LaneletSegment.msg"
"msg/PoseWithUuidStamped.msg"
"msg/Trajectory.msg"
"msg/TrajectoryPoint.msg"
"msg/Path.msg"
"msg/PathPoint.msg"
"msg/PathWithLaneId.msg"
"msg/PathPointWithLaneId.msg"
DEPENDENCIES
geometry_msgs
std_msgs
unique_identifier_msgs
nav_msgs
builtin_interfaces
ADD_LINTER_TESTS
)

Expand Down
4 changes: 4 additions & 0 deletions autoware_planning_msgs/msg/Path.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
std_msgs/Header header
autoware_planning_msgs/PathPoint[] points
geometry_msgs/Point[] left_bound
geometry_msgs/Point[] right_bound
5 changes: 5 additions & 0 deletions autoware_planning_msgs/msg/PathPoint.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
geometry_msgs/Pose pose
float32 longitudinal_velocity_mps
float32 lateral_velocity_mps
float32 heading_rate_rps
bool is_final
2 changes: 2 additions & 0 deletions autoware_planning_msgs/msg/PathPointWithLaneId.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
autoware_planning_msgs/PathPoint point
int64[] lane_ids
4 changes: 4 additions & 0 deletions autoware_planning_msgs/msg/PathWithLaneId.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
std_msgs/Header header
autoware_planning_msgs/PathPointWithLaneId[] points
geometry_msgs/Point[] left_bound
geometry_msgs/Point[] right_bound
3 changes: 3 additions & 0 deletions autoware_planning_msgs/msg/Trajectory.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
uint32 CAPACITY = 10000
std_msgs/Header header
autoware_planning_msgs/TrajectoryPoint[10000] points
8 changes: 8 additions & 0 deletions autoware_planning_msgs/msg/TrajectoryPoint.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
builtin_interfaces/Duration time_from_start
geometry_msgs/Pose pose
float32 longitudinal_velocity_mps
float32 lateral_velocity_mps
float32 acceleration_mps2
float32 heading_rate_rps
float32 front_wheel_angle_rad
float32 rear_wheel_angle_rad
2 changes: 2 additions & 0 deletions autoware_planning_msgs/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@

<build_depend>rosidl_default_generators</build_depend>

<depend>builtin_interfaces</depend>
<depend>geometry_msgs</depend>
<depend>nav_msgs</depend>
<depend>std_msgs</depend>
<depend>unique_identifier_msgs</depend>

Expand Down

0 comments on commit 62f341d

Please sign in to comment.