Re: [Geotools-devel] FactoryFinder optimizations

2006-04-07 Thread Martin Desruisseaux
Jody Garnett a écrit : Martin do you know when we deprecated this? org.geotools.factory.FactoryFinder seems to have been deprecated on February 5, 2005 (SVN revision 11136). But I never completed the work of leveraging the proposed FactoryRegistry remplacement outside referencing and coverage

Re: [Geotools-devel] FactoryFinder optimizations

2006-04-06 Thread Jody Garnett
Martin Desruisseaux wrote: Jesse Eichar a écrit : Since we are only interested in the geometry we made a query so that only the geometry attribute is read from disk. As you know this involves creating a new FeatureType, which in turn involves searching for a FeatureTypeFactory using the Facto

Re: [Geotools-devel] FactoryFinder optimizations

2006-04-06 Thread Martin Desruisseaux
Jesse Eichar a écrit : Since we are only interested in the geometry we made a query so that only the geometry attribute is read from disk. As you know this involves creating a new FeatureType, which in turn involves searching for a FeatureTypeFactory using the FactoryFinder service. According

[Geotools-devel] FactoryFinder optimizations

2006-04-06 Thread Jesse Eichar
We are doing a bunch of profiling on some vector data cleaning algorithms. The basic idea is: foreach ( feature: Features in shapefile ){ foreach( neighbor : features close to feature ){ // do some work; (typically pretty quick work) } } Since we are only interested in the geomet