-
Notifications
You must be signed in to change notification settings - Fork 178
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
Invalid CSV according to spec #2
Comments
Indeed, and it seems that the last two columns ( |
@peterdesmet not all records - those start being used for the last set of records (the obsolete codes where these are relevant). Solution here is either to add the commas or, perhaps more usefully, to split this data file into 2 parts: currency codes in use and those which are obsolete. |
@rgrp Sorry, should have checked further. Personally, I wouldn't split the file in two, as you would have to move records from one file to the other when a currency becomes obsolete. But I don't know the main intended use of this dataset: splitting might have an advantage I don't know. |
@peterdesmet the more I think about it the more I incline to a split (you can always just move the code when it becomes obsolete). The advantage is that most people just want the active codes and this will save them having to filter them out. wdyt? |
I have no strong opinion one way or the other. Would do what is most userfriendly and not too difficult to maintain. |
The included CSV has floating number of fields per row, sometimes exceeding number of fields defined in the metadata.
Moreover it contains invalid
integer
values forNumericCode
– there is oneNil
value (I guess representing an empty field) and some-
's. This can be fixed with changing the field type tostring
though.The text was updated successfully, but these errors were encountered: