I have a text file that has a list of points
e.g. ID, X, Y
I then have another file that has a list of lines
e.g. ID, FromPointID, ToPointID
How do I create the lines using the coordinates listed from the points file?
I have a text file that has a list of points
e.g. ID, X, Y
I then have another file that has a list of lines
e.g. ID, FromPointID, ToPointID
How do I create the lines using the coordinates listed from the points file?
Best answer by redgeographics
2 FeatureMergers to join the lines with the points twice (merge attributes with a prefix so you can distinguish the from and to x and y), 2 VertexCreators, the first one to create the from point, the second one to add the to point and that should do it.