Skip to content

Commit

Permalink
Increased maximum number of fields in DBF files to 255
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaspare Sganga committed Nov 9, 2019
1 parent 901189d commit 7e1013e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Shapefile/Shapefile.php
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ abstract class Shapefile
const DBF_DELETED_MARKER = 0x2a;
const DBF_EOF_MARKER = 0x1a;
const DBF_FIELD_TERMINATOR = 0x0d;
const DBF_MAX_FIELD_COUNT = 128;
const DBF_MAX_FIELD_COUNT = 255;
const DBF_VALUE_MASK_TRUE = 'TtYy';
const DBF_VALUE_FALSE = 'F';
const DBF_VALUE_NULL = '?';
Expand Down

0 comments on commit 7e1013e

Please sign in to comment.