[Geotools-devel] Hints only for Factories?

2007-04-03 Thread Jody Garnett
Please correct me if I am wrong .. it looks like adding a Hint as a value does not work? The following code (part of RenderingHints): > public Object put(Object key, Object value) { > if (!((Key) key).isCompatibleValue(value)) { > throw new IllegalArgumentException(value+ >

[Geotools-devel] [continuum] BUILD FAILURE: Geotools 2.3.x

2007-04-03 Thread Continuum
http://geo.openplans.org:9090/continuum/servlet/continuum/target/ProjectBuild.vm/view/ProjectBuild/id/86/buildId/258 - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the

Re: [Geotools-devel] maven 2.0.6 not so hot

2007-04-03 Thread Justin Deoliveira
Hmm, seems commons-collections can not be found. Perhaps a class loading issue? Cory Horner wrote: > So I was butting heads with "mvn site", and decided to try an upgrade in > the hopes that *maybe* it would fix something. Instead, maven now hangs > when I hit the first test in xml-gml2. > > Not

Re: [Geotools-devel] maven 2.0.6 not so hot

2007-04-03 Thread David Zwiers
Cory, Looks like some of the xml jars are missing -- can you double check your JVM path, your upgrade may have altered the JVM used (some older JVMs have different xml support) David On 4/3/07, Cory Horner <[EMAIL PROTECTED]> wrote: So I was butting heads with "mvn site", and decided to try

Re: [Geotools-devel] "global" Hints and CRS

2007-04-03 Thread Jody Garnett
Martin Desruisseaux wrote: > System properties should not be needed in any way for configuring the > factories. I admit that CRS_DIRECTORY_KEY is an exception. This is a > bug and should be fixed. If this is an urgent issue and if you have a > little bit of time, would you like to fix it? I may

[Geotools-devel] maven 2.0.6 not so hot

2007-04-03 Thread Cory Horner
So I was butting heads with "mvn site", and decided to try an upgrade in the hopes that *maybe* it would fix something. Instead, maven now hangs when I hit the first test in xml-gml2. Note, I also purged my local repository prior to using the new maven. Can anyone confirm? Thanks, Cory.

[Geotools-devel] A sign of success, the rest of GeoTools managing to use Hints

2007-04-03 Thread Jody Garnett
Now that I am sure FactoryRegistry is caching instances the code for the FactoryFinder implementations are a lot more clean ... and with the global Hints actually useful. Here is an example: > private static FeatureCollections instance() { > // depend on CommonFactoryFinder's FactoryRegi

Re: [Geotools-devel] "global" Hints and CRS

2007-04-03 Thread Jody Garnett
Trying this out as an experiment ... running into a problem with GridFormatFinder .. in short I do not see how the Hints make it to the constructor based on the following code: > public Iterator getServiceProviders(final Class category, final Filter > filter, final Hints hints) { > /* >

Re: [Geotools-devel] FeatureTypeFactory - wins! (It escaped CommonFactoryFinder)

2007-04-03 Thread Jody Garnett
Martin Desruisseaux wrote: > Jody Garnett a écrit : >> FeatureTypeFactory (the geotools interface) cannot be used with >> FactoryRegistry and thus made available through CommonFactoryFinder >> ... it is too "stateful". > Note that this is not a blocker. FeatureTypeFactory can be as > statefull a

Re: [Geotools-devel] "global" Hints and CRS

2007-04-03 Thread Jody Garnett
Bleck - you are both right :-( Martin your example will work for referencing, but it is a lot of work to clean up the rest of the library to that standard. I am not sure we can pull it off right now. How about this ... we recognize that GeoTools right now is "single use" and we gather up the as

[Geotools-devel] Making the org.geotools.util.Logging class useful for 'users'

2007-04-03 Thread Farber, Saul (ENV)
Martin (and others!), Using the Logging class from the metadata module, plus Justin's patch to the CommonHandler class, I was able to get log4j logging (via commons-logging) working in geoserver. This is *really* exciting for the geoserver folks, as letting geoserver logging get more flexible

Re: [Geotools-devel] GeoTools 2.4-M1 release

2007-04-03 Thread Jody Garnett
Morning Adrian: We make these releases available so the user community can have an easy way to tell what is going on (other then maven) - also we do have formal projects that would like to depend on monthly releases rather then trunk. With respect to the javadocs ... we make monthly releases so

[Geotools-devel] [jira] Created: (GEOT-1220) Let the 'Logging' class be more useful to geotools library client code

2007-04-03 Thread Saul Farber (JIRA)
Let the 'Logging' class be more useful to geotools library client code -- Key: GEOT-1220 URL: http://jira.codehaus.org/browse/GEOT-1220 Project: GeoTools Issue Type: Improve

Re: [Geotools-devel] "global" Hints and CRS

2007-04-03 Thread Jody Garnett
Martin Desruisseaux wrote: > Jody Garnett a écrit : >> I started in on DataSource proposal today... and Andrea asked the >> sensible question of how does one hook it up. And I am not sure yet >> how multiple valid CRSFactories are chosen CRS is caching a >> DefaultAuthorityFactory - which I

Re: [Geotools-devel] GeoTools 2.4-M1 release

2007-04-03 Thread Cory Horner
Adrian Custer wrote: > (1) Why drop all of unsupported? Will it not be possible to isolate > those parts of unsupported that don't compile or have internal changes > broken everything? Regarding unsupported: only javadocs were dropped for this group. I did this to keep the release going out in a

Re: [Geotools-devel] "global" Hints and CRS

2007-04-03 Thread Martin Desruisseaux
Andrea Aime a écrit : > In Geoserver we do use only the system properties, never the hints. > The issue is, all of Geoserver is using CRS to perform its work, so the > only way to force axis order application wide is to set the system > property. > Is there any other global way to set these hints?

Re: [Geotools-devel] Summer of Code rankings VOTE

2007-04-03 Thread Richard Gould
ABCD On Tue, 2007-04-03 at 01:58 +0200, Simone Giannecchini wrote: > Ciao guys, > I am sorry to have missed the meeting this evening. > > Anyway, my ranking is BCAD. > > > Ciao, > Simone. > > > > > On 4/3/07, Cory Horner <[EMAIL PROTECTED]> wrote: > > Hey guys, > > > > As per the discussion

Re: [Geotools-devel] FeatureTypeFactory - wins! (It escaped CommonFactoryFinder)

2007-04-03 Thread Martin Desruisseaux
Jody Garnett a écrit : > FeatureTypeFactory (the geotools interface) cannot be used with > FactoryRegistry and thus made available through CommonFactoryFinder ... > it is too "stateful". Note that this is not a blocker. FeatureTypeFactory can be as statefull as you want, providing that the stat

Re: [Geotools-devel] "global" Hints and CRS

2007-04-03 Thread Andrea Aime
Martin Desruisseaux ha scritto: > System properties should not be needed in any way for configuring the > factories. > They are just workaround for legacy applications that do not specify their > hints. For example the "org.geotools.referencing.forceXY" system property > sets > the default va

Re: [Geotools-devel] {Spam?} [Geoserver-devel] Improved performance and JAI docs, can someone check?

2007-04-03 Thread Andrea Aime
Gabriel Roldán ha scritto: > On Tuesday 03 April 2007 14:54, Andrea Aime wrote: >> Hi all, >> I've tried to improve the pages about running Geoserver >> in a production environment from the perspective of >> performance and JAI. >> >> Can someone have a look at them? >> http://docs.codehaus.org/dis

Re: [Geotools-devel] Summer of Code rankings VOTE

2007-04-03 Thread Martin Desruisseaux
Cory Horner a écrit : > A) New Transformation Algorithms for GeoTools and uDig > B) Plugins for multidimensional raster data sources > C) 3D Rendering Pipeline for GeoTools > D) 3-Dimensional Rendering Pipeline Component for GIS Servers BACD (not sure what the difference is between C and D however

Re: [Geotools-devel] "global" Hints and CRS

2007-04-03 Thread Martin Desruisseaux
Jody Garnett a écrit : > I am not sure yet how multiple valid CRSFactories are chosen The CRS > utility class is caching a DefaultAuthorityFactory - which I eventually > will need to get Hints into that process. CRS is just a set of convenience methods. If we complexify it too much, it will

[Geotools-devel] [continuum] BUILD FAILURE: Geotools 2.3.x

2007-04-03 Thread Continuum
http://geo.openplans.org:9090/continuum/servlet/continuum/target/ProjectBuild.vm/view/ProjectBuild/id/86/buildId/247 - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the

Re: [Geotools-devel] GeoTools 2.4-M1 release

2007-04-03 Thread Adrian Custer
On Fri, 2007-03-30 at 17:17 -0700, Cory Horner wrote: > Hey guys, > > Here is this month's release: > > http://docs.codehaus.org/display/GEOTOOLS/2.4-M1 > > Everything is there, but the unsupported directory was cut from the > javadocs due to errors. Hey, Thanks for doing the work. However, I