|
I am trying to parse a very simple csv file named clatcoor
47.6669
49.0783with the following command (under Windows): but I get the following error: Any idea what is goning on ? This error message is note very user friendly, imo. It looks like go panic. Another question : how can I tel bafi that my csv is using a different field separator ? |
Answered by
mmalcek
Dec 6, 2021
Replies: 1 comment 3 replies
|
Hi in this case the issue is that you have range of values so you have to iterate over range - I've tested it and it works with I agree that better arror message would be nice, I'll enhance it in next versions About separator - I will prepare some option to change separator in next version but currently it works only with CSV as specified in rfc4180 https://datatracker.ietf.org/doc/html/rfc4180 |
3 replies
Answer selected by
kpym
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi in this case the issue is that you have range of values so you have to iterate over range - I've tested it and it works with
I agree that better arror message would be nice, I'll enhance it in next versions
About separator - I will prepare some option to change separator in next version but currently it works only with CSV as specified in rfc4180 https://datatracker.ietf.org/doc/html/rfc4180