This is the readme file of the "Robot Model Tools" Python package.
The modules in the robmodel
package allow to model some aspects of articulated
robots, such as connectivity, numbering scheme of the links, attached frames,
geometry, etc.
The rmt
package implements a command line program that operates on robot
models, such as the URDF or the KinDSL formats. See
rmt --help
for a list of the available sub commands.
You can try the program without installing this repository (although you still need to install the dependencies):
cd src/
./runner.py --help
More information about the packages and the modules of this project is available in the source code.
You can generate e.g. html documentation using pdoc. For example:
cd src/
pdoc --no-show-source -o /tmp/docs/rmt rmt/ robmodel/
pip install rmt
Alternatively, install from the source code:
git clone <repo> rmt # replace <repo> with the right URL
cd rmt/
pip install . # should also install the dependencies available in PyPI
You might want to install the tool and its dependencies in an isolated virtual environment. If so, run the following before the installation procedure:
mkdir myvenv && python3 -m venv myvenv
source myvenv/bin/activate # may need to pick another script depending on your shell
#pip install wheel # may also required to set up the env
The following libraries are used by this project:
Optionally:
textX, for the KinDSL format importer
PyYAML, to import YAML models
Mako, for the export of models to other formats (which involves text generation)
PyGraphviz, required only by the DOT file
generator command of the rmt
tool
Verify your installation by moving to the test/
folder and running
python ur5.py
Copyright © 2019-2022, Marco Frigerio
Released under the BSD 3-clause license. See the LICENSE
file for additional
information.