Skip to content

Commit 48723ad

Browse files
Add Laikago description
1 parent 77870b9 commit 48723ad

File tree

5 files changed

+38
-3
lines changed

5 files changed

+38
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ All notable changes to this project will be documented in this file.
2424
- iCub
2525
- iiwa 14
2626
- JVRC-1
27+
- Laikago
2728
- Minitaur
2829
- Panda
2930
- PR2

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Available robot descriptions ([gallery](https://github.com/stephane-caron/awesom
4949

5050
| Name | Maker | Submodule |
5151
|-----------------------|--------------------| ------------------------------|
52-
| A1 | Unitree Robotics | `a1_description` |
53-
| Aliengo | Unitree Robotics | `aliengo_description` |
52+
| A1 | UNITREE Robotics | `a1_description` |
53+
| Aliengo | UNITREE Robotics | `aliengo_description` |
5454
| Allegro Hand | Wonik Robotics | `allegro_hand_description` |
5555
| ANYmal B | ANYbotics | `anymal_b_description` |
5656
| ANYmal C | ANYbotics | `anymal_c_description` |
@@ -67,6 +67,7 @@ Available robot descriptions ([gallery](https://github.com/stephane-caron/awesom
6767
| iCub | IIT | `icub_description` |
6868
| iiwa | KUKA | `iiwa_description` |
6969
| JVRC-1 | AIST | `jvrc_description` |
70+
| Laikago | UNITREE Robotics | `laikago_descriptoin` |
7071
| Minitaur | Ghost Robotics | `minitaur_description` |
7172
| Panda | Franka Emika | `panda_description` |
7273
| PR2 | Willow Garage | `pr2_description` |

robot_descriptions/_description_names.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"icub_description",
4141
"iiwa_description",
4242
"jvrc_description",
43+
"laikago_description",
4344
"minitaur_description",
4445
"panda_description",
4546
"pr2_description",

robot_descriptions/hyq_description.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# limitations under the License.
1717

1818
"""
19-
Aliengo description.
19+
HyQ description.
2020
"""
2121

2222
from os import path as _path
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
3+
#
4+
# Copyright 2022 Stéphane Caron
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
18+
"""
19+
Aliengo description.
20+
"""
21+
22+
from os import path as _path
23+
24+
from ._cache import clone_to_cache as _clone_to_cache
25+
26+
__working_dir__ = _clone_to_cache("unitree_ros")
27+
28+
PATH: str = _path.join(__working_dir__, "robots", "laikago_description")
29+
30+
MESHES_PATH: str = _path.join(PATH, "meshes")
31+
32+
URDF_PATH: str = _path.join(PATH, "urdf", "laikago.urdf")

0 commit comments

Comments
 (0)