forked from organicmaps/organicmaps
Different cell coding depth for wmw when indexing.
This commit is contained in:
parent
50130c101e
commit
39d18547b9
5 changed files with 85 additions and 23 deletions
|
@ -2,9 +2,13 @@
|
|||
#include "cell_coverer.hpp"
|
||||
#include "cell_id.hpp"
|
||||
#include "feature.hpp"
|
||||
#include "scales.hpp"
|
||||
|
||||
#include "../geometry/covering_utils.hpp"
|
||||
|
||||
#include "../base/base.hpp"
|
||||
#include "../base/stl_add.hpp"
|
||||
|
||||
#include "../std/algorithm.hpp"
|
||||
#include "../std/bind.hpp"
|
||||
#include "../std/vector.hpp"
|
||||
|
@ -119,16 +123,16 @@ vector<int64_t> CoverFeature(FeatureType const & f, int cellDepth, uint64_t cell
|
|||
return res;
|
||||
}
|
||||
|
||||
IntervalsT SortAndMergeIntervals(IntervalsT v)
|
||||
void SortAndMergeIntervals(IntervalsT v, IntervalsT & res)
|
||||
{
|
||||
#ifdef DEBUG
|
||||
ASSERT ( res.empty(), () );
|
||||
for (size_t i = 0; i < v.size(); ++i)
|
||||
ASSERT_LESS(v[i].first, v[i].second, (i));
|
||||
#endif
|
||||
|
||||
sort(v.begin(), v.end());
|
||||
|
||||
IntervalsT res;
|
||||
res.reserve(v.size());
|
||||
for (size_t i = 0; i < v.size(); ++i)
|
||||
{
|
||||
|
@ -137,7 +141,12 @@ IntervalsT SortAndMergeIntervals(IntervalsT v)
|
|||
else
|
||||
res.back().second = max(res.back().second, v[i].second);
|
||||
}
|
||||
}
|
||||
|
||||
IntervalsT SortAndMergeIntervals(IntervalsT const & v)
|
||||
{
|
||||
IntervalsT res;
|
||||
SortAndMergeIntervals(v, res);
|
||||
return res;
|
||||
}
|
||||
|
||||
|
@ -153,7 +162,7 @@ void AppendLowerLevels(RectId id, int cellDepth, IntervalsT & intervals)
|
|||
}
|
||||
}
|
||||
|
||||
IntervalsT CoverViewportAndAppendLowerLevels(m2::RectD const & r, int cellDepth)
|
||||
void CoverViewportAndAppendLowerLevels(m2::RectD const & r, int cellDepth, IntervalsT & res)
|
||||
{
|
||||
vector<RectId> ids;
|
||||
CoverRect<MercatorBounds, RectId>(r.minX(), r.minY(), r.maxX(), r.maxY(), 8, ids);
|
||||
|
@ -164,7 +173,7 @@ IntervalsT CoverViewportAndAppendLowerLevels(m2::RectD const & r, int cellDepth)
|
|||
for (size_t i = 0; i < ids.size(); ++i)
|
||||
AppendLowerLevels(ids[i], cellDepth, intervals);
|
||||
|
||||
return SortAndMergeIntervals(intervals);
|
||||
SortAndMergeIntervals(intervals, res);
|
||||
}
|
||||
|
||||
RectId GetRectIdAsIs(m2::RectD const & r)
|
||||
|
@ -178,4 +187,14 @@ RectId GetRectIdAsIs(m2::RectD const & r)
|
|||
MercatorBounds::ClampY(r.maxY() - eps));
|
||||
}
|
||||
|
||||
int GetCodingDepth(pair<int, int> const & scalesR)
|
||||
{
|
||||
ASSERT_LESS_OR_EQUAL ( scalesR.first, scalesR.second, () );
|
||||
|
||||
int const delta = scales::GetUpperScale() - scalesR.second;
|
||||
ASSERT_GREATER_OR_EQUAL ( delta, 0, () );
|
||||
|
||||
return (RectId::DEPTH_LEVELS - delta);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -22,10 +22,14 @@ namespace covering
|
|||
void AppendLowerLevels(RectId id, int cellDepth, IntervalsT & intervals);
|
||||
|
||||
// Cover viewport with RectIds and append their RectIds as well.
|
||||
IntervalsT CoverViewportAndAppendLowerLevels(m2::RectD const & rect, int cellDepth);
|
||||
void CoverViewportAndAppendLowerLevels(m2::RectD const & rect, int cellDepth,
|
||||
IntervalsT & intervals);
|
||||
|
||||
// Given a vector of intervals [a, b), sort them and merge overlapping intervals.
|
||||
IntervalsT SortAndMergeIntervals(IntervalsT intervals);
|
||||
IntervalsT SortAndMergeIntervals(IntervalsT const & intervals);
|
||||
|
||||
RectId GetRectIdAsIs(m2::RectD const & r);
|
||||
|
||||
// Calculate cell coding depth according to max visual scale for mwm.
|
||||
int GetCodingDepth(pair<int, int> const & scalesR);
|
||||
}
|
||||
|
|
|
@ -35,3 +35,25 @@ Index::~Index()
|
|||
{
|
||||
Cleanup();
|
||||
}
|
||||
|
||||
using namespace covering;
|
||||
|
||||
void Index::GetCovering(m2::RectD const & rect, int mode, int cellDepth, IntervalsT & res)
|
||||
{
|
||||
ASSERT ( res.empty(), () );
|
||||
|
||||
switch (mode)
|
||||
{
|
||||
case 0:
|
||||
CoverViewportAndAppendLowerLevels(rect, cellDepth, res);
|
||||
break;
|
||||
|
||||
case 1:
|
||||
AppendLowerLevels(GetRectIdAsIs(rect), cellDepth, res);
|
||||
break;
|
||||
|
||||
case 2:
|
||||
res.push_back(IntervalsT::value_type(0, static_cast<int64_t>((1ULL << 63) - 1)));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -21,7 +21,10 @@ public:
|
|||
IndexFactory m_factory;
|
||||
|
||||
MwmValue(string const & name);
|
||||
feature::DataHeader const & GetHeader() const { return m_factory.GetHeader(); }
|
||||
inline feature::DataHeader const & GetHeader() const
|
||||
{
|
||||
return m_factory.GetHeader();
|
||||
}
|
||||
};
|
||||
|
||||
class Index : public MwmSet
|
||||
|
@ -48,25 +51,19 @@ public:
|
|||
template <typename F>
|
||||
void ForEachInRect(F & f, m2::RectD const & rect, uint32_t scale) const
|
||||
{
|
||||
ForEachInIntervals(f, covering::CoverViewportAndAppendLowerLevels(rect, RectId::DEPTH_LEVELS),
|
||||
rect, scale);
|
||||
ForEachInIntervals(f, 0, rect, scale);
|
||||
}
|
||||
|
||||
template <typename F>
|
||||
void ForEachInRect_TileDrawing(F & f, m2::RectD const & rect, uint32_t scale) const
|
||||
{
|
||||
covering::IntervalsT intervals;
|
||||
covering::AppendLowerLevels(covering::GetRectIdAsIs(rect), RectId::DEPTH_LEVELS, intervals);
|
||||
ForEachInIntervals(f, intervals, rect, scale);
|
||||
ForEachInIntervals(f, 1, rect, scale);
|
||||
}
|
||||
|
||||
template <typename F>
|
||||
void ForEachInScale(F & f, uint32_t scale) const
|
||||
{
|
||||
covering::IntervalsT intervals;
|
||||
intervals.push_back(covering::IntervalsT::value_type(
|
||||
0, static_cast<int64_t>((1ULL << 63) - 1)));
|
||||
ForEachInIntervals(f, intervals, m2::RectD::GetInfiniteRect(), scale);
|
||||
ForEachInIntervals(f, 2, m2::RectD::GetInfiniteRect(), scale);
|
||||
}
|
||||
|
||||
private:
|
||||
|
@ -92,13 +89,22 @@ private:
|
|||
}
|
||||
};
|
||||
|
||||
/// @param[in] mode\n
|
||||
/// - 0 - cover viewport with low lovels;\n
|
||||
/// - 1 - cover append low levels only;\n
|
||||
/// - 2 - make full cover\n
|
||||
static void GetCovering(m2::RectD const & rect,
|
||||
int mode, int cellDepth,
|
||||
covering::IntervalsT & res);
|
||||
|
||||
template <typename F>
|
||||
void ForEachInIntervals(F & f, covering::IntervalsT const & intervals,
|
||||
m2::RectD const & rect, uint32_t scale) const
|
||||
void ForEachInIntervals(F & f, int mode, m2::RectD const & rect, uint32_t scale) const
|
||||
{
|
||||
vector<MwmInfo> mwm;
|
||||
GetMwmInfo(mwm);
|
||||
|
||||
covering::IntervalsT intervals[2];
|
||||
|
||||
for (MwmId id = 0; id < mwm.size(); ++id)
|
||||
{
|
||||
if ((mwm[id].m_minScale <= scale && scale <= mwm[id].m_maxScale) &&
|
||||
|
@ -108,15 +114,26 @@ private:
|
|||
MwmValue * pValue = lock.GetValue();
|
||||
if (pValue)
|
||||
{
|
||||
FeaturesVector fv(pValue->m_cont, pValue->GetHeader());
|
||||
feature::DataHeader const & header = pValue->GetHeader();
|
||||
|
||||
// prepare needed covering
|
||||
int const cellDepth = covering::GetCodingDepth(header.GetScaleRange());
|
||||
int const ind = (cellDepth == RectId::DEPTH_LEVELS ? 0 : 1);
|
||||
|
||||
if (intervals[ind].empty())
|
||||
GetCovering(rect, mode, cellDepth, intervals[ind]);
|
||||
|
||||
// prepare features reading
|
||||
FeaturesVector fv(pValue->m_cont, header);
|
||||
ScaleIndex<ModelReaderPtr> index(pValue->m_cont.GetReader(INDEX_FILE_TAG),
|
||||
pValue->m_factory);
|
||||
|
||||
// iterate through intervals
|
||||
unordered_set<uint32_t> offsets;
|
||||
ReadFeatureFunctor<F> f1(fv, f, offsets);
|
||||
for (size_t i = 0; i < intervals.size(); ++i)
|
||||
for (size_t i = 0; i < intervals[ind].size(); ++i)
|
||||
{
|
||||
index.ForEachInIntervalAndScale(f1, intervals[i].first, intervals[i].second, scale);
|
||||
index.ForEachInIntervalAndScale(f1, intervals[ind][i].first, intervals[ind][i].second, scale);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -71,8 +71,8 @@ public:
|
|||
{
|
||||
if (FeatureShouldBeIndexed(f))
|
||||
{
|
||||
/// @todo Use m_mwmScaleRange to make better covering.
|
||||
vector<int64_t> const cells = covering::CoverFeature(f, RectId::DEPTH_LEVELS, 250);
|
||||
vector<int64_t> const cells = covering::CoverFeature(f,
|
||||
covering::GetCodingDepth(m_mwmScaleRange), 250);
|
||||
|
||||
for (vector<int64_t>::const_iterator it = cells.begin(); it != cells.end(); ++it)
|
||||
m_Sorter.Add(CellFeaturePair(*it, offset));
|
||||
|
|
Loading…
Add table
Reference in a new issue