Is it possible to create a road at once in shp file data?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello,
I am trying to create a road by using lidar data. I have shp files. Which includes lane, link, node.
I was able to upload data in roadrunner but I didn't find an option to generate road at once by following link.
I can create road and link one by one but it takes time. So My question : Can we generate road at once like we can do scan road in opendrive data?
0 Kommentare
Antworten (1)
KSSV
am 26 Jul. 2021
S = shaperead(filename) ;
P = [[S(:).X]' [S(:).Y]'] ;
plot(P(:,1),P(:,2))
1 Kommentar
Siehe auch
Kategorien
Mehr zu Programmatic Scene and Scenario Management finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!