From 771d9af0f25a96c10f3a271815de5616f58f82a7 Mon Sep 17 00:00:00 2001 From: Lev Dragunov Date: Wed, 6 Jan 2016 11:20:19 +0300 Subject: [PATCH] towns_dumper enhancement. --- generator/towns_dumper.cpp | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/generator/towns_dumper.cpp b/generator/towns_dumper.cpp index 8449698b6b..253599b8c3 100644 --- a/generator/towns_dumper.cpp +++ b/generator/towns_dumper.cpp @@ -2,13 +2,14 @@ #include "coding/file_writer.hpp" +#include "geometry/distance_on_sphere.hpp" #include "geometry/tree4d.hpp" #include "base/logging.hpp" -#include "std/string.hpp" #include "std/sstream.hpp" -#include "std/queue.hpp" +#include "std/string.hpp" +#include "std/vector.hpp" namespace { @@ -20,35 +21,35 @@ void TownsDumper::FilterTowns() { LOG(LINFO, ("Preprocessing started. Have", m_records.size(), "towns.")); m4::Tree resultTree; - priority_queue towns; + vector towns; + towns.reserve(m_records.size()); for (auto const & town : m_records) { if (town.capital) resultTree.Add(town); else - towns.push(town); + towns.push_back(town); } + sort(towns.begin(), towns.end()); LOG(LINFO, ("Tree of capitals has size", resultTree.GetSize(), "towns has size:", towns.size())); m_records.clear(); while (!towns.empty()) { - auto const & top = towns.top(); + auto const & top = towns.back(); bool isUniq = true; resultTree.ForEachInRect( MercatorBounds::RectByCenterXYAndSizeInMeters(MercatorBounds::FromLatLon(top.point), kTownsEqualityMeters), [&top, &isUniq](Town const & candidate) { - if (MercatorBounds::DistanceOnEarth(MercatorBounds::FromLatLon(top.point), - MercatorBounds::FromLatLon(candidate.point)) < - kTownsEqualityMeters) + if (ms::DistanceOnEarth(top.point, candidate.point) < kTownsEqualityMeters) isUniq = false; }); if (isUniq) resultTree.Add(top); - towns.pop(); + towns.pop_back(); } resultTree.ForEach([this](Town const & town)