Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmrotate.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 "qgsalgorithmrotate.h" 19 : : 20 : : ///@cond PRIVATE 21 : : 22 : 0 : QString QgsRotateFeaturesAlgorithm::name() const 23 : : { 24 : 0 : return QStringLiteral( "rotatefeatures" ); 25 : : } 26 : : 27 : 0 : QString QgsRotateFeaturesAlgorithm::displayName() const 28 : : { 29 : 0 : return QObject::tr( "Rotate" ); 30 : : } 31 : : 32 : 0 : QStringList QgsRotateFeaturesAlgorithm::tags() const 33 : : { 34 : 0 : return QObject::tr( "rotate,around,center,point" ).split( ',' ); 35 : 0 : } 36 : : 37 : 0 : QString QgsRotateFeaturesAlgorithm::group() const 38 : : { 39 : 0 : return QObject::tr( "Vector geometry" ); 40 : : } 41 : : 42 : 0 : QString QgsRotateFeaturesAlgorithm::groupId() const 43 : : { 44 : 0 : return QStringLiteral( "vectorgeometry" ); 45 : : } 46 : : 47 : 0 : QString QgsRotateFeaturesAlgorithm::outputName() const 48 : : { 49 : 0 : return QObject::tr( "Rotated" ); 50 : : } 51 : : 52 : 0 : QString QgsRotateFeaturesAlgorithm::shortHelpString() const 53 : : { 54 : 0 : return QObject::tr( "This algorithm rotates feature geometries, by the specified angle clockwise" ) 55 : 0 : + QStringLiteral( "\n\n" ) 56 : 0 : + QObject::tr( "Optionally, the rotation can occur around a preset point. If not set the rotation occurs around each feature's centroid." ); 57 : 0 : } 58 : : 59 : 0 : QgsRotateFeaturesAlgorithm *QgsRotateFeaturesAlgorithm::createInstance() const 60 : : { 61 : 0 : return new QgsRotateFeaturesAlgorithm(); 62 : 0 : } 63 : : 64 : 0 : void QgsRotateFeaturesAlgorithm::initParameters( const QVariantMap & ) 65 : : { 66 : 0 : std::unique_ptr< QgsProcessingParameterNumber > rotation = std::make_unique< QgsProcessingParameterNumber >( QStringLiteral( "ANGLE" ), 67 : 0 : QObject::tr( "Rotation (degrees clockwise)" ), QgsProcessingParameterNumber::Double, 68 : 0 : 0.0 ); 69 : 0 : rotation->setIsDynamic( true ); 70 : 0 : rotation->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "ANGLE" ), QObject::tr( "Rotation (degrees clockwise)" ), QgsPropertyDefinition::Rotation ) ); 71 : 0 : rotation->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) ); 72 : 0 : addParameter( rotation.release() ); 73 : : 74 : 0 : std::unique_ptr< QgsProcessingParameterPoint > anchor = std::make_unique< QgsProcessingParameterPoint >( QStringLiteral( "ANCHOR" ), 75 : 0 : QObject::tr( "Rotation anchor point" ), QVariant(), true ); 76 : 0 : addParameter( anchor.release() ); 77 : 0 : } 78 : : 79 : 0 : bool QgsRotateFeaturesAlgorithm::prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback * ) 80 : : { 81 : 0 : mAngle = parameterAsDouble( parameters, QStringLiteral( "ANGLE" ), context ); 82 : 0 : mDynamicAngle = QgsProcessingParameters::isDynamic( parameters, QStringLiteral( "ANGLE" ) ); 83 : 0 : if ( mDynamicAngle ) 84 : 0 : mAngleProperty = parameters.value( QStringLiteral( "ANGLE" ) ).value< QgsProperty >(); 85 : : 86 : 0 : mUseAnchor = parameters.value( QStringLiteral( "ANCHOR" ) ).isValid(); 87 : 0 : if ( mUseAnchor ) 88 : : { 89 : 0 : mAnchor = parameterAsPoint( parameters, QStringLiteral( "ANCHOR" ), context ); 90 : 0 : mAnchorCrs = parameterAsPointCrs( parameters, QStringLiteral( "ANCHOR" ), context ); 91 : 0 : } 92 : : 93 : 0 : return true; 94 : 0 : } 95 : : 96 : 0 : QgsFeatureList QgsRotateFeaturesAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) 97 : : { 98 : 0 : if ( mUseAnchor && !mTransformedAnchor ) 99 : : { 100 : 0 : mTransformedAnchor = true; 101 : 0 : if ( mAnchorCrs != sourceCrs() ) 102 : : { 103 : 0 : QgsCoordinateTransform ct( mAnchorCrs, sourceCrs(), context.transformContext() ); 104 : : try 105 : : { 106 : 0 : mAnchor = ct.transform( mAnchor ); 107 : 0 : } 108 : : catch ( QgsCsException & ) 109 : : { 110 : 0 : throw QgsProcessingException( QObject::tr( "Could not transform anchor point to destination CRS" ) ); 111 : 0 : } 112 : 0 : } 113 : 0 : } 114 : : 115 : 0 : QgsFeature f = feature; 116 : 0 : if ( f.hasGeometry() ) 117 : : { 118 : 0 : QgsGeometry geometry = f.geometry(); 119 : : 120 : 0 : double angle = mAngle; 121 : 0 : if ( mDynamicAngle ) 122 : 0 : angle = mAngleProperty.valueAsDouble( context.expressionContext(), angle ); 123 : : 124 : 0 : if ( mUseAnchor ) 125 : : { 126 : 0 : geometry.rotate( angle, mAnchor ); 127 : 0 : f.setGeometry( geometry ); 128 : 0 : } 129 : : else 130 : : { 131 : 0 : QgsGeometry centroid = geometry.centroid(); 132 : 0 : if ( !centroid.isNull() ) 133 : : { 134 : 0 : geometry.rotate( angle, centroid.asPoint() ); 135 : 0 : f.setGeometry( geometry ); 136 : 0 : } 137 : : else 138 : : { 139 : 0 : feedback->reportError( QObject::tr( "Could not calculate centroid for feature %1: %2" ).arg( feature.id() ).arg( centroid.lastError() ) ); 140 : : } 141 : 0 : } 142 : 0 : } 143 : 0 : return QgsFeatureList() << f; 144 : 0 : } 145 : : 146 : : 147 : : ///@endcond 148 : : 149 : :