Skip to main content

Hello everyone,

I have probably really easy question, yet I struggle to find a anwser I need online. I'm working on a large set of points (about 18k), and I need to find and use in further work points with minimum and maximum X coordinate value.

I have used Coordinate Extractor to have and easy access to X values, then tried to use Statistic Calucator to find min and max, then use Tester, however it didn't work for me.

Is there any other way to do this quite easy?

Try the BoundingBoxAccumulator, you can then use the CoordinateExtractor on the resulting polygon.


@david_r's answer will work, or alternatively use a BoundsExtractor after the BoundingBoxAccumulator.

If you would like to preserver the individual points while still obtaining the min/max values, use an aggregator, boundsExtractor, and then a deaggregator.


you can also use a sorter + sampler after the extractor to select the point with max and by sorting the other way around the min values.


@david_r @jdh @itay

 

Thank you guys so much! All anwsers are more than great, everything is working now

 


Reply