Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmsimplify.cpp 3 : : --------------------- 4 : : begin : April 2017 5 : : copyright : (C) 2017 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #include "qgsalgorithmsimplify.h" 19 : : 20 : : ///@cond PRIVATE 21 : : 22 : 0 : QString QgsSimplifyAlgorithm::name() const 23 : : { 24 : 0 : return QStringLiteral( "simplifygeometries" ); 25 : : } 26 : : 27 : 0 : QString QgsSimplifyAlgorithm::displayName() const 28 : : { 29 : 0 : return QObject::tr( "Simplify" ); 30 : : } 31 : : 32 : 0 : QStringList QgsSimplifyAlgorithm::tags() const 33 : : { 34 : 0 : return QObject::tr( "simplify,generalize,douglas,peucker,visvalingam" ).split( ',' ); 35 : 0 : } 36 : : 37 : 0 : QString QgsSimplifyAlgorithm::group() const 38 : : { 39 : 0 : return QObject::tr( "Vector geometry" ); 40 : : } 41 : : 42 : 0 : QString QgsSimplifyAlgorithm::groupId() const 43 : : { 44 : 0 : return QStringLiteral( "vectorgeometry" ); 45 : : } 46 : : 47 : 0 : QString QgsSimplifyAlgorithm::outputName() const 48 : : { 49 : 0 : return QObject::tr( "Simplified" ); 50 : : } 51 : : 52 : 0 : QString QgsSimplifyAlgorithm::shortHelpString() const 53 : : { 54 : 0 : return QObject::tr( "This algorithm simplifies the geometries in a line or polygon layer. It creates a new layer " 55 : : "with the same features as the ones in the input layer, but with geometries containing a lower number of vertices.\n\n" 56 : : "The algorithm gives a choice of simplification methods, including distance based " 57 : : "(the \"Douglas-Peucker\" algorithm), area based (\"Visvalingam\" algorithm) and snapping geometries to a grid." ); 58 : : } 59 : : 60 : 0 : QgsSimplifyAlgorithm *QgsSimplifyAlgorithm::createInstance() const 61 : : { 62 : 0 : return new QgsSimplifyAlgorithm(); 63 : 0 : } 64 : : 65 : 0 : QList<int> QgsSimplifyAlgorithm::inputLayerTypes() const 66 : : { 67 : 0 : return QList<int>() << QgsProcessing::TypeVectorLine << QgsProcessing::TypeVectorPolygon; 68 : 0 : } 69 : : 70 : 0 : void QgsSimplifyAlgorithm::initParameters( const QVariantMap & ) 71 : : { 72 : 0 : QStringList methods; 73 : 0 : methods << QObject::tr( "Distance (Douglas-Peucker)" ) 74 : 0 : << QObject::tr( "Snap to grid" ) 75 : 0 : << QObject::tr( "Area (Visvalingam)" ); 76 : : 77 : 0 : addParameter( new QgsProcessingParameterEnum( 78 : 0 : QStringLiteral( "METHOD" ), 79 : 0 : QObject::tr( "Simplification method" ), 80 : 0 : methods, false, 0 ) ); 81 : 0 : std::unique_ptr< QgsProcessingParameterDistance > tolerance = std::make_unique< QgsProcessingParameterDistance >( QStringLiteral( "TOLERANCE" ), 82 : 0 : QObject::tr( "Tolerance" ), 1.0, QStringLiteral( "INPUT" ), false, 0, 10000000.0 ); 83 : 0 : tolerance->setIsDynamic( true ); 84 : 0 : tolerance->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "Tolerance" ), QObject::tr( "Tolerance distance" ), QgsPropertyDefinition::DoublePositive ) ); 85 : 0 : tolerance->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) ); 86 : 0 : addParameter( tolerance.release() ); 87 : 0 : } 88 : : 89 : 0 : bool QgsSimplifyAlgorithm::prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback * ) 90 : : { 91 : 0 : mTolerance = parameterAsDouble( parameters, QStringLiteral( "TOLERANCE" ), context ); 92 : 0 : mDynamicTolerance = QgsProcessingParameters::isDynamic( parameters, QStringLiteral( "TOLERANCE" ) ); 93 : 0 : if ( mDynamicTolerance ) 94 : 0 : mToleranceProperty = parameters.value( QStringLiteral( "TOLERANCE" ) ).value< QgsProperty >(); 95 : : 96 : 0 : mMethod = static_cast< QgsMapToPixelSimplifier::SimplifyAlgorithm >( parameterAsEnum( parameters, QStringLiteral( "METHOD" ), context ) ); 97 : 0 : if ( mMethod != QgsMapToPixelSimplifier::Distance ) 98 : 0 : mSimplifier.reset( new QgsMapToPixelSimplifier( QgsMapToPixelSimplifier::SimplifyGeometry, mTolerance, mMethod ) ); 99 : : 100 : 0 : return true; 101 : 0 : } 102 : : 103 : 0 : QgsFeatureList QgsSimplifyAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback * ) 104 : : { 105 : 0 : QgsFeature f = feature; 106 : 0 : if ( f.hasGeometry() ) 107 : : { 108 : 0 : QgsGeometry inputGeometry = f.geometry(); 109 : 0 : QgsGeometry outputGeometry; 110 : 0 : if ( mMethod == QgsMapToPixelSimplifier::Distance ) 111 : : { 112 : 0 : double tolerance = mTolerance; 113 : 0 : if ( mDynamicTolerance ) 114 : 0 : tolerance = mToleranceProperty.valueAsDouble( context.expressionContext(), tolerance ); 115 : 0 : outputGeometry = inputGeometry.simplify( tolerance ); 116 : 0 : } 117 : : else 118 : : { 119 : 0 : if ( !mDynamicTolerance ) 120 : : { 121 : 0 : outputGeometry = mSimplifier->simplify( inputGeometry ); 122 : 0 : } 123 : : else 124 : : { 125 : 0 : double tolerance = mToleranceProperty.valueAsDouble( context.expressionContext(), mTolerance ); 126 : 0 : QgsMapToPixelSimplifier simplifier( QgsMapToPixelSimplifier::SimplifyGeometry, tolerance, mMethod ); 127 : 0 : outputGeometry = simplifier.simplify( inputGeometry ); 128 : 0 : } 129 : : } 130 : 0 : f.setGeometry( outputGeometry ); 131 : 0 : } 132 : 0 : return QgsFeatureList() << f; 133 : 0 : } 134 : : 135 : 0 : QgsProcessingFeatureSource::Flag QgsSimplifyAlgorithm::sourceFlags() const 136 : : { 137 : 0 : return QgsProcessingFeatureSource::FlagSkipGeometryValidityChecks; 138 : : } 139 : : 140 : : ///@endcond 141 : : 142 : :