Implement automatic map serialization and persistence for slam_toolbox: - New SlamToolboxPersistenceNode with auto-save every 5 minutes - Auto-load most recent map on startup - Services: /saltybot/save_map, /saltybot/load_map, /saltybot/list_maps - Export to Nav2-compatible YAML + PGM format - Stores maps in ~/.saltybot-data/maps/ with .posegraph format - Integrates with slam_toolbox serialize/deserialize services Changes: - Created saltybot_mapping/slam_toolbox_persistence.py - Added slam_toolbox_persistence.launch.py - Updated slam.launch.py to include persistence service - Updated CMakeLists.txt to install new executable - Added slam_toolbox dependency to package.xml Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<?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>saltybot_mapping</name>
|
|
<version>0.1.0</version>
|
|
<description>RTAB-Map persistence, multi-session mapping, map management and export for saltybot</description>
|
|
<maintainer email="seb@vayrette.com">seb</maintainer>
|
|
<license>MIT</license>
|
|
|
|
<buildtool_depend>ament_cmake</buildtool_depend>
|
|
<buildtool_depend>ament_cmake_python</buildtool_depend>
|
|
<build_depend>rosidl_default_generators</build_depend>
|
|
<exec_depend>rosidl_default_runtime</exec_depend>
|
|
<member_of_group>rosidl_interface_packages</member_of_group>
|
|
|
|
<depend>rclpy</depend>
|
|
<depend>std_msgs</depend>
|
|
<depend>std_srvs</depend>
|
|
<depend>sensor_msgs</depend>
|
|
<depend>nav_msgs</depend>
|
|
<depend>builtin_interfaces</depend>
|
|
<depend>slam_toolbox</depend>
|
|
|
|
<exec_depend>python3-numpy</exec_depend>
|
|
<exec_depend>python3-yaml</exec_depend>
|
|
|
|
<test_depend>ament_copyright</test_depend>
|
|
<test_depend>ament_flake8</test_depend>
|
|
<test_depend>ament_pep257</test_depend>
|
|
<test_depend>python3-pytest</test_depend>
|
|
|
|
<export>
|
|
<build_type>ament_cmake</build_type>
|
|
</export>
|
|
</package>
|