ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

ivaughn's profile - activity

2023-03-16 09:47:59 -0500 received badge  Good Question (source)
2022-12-08 08:52:12 -0500 marked best answer Convience methods to convert rospy.Time to datetime.datetime

I couldn't find any convenience methods to convert rospy.Time to datetime.datetime. Timezones and other issues make this less trivial than it appears, especially for novice users.

Am I missing something obvious, or is this a textbook case of "nope, not done yet, please submit a patch?"

Thanks!

2020-12-23 13:05:51 -0500 received badge  Famous Question (source)
2019-11-06 10:15:25 -0500 received badge  Notable Question (source)
2019-08-01 19:42:37 -0500 received badge  Popular Question (source)
2019-05-20 01:35:42 -0500 marked best answer How does catkin tell if a dependency is a system or ROS dependency?

I'm trying to get dependency tracking in our package.xml files squared away, but ROS seems to be trying to treat libeigen3-dev as a ROS package rather than a system dependency.

Specifically, I've got a package that depends on Eigen, the well-known header-only linear algebra library. Sounds like a build dependency, so:

<build_depend>libeigen3-dev</build_depend>
<export_build_depend>libeigen3-dev</export_build_depend>

Here's what happens when I run rosdep check:


    ~/sentry_dev_ws$ rosdep check --from-paths src --ignore-src
All system dependencies have been satisified
ERROR[ds_sim]: Cannot locate rosdep definition for [libeigen3-dev]
    rosdep key : libeigen3-dev
    OS name    : ubuntu
    OS version : xenial
    Data: no data

Changing the dependency name to "eigen" fixes this, but eigen isn't an ubuntu apt package name. I have the same issue with google protobuf, and will probably have it again in the future.

I have a suspician catkin's packaging tools will prove very poweful. Just gotta figure them out first.

Thanks!

2019-05-16 11:14:54 -0500 asked a question referencing catkin variables when writing env_hooks

referencing catkin variables when writing env_hooks Is it possible to reference catkin variables when write env_hook tem

2019-03-05 14:51:53 -0500 marked best answer Discover system dependencies for a workspace

Is there a clever way to recover all system dependencies for the set of packages in a workspace? Something like rosdep resolve, but that works on ROS packages in a catkin workspace?

2019-03-05 14:50:45 -0500 received badge  Famous Question (source)
2019-03-05 14:50:45 -0500 received badge  Notable Question (source)
2019-02-01 13:15:00 -0500 answered a question Getting ROS_DEBUG during startup

Ok, I found an answer. You have to create a temporary logger config file that sets the requested log debug level. Here

2019-02-01 12:25:31 -0500 asked a question Getting ROS_DEBUG during startup

Getting ROS_DEBUG during startup Is it possible to set the debug level during node initialization? I'm trying to debug

2018-10-11 04:23:38 -0500 received badge  Nice Question (source)
2018-09-05 12:11:59 -0500 received badge  Famous Question (source)
2018-09-05 12:11:59 -0500 received badge  Notable Question (source)
2018-08-31 09:36:46 -0500 received badge  Famous Question (source)
2018-08-31 09:36:46 -0500 received badge  Notable Question (source)
2018-08-31 09:36:46 -0500 received badge  Popular Question (source)
2018-07-03 20:11:27 -0500 received badge  Famous Question (source)
2018-06-24 12:33:24 -0500 received badge  Famous Question (source)
2018-03-26 14:38:02 -0500 asked a question Convience methods to convert rospy.Time to datetime.datetime

Convience methods to convert rospy.Time to datetime.datetime I couldn't find any convenience methods to convert rospy.Ti

2018-03-08 08:34:56 -0500 received badge  Nice Answer (source)
2018-02-27 09:14:13 -0500 edited answer How does catkin tell if a dependency is a system or ROS dependency?

The tutorial linked above at http://wiki.ros.org/ROS/Tutorials/rosdep originally motivated this question. It has been p

2018-02-27 08:43:44 -0500 received badge  Notable Question (source)
2018-02-27 08:43:43 -0500 edited answer How does catkin tell if a dependency is a system or ROS dependency?

The tutorial linked above at http://wiki.ros.org/ROS/Tutorials/rosdep originally motivated this question. It has been p

2018-02-27 08:36:34 -0500 answered a question How does catkin tell if a dependency is a system or ROS dependency?

The tutorial linked above at http://wiki.ros.org/ROS/Tutorials/rosdep originally motivated this question. It has been a

2018-02-27 08:27:04 -0500 commented answer How does catkin tell if a dependency is a system or ROS dependency?

That's all great, the logic makes sense, etc. But the rosdep tutorial linked does not solve the problem I have. If I h

2018-02-27 08:26:19 -0500 commented answer How does catkin tell if a dependency is a system or ROS dependency?

That's all great, the logic makes sense, etc. But the rosdep tutorial linked does not solve the problem I have. If I h

2018-02-23 03:58:55 -0500 received badge  Popular Question (source)
2018-02-22 08:41:16 -0500 asked a question How does catkin tell if a dependency is a system or ROS dependency?

How does catkin tell if a dependency is a system or ROS dependency? I'm trying to get dependency tracking in our package

2018-02-15 09:42:56 -0500 received badge  Notable Question (source)
2018-02-15 08:32:46 -0500 commented question Is there an efficient way to get static transforms from tf

Yeah, we noticed that. It seemed interesting that /tf_static is its own thing and but has no public API just static tra

2018-02-14 21:56:01 -0500 received badge  Popular Question (source)
2018-02-14 16:34:04 -0500 received badge  Student (source)
2018-02-14 14:13:19 -0500 received badge  Popular Question (source)
2018-02-14 13:39:30 -0500 asked a question Is there an efficient way to get static transforms from tf

Is there an efficient way to get static transforms from tf We are using TF to manage coordinate frames on a mostly-rigid

2018-01-20 13:34:42 -0500 received badge  Popular Question (source)
2018-01-19 08:59:12 -0500 asked a question Discover system dependencies for a workspace

Discover system dependencies for a workspace Is there a clever way to recover all system dependencies for the set of pac

2018-01-13 10:11:51 -0500 received badge  Popular Question (source)
2018-01-11 12:24:26 -0500 commented question catkin_make, verbosity, and bad package.xml files

Oh interesting. After digging through all the package.xml files I did resolve that specific build bug-- nothing that in

2018-01-11 12:07:24 -0500 edited question catkin_make, verbosity, and bad package.xml files

catkin_make, verbosity, and bad package.xml files Hello, When running catkin_make I get an error like the following: &

2018-01-11 12:06:35 -0500 edited question catkin_make, verbosity, and bad package.xml files

catkin_make, verbosity, and bad package.xml files Hello, When running catkin_make I get an error like the following: &

2018-01-11 12:06:09 -0500 asked a question catkin_make, verbosity, and bad package.xml files

catkin_make, verbosity, and bad package.xml files Hello, When running catkin_make I get an error like the following: I

2018-01-10 12:29:28 -0500 received badge  Teacher (source)
2018-01-10 08:33:22 -0500 received badge  Enthusiast
2018-01-09 17:50:02 -0500 edited answer Problems with findpackage in cmake

As has been mentioned in several of the comments, using CLion requires building with cmake directly rather than through

2018-01-09 17:50:02 -0500 received badge  Editor (source)
2018-01-09 17:23:22 -0500 edited answer Problems with findpackage in cmake

As has been mentioned in several of the comments, using CLion requires building with cmake directly rather than through

2018-01-09 17:20:08 -0500 answered a question Problems with findpackage in cmake

As has been mentioned in several of the comments, using CLion requires building with cmake directly rather than through