Skip to content

Commit

Permalink
Renamed tier4_autoware_utils package and function calls to autoware_u…
Browse files Browse the repository at this point in the history
  • Loading branch information
Boluwatife Olabiran authored and privvyledge committed Jun 19, 2024
1 parent 72a730b commit 42e965f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/trajectory_loader/trajectory_loader_node.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include <geometry_msgs/msg/pose.hpp>
#include <nav_msgs/msg/odometry.hpp>
#include <rclcpp/rclcpp.hpp>
#include <tier4_autoware_utils/geometry/geometry.hpp>
#include <autoware/universe_utils/geometry/geometry.hpp>

#include "trajectory_loader/trajectory_loader.hpp"

Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<depend>nav_msgs</depend>
<depend>rclcpp</depend>
<depend>rclcpp_components</depend>
<depend>tier4_autoware_utils</depend>
<depend>autoware_universe_utils</depend>

<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
Expand Down
2 changes: 1 addition & 1 deletion src/trajectory_loader_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Trajectory TrajectoryLoaderNode::createTrajectory(const Points & points)
for (auto & point : points) {
TrajectoryPoint trajectory_point;
Pose pose;
auto q = tier4_autoware_utils::createQuaternionFromYaw(point[2]);
auto q = autoware_universe_utils::createQuaternionFromYaw(point[2]);
pose.position.x = point[0];
pose.position.y = point[1];
pose.position.z = 0.0;
Expand Down

0 comments on commit 42e965f

Please sign in to comment.