Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.

- Description: AgileX PiPER (MJCF)
- Description: AgileX PiPER (URDF)
- Description: Robot Soccer Kit
- Description: Robotiq 2F-85 (MJCF V4) (thanks to @peterdavidfagan)

### Fixed
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ Available robot descriptions ([gallery](https://github.com/robot-descriptions/aw
- [Humanoids](#humanoids)
- [Mobile manipulators](#mobile-manipulators)
- [Quadrupeds](#quadrupeds)
- [Wheeled](#wheeled)

The DOF column denotes the number of actuated degrees of freedom.

Expand Down Expand Up @@ -278,6 +279,12 @@ The DOF column denotes the number of actuated degrees of freedom.
| `minitaur_description` | Minitaur | Ghost Robotics | 16 | URDF |
| `solo_description` | Solo | ODRI | 12 | URDF |

### Wheeled

| Name | Robot | Maker | Format | License |
|-------------------------------|-----------------------|--------------------------|------------|---------|
| `rsk_description` | RSK Omnidirectional | Robot Soccer Kit | URDF | MIT |

## Contributing

New robot descriptions are welcome! Check out the [guidelines](https://github.com/robot-descriptions/robot_descriptions.py/tree/main/CONTRIBUTING.md) then open a PR.
Expand Down
1 change: 1 addition & 0 deletions robot_descriptions/_descriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ def has_urdf(self) -> bool:
"robotiq_2f85_mj_description": Description(Format.MJCF),
"robotiq_2f85_v4_mj_description": Description(Format.MJCF),
"romeo_description": Description(Format.URDF),
"rsk_description": Description(Format.URDF),
"sawyer_mj_description": Description(Format.MJCF),
"shadow_hand_mj_description": Description(Format.MJCF),
"simple_humanoid_description": Description(Format.URDF),
Expand Down
5 changes: 5 additions & 0 deletions robot_descriptions/_repositories.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,11 @@ class Repository:
commit="54cdeb1dbfb529b79ae3185a53e24fce26e1b74b",
cache_path="nasa-urdf-robots",
),
"onshape-to-robot-examples": Repository(
url="https://github.com/Rhoban/onshape-to-robot-examples.git",
commit="911abb069c781e4c717c10643b975f55f7a64fe8",
cache_path="onshape-to-robot-examples",
),
"pepper_description": Repository(
url="https://github.com/jrl-umi3218/pepper_description.git",
commit="cd9715bb5df7ad57445d953db7b1924255305944",
Expand Down
21 changes: 21 additions & 0 deletions robot_descriptions/rsk_description.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# SPDX-License-Identifier: Apache-2.0
# Copyright 2025 Inria

"""RSK omnidirection robot description."""

from os import getenv as _getenv
from os import path as _path

from ._cache import clone_to_cache as _clone_to_cache

REPOSITORY_PATH: str = _clone_to_cache(
"onshape-to-robot-examples",
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
)

PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "rsk_urdf")

URDF_PATH: str = _path.join(PACKAGE_PATH, "robot.urdf")