forked from organicmaps/organicmaps
Bugfix for Removing speed cameras from geometry index for Turkey, Switzerland, Macedonia and Cyprus.
This commit is contained in:
parent
e5d303b5c4
commit
e3383cc349
1 changed files with 11 additions and 10 deletions
|
@ -325,17 +325,18 @@ bool GenerateFinalFeatures(feature::GenerateInfo const & info, string const & na
|
|||
// stores cellIds for middle points
|
||||
CalculateMidPoints midPoints;
|
||||
platform::CountryFile const country(name);
|
||||
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"}))
|
||||
{
|
||||
return;
|
||||
}
|
||||
bool const speedCamerasProhibitedMwm = routing::AreSpeedCamerasProhibited(country);
|
||||
uint32_t const speedCameraType = classif().GetTypeByPath({"highway", "speed_camera"});
|
||||
ForEachFromDatRawFormat(srcFilePath, [&speedCamerasProhibitedMwm, &speedCameraType, &midPoints](
|
||||
FeatureBuilder1 const & ft, uint64_t pos) {
|
||||
// Removing point features with speed cameras type from geometry index for some countries.
|
||||
if (speedCamerasProhibitedMwm && ft.IsPoint() && ft.HasType(speedCameraType))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
midPoints(ft, pos);
|
||||
});
|
||||
midPoints(ft, pos);
|
||||
});
|
||||
|
||||
// sort features by their middle point
|
||||
midPoints.Sort();
|
||||
|
|
Loading…
Add table
Reference in a new issue