We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c6d4f commit d181286Copy full SHA for d181286
src/parseData.ts
@@ -24,6 +24,7 @@ const isNumeric = (s: string) => NUMERIC_RE.test(s.trim());
24
const parseCsv = (csv: string) => {
25
const firstRowResult = Papa.parse<string[]>(csv, {
26
preview: 1,
27
+ skipEmptyLines: true,
28
worker: false,
29
download: false,
30
});
@@ -58,6 +59,7 @@ const parseCsv = (csv: string) => {
58
59
60
61
header: true,
62
63
64
65
console.log(latCol, lngCol);
0 commit comments