Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsreferencedgeometry.cpp 3 : : ------------------------ 4 : : begin : June 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 "qgsreferencedgeometry.h" 19 : : 20 : 27 : QgsReferencedGeometryBase::QgsReferencedGeometryBase( const QgsCoordinateReferenceSystem &crs ) 21 : 27 : : mCrs( crs ) 22 : 27 : {} 23 : : 24 : 0 : QgsReferencedRectangle::QgsReferencedRectangle( const QgsRectangle &rect, const QgsCoordinateReferenceSystem &crs ) 25 : 0 : : QgsRectangle( rect ) 26 : 0 : , QgsReferencedGeometryBase( crs ) 27 : 0 : {} 28 : : 29 : 0 : bool QgsReferencedRectangle::operator==( const QgsReferencedRectangle &other ) const 30 : : { 31 : 0 : return QgsRectangle::operator==( other ) && crs() == other.crs(); 32 : 0 : } 33 : : 34 : 0 : bool QgsReferencedRectangle::operator!=( const QgsReferencedRectangle &other ) const 35 : : { 36 : 0 : return !( *this == other ); 37 : : } 38 : : 39 : 0 : QgsReferencedPointXY::QgsReferencedPointXY( const QgsPointXY &point, const QgsCoordinateReferenceSystem &crs ) 40 : 0 : : QgsPointXY( point ) 41 : 0 : , QgsReferencedGeometryBase( crs ) 42 : 0 : {} 43 : : 44 : 0 : bool QgsReferencedPointXY::operator==( const QgsReferencedPointXY &other ) 45 : : { 46 : 0 : return QgsPointXY::operator==( other ) && crs() == other.crs(); 47 : 0 : } 48 : : 49 : 0 : bool QgsReferencedPointXY::operator!=( const QgsReferencedPointXY &other ) 50 : : { 51 : 0 : return !( *this == other ); 52 : : } 53 : : 54 : 1 : QgsReferencedGeometry::QgsReferencedGeometry( const QgsGeometry &geom, const QgsCoordinateReferenceSystem &crs ) 55 : 1 : : QgsGeometry( geom ) 56 : 1 : , QgsReferencedGeometryBase( crs ) 57 : 2 : {} 58 : : 59 : 0 : QgsReferencedGeometry QgsReferencedGeometry::fromReferencedPointXY( const QgsReferencedPointXY &point ) 60 : : { 61 : 0 : return QgsReferencedGeometry( QgsGeometry::fromPointXY( point ), point.crs() ); 62 : 0 : } 63 : : 64 : 0 : QgsReferencedGeometry QgsReferencedGeometry::fromReferencedRect( const QgsReferencedRectangle &rectangle ) 65 : : { 66 : 0 : return QgsReferencedGeometry( QgsGeometry::fromRect( rectangle ), rectangle.crs() ); 67 : 0 : } 68 : :