|
@@ -188,11 +188,17 @@ void StatIdx::readFromFile(const std::string& path) {
|
188
|
188
|
|
189
|
189
|
LOG(INFO) << "Done.";
|
190
|
190
|
|
191
|
|
- LOG(INFO) << "Building indices...";
|
|
191
|
+ LOG(INFO) << "Init groups";
|
192
|
192
|
initGroups();
|
|
193
|
+ LOG(INFO) << "Done.";
|
|
194
|
+ LOG(INFO) << "Init meta groups";
|
193
|
195
|
initMetaGroups();
|
|
196
|
+ LOG(INFO) << "Done.";
|
|
197
|
+ LOG(INFO) << "Init suggestions";
|
194
|
198
|
initSuggestions();
|
|
199
|
+ LOG(INFO) << "Done.";
|
195
|
200
|
|
|
201
|
+ LOG(INFO) << "Building indices...";
|
196
|
202
|
initIndex();
|
197
|
203
|
LOG(INFO) << "Done.";
|
198
|
204
|
}
|
|
@@ -242,9 +248,12 @@ void StatIdx::initMetaGroups() {
|
242
|
248
|
auto& mg = p.second;
|
243
|
249
|
util::geo::MultiPoint<double> mp;
|
244
|
250
|
for (size_t gid : mg.groups) {
|
245
|
|
- for (auto p : _groups[gid].poly.getOuter()) mp.push_back(p);
|
246
|
|
- mg.poly = hull(mp, 11);
|
|
251
|
+ if (_groups[gid].polyStations.size() == 0) continue;
|
|
252
|
+ for (const auto& p : _groups[gid].poly.getOuter()) mp.push_back(p);
|
247
|
253
|
}
|
|
254
|
+ mg.poly = hull(mp, 11);
|
|
255
|
+ assert(mg.poly.getOuter().size());
|
|
256
|
+
|
248
|
257
|
|
249
|
258
|
for (auto p : mg.poly.getOuter()) {
|
250
|
259
|
mg.llPoly.getOuter().push_back(
|
|
@@ -312,7 +321,7 @@ void StatIdx::initGroups() {
|
312
|
321
|
}
|
313
|
322
|
}
|
314
|
323
|
|
315
|
|
- // take the longest name as the identifier
|
|
324
|
+ // take the best fitting name as the identifier
|
316
|
325
|
std::sort(_groups[gid].uniqueNames.begin(), _groups[gid].uniqueNames.end(),
|
317
|
326
|
byAttrScore);
|
318
|
327
|
}
|
|
@@ -326,6 +335,7 @@ void StatIdx::initGroups() {
|
326
|
335
|
}
|
327
|
336
|
|
328
|
337
|
// build hull polygon
|
|
338
|
+
|
329
|
339
|
for (size_t i = 0; i < _groups.size(); i++) {
|
330
|
340
|
util::geo::MultiPoint<double> mp;
|
331
|
341
|
for (size_t stid : _groups[i].polyStations) {
|