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

Use moveit_benchmark_resources database instead of one in the tutorial #769

Merged
merged 4 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
3 changes: 0 additions & 3 deletions doc/how_to_guides/persistent_scenes_and_states/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
install(DIRECTORY launch
DESTINATION share/${PROJECT_NAME}
)
install(DIRECTORY data
DESTINATION share/${PROJECT_NAME}
)
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def generate_launch_description():
)

sqlite_database = (
get_package_share_directory("moveit2_tutorials")
+ "/data/kitchen_panda_db.sqlite"
get_package_share_directory("moveit_benchmark_resources")
+ "/databases/panda_test_db.sqlite"
)

print(sqlite_database)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ If the database file does not exist yet, an empty database will be created.
Connecting to the storage backend
---------------------------------

To run the demo you need to install git lfs by running ``git lfs install`` and clone [moveit_benchmark_resources](https://github.com/ros-planning/moveit_benchmark_resources.git) into your workspace.

After choosing the storage plugin and configuring the launch.py file,
run RViz using ::

Expand Down
4 changes: 4 additions & 0 deletions moveit2_tutorials.repos
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ repositories:
type: git
url: https://github.com/ros-planning/moveit_resources
version: ros2
moveit_benchmark_resources:
type: git
url: https://github.com/ros-planning/moveit_benchmark_resources.git
version: main
moveit_msgs:
type: git
url: https://github.com/ros-planning/moveit_msgs
Expand Down