File tree 23 files changed +26
-24
lines changed
control/autoware_lane_departure_checker
include/autoware/lane_departure_checker
autoware_boundary_departure_checker
include/autoware/boundary_departure_checker
autoware_behavior_path_goal_planner_module/include/autoware/behavior_path_goal_planner_module
autoware_behavior_path_planner_common
include/autoware/behavior_path_planner_common/utils/parking_departure
autoware_behavior_path_start_planner_module/include/autoware/behavior_path_start_planner_module
23 files changed +26
-24
lines changed Original file line number Diff line number Diff line change 15
15
#ifndef AUTOWARE__LANE_DEPARTURE_CHECKER__LANE_DEPARTURE_CHECKER_NODE_HPP_
16
16
#define AUTOWARE__LANE_DEPARTURE_CHECKER__LANE_DEPARTURE_CHECKER_NODE_HPP_
17
17
18
- #include " autoware/departure_checker/departure_checker .hpp"
18
+ #include " autoware/boundary_departure_checker/boundary_departure_checker .hpp"
19
19
#include " autoware/lane_departure_checker/parameters.hpp"
20
20
#include " autoware_utils/ros/polling_subscriber.hpp"
21
21
Original file line number Diff line number Diff line change 15
15
#ifndef AUTOWARE__LANE_DEPARTURE_CHECKER__PARAMETERS_HPP_
16
16
#define AUTOWARE__LANE_DEPARTURE_CHECKER__PARAMETERS_HPP_
17
17
18
- #include < autoware/departure_checker /parameters.hpp>
18
+ #include < autoware/boundary_departure_checker /parameters.hpp>
19
19
#include < autoware_utils/geometry/boost_geometry.hpp>
20
20
#include < autoware_utils/geometry/pose_deviation.hpp>
21
21
#include < rclcpp/node.hpp>
Original file line number Diff line number Diff line change 14
14
<buildtool_depend >autoware_cmake</buildtool_depend >
15
15
16
16
<depend >autoware_adapi_v1_msgs</depend >
17
- <depend >autoware_departure_checker </depend >
17
+ <depend >autoware_boundary_departure_checker </depend >
18
18
<depend >autoware_internal_debug_msgs</depend >
19
19
<depend >autoware_lanelet2_extension</depend >
20
20
<depend >autoware_map_msgs</depend >
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.14)
2
- project (autoware_departure_checker )
2
+ project (autoware_boundary_departure_checker )
3
3
4
4
find_package (autoware_cmake REQUIRED)
5
5
autoware_package()
6
6
7
7
ament_auto_add_library(${PROJECT_NAME} SHARED
8
- src/departure_checker .cpp
8
+ src/boundary_departure_checker .cpp
9
9
src/utils.cpp
10
10
)
11
11
Original file line number Diff line number Diff line change 15
15
#ifndef AUTOWARE__DEPARTURE_CHECKER__DEPARTURE_CHECKER_HPP_
16
16
#define AUTOWARE__DEPARTURE_CHECKER__DEPARTURE_CHECKER_HPP_
17
17
18
- #include " autoware/departure_checker /parameters.hpp"
18
+ #include " autoware/boundary_departure_checker /parameters.hpp"
19
19
20
20
#include < autoware_utils/system/time_keeper.hpp>
21
21
#include < autoware_vehicle_info_utils/vehicle_info_utils.hpp>
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
- <name >autoware_departure_checker </name >
4
+ <name >autoware_boundary_departure_checker </name >
5
5
<version >0.43.0</version >
6
- <description >The autoware_departure_checker package</description >
6
+ <description >The autoware_boundary_departure_checker package</description >
7
+ <maintainer email =" alqudah.mohammad@tier4.jp" >Alqudah Mohammad</maintainer >
7
8
<maintainer email =" kyoichi.sugahara@tier4.jp" >Kyoichi Sugahara</maintainer >
8
9
<maintainer email =" makoto.kurihara@tier4.jp" >Makoto Kurihara</maintainer >
10
+ <maintainer email =" takayuki.murooka@tier4.jp" >Takayuki Murooka</maintainer >
9
11
<maintainer email =" zulfaqar.azmi@tier4.jp" >Zulfaqar Azmi</maintainer >
10
12
11
13
<license >Apache License 2.0</license >
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #include " autoware/departure_checker/departure_checker .hpp"
15
+ #include " autoware/boundary_departure_checker/boundary_departure_checker .hpp"
16
16
17
- #include " autoware/departure_checker /utils.hpp"
17
+ #include " autoware/boundary_departure_checker /utils.hpp"
18
18
19
19
#include < autoware_utils/math/normalization.hpp>
20
20
#include < autoware_utils/math/unit_conversion.hpp>
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #include " autoware/departure_checker /utils.hpp"
15
+ #include " autoware/boundary_departure_checker /utils.hpp"
16
16
17
17
#include < autoware/motion_utils/trajectory/trajectory.hpp>
18
18
#include < autoware_utils/geometry/geometry.hpp>
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #include " autoware/departure_checker /utils.hpp"
15
+ #include " autoware/boundary_departure_checker /utils.hpp"
16
16
17
17
#include < Eigen/Core>
18
18
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #include " autoware/departure_checker /utils.hpp"
15
+ #include " autoware/boundary_departure_checker /utils.hpp"
16
16
17
17
#include < Eigen/Core>
18
18
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #include " autoware/departure_checker /utils.hpp"
15
+ #include " autoware/boundary_departure_checker /utils.hpp"
16
16
17
17
#include < Eigen/Core>
18
18
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #include " autoware/departure_checker /utils.hpp"
15
+ #include " autoware/boundary_departure_checker /utils.hpp"
16
16
17
17
#include < Eigen/Core>
18
18
#include < autoware_utils/geometry/boost_geometry.hpp>
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #include " autoware/departure_checker /utils.hpp"
15
+ #include " autoware/boundary_departure_checker /utils.hpp"
16
16
17
17
#include < Eigen/Core>
18
18
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #include " autoware/departure_checker /utils.hpp"
15
+ #include " autoware/boundary_departure_checker /utils.hpp"
16
16
17
17
#include < Eigen/Core>
18
18
Original file line number Diff line number Diff line change 18
18
#include " autoware/behavior_path_goal_planner_module/pull_over_planner/pull_over_planner_base.hpp"
19
19
#include " autoware/behavior_path_planner_common/utils/parking_departure/geometric_parallel_parking.hpp"
20
20
21
- #include < autoware/departure_checker/departure_checker .hpp>
21
+ #include < autoware/boundary_departure_checker/boundary_departure_checker .hpp>
22
22
23
23
#include < autoware_internal_planning_msgs/msg/path_with_lane_id.hpp>
24
24
Original file line number Diff line number Diff line change 17
17
18
18
#include " autoware/behavior_path_goal_planner_module/pull_over_planner/pull_over_planner_base.hpp"
19
19
20
- #include < autoware/departure_checker/departure_checker .hpp>
20
+ #include < autoware/boundary_departure_checker/boundary_departure_checker .hpp>
21
21
22
22
#include < autoware_internal_planning_msgs/msg/path_with_lane_id.hpp>
23
23
Original file line number Diff line number Diff line change 18
18
#include " autoware/behavior_path_goal_planner_module/goal_candidate.hpp"
19
19
#include " autoware/behavior_path_goal_planner_module/pull_over_planner/pull_over_planner_base.hpp"
20
20
21
- #include < autoware/departure_checker/departure_checker .hpp>
21
+ #include < autoware/boundary_departure_checker/boundary_departure_checker .hpp>
22
22
23
23
#include < autoware_internal_planning_msgs/msg/path_with_lane_id.hpp>
24
24
#include < autoware_perception_msgs/msg/predicted_objects.hpp>
Original file line number Diff line number Diff line change 18
18
#include " autoware/behavior_path_planner_common/data_manager.hpp"
19
19
#include " autoware/behavior_path_planner_common/parameters.hpp"
20
20
21
- #include < autoware/departure_checker/departure_checker .hpp>
21
+ #include < autoware/boundary_departure_checker/boundary_departure_checker .hpp>
22
22
23
23
#include < autoware_internal_planning_msgs/msg/path_with_lane_id.hpp>
24
24
#include < autoware_perception_msgs/msg/predicted_objects.hpp>
Original file line number Diff line number Diff line change 44
44
<buildtool_depend >autoware_cmake</buildtool_depend >
45
45
46
46
<depend >autoware_adapi_v1_msgs</depend >
47
- <depend >autoware_departure_checker </depend >
47
+ <depend >autoware_boundary_departure_checker </depend >
48
48
<depend >autoware_freespace_planning_algorithms</depend >
49
49
<depend >autoware_internal_planning_msgs</depend >
50
50
<depend >autoware_interpolation</depend >
Original file line number Diff line number Diff line change 20
20
#include " autoware/behavior_path_start_planner_module/pull_out_planner_base.hpp"
21
21
#include " autoware_utils/system/time_keeper.hpp"
22
22
23
- #include < autoware/departure_checker/departure_checker .hpp>
23
+ #include < autoware/boundary_departure_checker/boundary_departure_checker .hpp>
24
24
25
25
#include < autoware_internal_planning_msgs/msg/path_with_lane_id.hpp>
26
26
Original file line number Diff line number Diff line change 19
19
#include " autoware/behavior_path_start_planner_module/pull_out_planner_base.hpp"
20
20
#include " autoware_utils/system/time_keeper.hpp"
21
21
22
- #include < autoware/departure_checker/departure_checker .hpp>
22
+ #include < autoware/boundary_departure_checker/boundary_departure_checker .hpp>
23
23
24
24
#include < autoware_internal_planning_msgs/msg/path_with_lane_id.hpp>
25
25
You can’t perform that action at this time.
0 commit comments