I have a shapefile whose .dbf file is 2.1Gb in size and I'm attempting to read it using geopandas or fiona.
However, when reading the file, the file is not read in its entirety meaning that I'm losing quite a significant amount of rows. Searching online I believe this has something to do with an expected 2Gb limit of a shapefile, since if I read the file by eliminating the .dbf file (hence keeping only the geometries) no rows are lost. Is there a way to increase that limit in order to be able to read the file in its entirety?
Thanks