diff --git a/indexer/feature_covering.cpp b/indexer/feature_covering.cpp index c20900b1a2..ce21bc6554 100644 --- a/indexer/feature_covering.cpp +++ b/indexer/feature_covering.cpp @@ -150,13 +150,12 @@ vector CoverIntersection(FeatureIntersector const & fIsec } template -vector CoverLocality(indexer::LocalityObject const & o, int cellDepth, - uint64_t cellPenaltyArea) +vector CoverLocality(indexer::LocalityObject const & o, int cellDepth) { FeatureIntersector fIsect; o.ForEachPoint(fIsect); o.ForEachTriangle(fIsect); - return CoverIntersection(fIsect, cellDepth, cellPenaltyArea); + return CoverIntersection(fIsect, cellDepth, 0 /* cellPenaltyArea */); } } // namespace @@ -169,16 +168,14 @@ vector CoverFeature(FeatureType const & f, int cellDepth, uint64_t cell return CoverIntersection(fIsect, cellDepth, cellPenaltyArea); } -vector CoverGeoObject(indexer::LocalityObject const & o, int cellDepth, - uint64_t cellPenaltyArea) +vector CoverGeoObject(indexer::LocalityObject const & o, int cellDepth) { - return CoverLocality(o, cellDepth, cellPenaltyArea); + return CoverLocality(o, cellDepth); } -vector CoverRegion(indexer::LocalityObject const & o, int cellDepth, - uint64_t cellPenaltyArea) +vector CoverRegion(indexer::LocalityObject const & o, int cellDepth) { - return CoverLocality(o, cellDepth, cellPenaltyArea); + return CoverLocality(o, cellDepth); } void SortAndMergeIntervals(Intervals v, Intervals & res) diff --git a/indexer/feature_covering.hpp b/indexer/feature_covering.hpp index 202b911666..befc31c5a0 100644 --- a/indexer/feature_covering.hpp +++ b/indexer/feature_covering.hpp @@ -31,11 +31,9 @@ typedef std::vector Intervals; std::vector CoverFeature(FeatureType const & feature, int cellDepth, uint64_t cellPenaltyArea); -std::vector CoverGeoObject(indexer::LocalityObject const & o, int cellDepth, - uint64_t cellPenaltyArea); +std::vector CoverGeoObject(indexer::LocalityObject const & o, int cellDepth); -std::vector CoverRegion(indexer::LocalityObject const & o, int cellDepth, - uint64_t cellPenaltyArea); +std::vector CoverRegion(indexer::LocalityObject const & o, int cellDepth); // Given a vector of intervals [a, b), sort them and merge overlapping intervals. Intervals SortAndMergeIntervals(Intervals const & intervals); diff --git a/indexer/indexer_tests/locality_index_test.cpp b/indexer/indexer_tests/locality_index_test.cpp index 291b8ba342..01eb2a42a4 100644 --- a/indexer/indexer_tests/locality_index_test.cpp +++ b/indexer/indexer_tests/locality_index_test.cpp @@ -39,9 +39,8 @@ template void BuildGeoObjectsIndex(ObjectsVector const & objects, Writer & writer, string const & tmpFilePrefix) { - auto coverLocality = [](indexer::LocalityObject const & o, int cellDepth, - uint64_t cellPenaltyArea) { - return covering::CoverGeoObject(o, cellDepth, cellPenaltyArea); + auto coverLocality = [](indexer::LocalityObject const & o, int cellDepth) { + return covering::CoverGeoObject(o, cellDepth); }; return covering::BuildLocalityIndex( objects, writer, coverLocality, tmpFilePrefix); diff --git a/indexer/locality_index_builder.cpp b/indexer/locality_index_builder.cpp index e26842e3e3..90ce5217e0 100644 --- a/indexer/locality_index_builder.cpp +++ b/indexer/locality_index_builder.cpp @@ -93,9 +93,8 @@ bool BuildLocalityIndexFromDataFile(string const & dataFile, bool BuildGeoObjectsIndexFromDataFile(string const & dataFile, string const & outFileName) { - auto coverObject = [](indexer::LocalityObject const & o, int cellDepth, - uint64_t cellPenaltyArea) { - return covering::CoverGeoObject(o, cellDepth, cellPenaltyArea); + auto coverObject = [](indexer::LocalityObject const & o, int cellDepth) { + return covering::CoverGeoObject(o, cellDepth); }; return BuildLocalityIndexFromDataFile(dataFile, coverObject, outFileName, GEO_OBJECTS_INDEX_FILE_TAG); @@ -103,9 +102,8 @@ bool BuildGeoObjectsIndexFromDataFile(string const & dataFile, string const & ou bool BuildRegionsIndexFromDataFile(string const & dataFile, string const & outFileName) { - auto coverRegion = [](indexer::LocalityObject const & o, int cellDepth, - uint64_t cellPenaltyArea) { - return covering::CoverRegion(o, cellDepth, cellPenaltyArea); + auto coverRegion = [](indexer::LocalityObject const & o, int cellDepth) { + return covering::CoverRegion(o, cellDepth); }; return BuildLocalityIndexFromDataFile(dataFile, coverRegion, outFileName, REGIONS_INDEX_FILE_TAG); diff --git a/indexer/locality_index_builder.hpp b/indexer/locality_index_builder.hpp index d766c40dad..c8e931e067 100644 --- a/indexer/locality_index_builder.hpp +++ b/indexer/locality_index_builder.hpp @@ -23,8 +23,8 @@ namespace covering { -using CoverLocality = std::function(indexer::LocalityObject const & o, - int cellDepth, uint64_t cellPenaltyArea)>; +using CoverLocality = + std::function(indexer::LocalityObject const & o, int cellDepth)>; template void BuildLocalityIndex(ObjectsVector const & objects, Writer & writer, @@ -39,9 +39,8 @@ void BuildLocalityIndex(ObjectsVector const & objects, Writer & writer, FileSorter, WriterFunctor> sorter( 1024 * 1024 /* bufferBytes */, tmpFilePrefix + CELL2LOCALITY_TMP_EXT, out); objects.ForEach([&sorter, &coverLocality](indexer::LocalityObject const & o) { - // @todo(t.yan): adjust cellPenaltyArea for whole world locality index. - std::vector const cells = coverLocality( - o, GetCodingDepth(scales::GetUpperScale()), 250 /* cellPenaltyArea */); + std::vector const cells = + coverLocality(o, GetCodingDepth(scales::GetUpperScale())); for (auto const & cell : cells) sorter.Add(CellValuePair(cell, o.GetStoredId())); });