[Geotools-devel] Clarification on DefaultEngineeringDatum constructor?

2008-09-08 Thread Jody Garnett
Hi Martin I am looking at the following constructor and wondering at your intent chances are since this is generics I am just understanding things incorrectly; but it pays to be safe and ask ... The constructor looks like the following ... public DefaultEngineeringDatum(final MapString,?

[Geotools-devel] [jira] Created: (GEOT-2018) Streaming renderer reprojection breaks if Bursa Worlf parameters are missing

2008-09-08 Thread Andrea Aime (JIRA)
Streaming renderer reprojection breaks if Bursa Worlf parameters are missing Key: GEOT-2018 URL: http://jira.codehaus.org/browse/GEOT-2018 Project: GeoTools Issue

Re: [Geotools-devel] Clarification on DefaultEngineeringDatum constructor?

2008-09-08 Thread Martin Desruisseaux
Hello Jody Jody Garnett a écrit : What you have written is parameter where Maps which map to values of the same type can be provided ... examples: - MapString,Integer - you can have any value you want as long as it is an Integer - MapString,String - traditional property file -

Re: [Geotools-devel] ISO Feature Model (fm module) and GeoAPI 2.2

2008-09-08 Thread Jody Garnett
There should be no reason to port the feature model; that has been done. The classes were simplified a bit from what you are looking at (any helper methods were removed for example); and some of the methods were renamed based on user feedback after the FOSS4G2007 code sprint. Other comments

[Geotools-devel] ISO Feature Model (fm module) and GeoAPI 2.2

2008-09-08 Thread Ben Caradoc-Davies
Jody and Gabriel, I have a few questions about the ISO Feature Model implementation (community-schemas/fm). I am porting it to trunk, and therefore GeoAPI 2.2 (from 2.1). I have picked through Justin and Jody's comments on the GeoAPI wiki, but not all is clear. (1) TypeFactory is gone. It did

[Geotools-devel] Using the geotools library in an applet

2008-09-08 Thread mcr
Using the geotools library in an applet causes some warnings to occur in the java console 08.09.2008 10:20:33 org.geotools.factory.Hints scanSystemProperties WARNING: AccessControlException: access denied (java.util.PropertyPermission org.geotools.referencing.epsg-datasource read) [...]

[Geotools-devel] [jira] Created: (GEOT-2019) Oracle datastore fails to handle bbox filter with no crs indication

2008-09-08 Thread Andrea Aime (JIRA)
Oracle datastore fails to handle bbox filter with no crs indication --- Key: GEOT-2019 URL: http://jira.codehaus.org/browse/GEOT-2019 Project: GeoTools Issue Type: Bug

[Geotools-devel] [jira] Created: (GEOT-2020) PreparedFilterToSql fails to extract the native srid if the attribute name is not specified

2008-09-08 Thread Andrea Aime (JIRA)
PreparedFilterToSql fails to extract the native srid if the attribute name is not specified --- Key: GEOT-2020 URL: http://jira.codehaus.org/browse/GEOT-2020

[Geotools-devel] [jira] Created: (GEOT-2021) Let the data source handle the connection isolation

2008-09-08 Thread Andrea Aime (JIRA)
Let the data source handle the connection isolation --- Key: GEOT-2021 URL: http://jira.codehaus.org/browse/GEOT-2021 Project: GeoTools Issue Type: Improvement Components: data h2

Re: [Geotools-devel] Using the geotools library in an applet

2008-09-08 Thread Jody Garnett
You can use GeoTools.init( Hints ) to accomplish the same effect; the library should not be running off and checking system properties but we have not had an applet based user in a while. The other tip is to be sure to use the epsg-wkt plugin when working in an applet. Cheers, Jody mcr wrote:

[Geotools-devel] osgi fun

2008-09-08 Thread Jody Garnett
Just a general heads up that a developer on the uDig list has managed to tame the geotools plugins into OSGi bundles. This was on my list of GeoTools 3 dreams so I am watching it closely. Jody - This SF.Net email is

[Geotools-devel] [jira] Created: (GEOT-2022) ContentDataStore should allow for configurable caching of metadata

2008-09-08 Thread Andrea Aime (JIRA)
ContentDataStore should allow for configurable caching of metadata -- Key: GEOT-2022 URL: http://jira.codehaus.org/browse/GEOT-2022 Project: GeoTools Issue Type: Improvement

Re: [Geotools-devel] Common factory finder synchronization and caching

2008-09-08 Thread Andrea Aime
Martin Desruisseaux ha scritto: Andrea Aime a écrit : I see. Yet, say I cache the results. I can use a (Class, Hints) key for the cache, but what about being notified that a new factory iterator has been added since the last scan? Otherwise the cache would contain stale results, wouldn't it?

Re: [Geotools-devel] Common factory finder synchronization and caching

2008-09-08 Thread Martin Desruisseaux
Andrea Aime a écrit : I looked at FactoryRegistry a bit, are you referring to the needScanForPlugins map? It does not seem to be cleared up when new providers are registered thought... I was thinking about: * modifications count in FactoryIteratorProviders. But it applies to addition or

[Geotools-devel] Comments on How to read a shapefile? and velocity

2008-09-08 Thread Matthias Basler
Hi all, I was just very pleased to find that the user guide's page on shapefile loading has been updated to reflect the new GT2.5 specific features. I find this page (http://docs.codehaus.org/display/GEOTDOC/04+How+to+Read+a+Shapefile) is really useful for beginners to see that GeoTools is

Re: [Geotools-devel] Comments on How to read a shapefile? and velocity

2008-09-08 Thread Jody Garnett
Matthias Basler wrote: I was just very pleased to find that the user guide's page on shapefile loading has been updated to reflect the new GT2.5 specific features. I find this page (http://docs.codehaus.org/display/GEOTDOC/04+How+to+Read+a+Shapefile) is really useful for beginners to see

Re: [Geotools-devel] Comments on How to read a shapefile? and velocity

2008-09-08 Thread Michael Bedward
I've found mvn dependency:analyze very helpful for this sort of question Michael 2008/9/9 Jody Garnett [EMAIL PROTECTED]: Matthias Basler wrote: However I seem unable to find where this dependency is actually used (I searched the source files for velocity both in Explorer and in Eclipse)

Re: [Geotools-devel] Comments on How to read a shapefile? and velocity

2008-09-08 Thread Jody Garnett
Okay I will give that a go after removing velocity I have: Used undeclared dependencies found: org.geotools:gt-api:jar:2.6-SNAPSHOT:compile org.opengis:geoapi:jar:2.2-SNAPSHOT:compile com.vividsolutions:jts:jar:1.9:compile org.geotools:gt-metadata:jar:2.6-SNAPSHOT:compile

Re: [Geotools-devel] Comments on How to read a shapefile? and velocity

2008-09-08 Thread Michael Bedward
I like it Michael Another comment here - I find the tutorials listing the version number again and again to be a bit of a pain; would adding the following at the top of the first project example be okay for people? properties geotools.version2.5-RC2/geotools.version /properties And