[generator] Rewrited WorldMapGenerator a bit.

This commit is contained in:
Maksim Andrianov 2019-08-13 18:36:57 +03:00 committed by LaGrunge
parent c969f54d1b
commit df29fc4f5a
2 changed files with 16 additions and 46 deletions

View file

@ -88,6 +88,8 @@ set(
filter_interface.hpp
filter_planet.cpp
filter_planet.hpp
filter_world.cpp
filter_world.hpp
gen_mwm_info.hpp
generate_info.hpp
geo_objects/geo_objects_generator.cpp

View file

@ -2,6 +2,7 @@
#include "generator/feature_maker_base.hpp"
#include "generator/feature_merger.hpp"
#include "generator/filter_world.hpp"
#include "generator/generate_info.hpp"
#include "generator/popular_places_section_builder.hpp"
@ -31,8 +32,6 @@ namespace
{
class WaterBoundaryChecker
{
uint32_t m_boundaryType;
struct RegionTraits
{
m2::RectD const & LimitRect(m2::RegionD const & r) const { return r.GetRect(); }
@ -47,7 +46,6 @@ class WaterBoundaryChecker
public:
WaterBoundaryChecker(std::string const & rawGeometryFileName)
{
m_boundaryType = classif().GetTypeByPath({"boundary", "administrative"});
LoadWaterGeometry(rawGeometryFileName);
}
@ -91,7 +89,8 @@ public:
{
++m_totalFeatures;
if (fb.FindType(m_boundaryType, 2) == ftype::GetEmptyValue())
auto static const kBoundaryType = classif().GetTypeByPath({"boundary", "administrative"});
if (fb.FindType(kBoundaryType, 2) == ftype::GetEmptyValue())
return false;
++m_totalBorders;
@ -193,7 +192,7 @@ public:
};
} // namespace
/// Process FeatureBuilder1 for world map. Main functions:
/// Process FeatureBuilder for world map. Main functions:
/// - check for visibility in world map
/// - merge linear features
template <class FeatureOutT>
@ -243,14 +242,18 @@ class WorldMapGenerator
return (scales::GetUpperWorldScale() >= fb.GetMinFeatureDrawScale());
}
void PushSure(feature::FeatureBuilder const & fb) { m_output.Collect(fb); }
void PushSure(feature::FeatureBuilder const & fb)
{
CalcStatistics(fb);
m_output.Collect(fb);
}
};
EmitterImpl m_worldBucket;
FeatureTypesProcessor m_typesCorrector;
FeatureMergeProcessor m_merger;
WaterBoundaryChecker m_boundaryChecker;
generator::PopularPlaces m_popularPlaces;
std::string m_popularPlacesFilename;
public:
explicit WorldMapGenerator(std::string const & worldFilename, std::string const & rawGeometryFileName,
@ -258,6 +261,7 @@ public:
: m_worldBucket(worldFilename)
, m_merger(kPointCoordBits - (scales::GetUpperScale() - scales::GetUpperWorldScale()) / 2)
, m_boundaryChecker(rawGeometryFileName)
, m_popularPlacesFilename(popularPlacesFilename)
{
// Do not strip last types for given tags,
// for example, do not cut 'admin_level' in 'boundary-administrative-XXX'.
@ -271,24 +275,18 @@ public:
char const * arr2[] = {"boundary", "administrative", "4", "state"};
m_typesCorrector.SetDontNormalizeType(arr2);
if (!popularPlacesFilename.empty())
generator::LoadPopularPlaces(popularPlacesFilename, m_popularPlaces);
else
if (popularPlacesFilename.empty())
LOG(LWARNING, ("popular_places_data option not set. Popular atractions will not be added to World.mwm"));
}
void Process(feature::FeatureBuilder & fb)
{
auto const isPopularAttraction = IsPopularAttraction(fb);
auto const isInternationalAirport =
fb.HasType(classif().GetTypeByPath({"aeroway", "aerodrome", "international"}));
auto const forcePushToWorld = isPopularAttraction || isInternationalAirport;
auto const forcePushToWorld = generator::FilterWorld::IsPopularAttraction(fb, m_popularPlacesFilename) ||
generator::FilterWorld::IsInternationalAirport(fb);
if (!m_worldBucket.NeedPushToWorld(fb) && !forcePushToWorld)
return;
m_worldBucket.CalcStatistics(fb);
if (!m_boundaryChecker.IsBoundaries(fb))
{
// Save original feature iff we need to force push it before PushFeature(fb) modifies fb.
@ -346,36 +344,6 @@ public:
}
void DoMerge() { m_merger.DoMerge(m_worldBucket); }
private:
bool IsPopularAttraction(feature::FeatureBuilder const & fb) const
{
if (fb.GetName().empty())
return false;
auto static const attractionTypes =
search::GetCategoryTypes("attractions", "en", GetDefaultCategories());
ASSERT(is_sorted(attractionTypes.begin(), attractionTypes.end()), ());
auto const & featureTypes = fb.GetTypes();
if (!std::any_of(featureTypes.begin(), featureTypes.end(), [](uint32_t t) {
return binary_search(attractionTypes.begin(), attractionTypes.end(), t);
}))
{
return false;
}
auto const it = m_popularPlaces.find(fb.GetMostGenericOsmId());
if (it == m_popularPlaces.end())
return false;
// todo(@t.yan): adjust
uint8_t const kPopularityThreshold = 13;
if (it->second < kPopularityThreshold)
return false;
// todo(@t.yan): maybe check place has wikipedia link.
return true;
}
};
template <class FeatureOut>