Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [udig-devel] Efficiency problem with filtered Feature Collections

Jesse covered most of it - I see you making some in memory feature collections:
pointFeatCollAux = FeatureCollections.newCollection(); pointFeatCollAux.addAll(pointsSource.getFeatures(dWithinFilter));
To *really* make this fly consider implementing a collection that makes use of one of the JTS spatial indexes; rather then a linear search (which is what the default in memory implementations do).

Cheers,
Jody



Back to the top