-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(autoware_planning_msgs): migrate autoware_auto_planning_msg to a…
…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
1 parent
f358f1b
commit 62f341d
Showing
8 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
autoware_planning_msgs/PathPoint point | ||
int64[] lane_ids |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters