ダウンロード
最新バージョン : 2.1.0-RELESE
| 2.1.0-RELESE | ダウンロードページ |
OpenRTM@Github
OpenRTM-aist GitHubサイト
ROS
Robot Operating System
Choreonoid
モーションエディタ/シミュレータ
DAQ-Middleware
ネットワーク分散環境でデータ収集用ソフトウェアを容易に構築するためのソフトウェア・フレームワーク
産総研が提供するRTC集
東京オープンソースロボティクス協会
| 2.1.0-RELESE | ダウンロードページ |
OpenRTM-aist GitHubサイト
Robot Operating System
モーションエディタ/シミュレータ
ネットワーク分散環境でデータ収集用ソフトウェアを容易に構築するためのソフトウェア・フレームワーク
産総研が提供するRTC集
東京オープンソースロボティクス協会
Hi,
I just want to share my small utility script with the community.
https://github.com/yosuke/rtshell/blob/master/rtstodot
This utility script outputs the graphviz dot file from the RTSProfile XML file.
Example usage:
-Visualize current configuration to the screen
% rtcryo; rtstodot rtsystem.xml | dot -T xlib
-Output the figure in eps format
% rtstodot rtsystem.xml | dot -T eps > rtsystem.eps
May be useful for the users who prefers commandline configuration of
the RT-System using rtshell, but sometimes needs quick visualization.
Thanks to Geoffrey-san for developing rtshell and rtsprofile library.
Best,
RTSProfile形式のXMLデータからgraphvizのdot形式のデータを生成するユーティリティスクリプトを作りました。
https://github.com/yosuke/rtshell/blob/master/rtstodot
以下のようにして使うことができます。
-rtshellと組み合わせて現在の構成を画面に出力する
% rtcryo; rtstodot rtsystem.xml | dot -T xlib
-eps形式でグラフを出力する
% rtstodot rtsystem.xml | dot -T eps > rtsystem.eps
rtshellを使った環境でコマンドラインベースで開発しているけれども、たまに全体構成をグラフィックで確認したい場合に便利です。