-
Notifications
You must be signed in to change notification settings - Fork 10
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
DataBook read issue #20
Comments
Figured out that the issue was |
Should be fixed as of bfe4f55 Here's my verification test: >>> cape.util.split_line('"[\'hvanleer\', \'hvanleer\']"', ',', 1)
['"[\'hvanleer\', \'hvanleer\']"'] A little bit hard to read, but it would have been I think this version could still get tricked by the string |
Derek, everything seems to be working now. The only thing that's still amiss is that when running lineloads ( |
Another note: there is also an impact to databooks. On initial databook generation, all seems to be well. But if runs are appended to the databook, the column data no longer line up with the column titles. |
@nasa-ddalle, has this been looked at or fixed for databooks? |
This should address the issue, based on testing, but I could be wrong
This should address the issue, based on testing, but I could be wrong
Ok, I think this should finally be fixed. Patches applied to both |
Follow-on to #18
From @rbreslavsky:
One more comment on this. The databooks are all generated correctly now. However, when they are read back in (for carpet plots or other operations), lists of strings get split up into multiple parts. So for instance, if I have
"['hvanleer', 'hvanleer']"
in a cell, that gets split into two parts byutil.split_line()
.The text was updated successfully, but these errors were encountered: