Bocher Erwan
Bocher Erwan
Some news about H2GIS integration. I have a first implementation that works but due to the last change in geotools, H2GIS needs some important changes to be compliant. Indeed, H2GIS...
Hi @jericks , I have compiled a version of geoscript that integrates H2GIS : https://github.com/ebocher/geoscript-groovy/releases For now it is not possible to deploy H2GIS with the geoscript master because geotools...
To share a pratical example , if we use the name of the datasource as the name of the layer, if we display the legend for two layers attached to...
It seems to me an issue on H2 database side @katzyn ?
@katzyn Oups... I'm just seeing your message now I thought the default schema was the PUBLIC one and therefore INSERT INTO SPATIAL_REF_SYS was equivalent to INSERT INTO PUBLIC.SPATIAL_REF_SYS thanks @stijn-vranckx...
Hello, Nope because the header of FGB contains informations about the CRS : https://github.com/flatgeobuf/flatgeobuf/blob/master/src/fbs/header.fbs But options can be used to set other arguments than srid.. It's just an optional string...
Here another example that returns a side conflict location. Tested with the current 1.20-SNAPSHOT ```java Geometry gc0 = reader.read( "POLYGON ((474007.37387468846 5286568.023144805, 474027.7175788997 5286573.266943434, 474028.8194209462 5286568.149451445, 474027.0178892645 5286567.712940417, 474027.8267687816 5286564.1527563,...
JTS 1.20 is out. Thanks a lot ! Do we need to replace ```java assertTrue(gc0.intersects(gc1)); ``` by ```java assertTrue(RelateNG.relate(gc0, gc1, RelatePredicate.intersects())) ```
Dear all, any comments or ideas to solve this issue ? Thanks