Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmprojectpointcartesian.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 "qgsalgorithmprojectpointcartesian.h" 19 : : #include "qgsmultipoint.h" 20 : : 21 : : ///@cond PRIVATE 22 : : 23 : 0 : QString QgsProjectPointCartesianAlgorithm::name() const 24 : : { 25 : 0 : return QStringLiteral( "projectpointcartesian" ); 26 : : } 27 : : 28 : 0 : QString QgsProjectPointCartesianAlgorithm::displayName() const 29 : : { 30 : 0 : return QObject::tr( "Project points (Cartesian)" ); 31 : : } 32 : : 33 : 0 : QStringList QgsProjectPointCartesianAlgorithm::tags() const 34 : : { 35 : 0 : return QObject::tr( "bearing,azimuth,distance,angle" ).split( ',' ); 36 : 0 : } 37 : : 38 : 0 : QString QgsProjectPointCartesianAlgorithm::group() const 39 : : { 40 : 0 : return QObject::tr( "Vector geometry" ); 41 : : } 42 : : 43 : 0 : QString QgsProjectPointCartesianAlgorithm::groupId() const 44 : : { 45 : 0 : return QStringLiteral( "vectorgeometry" ); 46 : : } 47 : : 48 : 0 : QString QgsProjectPointCartesianAlgorithm::outputName() const 49 : : { 50 : 0 : return QObject::tr( "Projected" ); 51 : : } 52 : : 53 : 0 : QString QgsProjectPointCartesianAlgorithm::shortHelpString() const 54 : : { 55 : 0 : return QObject::tr( "This algorithm projects point geometries by a specified distance and bearing (azimuth), creating a new point layer with the projected points.\n\n" 56 : : "The distance is specified in layer units, and the bearing in degrees clockwise from North." ); 57 : : } 58 : : 59 : 0 : QList<int> QgsProjectPointCartesianAlgorithm::inputLayerTypes() const 60 : : { 61 : 0 : return QList<int>() << QgsProcessing::TypeVectorPoint; 62 : 0 : } 63 : : 64 : 0 : QgsProcessing::SourceType QgsProjectPointCartesianAlgorithm::outputLayerType() const 65 : : { 66 : 0 : return QgsProcessing::TypeVectorPoint; 67 : : } 68 : : 69 : 0 : QgsProjectPointCartesianAlgorithm *QgsProjectPointCartesianAlgorithm::createInstance() const 70 : : { 71 : 0 : return new QgsProjectPointCartesianAlgorithm(); 72 : 0 : } 73 : : 74 : 0 : void QgsProjectPointCartesianAlgorithm::initParameters( const QVariantMap & ) 75 : : { 76 : 0 : std::unique_ptr< QgsProcessingParameterNumber > bearing = std::make_unique< QgsProcessingParameterNumber >( QStringLiteral( "BEARING" ), QObject::tr( "Bearing (degrees from North)" ), QgsProcessingParameterNumber::Double, 0, false ); 77 : 0 : bearing->setIsDynamic( true ); 78 : 0 : bearing->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "Bearing" ), QObject::tr( "Bearing (degrees from North)" ), QgsPropertyDefinition::Double ) ); 79 : 0 : bearing->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) ); 80 : 0 : addParameter( bearing.release() ); 81 : : 82 : 0 : std::unique_ptr< QgsProcessingParameterDistance > distance = std::make_unique< QgsProcessingParameterDistance >( QStringLiteral( "DISTANCE" ), QObject::tr( "Distance" ), 1, QStringLiteral( "INPUT" ), false ); 83 : 0 : distance->setIsDynamic( true ); 84 : 0 : distance->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "Distance" ), QObject::tr( "Projection distance" ), QgsPropertyDefinition::Double ) ); 85 : 0 : distance->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) ); 86 : 0 : addParameter( distance.release() ); 87 : 0 : } 88 : : 89 : 0 : QgsProcessingFeatureSource::Flag QgsProjectPointCartesianAlgorithm::sourceFlags() const 90 : : { 91 : 0 : return QgsProcessingFeatureSource::FlagSkipGeometryValidityChecks; 92 : : } 93 : : 94 : 0 : bool QgsProjectPointCartesianAlgorithm::prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback * ) 95 : : { 96 : 0 : mBearing = parameterAsDouble( parameters, QStringLiteral( "BEARING" ), context ); 97 : 0 : mDynamicBearing = QgsProcessingParameters::isDynamic( parameters, QStringLiteral( "BEARING" ) ); 98 : 0 : if ( mDynamicBearing ) 99 : 0 : mBearingProperty = parameters.value( QStringLiteral( "BEARING" ) ).value< QgsProperty >(); 100 : : 101 : 0 : mDistance = parameterAsDouble( parameters, QStringLiteral( "DISTANCE" ), context ); 102 : 0 : mDynamicDistance = QgsProcessingParameters::isDynamic( parameters, QStringLiteral( "DISTANCE" ) ); 103 : 0 : if ( mDynamicDistance ) 104 : 0 : mDistanceProperty = parameters.value( QStringLiteral( "DISTANCE" ) ).value< QgsProperty >(); 105 : : 106 : 0 : return true; 107 : 0 : } 108 : : 109 : 0 : QgsFeatureList QgsProjectPointCartesianAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback * ) 110 : : { 111 : 0 : QgsFeature f = feature; 112 : 0 : if ( f.hasGeometry() && QgsWkbTypes::geometryType( f.geometry().wkbType() ) == QgsWkbTypes::PointGeometry ) 113 : : { 114 : 0 : double distance = mDistance; 115 : 0 : if ( mDynamicDistance ) 116 : 0 : distance = mDistanceProperty.valueAsDouble( context.expressionContext(), distance ); 117 : 0 : double bearing = mBearing; 118 : 0 : if ( mDynamicBearing ) 119 : 0 : bearing = mBearingProperty.valueAsDouble( context.expressionContext(), bearing ); 120 : : 121 : 0 : QgsGeometry g = f.geometry(); 122 : 0 : if ( QgsWkbTypes::isMultiType( g.wkbType() ) ) 123 : : { 124 : 0 : const QgsMultiPoint *mp = static_cast< const QgsMultiPoint * >( g.constGet() ); 125 : 0 : std::unique_ptr< QgsMultiPoint > result = std::make_unique< QgsMultiPoint >(); 126 : 0 : result->reserve( mp->numGeometries() ); 127 : 0 : for ( int i = 0; i < mp->numGeometries(); ++i ) 128 : : { 129 : 0 : const QgsPoint *p = mp->pointN( i ); 130 : 0 : result->addGeometry( p->project( distance, bearing ).clone() ); 131 : 0 : } 132 : 0 : f.setGeometry( QgsGeometry( std::move( result ) ) ); 133 : 0 : } 134 : : else 135 : : { 136 : 0 : const QgsPoint *p = static_cast< const QgsPoint * >( g.constGet() ); 137 : 0 : QgsPoint result = p->project( distance, bearing ); 138 : 0 : f.setGeometry( QgsGeometry( result.clone() ) ); 139 : 0 : } 140 : 0 : } 141 : : 142 : 0 : return QgsFeatureList() << f; 143 : 0 : } 144 : : 145 : : ///@endcond 146 : :