Skip to content

Commit

Permalink
Merge pull request #1238 from ahuarte47/Issue_9480
Browse files Browse the repository at this point in the history
Fix bug #9480: Labels for polygon centroids should always originate inside a polygon
  • Loading branch information
dakcarto committed May 29, 2014
2 parents 34f3378 + 6cb4cbb commit fe42b00
Show file tree
Hide file tree
Showing 20 changed files with 178 additions and 14 deletions.
3 changes: 3 additions & 0 deletions python/core/qgsgeometry.sip
Expand Up @@ -322,6 +322,9 @@ class QgsGeometry
* and for point based geometries, the point itself is returned */
QgsGeometry* centroid() /Factory/;

/** Returns a point within a geometry */
QgsGeometry* pointOnSurface() /Factory/;

/** Returns the smallest convex polygon that contains all the points in the geometry. */
QgsGeometry* convexHull() /Factory/;

Expand Down
1 change: 1 addition & 0 deletions python/core/qgspallabeling.sip
Expand Up @@ -394,6 +394,7 @@ class QgsPalLayerSettings
unsigned int placementFlags;

bool centroidWhole; // whether centroid calculated from whole or visible polygon
bool centroidInside; // whether centroid-point calculated must be inside polygon
double dist; // distance from the feature (in mm)
bool distInMapUnits; //true if distance is in map units (otherwise in mm)
QgsMapUnitScale distMapUnitScale;
Expand Down
2 changes: 2 additions & 0 deletions src/app/qgslabelinggui.cpp
Expand Up @@ -259,6 +259,7 @@ void QgsLabelingGui::init()

