diff --git a/tile-join.cpp b/tile-join.cpp index 100fa56..b6536ff 100644 --- a/tile-join.cpp +++ b/tile-join.cpp @@ -153,6 +153,29 @@ void handle(std::string message, int z, unsigned x, unsigned y, std::map(key, val)); types.insert(std::pair(key, type)); key_order.push_back(key); + + auto st = file_keys->second.file_keys.find(key); + if (st == file_keys->second.file_keys.end()) { + file_keys->second.file_keys.insert(std::pair(key, type_and_string_stats())); + st = file_keys->second.file_keys.find(key); + } + + if (type == mvt_double) { + double d = atof(value.c_str()); + if (d < st->second.min) { + st->second.min = d; + } + if (d > st->second.max) { + st->second.max = d; + } + } + + if (st->second.sample_values.size() < 1000) { + type_and_string tas; + tas.type = type; + tas.string = value; + st->second.sample_values.insert(tas); + } } if (header.size() > 0 && strcmp(key, header[0].c_str()) == 0) { @@ -199,26 +222,35 @@ void handle(std::string message, int z, unsigned x, unsigned y, std::map(sjoinkey, outval)); types.insert(std::pair(sjoinkey, attr_type)); key_order.push_back(sjoinkey); + + auto st = file_keys->second.file_keys.find(joinkey); + if (st == file_keys->second.file_keys.end()) { + file_keys->second.file_keys.insert(std::pair(joinkey, type_and_string_stats())); + st = file_keys->second.file_keys.find(joinkey); + } + + if (st->second.sample_values.size() < 1000) { + type_and_string tas; + tas.type = outval.type; + tas.string = joinval; + st->second.sample_values.insert(tas); + } + + if (outval.type == mvt_double) { + double d = atof(joinval.c_str()); + if (d < st->second.min) { + st->second.min = d; + } + if (d > st->second.max) { + st->second.max = d; + } + } } } } } } - for (auto tp : types) { - type_and_string_stats st; - st.type = tp.second; - - if (st.sample_values.size() < 1000) { - type_and_string tas; - tas.type = tp.second; - tas.string = "XXX"; // XXX tilestats: provide actual values - st.sample_values.insert(tas); - } - - file_keys->second.file_keys.insert(std::pair(tp.first, st)); - } - // To keep attributes in their original order instead of alphabetical for (auto k : key_order) { auto fa = attributes.find(k);