Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsgcpgeometrytransformer.cpp 3 : : ---------------------- 4 : : begin : February 2021 5 : : copyright : (C) 2021 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 "qgsgcpgeometrytransformer.h" 19 : : #include "qgsgeometry.h" 20 : : 21 : 0 : QgsGcpGeometryTransformer::QgsGcpGeometryTransformer( QgsGcpTransformerInterface *gcpTransformer ) 22 : 0 : : mGcpTransformer( gcpTransformer ) 23 : 0 : { 24 : : 25 : 0 : } 26 : : 27 : 0 : QgsGcpGeometryTransformer::QgsGcpGeometryTransformer( QgsGcpTransformerInterface::TransformMethod method, const QVector<QgsPointXY> &sourceCoordinates, const QVector<QgsPointXY> &destinationCoordinates ) 28 : 0 : : mGcpTransformer( QgsGcpTransformerInterface::createFromParameters( method, sourceCoordinates, destinationCoordinates ) ) 29 : 0 : { 30 : : 31 : 0 : } 32 : : 33 : 0 : QgsGcpGeometryTransformer::~QgsGcpGeometryTransformer() = default; 34 : : 35 : 0 : bool QgsGcpGeometryTransformer::transformPoint( double &x, double &y, double &, double & ) 36 : : { 37 : 0 : if ( !mGcpTransformer ) 38 : 0 : return false; 39 : : 40 : 0 : return mGcpTransformer->transform( x, y ); 41 : 0 : } 42 : : 43 : 0 : QgsGeometry QgsGcpGeometryTransformer::transform( const QgsGeometry &geometry, bool &ok, QgsFeedback *feedback ) 44 : : { 45 : 0 : ok = false; 46 : 0 : if ( geometry.isNull() ) 47 : : { 48 : 0 : ok = true; 49 : 0 : return QgsGeometry(); 50 : : } 51 : : 52 : 0 : std::unique_ptr< QgsAbstractGeometry > res( geometry.constGet()->clone() ); 53 : : 54 : 0 : ok = res->transform( this, feedback ); 55 : : 56 : 0 : return QgsGeometry( std::move( res ) ); 57 : 0 : } 58 : : 59 : 0 : QgsGcpTransformerInterface *QgsGcpGeometryTransformer::gcpTransformer() const 60 : : { 61 : 0 : return mGcpTransformer.get(); 62 : : } 63 : : 64 : 0 : void QgsGcpGeometryTransformer::setGcpTransformer( QgsGcpTransformerInterface *gcpTransformer ) 65 : : { 66 : 0 : mGcpTransformer.reset( gcpTransformer ); 67 : 0 : }