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

rename map_loader (main) #7

Closed
wants to merge 2 commits into from
Closed
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
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.14)
project(map_loader)
project(autoware_map_loader)

find_package(autoware_cmake REQUIRED)
autoware_package()
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef MAP_LOADER__LANELET2_MAP_LOADER_NODE_HPP_
#define MAP_LOADER__LANELET2_MAP_LOADER_NODE_HPP_
#ifndef AUTOWARE_MAP_LOADER__LANELET2_MAP_LOADER_NODE_HPP_
#define AUTOWARE_MAP_LOADER__LANELET2_MAP_LOADER_NODE_HPP_

#include <component_interface_specs/map.hpp>
#include <component_interface_utils/rclcpp.hpp>
Expand Down Expand Up @@ -51,4 +51,4 @@ class Lanelet2MapLoaderNode : public rclcpp::Node
rclcpp::Publisher<LaneletMapBin>::SharedPtr pub_map_bin_;
};

#endif // MAP_LOADER__LANELET2_MAP_LOADER_NODE_HPP_
#endif // AUTOWARE_MAP_LOADER__LANELET2_MAP_LOADER_NODE_HPP_
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef MAP_LOADER__LANELET2_MAP_VISUALIZATION_NODE_HPP_
#define MAP_LOADER__LANELET2_MAP_VISUALIZATION_NODE_HPP_
#ifndef AUTOWARE_MAP_LOADER__LANELET2_MAP_VISUALIZATION_NODE_HPP_
#define AUTOWARE_MAP_LOADER__LANELET2_MAP_VISUALIZATION_NODE_HPP_

#include <rclcpp/rclcpp.hpp>

Expand All @@ -37,4 +37,4 @@ class Lanelet2MapVisualizationNode : public rclcpp::Node
void onMapBin(const autoware_map_msgs::msg::LaneletMapBin::ConstSharedPtr msg);
};

#endif // MAP_LOADER__LANELET2_MAP_VISUALIZATION_NODE_HPP_
#endif // AUTOWARE_MAP_LOADER__LANELET2_MAP_VISUALIZATION_NODE_HPP_
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>map_loader</name>
<name>autoware_map_loader</name>
<version>0.1.0</version>
<description>The map_loader package</description>
<maintainer email="[email protected]">Yamato Ando</maintainer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*
*/

#include "map_loader/lanelet2_map_loader_node.hpp"
#include "autoware_map_loader/lanelet2_map_loader_node.hpp"

#include "lanelet2_local_projector.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*
*/

#include "map_loader/lanelet2_map_visualization_node.hpp"
#include "autoware_map_loader/lanelet2_map_visualization_node.hpp"

#include <lanelet2_extension/regulatory_elements/autoware_traffic_light.hpp>
#include <lanelet2_extension/utility/message_conversion.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
@pytest.mark.launch_test
def generate_test_description():
lanelet2_map_path = os.path.join(
get_package_share_directory("map_loader"), "test/data/test_map.osm"
get_package_share_directory("autoware_map_loader"), "test/data/test_map.osm"
)

lanelet2_map_loader = Node(
package="map_loader",
package="autoware_map_loader",
executable="lanelet2_map_loader",
parameters=[{"lanelet2_map_path": lanelet2_map_path, "center_line_resolution": 5.0}],
)
Expand Down
Loading