Julius R Friedman

Results 27 issues of Julius R Friedman

This function seems to be the slowest and most memory unoptomized portion of my program. ```c# /// /// Returns a value in the range [0-1] indicating how similar the given...

question

```cs public interface IGeometry, //IEnumerable Could also be a separate marker I gues... { bool IsEmpty {get;} int NumGeometries {get;} //Perhaps GeometryType etc //IEnumerable Geometries {get;} //Or enumerator... } ```...

I think its missing the constructor with only a factory. See also: https://github.com/locationtech/jts/issues/539 https://github.com/NetTopologySuite/NetTopologySuite/issues/213#issuecomment-554346264 ```cs // // Parameters: // geometries: // The Geometrys for this GeometryCollection, or null or an...

There is no interface which exposes the contract of ```CoordinateSequence```. I would see this as a place for a default implementation of Copy() to live for all derived implementations if...

The old Graphs.Position which was a class is obsolete and the new Geometry.Position is a struct, please create an IPosition interface OR make Position a class to allow for derivation....

I have a machine which has a lot of cores and runs a lot of the `Geometry` processing in parallel. I noticed using [dotnet-dump](https://docs.microsoft.com/en-us/dotnet/core/diagnostics/dotnet-dump) There seems to be a lot...

For example in `Polygon` -> `CheckValid` etc, all throw. There are some cases though e.g. `DirectedEdge` and elsewhere where you catch this and just use it to reduce the precision....

![image](https://user-images.githubusercontent.com/7851618/86892723-9becba00-c0ce-11ea-98c0-96a05c1b4b9e.png) ![image](https://user-images.githubusercontent.com/7851618/86892738-a27b3180-c0ce-11ea-9c9b-c772990361a2.png) Memory is never released and has roots. ![image](https://user-images.githubusercontent.com/7851618/86893361-81ffa700-c0cf-11ea-9865-e80b8004101c.png)

Lib RTSP suffers from issues when the application buffer size is exceeded during Interleaved Communication. Lib RTSP suffers from various `Rtsp Application Syntax Parsing` anomalies such as but not limited...

Given the following function which operates on any osm.pbf file and writes the output to the destinationFileName ``` /// /// Method which will read a file and strip out any...

bug