[search][indexer] Use different radius for different suburb types.

This commit is contained in:
tatiana-yan 2020-06-24 15:51:45 +03:00 committed by mpimenov
parent 44d46b1994
commit 20a0710c49
3 changed files with 73 additions and 5 deletions

View file

@ -294,9 +294,45 @@ IsSquareChecker::IsSquareChecker()
IsSuburbChecker::IsSuburbChecker()
{
Classificator const & c = classif();
m_types.push_back(c.GetTypeByPath({"landuse", "residential"}));
m_types.push_back(c.GetTypeByPath({"place", "neighbourhood"}));
m_types.push_back(c.GetTypeByPath({"place", "suburb"}));
auto const residentialType = c.GetTypeByPath({"landuse", "residential"});
auto const neighbourhoodType = c.GetTypeByPath({"place", "neighbourhood"});
auto const suburbType = c.GetTypeByPath({"place", "suburb"});
m_types.push_back(residentialType);
m_types.push_back(neighbourhoodType);
m_types.push_back(suburbType);
CHECK(m_types[static_cast<size_t>(SuburbType::Residential)] == residentialType, ());
CHECK(m_types[static_cast<size_t>(SuburbType::Neighbourhood)] == neighbourhoodType, ());
CHECK(m_types[static_cast<size_t>(SuburbType::Suburb)] == suburbType, ());
}
SuburbType IsSuburbChecker::GetType(uint32_t t) const
{
ftype::TruncValue(t, 2);
for (size_t i = 0; i < m_types.size(); ++i)
{
if (m_types[i] == t)
return static_cast<SuburbType>(i);
}
return SuburbType::None;
}
SuburbType IsSuburbChecker::GetType(feature::TypesHolder const & types) const
{
for (uint32_t t : types)
{
auto const type = GetType(t);
if (type != SuburbType::None)
return type;
}
return SuburbType::None;
}
SuburbType IsSuburbChecker::GetType(FeatureType & f) const
{
feature::TypesHolder types(f);
return GetType(types);
}
IsWayChecker::IsWayChecker()

View file

@ -136,11 +136,32 @@ public:
DECLARE_CHECKER_INSTANCE(IsSquareChecker);
};
/// Type of locality (do not change values and order - they have detalization order)
/// Suburb > Neighbourhood > Residential
enum class SuburbType
{
None = -1,
Residential = 0,
Neighbourhood,
Suburb,
Count
};
static_assert(base::Underlying(SuburbType::Residential) <
base::Underlying(SuburbType::Neighbourhood),
"");
static_assert(base::Underlying(SuburbType::Neighbourhood) < base::Underlying(SuburbType::Suburb),
"");
class IsSuburbChecker : public BaseChecker
{
IsSuburbChecker();
public:
SuburbType GetType(uint32_t t) const;
SuburbType GetType(feature::TypesHolder const & types) const;
SuburbType GetType(FeatureType & f) const;
DECLARE_CHECKER_INSTANCE(IsSuburbChecker);
};

View file

@ -68,6 +68,8 @@ size_t constexpr kMaxNumCountries = 10;
double constexpr kMaxViewportRadiusM = 50.0 * 1000;
double constexpr kMaxPostcodeRadiusM = 1000;
double constexpr kMaxSuburbRadiusM = 2000;
double constexpr kMaxNeighbourhoodRadiusM = 500;
double constexpr kMaxResidentialRadiusM = 500;
size_t constexpr kPivotRectsCacheSize = 10;
size_t constexpr kPostcodesRectsCacheSize = 10;
@ -1228,8 +1230,17 @@ void Geocoder::GreedilyMatchStreetsWithSuburbs(BaseContext & ctx,
vector<uint32_t> suburbFeatures = {ft->GetID().m_index};
layer.m_sortedFeatures = &suburbFeatures;
auto const rect =
mercator::RectByCenterXYAndSizeInMeters(feature::GetCenter(*ft), kMaxSuburbRadiusM);
auto const suburbType = ftypes::IsSuburbChecker::Instance().GetType(*ft);
double radius = 0.0;
switch (suburbType)
{
case ftypes::SuburbType::Residential: radius = kMaxResidentialRadiusM; break;
case ftypes::SuburbType::Neighbourhood: radius = kMaxNeighbourhoodRadiusM; break;
case ftypes::SuburbType::Suburb: radius = kMaxSuburbRadiusM; break;
default: CHECK(false, ("Bad suburb type:", base::Underlying(suburbType)));
}
auto const rect = mercator::RectByCenterXYAndSizeInMeters(feature::GetCenter(*ft), radius);
auto const suburbCBV = RetrieveGeometryFeatures(*m_context, rect, RectId::Suburb);
auto const suburbStreets = ctx.m_streets.Intersect(suburbCBV);