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

#230 in Parser implementations

Download history 553/week @ 2024-12-17 417/week @ 2024-12-24 1672/week @ 2024-12-31 1481/week @ 2025-01-07 2090/week @ 2025-01-14 825/week @ 2025-01-21 1039/week @ 2025-01-28 1389/week @ 2025-02-04 684/week @ 2025-02-11 2230/week @ 2025-02-18 2201/week @ 2025-02-25 5258/week @ 2025-03-04 6110/week @ 2025-03-11 4998/week @ 2025-03-18 3581/week @ 2025-03-25 2969/week @ 2025-04-01

18,927 downloads per month
Used in 28 crates (17 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