[Geotools-devel] MapServerStrategy for WFSDataStore 1.1.0 protocol

2013-09-05 Thread Mauro Bartolomeoli
Hi everybody, I created a pull request (https://github.com/geotools/geotools/pull/262) to handle some weird behaviours of MapServer with the WFS 1.1.0 regarding namespaces and field type mappings. Thanks Mauro Bartolomeoli -- == Our support, Your Success! Visit http://opensdi.geo-solutions.it

[Geotools-devel] [jira] (GEOT-4558) NPE when creating ImageMosaicReader from ImageMosaicDescriptor

2013-09-05 Thread Sebastian Graca (JIRA)

[Geotools-devel] [jira] (GEOT-4559) ShapeFileDataStore does not return valid type name for file names starting with . (dot)

2013-09-05 Thread Sebastian Graca (JIRA)

Re: [Geotools-devel] [Geotools-gt2-users] Efficiently writing a GeoJSON stream into a Shapefile

2013-09-05 Thread Jody Garnett
It is more that shapefile does not offer a database session, so we are faking it to make the editing story easier for desktop clients. Using AUTO_COMMIT is a terrible idea as it will involve writing out your file many times (ie each time you add a feature). I tried to indicate a better way in my

Re: [Geotools-devel] MapServerStrategy for WFSDataStore 1.1.0 protocol

2013-09-05 Thread Jody Garnett
done (applied to master and 2.4.x) Nice clean patch, and thanks for fixing the headers On Thu, Sep 5, 2013 at 5:39 PM, Mauro Bartolomeoli mauro.bartolome...@geo-solutions.it wrote: Hi everybody, I created a pull request (https://github.com/geotools/geotools/pull/262) to handle some weird

Re: [Geotools-devel] [Geotools-gt2-users] Efficiently writing a GeoJSON stream into a Shapefile

2013-09-05 Thread William Voorsluys
Thanks Jody, So, I came up with this code, which gets an append writer and doesn't use transaction. Can you confirm if that's what you meant to indicate? ... try { writer = shpDataStore.getFeatureWriterAppend( shpDataStore.getTypeNames()[0], null); while