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

Jan_w's profile - activity

2019-03-25 17:11:19 -0500 received badge  Taxonomist
2017-03-16 09:23:12 -0500 received badge  Great Question (source)
2014-12-20 15:42:31 -0500 received badge  Good Question (source)
2014-11-04 12:39:02 -0500 received badge  Famous Question (source)
2014-07-16 07:07:40 -0500 received badge  Nice Question (source)
2014-06-30 09:03:22 -0500 received badge  Notable Question (source)
2014-06-30 09:03:22 -0500 received badge  Popular Question (source)
2014-05-13 01:38:38 -0500 asked a question converting Collada to URDF

Hi,

we have been trying to convert a human model from collada to urdf. The model was exported from within blender and when we try to use the urdf_collada converter that comes with ros we run into the following error:

jworch@jawo:~/makehuman/export$ rosrun collada_urdf collada_to_urdf test.dae
;; Input file is: test.dae
[ERROR] [1399980598.886927868]: COLLADA error: Trying to load an invalid COLLADA version for this DOM build!
[ERROR] [1399980598.895890126]: COLLADA error: Failed to load XML document from memory
ERROR: Model Parsing the xml failed

Here you can find the collada file we used. Any idea on how to fix this?

2013-07-05 04:43:37 -0500 received badge  Nice Question (source)
2013-07-05 04:43:31 -0500 received badge  Nice Answer (source)
2013-06-24 02:15:37 -0500 commented question Experimental PCL 1.7 with ROS fuerte

I just figured out that you can directly c&p the following into the addressbar of your browser: build.pointclouds.org/overview.html then, below the login button, there is a link "login as guest". That will lead you to an overview of the buildfarm of pcl, where the status of all repos is listed.

2013-06-18 22:31:00 -0500 commented answer Error compiling a package on groovy

Take a look at the answer given by Georg Bartels or the link he posted to an issue at github. Those two "strategies" to solve the problem seems to be the right way to find the path to script.

2013-06-18 22:19:02 -0500 received badge  Self-Learner (source)
2013-06-18 22:19:02 -0500 received badge  Teacher (source)
2013-06-14 02:30:30 -0500 commented question Experimental PCL 1.7 with ROS fuerte

It seems as if the current repository status is not being able to be build. Take a look at (not enough karma...). Google for build.pointclouds.org/overview.html

2013-06-13 04:53:45 -0500 received badge  Famous Question (source)
2013-06-13 04:38:26 -0500 received badge  Student (source)
2013-06-13 02:19:44 -0500 received badge  Scholar (source)
2013-06-13 02:19:41 -0500 received badge  Supporter (source)
2013-04-29 10:47:08 -0500 received badge  Notable Question (source)
2013-03-25 05:44:38 -0500 received badge  Popular Question (source)
2013-03-22 02:45:48 -0500 answered a question Error compiling a package on groovy

I was able to "fix" the problem. The problem is that

rospack find rosbuild

points to

/opt/ros/groovy/share/rosbuild/

but the python script is located in

/opt/ros/groovy/share/ros/core/rosbuild/bin/

So my workaround was to create the bin folder and create a symbolic link to the python script. Is there any better solution than this workaround, because to me it seems not to be the final solution but more a bad hack.

2013-03-21 08:57:45 -0500 asked a question Error compiling a package on groovy

Hi,

when trying to compile a package on groovy I get the following error.

make clean
  make[1]: Entering directory `/home/jworch/groovy_workspace/sandbox/cram_core/3rdparty/alexandria'
  rm -rf alexandria asdf alexandria-20110210.tar.bz2
  rm -f downloaded rospack_nosubdirs installed unpacked
  make[1]: Leaving directory `/home/jworch/groovy_workspace/sandbox/cram_core/3rdparty/alexandria'
  `rospack find rosbuild`/bin/download_checkmd5.py [censored_karma] alexandria-20110210.tar.bz2
  /bin/sh: 1: /opt/ros/groovy/share/rosbuild/bin/download_checkmd5.py: not found
-------------------------------------------------------------------------------}
[ rosmake ] Output from build of package alexandria written to:
[ rosmake ]    /home/jworch/.ros/rosmake/rosmake_output-20130321-194802/alexandria/build_output.log
[rosmake-0] Finished <<< alexandria [FAIL] [ 0.07 seconds ]                                              
[ rosmake ] Halting due to failure in package alexandria.

It it is supposed to pull a tarball which is not held in the package repository. It worked on fuerte and I guess it fails because of the missing *.py file. Is there any substitute on groovy for that file or another/better way to solve this problem? Thanks in advance