Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmconverttocurves.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 "qgsalgorithmconverttocurves.h" 19 : : 20 : : ///@cond PRIVATE 21 : : 22 : 0 : QString QgsConvertToCurvesAlgorithm::name() const 23 : : { 24 : 0 : return QStringLiteral( "converttocurves" ); 25 : : } 26 : : 27 : 0 : QString QgsConvertToCurvesAlgorithm::displayName() const 28 : : { 29 : 0 : return QObject::tr( "Convert to curved geometries" ); 30 : : } 31 : : 32 : 0 : QStringList QgsConvertToCurvesAlgorithm::tags() const 33 : : { 34 : 0 : return QObject::tr( "straight,segmentize,curves,curved,circular" ).split( ',' ); 35 : 0 : } 36 : : 37 : 0 : QString QgsConvertToCurvesAlgorithm::group() const 38 : : { 39 : 0 : return QObject::tr( "Vector geometry" ); 40 : : } 41 : : 42 : 0 : QString QgsConvertToCurvesAlgorithm::groupId() const 43 : : { 44 : 0 : return QStringLiteral( "vectorgeometry" ); 45 : : } 46 : : 47 : 0 : QString QgsConvertToCurvesAlgorithm::outputName() const 48 : : { 49 : 0 : return QObject::tr( "Curves" ); 50 : : } 51 : : 52 : 0 : QString QgsConvertToCurvesAlgorithm::shortHelpString() const 53 : : { 54 : 0 : return QObject::tr( "This algorithm converts a geometry into its curved geometry equivalent.\n\n" 55 : : "Already curved geometries will be retained without change." ); 56 : : } 57 : : 58 : 0 : QgsConvertToCurvesAlgorithm *QgsConvertToCurvesAlgorithm::createInstance() const 59 : : { 60 : 0 : return new QgsConvertToCurvesAlgorithm(); 61 : 0 : } 62 : : 63 : 0 : QList<int> QgsConvertToCurvesAlgorithm::inputLayerTypes() const 64 : : { 65 : 0 : return QList<int>() << QgsProcessing::TypeVectorLine << QgsProcessing::TypeVectorPolygon; 66 : 0 : } 67 : : 68 : 0 : void QgsConvertToCurvesAlgorithm::initParameters( const QVariantMap & ) 69 : : { 70 : 0 : std::unique_ptr< QgsProcessingParameterNumber > tolerance = std::make_unique< QgsProcessingParameterNumber >( QStringLiteral( "DISTANCE" ), 71 : 0 : QObject::tr( "Maximum distance tolerance" ), QgsProcessingParameterNumber::Double, 72 : 0 : 0.000001, false, 0, 10000000.0 ); 73 : 0 : tolerance->setIsDynamic( true ); 74 : 0 : tolerance->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "DISTANCE" ), QObject::tr( "Maximum distance tolerance" ), QgsPropertyDefinition::DoublePositive ) ); 75 : 0 : tolerance->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) ); 76 : 0 : addParameter( tolerance.release() ); 77 : : 78 : 0 : std::unique_ptr< QgsProcessingParameterNumber > angleTolerance = std::make_unique< QgsProcessingParameterNumber >( QStringLiteral( "ANGLE" ), 79 : 0 : QObject::tr( "Maximum angle tolerance" ), QgsProcessingParameterNumber::Double, 80 : 0 : 0.000001, false, 0, 45.0 ); 81 : 0 : angleTolerance->setIsDynamic( true ); 82 : 0 : angleTolerance->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "ANGLE" ), QObject::tr( "Maximum angle tolerance" ), QgsPropertyDefinition::DoublePositive ) ); 83 : 0 : angleTolerance->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) ); 84 : 0 : addParameter( angleTolerance.release() ); 85 : 0 : } 86 : : 87 : 0 : bool QgsConvertToCurvesAlgorithm::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 : mAngleTolerance = parameterAsDouble( parameters, QStringLiteral( "ANGLE" ), context ); 95 : 0 : mDynamicAngleTolerance = QgsProcessingParameters::isDynamic( parameters, QStringLiteral( "ANGLE" ) ); 96 : 0 : if ( mDynamicAngleTolerance ) 97 : 0 : mAngleToleranceProperty = parameters.value( QStringLiteral( "ANGLE" ) ).value< QgsProperty >(); 98 : : 99 : 0 : return true; 100 : 0 : } 101 : : 102 : 0 : QgsFeatureList QgsConvertToCurvesAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback * ) 103 : : { 104 : 0 : QgsFeature f = feature; 105 : 0 : if ( f.hasGeometry() ) 106 : : { 107 : 0 : QgsGeometry geometry = f.geometry(); 108 : 0 : double tolerance = mTolerance; 109 : 0 : if ( mDynamicTolerance ) 110 : 0 : tolerance = mToleranceProperty.valueAsDouble( context.expressionContext(), tolerance ); 111 : 0 : double angleTolerance = mAngleTolerance; 112 : 0 : if ( mDynamicAngleTolerance ) 113 : 0 : angleTolerance = mAngleToleranceProperty.valueAsDouble( context.expressionContext(), angleTolerance ); 114 : : 115 : 0 : f.setGeometry( geometry.convertToCurves( tolerance, angleTolerance * M_PI / 180.0 ) ); 116 : 0 : } 117 : 0 : return QgsFeatureList() << f; 118 : 0 : } 119 : : 120 : 0 : QgsWkbTypes::Type QgsConvertToCurvesAlgorithm::outputWkbType( QgsWkbTypes::Type inputWkbType ) const 121 : : { 122 : 0 : if ( QgsWkbTypes::isCurvedType( inputWkbType ) ) 123 : 0 : return inputWkbType; 124 : : 125 : 0 : QgsWkbTypes::Type outType = QgsWkbTypes::Unknown; 126 : 0 : switch ( QgsWkbTypes::geometryType( inputWkbType ) ) 127 : : { 128 : : case QgsWkbTypes::PointGeometry: 129 : : case QgsWkbTypes::NullGeometry: 130 : : case QgsWkbTypes::UnknownGeometry: 131 : 0 : return inputWkbType; 132 : : 133 : : case QgsWkbTypes::LineGeometry: 134 : 0 : outType = QgsWkbTypes::CompoundCurve; 135 : 0 : break; 136 : : 137 : : case QgsWkbTypes::PolygonGeometry: 138 : 0 : outType = QgsWkbTypes::CurvePolygon; 139 : 0 : break; 140 : : } 141 : : 142 : 0 : if ( QgsWkbTypes::isMultiType( inputWkbType ) ) 143 : 0 : outType = QgsWkbTypes::multiType( outType ); 144 : : 145 : 0 : if ( QgsWkbTypes::hasZ( inputWkbType ) ) 146 : 0 : outType = QgsWkbTypes::addZ( outType ); 147 : : 148 : 0 : if ( QgsWkbTypes::hasM( inputWkbType ) ) 149 : 0 : outType = QgsWkbTypes::addM( outType ); 150 : : 151 : 0 : return outType; 152 : 0 : } 153 : : 154 : : 155 : : ///@endcond 156 : : 157 : :