Re: [Geotools-devel] GeoTools 12.x has been red for the past 10 days

2015-03-02 Thread Jody Garnett
Was able to rsh into osgeo hardware and create a maintenance directory. So this should work now ... -- Jody Garnett On 2 March 2015 at 02:56, Andrea Aime andrea.a...@geo-solutions.it wrote: Hi, the misconfiguration of the docs upload has been breaking the build for the past 10 days (the code

Re: [Geotools-devel] GeoTools 12.x has been red for the past 10 days

2015-03-02 Thread Ben Caradoc-Davies
Feel free to comment out the exit 0 in the two exit shell steps. There might be more to it: the error message suggests that some script on the server might also require adjustment. Kind regards, Ben. On 03/03/15 14:27, Jody Garnett wrote: Was able to rsh into osgeo hardware and create a

[Geotools-devel] PostGIS JDBC issue with sequences

2015-03-02 Thread Lorenzo Pini
Hi all, I think I found a problem in the way the jdbc-postgis module handles sequences. I'm refering to the PostGISDialect.java file My use case is the following: - 2 tables with serial columns as ID (so 2 sequences) - INSERT on the first table triggers and INSERT on the second one - I use

Re: [Geotools-devel] Programmatically Creating Custom Dimension

2015-03-02 Thread Sylvia Charchut
Hey Daniele, I have implemented those methods with my dimension but whenever I start geoserver I am getting multiple bean creation exceptions such as: 02 Mar 08:30:31 ERROR [context.ContextLoader] - Context initialization failed org.springframework.beans.factory.BeanCreationException: Error

[Geotools-devel] GeoTools 12.x has been red for the past 10 days

2015-03-02 Thread Andrea Aime
Hi, the misconfiguration of the docs upload has been breaking the build for the past 10 days (the code is fine however). Shall we remove that part from the build, or modify the site so that it has a maintenance docs? Maybe do the first right now, and the second when there are volunteers? Cheers

Re: [Geotools-devel] axis order blues

2015-03-02 Thread Andrea Aime
On Mon, Mar 2, 2015 at 12:22 PM, Niels Charlier ni...@scitus.be wrote: Jeroen hit the nail on the head... Users want the ability to choose.. but they also want predictability, I would say the latter is even a prerequisite for the first. Axis order behaviour and which db system to use are

[Geotools-devel] [jira] (GEOT-5033) Rotation does not happen around specified AnchorPoint

2015-03-02 Thread Andrea Aime (JIRA)
Title: Message Title Andrea Aime created an issue

Re: [Geotools-devel] Programmatically Creating Custom Dimension

2015-03-02 Thread Daniele Romagnoli
Hi Sylvia, On Fri, Feb 27, 2015 at 10:31 PM, Sylvia Charchut sylvia.charc...@nrlssc.navy.mil wrote: Hello! I have a store that extends AbstractGridFormat and a reader that is a StructuredGridReader, I need a custom dimension for the read parameters other than time and elevation. I've

Re: [Geotools-devel] axis order blues

2015-03-02 Thread Niels Charlier
Jeroen hit the nail on the head... Users want the ability to choose.. but they also want predictability, I would say the latter is even a prerequisite for the first. Axis order behaviour and which db system to use are orthogonal choices for users. Using a different CRS database system should

[Geotools-devel] Build failed in Jenkins: geotools-master #596

2015-03-02 Thread monitor
See http://ares.opengeo.org/jenkins/job/geotools-master/596/changes Changes: [ian.turton] add INSTANCE parameter and allow use of JTDS driver [ian.turton] Formatting [ian.turton] add INSTANCE parameter and allow use of JTDS driver [ian.turton] Formatting [ian.turton] updated documentation

Re: [Geotools-devel] GeoTools 12.x has been red for the past 10 days

2015-03-02 Thread Ben Caradoc-Davies
+1. I recall that 11.x did not upload docs. I inserted exit 0 to temporarily disable the last line of each of the two Execute shell steps and kicked the build. Kind regards, Ben. On 02/03/15 23:56, Andrea Aime wrote: Hi, the misconfiguration of the docs upload has been breaking the build

[Geotools-devel] Reminder: GeoTools / GeoServer Meeting at 17:30 UTC on Tuesday

2015-03-02 Thread Ben Caradoc-Davies
GeoTools / GeoServer committee meeting on Skype at 17:30 UTC on Tuesday: http://www.timeanddate.com/worldclock/fixedtime.html?msg=GeoTools+%2F+GeoServer+Meetingyear=2015month=3day=3hour=17min=30ah=1 -- Ben Caradoc-Davies b...@transient.nz Software Engineer Transient Software http://transient.nz

[Geotools-devel] Jenkins build is back to normal : geotools-12.x #76

2015-03-02 Thread monitor
See http://ares.opengeo.org/jenkins/job/geotools-12.x/76/ -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all

Re: [Geotools-devel] GeoTools 12.x has been red for the past 10 days

2015-03-02 Thread Jody Garnett
So what do I need to do, rsh into docs.geotools.org and create a 12.x directory? -- Jody Garnett On 2 March 2015 at 02:56, Andrea Aime andrea.a...@geo-solutions.it wrote: Hi, the misconfiguration of the docs upload has been breaking the build for the past 10 days (the code is fine however).

[Geotools-devel] Jenkins build is back to normal : geotools-master #597

2015-03-02 Thread monitor
See http://ares.opengeo.org/jenkins/job/geotools-master/597/changes -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub

[Geotools-devel] [jira] (GEOT-5034) AffineProcess ignores TranslateY parameter

2015-03-02 Thread Andrea Aime (JIRA)
Title: Message Title Andrea Aime created an issue

Re: [Geotools-devel] PostGIS JDBC issue with sequences

2015-03-02 Thread Jody Garnett
Your fix sounds about right, good debugging. When making a pull request the difficult part is writing a test case (pull requests without a test case get ignored). Have a look at the database test cases, often they create tables to test against during setup (so you should be able to setup your two

Re: [Geotools-devel] Programmatically Creating Custom Dimension

2015-03-02 Thread Sylvia Charchut
Hey Daniele, I figured out the problem. My custom dimension, Public static final ParameterDescriptorList CUSTOM_DIM = DefaultParameterDescriptor.create(custom_dim,,List.class,null,false); Was never being set and this caused an invocation exception. I now set this dimension in the constructor