forked from organicmaps/organicmaps
Use 250 constant for covering area penalty instead of 1025. Should result in larger but more precise index.
This commit is contained in:
parent
1741afd848
commit
1f9d7c27c4
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ public:
|
|||
{
|
||||
if (FeatureShouldBeIndexed(f))
|
||||
{
|
||||
vector<int64_t> const cells = covering::CoverFeature(f, 1025);
|
||||
vector<int64_t> const cells = covering::CoverFeature(f, 250);
|
||||
for (vector<int64_t>::const_iterator it = cells.begin(); it != cells.end(); ++it)
|
||||
m_Sorter.Add(CellFeaturePair(*it, offset));
|
||||
++m_NumFeatures;
|
||||
|
|
Loading…
Add table
Reference in a new issue