Minimum simplified country polygon size was limited to 10 points

This commit is contained in:
Alex Zolotarev 2011-01-22 12:52:26 +02:00 committed by Alex Zolotarev
parent 3f5ed1cc9b
commit dd86845706

View file

@ -18,6 +18,8 @@
#define BORDERS_DIR "borders/"
#define BORDERS_EXTENSION ".kml"
#define MIN_SIMPLIFIED_POINTS_COUNT 10
namespace kml
{
@ -121,8 +123,11 @@ namespace kml
{
MercPointsContainerT simplifiedPoints;
feature::SimplifyPoints(points, simplifiedPoints, m_simplifyCountriesLevel);
LOG_SHORT(LINFO, (m_country.m_name, numPoints, "simplified to ", simplifiedPoints.size()));
points.swap(simplifiedPoints);
if (simplifiedPoints.size() > MIN_SIMPLIFIED_POINTS_COUNT)
{
LOG_SHORT(LINFO, (m_country.m_name, numPoints, "simplified to ", simplifiedPoints.size()));
points.swap(simplifiedPoints);
}
}
// third, convert mercator doubles to uint points