Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmtransform.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 "qgsalgorithmtransform.h" 19 : : 20 : : ///@cond PRIVATE 21 : : 22 : : 23 : 0 : void QgsTransformAlgorithm::initParameters( const QVariantMap & ) 24 : : { 25 : 0 : addParameter( new QgsProcessingParameterCrs( QStringLiteral( "TARGET_CRS" ), QObject::tr( "Target CRS" ), QStringLiteral( "EPSG:4326" ) ) ); 26 : : 27 : 0 : std::unique_ptr< QgsProcessingParameterCoordinateOperation > crsOpParam = std::make_unique< QgsProcessingParameterCoordinateOperation >( QStringLiteral( "OPERATION" ), QObject::tr( "Coordinate operation" ), 28 : 0 : QVariant(), QStringLiteral( "INPUT" ), QStringLiteral( "TARGET_CRS" ), QVariant(), QVariant(), true ); 29 : 0 : crsOpParam->setFlags( crsOpParam->flags() | QgsProcessingParameterDefinition::FlagAdvanced ); 30 : 0 : addParameter( crsOpParam.release() ); 31 : 0 : } 32 : : 33 : 0 : QgsCoordinateReferenceSystem QgsTransformAlgorithm::outputCrs( const QgsCoordinateReferenceSystem & ) const 34 : : { 35 : 0 : return mDestCrs; 36 : : } 37 : : 38 : 0 : QString QgsTransformAlgorithm::outputName() const 39 : : { 40 : 0 : return QObject::tr( "Reprojected" ); 41 : : } 42 : : 43 : 0 : QgsProcessingFeatureSource::Flag QgsTransformAlgorithm::sourceFlags() const 44 : : { 45 : 0 : return QgsProcessingFeatureSource::FlagSkipGeometryValidityChecks; 46 : : } 47 : : 48 : 0 : QString QgsTransformAlgorithm::name() const 49 : : { 50 : 0 : return QStringLiteral( "reprojectlayer" ); 51 : : } 52 : : 53 : 0 : QString QgsTransformAlgorithm::displayName() const 54 : : { 55 : 0 : return QObject::tr( "Reproject layer" ); 56 : : } 57 : : 58 : 0 : QStringList QgsTransformAlgorithm::tags() const 59 : : { 60 : 0 : return QObject::tr( "transform,reprojection,crs,srs,warp" ).split( ',' ); 61 : 0 : } 62 : : 63 : 0 : QString QgsTransformAlgorithm::group() const 64 : : { 65 : 0 : return QObject::tr( "Vector general" ); 66 : : } 67 : : 68 : 0 : QString QgsTransformAlgorithm::groupId() const 69 : : { 70 : 0 : return QStringLiteral( "vectorgeneral" ); 71 : : } 72 : : 73 : 0 : QString QgsTransformAlgorithm::shortHelpString() const 74 : : { 75 : 0 : return QObject::tr( "This algorithm reprojects a vector layer. It creates a new layer with the same features " 76 : : "as the input one, but with geometries reprojected to a new CRS.\n\n" 77 : : "Attributes are not modified by this algorithm." ); 78 : : } 79 : : 80 : 0 : QgsTransformAlgorithm *QgsTransformAlgorithm::createInstance() const 81 : : { 82 : 0 : return new QgsTransformAlgorithm(); 83 : 0 : } 84 : : 85 : 0 : bool QgsTransformAlgorithm::prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback * ) 86 : : { 87 : 0 : prepareSource( parameters, context ); 88 : 0 : mDestCrs = parameterAsCrs( parameters, QStringLiteral( "TARGET_CRS" ), context ); 89 : 0 : mTransformContext = context.transformContext(); 90 : 0 : mCoordOp = parameterAsString( parameters, QStringLiteral( "OPERATION" ), context ); 91 : 0 : return true; 92 : 0 : } 93 : : 94 : 0 : QgsFeatureList QgsTransformAlgorithm::processFeature( const QgsFeature &f, QgsProcessingContext &, QgsProcessingFeedback *feedback ) 95 : : { 96 : 0 : QgsFeature feature = f; 97 : 0 : if ( !mCreatedTransform ) 98 : : { 99 : 0 : mCreatedTransform = true; 100 : 0 : if ( !mCoordOp.isEmpty() ) 101 : 0 : mTransformContext.addCoordinateOperation( sourceCrs(), mDestCrs, mCoordOp, false ); 102 : 0 : mTransform = QgsCoordinateTransform( sourceCrs(), mDestCrs, mTransformContext ); 103 : : 104 : 0 : mTransform.disableFallbackOperationHandler( true ); 105 : 0 : } 106 : : 107 : 0 : if ( feature.hasGeometry() ) 108 : : { 109 : 0 : QgsGeometry g = feature.geometry(); 110 : : try 111 : : { 112 : 0 : if ( g.transform( mTransform ) == 0 ) 113 : : { 114 : 0 : feature.setGeometry( g ); 115 : 0 : } 116 : : else 117 : : { 118 : 0 : feature.clearGeometry(); 119 : : } 120 : : 121 : 0 : if ( !mWarnedAboutFallbackTransform && mTransform.fallbackOperationOccurred() ) 122 : : { 123 : 0 : feedback->reportError( QObject::tr( "An alternative, ballpark-only transform was used when transforming coordinates for one or more features. " 124 : : "(Possibly an incorrect choice of operation was made for transformations between these reference systems - check " 125 : : "that the selected operation is valid for the full extent of the input layer.)" ) ); 126 : 0 : mWarnedAboutFallbackTransform = true; // only warn once to avoid flooding the log 127 : 0 : } 128 : 0 : } 129 : : catch ( QgsCsException & ) 130 : : { 131 : 0 : if ( feedback ) 132 : 0 : feedback->reportError( QObject::tr( "Encountered a transform error when reprojecting feature with id %1." ).arg( f.id() ) ); 133 : 0 : feature.clearGeometry(); 134 : 0 : } 135 : 0 : } 136 : 0 : return QgsFeatureList() << feature; 137 : 0 : } 138 : : 139 : : ///@endcond 140 : : 141 : : 142 : :