Open ar4development opened 2 years ago
I think your problem has some realtion with me. look https://github.com/carla-simulator/carla/issues/5510. Two map have same (x,y)->(lat,long), but road load direction error. I want to find this issue
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
CARLA version: 0.9.13 Platform/OS: Linux Ubuntu 20.04
Hi community,
I'm developing OpenDrive editor and at some point of development my maps became valid for some basic scenarios (like having no junctions). I tried to import maps from my editor to Carla and noticed the issue.
The issue is that while the geometry of the roads looks fine, the actual positioning of the roads is wrong. I prepared minimal reproducible example which is the following:
Say we have a very trivial map. As trivial as it ever possible:
This map basically consists of a single straight road that has no any heading rotation, starts at {0, 10} and has the length of 40 meters. It also has a single lane width width = 4 m.
I also have python script that draws x and y axes and where the road has to be according its positioning on the map:
That script draws X green axis and Y red axis heading to their positive directions and blue expected boundary of the road.
OBSERVED RESULT
However when I run everything (run Carla, import my map and run my script) I get this result:
It is clearly seen that the road is positioned not where it is assumed to be. Appreciate your help.