If needed I can make a LRSGeometryConverter that allows JTS Geometries with additional ordinates beyond xyz.
537538539540541542543544545546
return null; } // unwrap the connection and create a converter OracleConnection ocx = unwrapConnection(cx); GeometryConverter converter = factory != null ? new GeometryConverter(ocx, factory) : new GeometryConverter(ocx); return converter.asGeometry((STRUCT) struct); }
556557558559560561562563564565566567
return; } OracleConnection ocx = unwrapConnection(ps.getConnection()); GeometryConverter converter = new GeometryConverter(ocx); STRUCT s = converter.toSDO(g, srid); ps.setObject(column, s); if (LOGGER.isLoggable(Level.FINE)) { String sdo; try {