shapefile icon indicating copy to clipboard operation
shapefile copied to clipboard

Possible Error

Open some-vec-byte opened this issue 9 months ago • 1 comments

In Shapefile.cs Line 172: _boundingBox = new RectangleD(_mainHeader.XMin, _mainHeader.YMin, _mainHeader.XMax, _mainHeader.YMax);

Constructor of RectangleD: (double left, double top, double right, double bottom)

so shouldnt it be: _boundingBox = new RectangleD(_mainHeader.XMin, _mainHeader.YMax, _mainHeader.XMax, _mainHeader.YMin);

Greetings

some-vec-byte avatar Nov 14 '23 08:11 some-vec-byte