|
16 | 16 |
|
17 | 17 | // NOLINTBEGIN(readability-identifier-naming)
|
18 | 18 |
|
19 |
| -#include "lanelet2_extension/utility/utilities.hpp" |
| 19 | +#include "autoware_lanelet2_extension/utility/utilities.hpp" |
20 | 20 |
|
21 |
| -#include "lanelet2_extension/utility/message_conversion.hpp" |
22 |
| -#include "lanelet2_extension/utility/query.hpp" |
| 21 | +#include "autoware_lanelet2_extension/utility/message_conversion.hpp" |
| 22 | +#include "autoware_lanelet2_extension/utility/query.hpp" |
23 | 23 |
|
24 | 24 | #include <lanelet2_core/geometry/Lanelet.h>
|
25 | 25 | #include <lanelet2_core/geometry/LineString.h>
|
@@ -435,7 +435,7 @@ lanelet::ConstLanelet getExpandedLanelet(
|
435 | 435 | checkForInversion(orig_right_bound_2d, expanded_right_bound_2d, right_offset);
|
436 | 436 | } catch (const lanelet::GeometryError & e) {
|
437 | 437 | RCLCPP_ERROR_THROTTLE(
|
438 |
| - rclcpp::get_logger("lanelet2_extension"), clock, 1000, |
| 438 | + rclcpp::get_logger("autoware_lanelet2_extension"), clock, 1000, |
439 | 439 | "Fail to expand lanelet. output may be undesired. Lanelet points interval in map data could "
|
440 | 440 | "be too narrow.");
|
441 | 441 | }
|
@@ -572,14 +572,14 @@ bool lineStringToPolygon(
|
572 | 572 | {
|
573 | 573 | if (polygon == nullptr) {
|
574 | 574 | RCLCPP_ERROR_STREAM(
|
575 |
| - rclcpp::get_logger("lanelet2_extension.visualization"), |
| 575 | + rclcpp::get_logger("autoware_lanelet2_extension.visualization"), |
576 | 576 | __func__ << ": polygon is null pointer! Failed to convert to polygon.");
|
577 | 577 | return false;
|
578 | 578 | }
|
579 | 579 | if (linestring.size() < 4) {
|
580 | 580 | if (linestring.size() < 3 || linestring.front().id() == linestring.back().id()) {
|
581 | 581 | RCLCPP_WARN_STREAM(
|
582 |
| - rclcpp::get_logger("lanelet2_extension.visualization"), |
| 582 | + rclcpp::get_logger("autoware_lanelet2_extension.visualization"), |
583 | 583 | __func__ << ": linestring" << linestring.id()
|
584 | 584 | << " must have more than different 3 points! (size is " << linestring.size()
|
585 | 585 | << "). Failed to convert to polygon.");
|
|
0 commit comments