Skip to main content
Question

Create lines from Neighbourhoodfinder results

  • May 7, 2020
  • 2 replies
  • 8 views

Hi,

 

 

I try to make lines from points to the nearest polygon. I used Counter as unique ID for the points, and a geometry remover because I thought is necessary to obtain points from the vertex creator. However, it still does create lines. Also the result I want (LineBuilder) are obviously weird. Whats going wrong here?

 

 

Thanks!

 

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

david_r
Celebrity
  • 8392 replies
  • May 7, 2020

You don't need the GeometryRemover, just add two VertexCreators one after another. The first one with Mode set to "Replace with point", the other one to "Add point". You can then also drop the Sorter and the LineBuilder.


  • Author
  • 5 replies
  • May 7, 2020

You don't need the GeometryRemover, just add two VertexCreators one after another. The first one with Mode set to "Replace with point", the other one to "Add point". You can then also drop the Sorter and the LineBuilder.

Amazing! Thank you David!