Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsgeometrysimplifier.cpp 3 : : --------------------- 4 : : begin : December 2013 5 : : copyright : (C) 2013 by Alvaro Huarte 6 : : email : http://wiki.osgeo.org/wiki/Alvaro_Huarte 7 : : 8 : : *************************************************************************** 9 : : * * 10 : : * This program is free software; you can redistribute it and/or modify * 11 : : * it under the terms of the GNU General Public License as published by * 12 : : * the Free Software Foundation; either version 2 of the License, or * 13 : : * (at your option) any later version. * 14 : : * * 15 : : ***************************************************************************/ 16 : : 17 : : #include <limits> 18 : : #include "qgsgeometrysimplifier.h" 19 : : #include "qgsrectangle.h" 20 : : #include "qgsgeometry.h" 21 : : #include "qgsgeos.h" 22 : : 23 : 0 : bool QgsAbstractGeometrySimplifier::isGeneralizableByDeviceBoundingBox( const QgsRectangle &envelope, float mapToPixelTol ) 24 : : { 25 : 0 : return ( envelope.xMaximum() - envelope.xMinimum() ) < mapToPixelTol && ( envelope.yMaximum() - envelope.yMinimum() ) < mapToPixelTol; 26 : : } 27 : : 28 : 0 : bool QgsAbstractGeometrySimplifier::isGeneralizableByDeviceBoundingBox( const QVector<QPointF> &points, float mapToPixelTol ) 29 : : { 30 : 0 : QgsRectangle r; 31 : 0 : r.setMinimal(); 32 : : 33 : 0 : for ( int i = 0, numPoints = points.size(); i < numPoints; ++i ) 34 : : { 35 : 0 : r.combineExtentWith( points[i].x(), points[i].y() ); 36 : 0 : } 37 : 0 : return isGeneralizableByDeviceBoundingBox( r, mapToPixelTol ); 38 : : } 39 : : 40 : : /***************************************************************************/ 41 : : 42 : 0 : QgsTopologyPreservingSimplifier::QgsTopologyPreservingSimplifier( double tolerance ) : mTolerance( tolerance ) 43 : 0 : { 44 : 0 : } 45 : : 46 : 0 : QgsGeometry QgsTopologyPreservingSimplifier::simplify( const QgsGeometry &geometry ) const 47 : : { 48 : 0 : return geometry.simplify( mTolerance ); 49 : : } 50 : : 51 : 0 : QgsAbstractGeometry *QgsTopologyPreservingSimplifier::simplify( const QgsAbstractGeometry *geometry ) const 52 : : { 53 : 0 : if ( !geometry ) 54 : : { 55 : 0 : return nullptr; 56 : : } 57 : : 58 : 0 : QgsGeos geos( geometry ); 59 : 0 : std::unique_ptr< QgsAbstractGeometry > simplifiedGeom( geos.simplify( mTolerance ) ); 60 : 0 : return simplifiedGeom.release(); 61 : 0 : } 62 : :