Hi ,
 
I have a problem regarding GeometryFilterImpl. This doesn't seems to work in geotools 2.3 ( it worked in 2.2 though ).
Thanks in advance.
Here is the code:
 
GeometryFilterImpl filter = ....
FeatureSource fs = ...
FeatureCollection fr = fs.getFeatures(filter);
FeatureIterator fi = fr.features();
ArrayList<Feature> fArr = new ArrayList();
while (fi.hasNext())
{
                Feature f = (Feature) fi.next();
                fArr.add(f);
 }
...
 
Best regards,
B

Reply via email to