Skip to content

Commit 1eca3bd

Browse files
Add JAXON description
1 parent 263e56c commit 1eca3bd

File tree

5 files changed

+38
-0
lines changed

5 files changed

+38
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
66

77
### Added
88

9+
- Description: JAXON
910
- Description: Kinova Gen3
1011
- Description: NEXTAGE
1112

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ Available robot descriptions ([gallery](https://github.com/robot-descriptions/aw
132132
| HyQ | IIT | URDF | `hyq_description` |
133133
| iCub | IIT | URDF | `icub_description` |
134134
| iiwa | KUKA | URDF | `iiwa_description` |
135+
| JAXON | JSK | URDF | `jaxon_description` |
135136
| JVRC-1 | AIST | MJCF | `jvrc_mj_description` |
136137
| JVRC-1 | AIST | URDF | `jvrc_description` |
137138
| Laikago | UNITREE Robotics | MJCF, URDF | `laikago_description` |

robot_descriptions/_descriptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ def has_urdf(self) -> bool:
100100
"hyq_description": Description(Format.URDF),
101101
"icub_description": Description(Format.URDF),
102102
"iiwa_description": Description(Format.URDF),
103+
"jaxon_description": Description(Format.URDF),
103104
"jvrc_description": Description(Format.URDF),
104105
"jvrc_mj_description": Description(Format.MJCF),
105106
"laikago_description": Description(Format.URDF),

robot_descriptions/_repositories.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,11 @@ class Repository:
111111
commit="v1.25.0",
112112
cache_path="icub-models",
113113
),
114+
"jaxon_description": Repository(
115+
url="https://github.com/robot-descriptions/jaxon_description.git",
116+
commit="24f040bcf8c4450005aa6adb4875ed28e54d94ba",
117+
cache_path="jaxon_description",
118+
),
114119
"jvrc_description": Repository(
115120
url="https://github.com/stephane-caron/jvrc_description.git",
116121
commit="v1.1.0",
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
JAXON description.
20+
"""
21+
22+
from os import path as _path
23+
24+
from ._cache import clone_to_cache as _clone_to_cache
25+
26+
REPOSITORY_PATH: str = _clone_to_cache("jaxon_description")
27+
28+
PACKAGE_PATH: str = _path.join(REPOSITORY_PATH)
29+
30+
URDF_PATH: str = _path.join(PACKAGE_PATH, "urdf", "jaxon_jvrc.urdf")

0 commit comments

Comments
 (0)