Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmassignprojection.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 "qgsalgorithmassignprojection.h" 19 : : 20 : : ///@cond PRIVATE 21 : : 22 : 0 : QString QgsAssignProjectionAlgorithm::name() const 23 : : { 24 : 0 : return QStringLiteral( "assignprojection" ); 25 : : } 26 : : 27 : 0 : QString QgsAssignProjectionAlgorithm::displayName() const 28 : : { 29 : 0 : return QObject::tr( "Assign projection" ); 30 : : } 31 : : 32 : 0 : QStringList QgsAssignProjectionAlgorithm::tags() const 33 : : { 34 : 0 : return QObject::tr( "assign,set,transform,reproject,crs,srs,warp" ).split( ',' ); 35 : 0 : } 36 : : 37 : 0 : QString QgsAssignProjectionAlgorithm::group() const 38 : : { 39 : 0 : return QObject::tr( "Vector general" ); 40 : : } 41 : : 42 : 0 : QString QgsAssignProjectionAlgorithm::groupId() const 43 : : { 44 : 0 : return QStringLiteral( "vectorgeneral" ); 45 : : } 46 : : 47 : 0 : QString QgsAssignProjectionAlgorithm::outputName() const 48 : : { 49 : 0 : return QObject::tr( "Assigned CRS" ); 50 : : } 51 : : 52 : 0 : QString QgsAssignProjectionAlgorithm::shortHelpString() const 53 : : { 54 : 0 : return QObject::tr( "This algorithm assigns a new projection to a vector layer. It creates a new layer with the exact same features " 55 : : "and geometries as the input one, but assigned to a new CRS. E.g. the geometries are not reprojected, they are just assigned " 56 : : "to a different CRS. This algorithm can be used to repair layers which have been assigned an incorrect projection.\n\n" 57 : : "Attributes are not modified by this algorithm." ); 58 : : } 59 : : 60 : 0 : QgsAssignProjectionAlgorithm *QgsAssignProjectionAlgorithm::createInstance() const 61 : : { 62 : 0 : return new QgsAssignProjectionAlgorithm(); 63 : 0 : } 64 : : 65 : 0 : bool QgsAssignProjectionAlgorithm::supportInPlaceEdit( const QgsMapLayer *layer ) const 66 : : { 67 : : Q_UNUSED( layer ) 68 : 0 : return false; 69 : : } 70 : : 71 : 0 : void QgsAssignProjectionAlgorithm::initParameters( const QVariantMap & ) 72 : : { 73 : 0 : addParameter( new QgsProcessingParameterCrs( QStringLiteral( "CRS" ), QObject::tr( "Assigned CRS" ), QStringLiteral( "EPSG:4326" ) ) ); 74 : 0 : } 75 : : 76 : 0 : QgsProcessingFeatureSource::Flag QgsAssignProjectionAlgorithm::sourceFlags() const 77 : : { 78 : 0 : return QgsProcessingFeatureSource::FlagSkipGeometryValidityChecks; 79 : : } 80 : : 81 : 0 : bool QgsAssignProjectionAlgorithm::prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback * ) 82 : : { 83 : 0 : mDestCrs = parameterAsCrs( parameters, QStringLiteral( "CRS" ), context ); 84 : 0 : return true; 85 : 0 : } 86 : : 87 : 0 : QgsFeatureList QgsAssignProjectionAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback * ) 88 : : { 89 : 0 : return QgsFeatureList() << feature; 90 : 0 : } 91 : : 92 : : ///@endcond 93 : :