Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmsegmentize.cpp 3 : : --------------------- 4 : : begin : March 2018 5 : : copyright : (C) 2018 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 "qgsalgorithmsegmentize.h" 19 : : 20 : : ///@cond PRIVATE 21 : : 22 : 0 : QString QgsSegmentizeByMaximumDistanceAlgorithm::name() const 23 : : { 24 : 0 : return QStringLiteral( "segmentizebymaxdistance" ); 25 : : } 26 : : 27 : 0 : QString QgsSegmentizeByMaximumDistanceAlgorithm::displayName() const 28 : : { 29 : 0 : return QObject::tr( "Segmentize by maximum distance" ); 30 : : } 31 : : 32 : 0 : QStringList QgsSegmentizeByMaximumDistanceAlgorithm::tags() const 33 : : { 34 : 0 : return QObject::tr( "straighten,linearize,densify,curves,curved,circular" ).split( ',' ); 35 : 0 : } 36 : : 37 : 0 : QString QgsSegmentizeByMaximumDistanceAlgorithm::group() const 38 : : { 39 : 0 : return QObject::tr( "Vector geometry" ); 40 : : } 41 : : 42 : 0 : QString QgsSegmentizeByMaximumDistanceAlgorithm::groupId() const 43 : : { 44 : 0 : return QStringLiteral( "vectorgeometry" ); 45 : : } 46 : : 47 : 0 : QString QgsSegmentizeByMaximumDistanceAlgorithm::outputName() const 48 : : { 49 : 0 : return QObject::tr( "Segmentized" ); 50 : : } 51 : : 52 : 0 : QString QgsSegmentizeByMaximumDistanceAlgorithm::shortHelpString() const 53 : : { 54 : 0 : return QObject::tr( "This algorithm segmentizes a geometry by converting curved sections to linear sections.\n\n" 55 : : "The segmentization is performed by specifying the maximum allowed offset distance between the original" 56 : : "curve and the segmentized representation.\n\n" 57 : : "Non-curved geometries will be retained without change." ); 58 : : } 59 : : 60 : 0 : QgsSegmentizeByMaximumDistanceAlgorithm *QgsSegmentizeByMaximumDistanceAlgorithm::createInstance() const 61 : : { 62 : 0 : return new QgsSegmentizeByMaximumDistanceAlgorithm(); 63 : 0 : } 64 : : 65 : 0 : QList<int> QgsSegmentizeByMaximumDistanceAlgorithm::inputLayerTypes() const 66 : : { 67 : 0 : return QList<int>() << QgsProcessing::TypeVectorLine << QgsProcessing::TypeVectorPolygon; 68 : 0 : } 69 : : 70 : 0 : void QgsSegmentizeByMaximumDistanceAlgorithm::initParameters( const QVariantMap & ) 71 : : { 72 : 0 : std::unique_ptr< QgsProcessingParameterDistance > tolerance = std::make_unique< QgsProcessingParameterDistance >( QStringLiteral( "DISTANCE" ), 73 : 0 : QObject::tr( "Maximum offset distance" ), 74 : 0 : 1.0, QStringLiteral( "INPUT" ), false, 0, 10000000.0 ); 75 : 0 : tolerance->setIsDynamic( true ); 76 : 0 : tolerance->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "DISTANCE" ), QObject::tr( "Maximum offset distance" ), QgsPropertyDefinition::DoublePositive ) ); 77 : 0 : tolerance->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) ); 78 : 0 : addParameter( tolerance.release() ); 79 : 0 : } 80 : : 81 : 0 : bool QgsSegmentizeByMaximumDistanceAlgorithm::supportInPlaceEdit( const QgsMapLayer *layer ) const 82 : : { 83 : : Q_UNUSED( layer ) 84 : 0 : return false; 85 : : } 86 : : 87 : 0 : bool QgsSegmentizeByMaximumDistanceAlgorithm::prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback * ) 88 : : { 89 : 0 : mTolerance = parameterAsDouble( parameters, QStringLiteral( "DISTANCE" ), context ); 90 : 0 : mDynamicTolerance = QgsProcessingParameters::isDynamic( parameters, QStringLiteral( "DISTANCE" ) ); 91 : 0 : if ( mDynamicTolerance ) 92 : 0 : mToleranceProperty = parameters.value( QStringLiteral( "DISTANCE" ) ).value< QgsProperty >(); 93 : : 94 : 0 : return true; 95 : 0 : } 96 : : 97 : 0 : QgsFeatureList QgsSegmentizeByMaximumDistanceAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback * ) 98 : : { 99 : 0 : QgsFeature f = feature; 100 : 0 : if ( f.hasGeometry() ) 101 : : { 102 : 0 : QgsGeometry geometry = f.geometry(); 103 : 0 : double tolerance = mTolerance; 104 : 0 : if ( mDynamicTolerance ) 105 : 0 : tolerance = mToleranceProperty.valueAsDouble( context.expressionContext(), tolerance ); 106 : 0 : geometry.convertToStraightSegment( tolerance, QgsAbstractGeometry::MaximumDifference ); 107 : 0 : f.setGeometry( geometry ); 108 : 0 : } 109 : 0 : return QgsFeatureList() << f; 110 : 0 : } 111 : : 112 : : 113 : : 114 : : 115 : : 116 : 0 : QString QgsSegmentizeByMaximumAngleAlgorithm::name() const 117 : : { 118 : 0 : return QStringLiteral( "segmentizebymaxangle" ); 119 : : } 120 : : 121 : 0 : QString QgsSegmentizeByMaximumAngleAlgorithm::displayName() const 122 : : { 123 : 0 : return QObject::tr( "Segmentize by maximum angle" ); 124 : : } 125 : : 126 : 0 : QStringList QgsSegmentizeByMaximumAngleAlgorithm::tags() const 127 : : { 128 : 0 : return QObject::tr( "straighten,linearize,densify,curves,curved,circular,angle" ).split( ',' ); 129 : 0 : } 130 : : 131 : 0 : QString QgsSegmentizeByMaximumAngleAlgorithm::group() const 132 : : { 133 : 0 : return QObject::tr( "Vector geometry" ); 134 : : } 135 : : 136 : 0 : QString QgsSegmentizeByMaximumAngleAlgorithm::groupId() const 137 : : { 138 : 0 : return QStringLiteral( "vectorgeometry" ); 139 : : } 140 : : 141 : 0 : QString QgsSegmentizeByMaximumAngleAlgorithm::outputName() const 142 : : { 143 : 0 : return QObject::tr( "Segmentized" ); 144 : : } 145 : : 146 : 0 : QString QgsSegmentizeByMaximumAngleAlgorithm::shortHelpString() const 147 : : { 148 : 0 : return QObject::tr( "This algorithm segmentizes a geometry by converting curved sections to linear sections.\n\n" 149 : : "The segmentization is performed by specifying the maximum allowed radius angle between vertices " 150 : : "on the straightened geometry (e.g the angle of the arc created from the original arc center to consecutive " 151 : : "output vertices on the linearized geometry).\n\n" 152 : : "Non-curved geometries will be retained without change." ); 153 : : } 154 : : 155 : 0 : QgsSegmentizeByMaximumAngleAlgorithm *QgsSegmentizeByMaximumAngleAlgorithm::createInstance() const 156 : : { 157 : 0 : return new QgsSegmentizeByMaximumAngleAlgorithm(); 158 : 0 : } 159 : : 160 : 0 : QList<int> QgsSegmentizeByMaximumAngleAlgorithm::inputLayerTypes() const 161 : : { 162 : 0 : return QList<int>() << QgsProcessing::TypeVectorLine << QgsProcessing::TypeVectorPolygon; 163 : 0 : } 164 : : 165 : 0 : void QgsSegmentizeByMaximumAngleAlgorithm::initParameters( const QVariantMap & ) 166 : : { 167 : 0 : std::unique_ptr< QgsProcessingParameterNumber > tolerance = std::make_unique< QgsProcessingParameterNumber >( QStringLiteral( "ANGLE" ), 168 : 0 : QObject::tr( "Maximum angle between vertices (degrees)" ), QgsProcessingParameterNumber::Double, 169 : 0 : 5.0, false, 0, 360.0 ); 170 : 0 : tolerance->setIsDynamic( true ); 171 : 0 : tolerance->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "ANGLE" ), QObject::tr( "Maximum angle between vertices (degrees)" ), QgsPropertyDefinition::DoublePositive ) ); 172 : 0 : tolerance->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) ); 173 : 0 : addParameter( tolerance.release() ); 174 : 0 : } 175 : : 176 : 0 : bool QgsSegmentizeByMaximumAngleAlgorithm::supportInPlaceEdit( const QgsMapLayer *layer ) const 177 : : { 178 : : Q_UNUSED( layer ) 179 : 0 : return false; 180 : : } 181 : : 182 : 0 : bool QgsSegmentizeByMaximumAngleAlgorithm::prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback * ) 183 : : { 184 : 0 : mTolerance = parameterAsDouble( parameters, QStringLiteral( "ANGLE" ), context ); 185 : 0 : mDynamicTolerance = QgsProcessingParameters::isDynamic( parameters, QStringLiteral( "ANGLE" ) ); 186 : 0 : if ( mDynamicTolerance ) 187 : 0 : mToleranceProperty = parameters.value( QStringLiteral( "ANGLE" ) ).value< QgsProperty >(); 188 : : 189 : 0 : return true; 190 : 0 : } 191 : : 192 : 0 : QgsFeatureList QgsSegmentizeByMaximumAngleAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback * ) 193 : : { 194 : 0 : QgsFeature f = feature; 195 : 0 : if ( f.hasGeometry() ) 196 : : { 197 : 0 : QgsGeometry geometry = f.geometry(); 198 : 0 : double tolerance = mTolerance; 199 : 0 : if ( mDynamicTolerance ) 200 : 0 : tolerance = mToleranceProperty.valueAsDouble( context.expressionContext(), tolerance ); 201 : 0 : geometry.convertToStraightSegment( M_PI * tolerance / 180.0, QgsAbstractGeometry::MaximumAngle ); 202 : 0 : f.setGeometry( geometry ); 203 : 0 : } 204 : 0 : return QgsFeatureList() << f; 205 : 0 : } 206 : : 207 : : ///@endcond 208 : : 209 : :