// populate placement options
mCentroidRadioWhole->setChecked( lyr.centroidWhole );
mCentroidInsideCheckBox->setChecked( lyr.centroidInside );
switch ( lyr.placement )
{
case QgsPalLayerSettings::AroundPoint:
Expand Down Expand Up @@ -545,6 +546,7 @@ QgsPalLayerSettings QgsLabelingGui::layerSettings()

QWidget* curPlacementWdgt = stackedPlacement->currentWidget();
lyr.centroidWhole = mCentroidRadioWhole->isChecked();
lyr.centroidInside = mCentroidInsideCheckBox->isChecked();
if (( curPlacementWdgt == pagePoint && radAroundPoint->isChecked() )
|| ( curPlacementWdgt == pagePolygon && radAroundCentroid->isChecked() ) )
{
Expand Down
2 changes: 1 addition & 1 deletion src/core/pal/feature.cpp
Expand Up @@ -1344,7 +1344,7 @@ namespace pal
case P_POINT:
case P_POINT_OVER:
double cx, cy;
mapShape->getCentroid( cx, cy );
mapShape->getCentroid( cx, cy, f->layer->getCentroidInside() );
if ( f->layer->getArrangement() == P_POINT_OVER )
nbp = setPositionOverPoint( cx, cy, scale, lPos, delta, angle );
else
Expand Down
2 changes: 1 addition & 1 deletion src/core/pal/layer.cpp
Expand Up @@ -61,7 +61,7 @@ namespace pal

Layer::Layer( const char *lyrName, double min_scale, double max_scale, Arrangement arrangement, Units label_unit, double defaultPriority, bool obstacle, bool active, bool toLabel, Pal *pal, bool displayAll )
: pal( pal ), obstacle( obstacle ), active( active ),
toLabel( toLabel ), displayAll( displayAll ), label_unit( label_unit ),
toLabel( toLabel ), displayAll( displayAll ), centroidInside( false ), label_unit( label_unit ),
min_scale( min_scale ), max_scale( max_scale ),
arrangement( arrangement ), arrangementFlags( 0 ), mode( LabelPerFeature ), mergeLines( false )
{
Expand Down
4 changes: 4 additions & 0 deletions src/core/pal/layer.h
Expand Up @@ -101,6 +101,7 @@ namespace pal
bool active;
bool toLabel;
bool displayAll;
bool centroidInside;

Units label_unit;

Expand Down Expand Up @@ -291,6 +292,9 @@ namespace pal
void setUpsidedownLabels( UpsideDownLabels ud ) { upsidedownLabels = ud; }
UpsideDownLabels getUpsidedownLabels() const { return upsidedownLabels; }

void setCentroidInside( bool forceInside ) { centroidInside = forceInside; }
bool getCentroidInside() const { return centroidInside; }

/**
* \brief register a feature in the layer
*
Expand Down
31 changes: 30 additions & 1 deletion src/core/pal/pointset.cpp
Expand Up @@ -956,7 +956,7 @@ namespace pal



void PointSet::getCentroid( double &px, double &py )
void PointSet::getCentroid( double &px, double &py, bool forceInside )
{
// for explanation see this page:
// http://local.wasp.uwa.edu.au/~pbourke/geometry/polyarea/
Expand Down Expand Up @@ -984,6 +984,35 @@ namespace pal
px = cx / ( 3 * A ) + x[0];
py = cy / ( 3 * A ) + y[0];
}

// check if centroid inside in polygon
if ( forceInside && !isPointInPolygon( nbPoints, x, y, px, py ) )
{
GEOSCoordSequence *coord = GEOSCoordSeq_create( nbPoints, 2 );

for ( int i = 0; i < nbPoints; ++i )
{
GEOSCoordSeq_setX( coord, i, x[i] );
GEOSCoordSeq_setY( coord, i, y[i] );
}

GEOSGeometry *geom = GEOSGeom_createPolygon( GEOSGeom_createLinearRing( coord ), 0, 0 );

if ( geom )
{
GEOSGeometry *pointGeom = GEOSPointOnSurface( geom );

if ( pointGeom )
{
const GEOSCoordSequence *coordSeq = GEOSGeom_getCoordSeq( pointGeom );
GEOSCoordSeq_getX( coordSeq, 0, &px );
GEOSCoordSeq_getY( coordSeq, 0, &py );

GEOSGeom_destroy( pointGeom );
}
GEOSGeom_destroy( geom );
}
}
}

} // end namespace
Expand Down
2 changes: 1 addition & 1 deletion src/core/pal/pointset.h
Expand Up @@ -160,7 +160,7 @@ namespace pal

//double getDistInside(double px, double py);

void getCentroid( double &px, double &py );
void getCentroid( double &px, double &py, bool forceInside = false );


int getGeosType() const { return type; }
Expand Down
16 changes: 16 additions & 0 deletions src/core/qgsgeometry.cpp
Expand Up @@ -145,6 +145,7 @@ static GEOSInit geosinit;
#define GEOSArea(g, a) GEOSArea( (GEOSGeometry*) g, a )
#define GEOSTopologyPreserveSimplify(g, t) GEOSTopologyPreserveSimplify( (GEOSGeometry*) g, t )
#define GEOSGetCentroid(g) GEOSGetCentroid( (GEOSGeometry*) g )
#define GEOSPointOnSurface(g) GEOSPointOnSurface( (GEOSGeometry*) g )

#define GEOSCoordSeq_getSize(cs,n) GEOSCoordSeq_getSize( (GEOSCoordSequence *) cs, n )
#define GEOSCoordSeq_getX(cs,i,x) GEOSCoordSeq_getX( (GEOSCoordSequence *)cs, i, x )
Expand Down Expand Up @@ -5623,6 +5624,21 @@ QgsGeometry* QgsGeometry::centroid()
CATCH_GEOS( 0 )
}

QgsGeometry* QgsGeometry::pointOnSurface()
{
if ( mDirtyGeos )
exportWkbToGeos();

if ( !mGeos )
return 0;

try
{
return fromGeosGeom( GEOSPointOnSurface( mGeos ) );
}
CATCH_GEOS( 0 )
}

QgsGeometry* QgsGeometry::convexHull()
{
if ( mDirtyGeos )
Expand Down
3 changes: 3 additions & 0 deletions src/core/qgsgeometry.h
Expand Up @@ -363,6 +363,9 @@ class CORE_EXPORT QgsGeometry
* and for point based geometries, the point itself is returned */
QgsGeometry* centroid();

/** Returns a point within a geometry */
QgsGeometry* pointOnSurface();

/** Returns the smallest convex polygon that contains all the points in the geometry. */
QgsGeometry* convexHull();

Expand Down
7 changes: 7 additions & 0 deletions src/core/qgspallabeling.cpp
Expand Up @@ -311,6 +311,7 @@ QgsPalLayerSettings::QgsPalLayerSettings()
placement = AroundPoint;
placementFlags = 0;
centroidWhole = false;
centroidInside = false;
quadOffset = QuadrantOver;
xOffset = 0;
yOffset = 0;
Expand Down Expand Up @@ -502,6 +503,7 @@ QgsPalLayerSettings::QgsPalLayerSettings( const QgsPalLayerSettings& s )
placement = s.placement;
placementFlags = s.placementFlags;
centroidWhole = s.centroidWhole;
centroidInside = s.centroidInside;
quadOffset = s.quadOffset;
xOffset = s.xOffset;
yOffset = s.yOffset;
Expand Down Expand Up @@ -997,6 +999,7 @@ void QgsPalLayerSettings::readFromLayer( QgsVectorLayer* layer )
placement = ( Placement )layer->customProperty( "labeling/placement" ).toInt();
placementFlags = layer->customProperty( "labeling/placementFlags" ).toUInt();
centroidWhole = layer->customProperty( "labeling/centroidWhole", QVariant( false ) ).toBool();
centroidInside = layer->customProperty( "labeling/centroidInside", QVariant( false ) ).toBool();
dist = layer->customProperty( "labeling/dist" ).toDouble();
distInMapUnits = layer->customProperty( "labeling/distInMapUnits" ).toBool();
distMapUnitScale.minScale = layer->customProperty( "labeling/distMapUnitMinScale", 0.0 ).toDouble();
Expand Down Expand Up @@ -1167,6 +1170,7 @@ void QgsPalLayerSettings::writeToLayer( QgsVectorLayer* layer )
layer->setCustomProperty( "labeling/placement", placement );
layer->setCustomProperty( "labeling/placementFlags", ( unsigned int )placementFlags );
layer->setCustomProperty( "labeling/centroidWhole", centroidWhole );
layer->setCustomProperty( "labeling/centroidInside", centroidInside );
layer->setCustomProperty( "labeling/dist", dist );
layer->setCustomProperty( "labeling/distInMapUnits", distInMapUnits );
layer->setCustomProperty( "labeling/distMapUnitMinScale", distMapUnitScale.minScale );
Expand Down Expand Up @@ -3389,6 +3393,9 @@ int QgsPalLabeling::prepareLayer( QgsVectorLayer* layer, QStringList& attrNames,
// set whether adjacent lines should be merged
l->setMergeConnectedLines( lyr.mergeLines );

// set whether location of centroid must be inside of polygons
l->setCentroidInside( lyr.centroidInside );

// set how to show upside-down labels
Layer::UpsideDownLabels upsdnlabels;
switch ( lyr.upsidedownLabels )
Expand Down
1 change: 1 addition & 0 deletions src/core/qgspallabeling.h
Expand Up @@ -374,6 +374,7 @@ class CORE_EXPORT QgsPalLayerSettings
unsigned int placementFlags;

bool centroidWhole; // whether centroid calculated from whole or visible polygon
bool centroidInside; // whether centroid-point calculated must be inside polygon
double dist; // distance from the feature (in mm)
bool distInMapUnits; //true if distance is in map units (otherwise in mm)
QgsMapUnitScale distMapUnitScale;
Expand Down
23 changes: 15 additions & 8 deletions src/core/symbology-ng/qgsfillsymbollayerv2.cpp
Expand Up @@ -3166,7 +3166,7 @@ QSet<QString> QgsPointPatternFillSymbolLayer::usedAttributes() const
//////////////


QgsCentroidFillSymbolLayerV2::QgsCentroidFillSymbolLayerV2(): mMarker( NULL )
QgsCentroidFillSymbolLayerV2::QgsCentroidFillSymbolLayerV2(): mMarker( NULL ), mPointOnSurface( false )
{
setSubSymbol( new QgsMarkerSymbolV2() );
}
Expand All @@ -3178,8 +3178,12 @@ QgsCentroidFillSymbolLayerV2::~QgsCentroidFillSymbolLayerV2()

QgsSymbolLayerV2* QgsCentroidFillSymbolLayerV2::create( const QgsStringMap& properties )
{
Q_UNUSED( properties );
return new QgsCentroidFillSymbolLayerV2();
QgsCentroidFillSymbolLayerV2* sl = new QgsCentroidFillSymbolLayerV2();

if ( properties.contains( "point_on_surface" ) )
sl->setPointOnSurface( properties["point_on_surface"].toInt() != 0 );

return sl;
}

QString QgsCentroidFillSymbolLayerV2::layerType() const
Expand Down Expand Up @@ -3208,13 +3212,15 @@ void QgsCentroidFillSymbolLayerV2::renderPolygon( const QPolygonF& points, QList
{
Q_UNUSED( rings );

QPointF centroid = QgsSymbolLayerV2Utils::polygonCentroid( points );
QPointF centroid = mPointOnSurface ? QgsSymbolLayerV2Utils::polygonPointOnSurface( points ) : QgsSymbolLayerV2Utils::polygonCentroid( points );
mMarker->renderPoint( centroid, context.feature(), context.renderContext(), -1, context.selected() );
}

QgsStringMap QgsCentroidFillSymbolLayerV2::properties() const
{
return QgsStringMap();
QgsStringMap map;
map["point_on_surface"] = QString::number( mPointOnSurface );
return map;
}

QgsSymbolLayerV2* QgsCentroidFillSymbolLayerV2::clone() const
Expand All @@ -3223,6 +3229,7 @@ QgsSymbolLayerV2* QgsCentroidFillSymbolLayerV2::clone() const
x->mAngle = mAngle;
x->mColor = mColor;
x->setSubSymbol( mMarker->clone() );
x->setPointOnSurface( mPointOnSurface );
return x;
}

Expand All @@ -3246,9 +3253,9 @@ QgsSymbolLayerV2* QgsCentroidFillSymbolLayerV2::createFromSld( QDomElement &elem
layers.append( l );
QgsMarkerSymbolV2 *marker = new QgsMarkerSymbolV2( layers );

QgsCentroidFillSymbolLayerV2* x = new QgsCentroidFillSymbolLayerV2();
x->setSubSymbol( marker );
return x;
QgsCentroidFillSymbolLayerV2* sl = new QgsCentroidFillSymbolLayerV2();
sl->setSubSymbol( marker );
return sl;
}


Expand Down
4 changes: 4 additions & 0 deletions src/core/symbology-ng/qgsfillsymbollayerv2.h
Expand Up @@ -904,8 +904,12 @@ class CORE_EXPORT QgsCentroidFillSymbolLayerV2 : public QgsFillSymbolLayerV2

virtual QSet<QString> usedAttributes() const;

void setPointOnSurface( bool pointOnSurface ) { mPointOnSurface = pointOnSurface; }
bool pointOnSurface() const { return mPointOnSurface; }

protected:
QgsMarkerSymbolV2* mMarker;
bool mPointOnSurface;
};

#endif
Expand Down
56 changes: 56 additions & 0 deletions src/core/symbology-ng/qgssymbollayerv2utils.cpp
Expand Up @@ -3179,6 +3179,62 @@ QPointF QgsSymbolLayerV2Utils::polygonCentroid( const QPolygonF& points )
return QPointF( cx, cy );
}

QPointF QgsSymbolLayerV2Utils::polygonPointOnSurface( const QPolygonF& points )
{
QPointF centroid = QgsSymbolLayerV2Utils::polygonCentroid( points );

// check if centroid inside in polygon
if ( !QgsSymbolLayerV2Utils::pointInPolygon( points, centroid ) )
{
unsigned int i, pointCount = points.count();

QgsPolyline polyline( pointCount );
for ( i = 0; i < pointCount; ++i ) polyline[i] = QgsPoint( points[i].x(), points[i].y() );

QgsGeometry* geom = QgsGeometry::fromPolygon( QgsPolygon() << polyline );
if ( geom )
{
QgsGeometry* pointOnSurfaceGeom = geom->pointOnSurface();

if ( pointOnSurfaceGeom )
{
QgsPoint point = pointOnSurfaceGeom->asPoint();
delete pointOnSurfaceGeom;
delete geom;

return QPointF( point.x(), point.y() );
}
delete geom;
}
}
return centroid;
}

bool QgsSymbolLayerV2Utils::pointInPolygon( const QPolygonF &points, const QPointF &point )
{
bool inside = false;

double x = point.x();
double y = point.y();

for ( int i = 0, j = points.count() - 1; i < points.count(); i++ )
{
const QPointF& p1 = points[i];
const QPointF& p2 = points[j];

if ( p1.x() == x && p1.y() == y )
return true;

if ( ( p1.y() < y && p2.y() >= y ) || ( p2.y() < y && p1.y() >= y ) )
{
if ( p1.x() + ( y - p1.y() ) / ( p2.y() - p1.y() )*( p2.x() - p1.x() ) <= x )
inside = !inside;
}

j = i;
}
return inside;
}

QgsExpression* QgsSymbolLayerV2Utils::fieldOrExpressionToExpression( const QString& fieldOrExpression )
{
Expand Down
6 changes: 6 additions & 0 deletions src/core/symbology-ng/qgssymbollayerv2utils.h
Expand Up @@ -287,6 +287,12 @@ class CORE_EXPORT QgsSymbolLayerV2Utils
//! Calculate the centroid point of a QPolygonF
static QPointF polygonCentroid( const QPolygonF& points );

//! Calculate a point within of a QPolygonF
static QPointF polygonPointOnSurface( const QPolygonF& points );

//! Calculate whether a point is within of a QPolygonF
static bool pointInPolygon( const QPolygonF &points, const QPointF &point );

/** Return a new valid expression instance for given field or expression string.
* If the input is not a valid expression, it is assumed that it is a field name and gets properly quoted.
* If the string is empty, returns null pointer.
Expand Down
12 changes: 10 additions & 2 deletions src/gui/symbology-ng/qgssymbollayerv2widget.cpp
Expand Up @@ -2794,12 +2794,20 @@ void QgsCentroidFillSymbolLayerV2Widget::setSymbolLayer( QgsSymbolLayerV2* layer

// layer type is correct, we can do the cast
mLayer = static_cast<QgsCentroidFillSymbolLayerV2*>( layer );

// set values
mDrawInsideCheckBox->blockSignals( true );
mDrawInsideCheckBox->setChecked( mLayer->pointOnSurface() );
mDrawInsideCheckBox->blockSignals( false );
}

QgsSymbolLayerV2* QgsCentroidFillSymbolLayerV2Widget::symbolLayer()
{
return mLayer;
}



void QgsCentroidFillSymbolLayerV2Widget::on_mDrawInsideCheckBox_stateChanged( int state )
{
mLayer->setPointOnSurface( state == Qt::Checked );
emit changed();
}
3 changes: 3 additions & 0 deletions src/gui/symbology-ng/qgssymbollayerv2widget.h
Expand Up @@ -482,6 +482,9 @@ class GUI_EXPORT QgsCentroidFillSymbolLayerV2Widget : public QgsSymbolLayerV2Wid
virtual void setSymbolLayer( QgsSymbolLayerV2* layer );
virtual QgsSymbolLayerV2* symbolLayer();

public slots:
void on_mDrawInsideCheckBox_stateChanged( int state );

protected:
QgsCentroidFillSymbolLayerV2* mLayer;
};
Expand Down

0 comments on commit fe42b00

Please sign in to comment.