Open sanskarkatiyar opened 5 years ago
Hi @sanskarkatiyar , indeed that drake
dir in the bazel_bin
was wrong. About the error you are seeing in yaml_to_obj
I'm almost certain this is because terminus generates monolane files, which have been deprecated in Drake and now uses multilane ones (see https://github.com/RobotLocomotion/drake/issues/9196 and https://github.com/RobotLocomotion/drake/tree/master/automotive/maliput/multilane). I can think of two things to do here:
Sorry I can't be of more help that that, we currently not doing any active development on this project.
cc @agalbachicar in case you have any comments on the monolane -> multilane migration path.
I agree with @basicNew , those are good options to integrate monolane
back and use yaml_to_obj
. If you go for the second option, you may be interested in this specific PR where monolane
is removed and this other PR where monolane
is removed from the utility
folder. By reverting those two, I think you will be able to build again and get the monolane OBJs.
A third option would be to do the migration from monolane
yaml files to multilane
equivalents. Here is the multilane
yaml
format which is similar to monolane
's one. AFAIK, there is no documentation for monolane
. A diff between the available samples within the multilane
directory and those in monolane
's would point out the main differences. Some that I can tell from the top of my head are:
[1, 0., 0.]
to keep it backwards compatible.Please let us know if there is anything else we can do to guide your migration.
Thanks a lot, @basicNew and @agalbachicar . Your comments are very helpful.
I also prefer the option to migrate the monolane to multilane and would post on this thread regarding the progress and other issues that come in the way.
I am just starting with drake and terminus, and am having issues with the build process.
I am using Ubuntu 16.04 My directories are setup in the following manner at home:
-git --drake --terminus
I built drake as given in the documentation using Bazel (https://drake.mit.edu/from_source.html) I am facing issues with the path of the Drake installation.
The variable is set manually
DRAKE_DISTRO=/home/sanskar/git/drake
Upon calling the command for OsmCityBuilder, I get the following:
The issue with the path here is that there is no directory called drake inside _bazelbin.
EDIT: Fixed the rndf_vis by building it. And tried modifying the path for the binary of yaml_to_obj through the city_generation_process.py file to get the absolute path where the binary exists. I get the following error now:
I am just getting started so any help would be appreciated.