Skip to main content

printscreenI have a few thousand points for which I need to build a line that connects a point to another point or two, based on location.

For example, if a type A point is far from a type B point at a certain distance, then build me a line that connects them.

Do you think this is possible?

Of course I tried with theLineBuilder and could not reach a desired result.

 

I would suggest using the NeighborFinder to find the points as this will get you the distance and coordinates to the point and then use the coordinates to add a vertex using the VertexCreator


Reply