-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dbf fields stop at char 00 #71
base: master
Are you sure you want to change the base?
Conversation
@Fil this looks like a reasonable fix, why did you close the PR? |
I didn't intend to close it, but cleaned up my personal repos and didn't realize this fork was home to a PR. Thanks for noticing! |
I've seen Shapefile dbfs like this in circulation, too... hope @mbostock will consider merging. |
var v = value.subarray(i, i += f.length); | ||
var j = v.indexOf(0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
var v = value.subarray(i, i += f.length); | |
var j = v.indexOf(0); | |
var v = value.subarray(i, i += f.length), j = v.indexOf(0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
@mbostock any chance of releasing this? It fixes an issue I'm hitting currently |
fixes #68 #70