Skip to content

Commit

Permalink
Template for robot_localization
Browse files Browse the repository at this point in the history
  • Loading branch information
VishGit1234 committed Oct 16, 2024
1 parent 373d28f commit b861ff3
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
8 changes: 7 additions & 1 deletion src/world_modeling/localization/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ endif()
find_package(ament_cmake REQUIRED)
# uncomment the following section in order to fill in
# further dependencies manually.
# find_package(<dependency> REQUIRED)
find_package(robot_localization REQUIRED)

# Copy launch and config files to installation location
install(DIRECTORY
config
launch
DESTINATION share/${PROJECT_NAME})

ament_package()
Empty file.
15 changes: 15 additions & 0 deletions src/world_modeling/localization/launch/localization.launch.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument
from launch.substitutions import LaunchConfiguration
from launch_ros.actions import Node

import os


def generate_launch_description():
"""Launch localization node."""

return LaunchDescription([

])
5 changes: 3 additions & 2 deletions src/world_modeling/localization/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
<package format="3">
<name>localization</name>
<version>0.0.0</version>
<description>TODO: Package description</description>
<maintainer email="e23zhou@uwaterloo.ca">bolty</maintainer>
<description>Localization using robot_localization package</description>
<maintainer email="v3jayaku@watonomous.ca">Vishal Jayakumar</maintainer>
<license>TODO: License declaration</license>

<buildtool_depend>ament_cmake</buildtool_depend>
<depend>robot_localization</depend>


<export>
Expand Down

0 comments on commit b861ff3

Please sign in to comment.