Re: [Geotools-devel] Handling non-working projections / CRS

2015-10-05 Thread Jody Garnett
Got an idea (feel free to shoot down). Right now I have a program that generates the function list for the geotools docs, I keep meaning to add that into the maven build (so the docs are always up to date). Could we do the same thing for a generated epsg-blackl

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

2015-10-05 Thread monitor
See -- ___ GeoTools-Devel mailing list GeoTools-Devel@lists.sourceforge.net https://lists.sourceforge.net/lists

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

2015-10-05 Thread monitor
See -- [...truncated 19523 lines...] [INFO] ArcSDE plugin [INFO] ArcSDE dummy api [INFO] ArcSDE support classes [INFO] ArcSDE DataStore plugin [INFO] Dynamic symbolizer module based on JFreeChart and

Re: [Geotools-devel] new repository please test

2015-10-05 Thread Jody Garnett
Going to try and switch ares over to this mirror, if that goes well we will update the DNS registry this afternoon. -- Jody Garnett On 29 September 2015 at 16:36, Jody Garnett wrote: > Sorry, URL corrected below: > > > > boundlessgeo > Boundless Cloud Repository > http

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

2015-10-05 Thread Ben Caradoc-Davies
GeoTools / GeoServer committee meeting on Skype at 19:30 UTC on Tuesday: http://www.timeanddate.com/worldclock/fixedtime.html?msg=GeoTools+%2F+GeoServer+Meeting&year=2015&month=10&day=6&hour=19&min=30&sec=0&ah=1 -- Ben Caradoc-Davies Director Transient Software Limited New

[Geotools-devel] [JIRA] (GEOT-5241) support time dimensions with different names across datasets

2015-10-05 Thread Daniele Romagnoli (JIRA)
Title: Message Title Daniele Romagnoli created an issue

[Geotools-devel] [JIRA] (GEOT-5240) Transforming feature source does not honor naming convention on FID

2015-10-05 Thread Stefano Costa (JIRA)
Title: Message Title Stefano Costa created an issue

Re: [Geotools-devel] Slow inserts in DB

2015-10-05 Thread Andrea Aime
On Mon, Oct 5, 2015 at 2:12 PM, Patrick Valsecchi < patrick.valsec...@camptocamp.com> wrote: > Is there any reason for not using batch inserts in JDBCDataStore#insert? > What do you think of changing this area in order to use batch inserts (same > for deletes and updates, too, I guess)? > No obje

[Geotools-devel] Slow inserts in DB

2015-10-05 Thread Patrick Valsecchi
Hi, I'm using geogig to import/export data from/to Oracle. As I was a bit surprised by the slowness of the export operation, I've looked a bit at how it's done. Geogig asks geotools to insert one feature at a time. As I was planning to fix that and gouping the insertions a bit, I've looked at how

Re: [Geotools-devel] FeatureJSON with complex properties

2015-10-05 Thread Pedro Trujillo Brito
Ok. It's not my priority right now, but if I work on that I'll submit the complex parser. Thank you so much! 2015-10-05 8:55 GMT+01:00 Jody Garnett : > You need to make a copy of the parser and write the code. please > contribute back as it sounds like a useful change :) > > On Mon, Oct 5, 2015

Re: [Geotools-devel] FeatureJSON with complex properties

2015-10-05 Thread Jody Garnett
You need to make a copy of the parser and write the code. please contribute back as it sounds like a useful change :) On Mon, Oct 5, 2015 at 12:53 AM Pedro Trujillo Brito wrote: > I'm trying to use Feature instead of SimpleFeature, but > FeatureJSON.readFeature > only returns a SimpleFeatureImpl

Re: [Geotools-devel] FeatureJSON with complex properties

2015-10-05 Thread Pedro Trujillo Brito
I'm trying to use Feature instead of SimpleFeature, but FeatureJSON.readFeature only returns a SimpleFeatureImpl (as Jody said). The complex properties may have different inner properties, so it would be useful getting them as a Map. How can I parse the geoJson in a (not simple) Feature? Thanks!

Re: [Geotools-devel] FeatureJSON with complex properties

2015-10-05 Thread Jody Garnett
You would need to revisit the code to create a "complex feature", so the data structure exists but it is not supported by the parser as it stands now. Specifically in this case you want to create a ComplexAttribute "otherProp" to hold the attributes "id" and "name". I do not know if you always ex

Re: [Geotools-devel] FeatureJSON with complex properties

2015-10-05 Thread Andrea Aime
On Mon, Oct 5, 2015 at 9:18 AM, Pedro Trujillo Brito wrote: > Hi, I'm trying to read some geoJson features which includes properties > with nested json. > > For example: > > { > "type": "Feature", > "geometry": { > "type": "Point", > "coordinates": [ > 100.1, >

[Geotools-devel] FeatureJSON with complex properties

2015-10-05 Thread Pedro Trujillo Brito
Hi, I'm trying to read some geoJson features which includes properties with nested json. For example: { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ 100.1, 0.1 ] }, "properties": { "id": 123, "ot