Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
example-robot-data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gepetto
example-robot-data
Commits
1a828c6a
Commit
1a828c6a
authored
3 years ago
by
Guilhem Saurel
Browse files
Options
Downloads
Patches
Plain Diff
tiago_dual: add loader & unit-test
parent
dfacc5aa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
python/example_robot_data/robots_loader.py
+5
-0
5 additions, 0 deletions
python/example_robot_data/robots_loader.py
unittest/test_load.py
+3
-0
3 additions, 0 deletions
unittest/test_load.py
with
8 additions
and
0 deletions
python/example_robot_data/robots_loader.py
+
5
−
0
View file @
1a828c6a
...
...
@@ -283,6 +283,10 @@ class TiagoLoader(RobotLoader):
urdf_filename
=
"
tiago.urdf
"
class
TiagoDualLoader
(
TiagoLoader
):
urdf_filename
=
"
tiago_dual.urdf
"
class
TiagoNoHandLoader
(
TiagoLoader
):
urdf_filename
=
"
tiago_no_hand.urdf
"
...
...
@@ -485,6 +489,7 @@ ROBOTS = {
'
talos_full
'
:
TalosFullLoader
,
'
talos_full_box
'
:
TalosFullBoxLoader
,
'
tiago
'
:
TiagoLoader
,
'
tiago_dual
'
:
TiagoDualLoader
,
'
tiago_no_hand
'
:
TiagoNoHandLoader
,
'
ur3
'
:
UR5Loader
,
'
ur3_gripper
'
:
UR3GripperLoader
,
...
...
This diff is collapsed.
Click to expand it.
unittest/test_load.py
+
3
−
0
View file @
1a828c6a
...
...
@@ -100,6 +100,9 @@ class RobotTestCase(unittest.TestCase):
def
test_tiago
(
self
):
self
.
check
(
'
tiago
'
,
50
,
48
)
def
test_tiago_dual
(
self
):
self
.
check
(
'
tiago_dual
'
,
111
,
101
)
def
test_tiago_no_hand
(
self
):
self
.
check
(
'
tiago_no_hand
'
,
14
,
12
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment