NetTopologySuite / NetTopologySuite.IO.Esri

BSD 3-Clause "New" or "Revised" License
31 stars 16 forks source link

Do not write SHP files that are over 2GB. Fix #42. #45

Closed KubaSzostak closed 2 weeks ago

KubaSzostak commented 4 months ago

Handle 2GB shapefile limits.

There is a 2 GB size limit for any shapefile component file, which translates to a maximum of roughly 70 million point features. The actual number of line or polygon features you can store in a shapefile depends on the number of vertices in each line or polygon (a vertex is equivalent to a point). — Esri Documentation