From ec475b3bebfa347e852adaacc71277460ef4e6e0 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 6 Dec 2017 15:20:01 -0800 Subject: [PATCH] Check for strings vs numbers in CSV attributes --- geocsv.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/geocsv.cpp b/geocsv.cpp index cc17ca5..0600803 100644 --- a/geocsv.cpp +++ b/geocsv.cpp @@ -74,12 +74,17 @@ void parse_geocsv(std::vector &sst, std::string fnam for (size_t i = 0; i < line.size(); i++) { if (i != (size_t) latcol && i != (size_t) loncol) { - full_keys.push_back(header[i]); + line[i] = csv_dequote(line[i]); serial_val sv; - sv.type = mvt_string; + if (is_number(line[i])) { + sv.type = mvt_double; + } else { + sv.type = mvt_string; + } sv.s = line[i]; + full_keys.push_back(header[i]); full_values.push_back(sv); } }