Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmswapxy.cpp 3 : : ------------------------ 4 : : begin : April 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 "qgsalgorithmswapxy.h" 19 : : #include "qgsvectorlayer.h" 20 : : 21 : : ///@cond PRIVATE 22 : : 23 : 0 : QString QgsSwapXYAlgorithm::name() const 24 : : { 25 : 0 : return QStringLiteral( "swapxy" ); 26 : : } 27 : : 28 : 0 : QString QgsSwapXYAlgorithm::displayName() const 29 : : { 30 : 0 : return QObject::tr( "Swap X and Y coordinates" ); 31 : : } 32 : : 33 : 0 : QStringList QgsSwapXYAlgorithm::tags() const 34 : : { 35 : 0 : return QObject::tr( "invert,flip,swap,latitude,longitude" ).split( ',' ); 36 : 0 : } 37 : : 38 : 0 : QString QgsSwapXYAlgorithm::group() const 39 : : { 40 : 0 : return QObject::tr( "Vector geometry" ); 41 : : } 42 : : 43 : 0 : QString QgsSwapXYAlgorithm::groupId() const 44 : : { 45 : 0 : return QStringLiteral( "vectorgeometry" ); 46 : : } 47 : : 48 : 0 : QString QgsSwapXYAlgorithm::outputName() const 49 : : { 50 : 0 : return QObject::tr( "Swapped" ); 51 : : } 52 : : 53 : 0 : QString QgsSwapXYAlgorithm::shortHelpString() const 54 : : { 55 : 0 : return QObject::tr( "This algorithm swaps the X and Y coordinate values in input geometries. It can be used to repair geometries " 56 : : "which have accidentally had their latitude and longitude values reversed." ); 57 : : } 58 : : 59 : 0 : QgsSwapXYAlgorithm *QgsSwapXYAlgorithm::createInstance() const 60 : : { 61 : 0 : return new QgsSwapXYAlgorithm(); 62 : : } 63 : : 64 : 0 : bool QgsSwapXYAlgorithm::supportInPlaceEdit( const QgsMapLayer *l ) const 65 : : { 66 : 0 : const QgsVectorLayer *layer = qobject_cast< const QgsVectorLayer * >( l ); 67 : 0 : if ( !layer ) 68 : 0 : return false; 69 : : 70 : 0 : if ( ! QgsProcessingFeatureBasedAlgorithm::supportInPlaceEdit( layer ) ) 71 : 0 : return false; 72 : : 73 : 0 : return layer->isSpatial(); 74 : 0 : } 75 : : 76 : 0 : QgsProcessingFeatureSource::Flag QgsSwapXYAlgorithm::sourceFlags() const 77 : : { 78 : : // this algorithm doesn't care about invalid geometries 79 : 0 : return QgsProcessingFeatureSource::FlagSkipGeometryValidityChecks; 80 : : } 81 : : 82 : 0 : QgsFeatureList QgsSwapXYAlgorithm::processFeature( const QgsFeature &f, QgsProcessingContext &, QgsProcessingFeedback * ) 83 : : { 84 : 0 : QgsFeatureList list; 85 : 0 : QgsFeature feature = f; 86 : 0 : if ( feature.hasGeometry() ) 87 : : { 88 : 0 : QgsGeometry geom = feature.geometry(); 89 : 0 : std::unique_ptr< QgsAbstractGeometry > swappedGeom( geom.constGet()->clone() ); 90 : 0 : swappedGeom->swapXy(); 91 : 0 : feature.setGeometry( QgsGeometry( std::move( swappedGeom ) ) ); 92 : 0 : list << feature; 93 : 0 : } 94 : : else 95 : : { 96 : 0 : list << feature; 97 : : } 98 : 0 : return list; 99 : 0 : } 100 : : 101 : : ///@endcond