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

refactor(vehicle_info_utils)!: prefix package and namespace with autoware #7353

Merged
merged 33 commits into from
Jun 10, 2024
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
ec0fc46
chore(autoware_vehicle_info_utils): rename header
satoshi-ota Jun 6, 2024
c505486
chore(bpp-common): vehicle info
satoshi-ota Jun 6, 2024
34ac358
chore(path_optimizer): vehicle info
satoshi-ota Jun 6, 2024
bb5df5a
chore(velocity_smoother): vehicle info
satoshi-ota Jun 6, 2024
e20dd60
chore(bvp-common): vehicle info
satoshi-ota Jun 6, 2024
3a33616
chore(static_centerline_generator): vehicle info
satoshi-ota Jun 6, 2024
3d1bb32
chore(obstacle_cruise_planner): vehicle info
satoshi-ota Jun 6, 2024
1d6f603
chore(obstacle_velocity_limiter): vehicle info
satoshi-ota Jun 6, 2024
202f56e
chore(mission_planner): vehicle info
satoshi-ota Jun 6, 2024
1b0382f
chore(obstacle_stop_planner): vehicle info
satoshi-ota Jun 6, 2024
2feb084
chore(planning_validator): vehicle info
satoshi-ota Jun 6, 2024
c2c6528
chore(surround_obstacle_checker): vehicle info
satoshi-ota Jun 6, 2024
624795e
chore(goal_planner): vehicle info
satoshi-ota Jun 6, 2024
e99b1ad
chore(start_planner): vehicle info
satoshi-ota Jun 6, 2024
f3f9242
chore(control_performance_analysis): vehicle info
satoshi-ota Jun 6, 2024
48a7750
chore(lane_departure_checker): vehicle info
satoshi-ota Jun 6, 2024
96fffe1
chore(predicted_path_checker): vehicle info
satoshi-ota Jun 6, 2024
b6e519c
chore(vehicle_cmd_gate): vehicle info
satoshi-ota Jun 7, 2024
1466928
chore(obstacle_collision_checker): vehicle info
satoshi-ota Jun 7, 2024
055c660
chore(operation_mode_transition_manager): vehicle info
satoshi-ota Jun 7, 2024
f8ac1cc
chore(mpc): vehicle info
satoshi-ota Jun 7, 2024
fcf0c4f
chore(control): vehicle info
satoshi-ota Jun 7, 2024
2bcb903
chore(common): vehicle info
satoshi-ota Jun 7, 2024
2288022
chore(perception): vehicle info
satoshi-ota Jun 7, 2024
582f838
chore(evaluator): vehicle info
satoshi-ota Jun 7, 2024
c978b20
chore(freespace): vehicle info
satoshi-ota Jun 7, 2024
0943381
chore(planning): vehicle info
satoshi-ota Jun 7, 2024
6ee7ff6
chore(vehicle): vehicle info
satoshi-ota Jun 7, 2024
f3a532e
chore(simulator): vehicle info
satoshi-ota Jun 7, 2024
6bd0c6a
chore(launch): vehicle info
satoshi-ota Jun 7, 2024
5532350
chore(system): vehicle info
satoshi-ota Jun 7, 2024
9cde7d9
chore(sensing): vehicle info
satoshi-ota Jun 7, 2024
1ded88f
fix(autoware_joy_controller): remove unused deps
satoshi-ota Jun 10, 2024
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
Prev Previous commit
Next Next commit
chore(system): vehicle info
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
satoshi-ota committed Jun 10, 2024
commit 55323505284d2d5429c68786b050bcc24b5f7eed
2 changes: 1 addition & 1 deletion system/default_ad_api/package.xml
Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@
<depend>autoware_adapi_version_msgs</depend>
<depend>autoware_planning_msgs</depend>
<depend>autoware_system_msgs</depend>
<depend>autoware_vehicle_info_utils</depend>
<depend>autoware_vehicle_msgs</depend>
<depend>component_interface_specs</depend>
<depend>component_interface_utils</depend>
@@ -32,7 +33,6 @@
<depend>tier4_api_msgs</depend>
<depend>tier4_control_msgs</depend>
<depend>tier4_system_msgs</depend>
<depend>vehicle_info_util</depend>

<exec_depend>python3-flask</exec_depend>

4 changes: 2 additions & 2 deletions system/default_ad_api/src/vehicle_info.cpp
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@

#include "vehicle_info.hpp"

#include <vehicle_info_util/vehicle_info_util.hpp>
#include <autoware_vehicle_info_utils/vehicle_info_utils.hpp>

namespace
{
@@ -41,7 +41,7 @@ VehicleInfoNode::VehicleInfoNode(const rclcpp::NodeOptions & options)
res->dimensions = dimensions_;
};

const auto vehicle = vehicle_info_util::VehicleInfoUtil(*this).getVehicleInfo();
const auto vehicle = autoware::vehicle_info_utils::VehicleInfoUtils(*this).getVehicleInfo();
dimensions_.wheel_radius = vehicle.wheel_radius_m;
dimensions_.wheel_width = vehicle.wheel_width_m;
dimensions_.wheel_base = vehicle.wheel_base_m;