shapefile icon indicating copy to clipboard operation
shapefile copied to clipboard

ESRI Shapefile Reader

Results 2 shapefile issues
Sort by recently updated
recently updated
newest added

When opening the Shapfile, I get this: `InvalidOperationException: 'The 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine.'` Found a SO thread on it: https://stackoverflow.com/questions/1991643/microsoft-jet-oledb-4-0-provider-is-not-registered-on-the-local-machine But installing that driver does...

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,...