Skip to main content
Hi

 

 

I have a shp file with a numeric attribute.  I can sort the attribute table on this attribute using a Sorter, but how can I then filter out only the top, say, 1000 features?

 

 

Thanks

 

 

Dag
Hi Dag,

 

 

I would use a Sorter, then a Counter to assign each feature their ranking, then using a Tester to exclude those with a ranking > the number of features desired.

 

 

David
Hi,

 

 

Sorter + Sampler should do the job.
Good call about the Sampler, Itay.

 

 

I agree it is more elegant than the Counter + Tester combination.

Reply