GeospatialPython / pyshp

This library reads and writes ESRI Shapefiles in pure Python.
MIT License
1.1k stars 260 forks source link

the dbf file is big #150

Open DeoLeung opened 6 years ago

DeoLeung commented 6 years ago

I save two million point to shp files using Fiona and pyshp, it's impress that pyshp is much faster, thx for the great library, but I'm confused about the dbf file, the output from Fiona is about 18m while pyshp is 93m, any hints about this?

DeoLeung commented 6 years ago

I think the bigger size comes from the field size, maybe we could defined some non-dbf constants , like INT=11, BIGINT=20, to reduce complexity for newbies like me