You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "Fill from file" button in the attribute editor was implemented using a simple routine that reads just the start of a file and tries to find the header names. (See issue #202). A few limitations of this method that @amoeba mentioned are that:
(1) my approach does not like the presence of a UTF BOM and
(2) my approach doesn't handle quoted column names with commas inside them. Both of these aren't common IME.
We should consider using a more robust CSV parser, such as PapaParse or SheetJS
The text was updated successfully, but these errors were encountered:
The "Fill from file" button in the attribute editor was implemented using a simple routine that reads just the start of a file and tries to find the header names. (See issue #202). A few limitations of this method that @amoeba mentioned are that:
We should consider using a more robust CSV parser, such as PapaParse or SheetJS
The text was updated successfully, but these errors were encountered: