Michaël Michaud

Results 50 comments of Michaël Michaud

This behaviour seems common on windows and on linux platform

windows console returns both the command and the returned value, but linux returns only the returned value.

first problem using hi() function is probably a console codepage problem : windows does not display the ë correctly, but linux does. second problem using script "a" as a command...

Unfortunately, I cannot communicate the whole schema (which is quite big including hundreds of tables, views, functions, triggers...). I made a quick test on a much, much simpler database and...

Got it : in the query reported in the error message, the following subquery identifies the parent table of a child_table using inheritance : (SELECT '"' || nmsp_parent.nspname || '"."'...

Hi Martin, Here is a small beanshell script written with OpenJUMP to demonstrate the problem 👍 ``` import com.vividsolutions.jts.io.WKTReader; import com.vividsolutions.jts.noding.*; import com.vividsolutions.jts.noding.snapround.*; import com.vividsolutions.jts.algorithm.RobustLineIntersector; // create two intersecting linestrings...

Hi Martin, As stated in the above example, with a ScaledNoder with a scale different from 1, all input coordinates are rounded to the precision defined by the noder (not...

You are right. It is probably not very safe to remove a public method. I don't really change the meaning because I changed the method name, but we can also...

Forgot to say that failure only happens with option "extractOnlyPolygonal=true" and that it has been tested with last snapshot

> I think `CoordinateArraySequence` has the same issue, due to `Coordinates.create(int dimension, int measures)` not checking for the case D=4, M=0 [here](https://github.com/locationtech/jts/blob/master/modules/core/src/main/java/org/locationtech/jts/geom/Coordinates.java#L47). Oh yes it seems so :-( I'll have...