I'm trying to create a layout of a fab. The data I got is the location of all the control points and informations of map segments. For instance, segment id, type(line or turn), start point id, end point id, direction(turn left or right) and length(length of the path) are the informations I can get from map segments.
Ex: Map segment
segment id: A10_10_11
type: line
start_point_id: A10_10
end_point_id: A10_11
direction: None
length: 9167mm
So my idea is to crate the control points first. Then create AGV path by using the location of control points. I don't know my idea is possible or not. I hope someone can sole the problem or suggest some other ideas to achieve my goal. Thank you!