Review fixes

This commit is contained in:
Maksim Andrianov 2019-08-16 17:26:02 +03:00 committed by LaGrunge
parent df29fc4f5a
commit dce593a8c1
2 changed files with 2 additions and 3 deletions

View file

@ -65,7 +65,7 @@ bool FilterWorld::IsPopularAttraction(feature::FeatureBuilder const & fb, std::s
return false;
// todo(@t.yan): adjust
uint8_t const kPopularityThreshold = 12;
uint8_t const kPopularityThreshold = 13;
// todo(@t.yan): maybe check place has wikipedia link.
return it->second >= kPopularityThreshold;
}

View file

@ -238,8 +238,7 @@ class WorldMapGenerator
bool NeedPushToWorld(feature::FeatureBuilder const & fb) const
{
// GetMinFeatureDrawScale also checks suitable size for AREA features
return (scales::GetUpperWorldScale() >= fb.GetMinFeatureDrawScale());
return generator::FilterWorld::IsGoodScale(fb);
}
void PushSure(feature::FeatureBuilder const & fb)