Re: [Geotools-devel] [Geoserver-devel] Meeting minutes from GeoTools/GeoServer meeting May 28 2012

2012-06-04 Thread Ben Caradoc-Davies
Justin, as the owner of the existing geotools and geoserver accounts, these requests should probably come from you. You also know a lot more about git and github than I do, so I would be more comfortable if you led on this one. Will you have time? Kind regards, Ben. On 01/06/12 21:50, Justin

Re: [Geotools-devel] Missing srsName from geometry

2012-06-04 Thread Rini.Angreani
Hi Brett, In AbstractGeometryTypeBinding: public Object getProperty(Object object, QName name) throws Exception { Geometry geometry = (Geometry) object; if ("srsName".equals(name.getLocalPart())) { CoordinateReferenceSystem crs = GML3EncodingUtils.getCRS(ge

[Geotools-devel] [jira] (GEOT-4166) support arithmetic filters without intermediate conversions

2012-06-04 Thread Justin Deoliveira (JIRA)
Justin De

[Geotools-devel] [jira] (GEOT-4165) JDBCDataStore getSchema produces NPE rather than use Transaction.AUTO_COMMIT

2012-06-04 Thread Jody Garnett (JIRA)
Jody Garn

[Geotools-devel] ComplexFeature Parsing & Building Support

2012-06-04 Thread Adam.Brown
Hi all, I want to add support for complex feature parsing to GeoTools. It will involve some new API additions hence I'm following the change proposal guide. http://jira.codehaus.org/browse/GEOT-4147 http://docs.codehaus.org/pages/viewpage.action?pageId=229736622 This will involve the introduct

Re: [Geotools-devel] [Geoserver-devel] 3D geometries & property files

2012-06-04 Thread Niels Charlier
Doh!!! Of course, I saw this issue already. What I am trying to do should actually already work with latest version. I'll found out soon... Cheers Niels On 04/06/12 18:32, Justin Deoliveira wrote: This should have been fixed recently on trunk. https://jira.codehaus.org/browse/GEOT-4136 On Mon

Re: [Geotools-devel] [Geoserver-devel] 3D geometries & property files

2012-06-04 Thread Justin Deoliveira
This should have been fixed recently on trunk. https://jira.codehaus.org/browse/GEOT-4136 On Mon, Jun 4, 2012 at 9:49 AM, Niels Charlier wrote: > The problem is actually not with wtkwriter but with the GML encoder. > It outputs 2 dimensions and I need to get all three. That's a problem > for WF

Re: [Geotools-devel] [Geoserver-devel] 3D geometries & property files

2012-06-04 Thread Niels Charlier
The problem is actually not with wtkwriter but with the GML encoder. It outputs 2 dimensions and I need to get all three. That's a problem for WFS supporting 3 dimensions. For example, in PointTypeBinding I see the code: if ("pos".equals(name.getLocalPart())) { Point point = (Point)

Re: [Geotools-devel] [Geoserver-devel] 3D geometries & property files

2012-06-04 Thread Andrea Aime
On Mon, Jun 4, 2012 at 3:16 PM, Niels Charlier wrote: > I see now what the problem was: the Z coordinate is indeed populated, but it > is not outputted by WTKWriter. Which is a problem for WFS. The WKTWriter can write 3d, but you have to tell it so when constructing it: new WKTWriter(3) I guess

Re: [Geotools-devel] [Geoserver-devel] 3D geometries & property files

2012-06-04 Thread Niels Charlier
I see now what the problem was: the Z coordinate is indeed populated, but it is not outputted by WTKWriter. Which is a problem for WFS. On 30/05/12 23:40, Martin Davis wrote: The JTS WKTReader does respect Z ordinates in WKT, and will populate the Z field in the Coordinate objects created. Thi

Re: [Geotools-devel] PostgreSQL/PostGIS and 3D Geometries

2012-06-04 Thread Andrea Aime
On Mon, Jun 4, 2012 at 12:05 PM, Brett Walker wrote: > >>  >   I see in BasicSQLDialect that you look into the z of teh geometry to >> determine the dimension, >>  >   imho this should be done the other way, just like we do with srid: a >> geometry is saved as >>  >   3d if the database accepts

[Geotools-devel] GeoTools 2.7.5 released

2012-06-04 Thread Andrea Aime
The GeoTools community is pleased to announce the release of GeoTools 2.7.5, available for download from souwithout being a core developerrce forgewithout being a core developer: * geotools-2.7.5-bin.zip * geotools-2.7.5-doc.zip * geotools-2.7.5-userguide.zip * geotools-2.7.5-project.zip Those usin

Re: [Geotools-devel] PostgreSQL/PostGIS and 3D Geometries

2012-06-04 Thread Brett Walker
> > I see in BasicSQLDialect that you look into the z of teh geometry to > determine the dimension, > > imho this should be done the other way, just like we do with srid: a > geometry is saved as > > 3d if the database accepts 3d data, not the other way around. > > If a 2d geometry i

Re: [Geotools-devel] PostgreSQL/PostGIS and 3D Geometries

2012-06-04 Thread Andrea Aime
On Mon, Jun 4, 2012 at 9:32 AM, Brett Walker wrote: > Hi Andrea, > > ** ** > > The formatting changes I made were necessary because I placed large blocks > of code within a try/finally block. To preserve readability I needed to > indent the code. If I have done this wrong I apologise. If it is

Re: [Geotools-devel] PostgreSQL/PostGIS and 3D Geometries

2012-06-04 Thread Brett Walker
Hi Andrea, The formatting changes I made were necessary because I placed large blocks of code within a try/finally block. To preserve readability I needed to indent the code. If I have done this wrong I apologise. If it is just that file with no try/finally block requiring an indent then it is

Re: [Geotools-devel] Wfs data store: testing request validity

2012-06-04 Thread Andrea Aime
On Mon, Jun 4, 2012 at 2:39 AM, Gabriel Roldan wrote: > > > On Sat, Jun 2, 2012 at 4:15 AM, Andrea Aime > wrote: > >> On Fri, Jun 1, 2012 at 10:32 PM, Gabriel Roldan wrote: >> >>> I think one way would be to port the wfs http handling to geotools' >>> HTTPClient. Then it should be easier to mock