Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(autoware_path_optimizer)!: tier4_debug_msgs changed to autoware-internal_debug_msgs in autoware_path_optimizer #9907

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#ifndef AUTOWARE__PATH_OPTIMIZER__TYPE_ALIAS_HPP_
#define AUTOWARE__PATH_OPTIMIZER__TYPE_ALIAS_HPP_

#include "autoware_internal_debug_msgs/msg/float64_stamped.hpp"
#include "autoware_internal_debug_msgs/msg/string_stamped.hpp"
#include "autoware_planning_msgs/msg/path.hpp"
#include "autoware_planning_msgs/msg/path_point.hpp"
Expand All @@ -25,7 +26,6 @@
#include "geometry_msgs/msg/twist.hpp"
#include "nav_msgs/msg/odometry.hpp"
#include "std_msgs/msg/header.hpp"
#include "tier4_debug_msgs/msg/float64_stamped.hpp"
#include "visualization_msgs/msg/marker_array.hpp"

namespace autoware::path_optimizer
Expand All @@ -43,8 +43,8 @@ using nav_msgs::msg::Odometry;
using visualization_msgs::msg::Marker;
using visualization_msgs::msg::MarkerArray;
// debug
using autoware_internal_debug_msgs::msg::Float64Stamped;
using autoware_internal_debug_msgs::msg::StringStamped;
using tier4_debug_msgs::msg::Float64Stamped;
} // namespace autoware::path_optimizer

#endif // AUTOWARE__PATH_OPTIMIZER__TYPE_ALIAS_HPP_
1 change: 0 additions & 1 deletion planning/autoware_path_optimizer/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
<depend>rclcpp_components</depend>
<depend>std_msgs</depend>
<depend>tf2_ros</depend>
<depend>tier4_debug_msgs</depend>
<depend>tier4_planning_msgs</depend>
<depend>visualization_msgs</depend>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
import argparse
from collections import deque

from autoware_internal_debug_msgs.msg import StringStamped
import matplotlib.pyplot as plt
import rclpy
from rclpy.node import Node
from tier4_debug_msgs.msg import StringStamped


class CalculationCostAnalyzer(Node):
Expand Down
Loading