Robotics StackExchange | Archived questions

Is there an Angles package for ROS 2?

In ros 1, there was a useful package called angles.

I was wondering if this was still in ROS 2 Dashing?

I cannot find it with ros2 pkg find or in the share directory.

Was this package replaced by something else?

Thanks!

Asked by zipp39 on 2019-08-22 17:07:29 UTC

Comments

Answers

Angles is released into dashing. ros2 pkg find and your share directory will only indicate packages that you have installed on your system.

The best place to look for packages is on index.ros.org I found it here:

https://index.ros.org/p/angles/github-ros-angles/#dashing

If you're using debian packages you can install it with sudo apt-get install ros-dashing-angles

Asked by tfoote on 2019-08-22 17:55:22 UTC

Comments

I'm always running into this sort of "is there an x package for ros2". I always try to search my package manager to see if it has an 'x' lookin' package availabe, e.g. for for finding ros-dashing-angles on ubuntu you can use sudo apt-cache search angles

Asked by johnconn on 2019-08-23 13:24:08 UTC

Yes, the angles package is available in ROS2.

It's a separate branch named ros2 in the same repository of the ROS code https://github.com/ros/angles/tree/master

Note that it has not been updated in a while, but it was working fine with ROS2 Crystal.

Asked by alsora on 2019-08-22 17:55:39 UTC

Comments