Skip to main content
Solved

point

  • July 6, 2023
  • 2 replies
  • 20 views

bayram
Contributor
Forum|alt.badge.img+5

 

Hello everyone

 

i have polygons and there are points in them my question is how can i find the point with smallest value inside the polygon

 

thank you very much to everyone in advance

Best answer by geomancer

  • Use a PointOnAreaOverlayer, and generate a List on output 'Area'. Add the appropriate attributes to the list
  • Use a ListSorter to sort the values in the list numeric and ascending
  • Use a ListIndexer with index 0 to get the values of the attributes of the first list item (the one with the lowest value)

POAO

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

geomancer
Evangelist
Forum|alt.badge.img+58
  • Evangelist
  • 932 replies
  • Best Answer
  • July 6, 2023
  • Use a PointOnAreaOverlayer, and generate a List on output 'Area'. Add the appropriate attributes to the list
  • Use a ListSorter to sort the values in the list numeric and ascending
  • Use a ListIndexer with index 0 to get the values of the attributes of the first list item (the one with the lowest value)

POAO


bayram
Contributor
Forum|alt.badge.img+5
  • Author
  • Contributor
  • 38 replies
  • July 7, 2023
  • Use a PointOnAreaOverlayer, and generate a List on output 'Area'. Add the appropriate attributes to the list
  • Use a ListSorter to sort the values in the list numeric and ascending
  • Use a ListIndexer with index 0 to get the values of the attributes of the first list item (the one with the lowest value)

POAO

thank you very much