Julius R Friedman

Results 175 comments of Julius R Friedman

Something like this? ```cs /// /// /// public enum CompassDirection { N, NE, E, SE, S, SW, W, NW } /// /// /// /// /// [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] public static CompassDirection GetCompassDirection(double...

The following code seems to get itself into what seems to be an infinite loop ``` QueryInternal {searchBounds=Env[2378575671.25 : 2378575672.75, 494796891413.25 : 494796891414.75]} ``` ```cs private void QueryInternal(T searchBounds, AbstractNode...

Finally failed with this stack...: ``` NetTopologySuite.Utilities.AssertionFailedException: Should never reach here at NetTopologySuite.Utilities.Assert.ShouldNeverReachHere(String message) at NetTopologySuite.Index.Strtree.AbstractSTRtree`2.QueryInternal(T searchBounds, AbstractNode`2 node, IItemVisitor`1 visitor) at NetTopologySuite.Index.Strtree.AbstractSTRtree`2.QueryInternal(T searchBounds, AbstractNode`2 node, IItemVisitor`1 visitor) at NetTopologySuite.Index.Strtree.AbstractSTRtree`2.QueryInternal(T...

Yes asap, the system was running in release so I could only extract the env at the time I apologize, I will look into this and provide WKT ASAP. (This...

Here is where I got in the way of modifications, this can probably be improved further but you would know better than I, I have not been able to test...

Here are the changes I have for the SIMD CoordinateSequence. (Working) ```cs using NetTopologySuite.Geometries; using NetTopologySuite.Geometries.Implementation; using System; using System.Linq; using System.Numerics; using System.Runtime.Serialization; namespace CurvedTopologyExperiment.Geometry.CoordinateSequences { /// /// Packed...

Tell me what you need because at this point I have all but removed `AreaSimilarityMatch` from use in our code base, it quite simply is too slow. I have found...

Thank you for your reply, RE the WKT or examples, If I had a way to give you that I would but the problem is so far down the stack...

RE SIMD, I can always implement my own type of SIMDCoordinateSequence and make a corresponding factory so the point is moot and changing Coordinate classes to use it which will...

https://github.com/NetTopologySuite/NetTopologySuite/issues/417 I have some WKB which is hitting the ShouldNeverReachHere...