32 releases

0.9.0 Sep 6, 2024
0.8.0 Nov 6, 2023
0.7.3 Aug 18, 2023
0.7.2 May 10, 2023
0.1.5 May 15, 2017

#232 in Parser implementations

Download history 1302/week @ 2024-11-22 1427/week @ 2024-11-29 2170/week @ 2024-12-06 623/week @ 2024-12-13 522/week @ 2024-12-20 442/week @ 2024-12-27 2125/week @ 2025-01-03 1913/week @ 2025-01-10 1490/week @ 2025-01-17 756/week @ 2025-01-24 1652/week @ 2025-01-31 644/week @ 2025-02-07 997/week @ 2025-02-14 2432/week @ 2025-02-21 3794/week @ 2025-02-28 5671/week @ 2025-03-07

13,143 downloads per month
Used in 27 crates (16 directly)

Apache-2.0

47KB
1K SLoC

urdf-rs

Build Status crates.io docs discord

URDF parser for Rust.

Only link and joint are supported.

Example

You can access urdf elements like below example.

let urdf_robot = urdf_rs::read_file("sample.urdf").unwrap();
let links = urdf_robot.links;
println!("{:?}", links[0].visual[0].origin.xyz);
let joints = urdf_robot.joints;
println!("{:?}", joints[0].origin.xyz);

OpenRR Community

Here is a discord server for OpenRR users and developers.

Dependencies

~4–6MB
~104K SLoC