Review fixes.

This commit is contained in:
Vladimir Byko-Ianko 2019-03-01 17:59:23 +03:00 committed by Maksim Andrianov
parent bf58687e1b
commit eaf16da265

View file

@ -328,11 +328,13 @@ bool GenerateFinalFeatures(feature::GenerateInfo const & info, string const & na
ForEachFromDatRawFormat(srcFilePath,
[&midPoints, &country](FeatureBuilder1 const & ft, uint64_t pos) {
// Removing speed cameras from geometry index for some countries.
if (!routing::AreSpeedCamerasProhibited(country) || !ft.IsPoint() ||
!classif().GetTypeByPath({"highway", "speed_camera"}))
if (routing::AreSpeedCamerasProhibited(country) && ft.IsPoint() &&
classif().GetTypeByPath({"highway", "speed_camera"}))
{
midPoints(ft, pos);
return;
}
midPoints(ft, pos);
});
// sort features by their middle point