Solved

point


Badge +4

 

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

icon

Best answer by geomancer 6 July 2023, 16:16

View original

2 replies

Userlevel 5
Badge +40
  • 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

Badge +4
  • 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

Reply