QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgsreferencedgeometry.cpp
Go to the documentation of this file.
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 
21  : mCrs( crs )
22 {}
23 
25  : QgsRectangle( rect )
27 {}
28 
30 {
31  return QgsRectangle::operator==( other ) && crs() == other.crs();
32 }
33 
35 {
36  return !( *this == other );
37 }
38 
40  : QgsPointXY( point )
42 {}
43 
45 {
46  return QgsPointXY::operator==( other ) && crs() == other.crs();
47 }
48 
50 {
51  return !( *this == other );
52 }
53 
55  : QgsGeometry( geom )
57 {}
58 
60 {
61  return QgsReferencedGeometry( QgsGeometry::fromPointXY( point ), point.crs() );
62 }
63 
65 {
66  return QgsReferencedGeometry( QgsGeometry::fromRect( rectangle ), rectangle.crs() );
67 }
68 
QgsReferencedPointXY::operator==
bool operator==(const QgsReferencedPointXY &other)
Definition: qgsreferencedgeometry.cpp:44
QgsReferencedRectangle
A QgsRectangle with associated coordinate reference system.
Definition: qgsreferencedgeometry.h:74
crs
const QgsCoordinateReferenceSystem & crs
Definition: qgswfsgetfeature.cpp:51
QgsGeometry::fromPointXY
static QgsGeometry fromPointXY(const QgsPointXY &point) SIP_HOLDGIL
Creates a new geometry from a QgsPointXY object.
Definition: qgsgeometry.cpp:164
QgsReferencedGeometry
A QgsGeometry with associated coordinate reference system.
Definition: qgsreferencedgeometry.h:156
QgsReferencedGeometry::QgsReferencedGeometry
QgsReferencedGeometry()=default
Constructor for QgsReferencedGeometry.
QgsRectangle
A rectangle specified with double values.
Definition: qgsrectangle.h:42
QgsReferencedRectangle::QgsReferencedRectangle
QgsReferencedRectangle()=default
Constructor for QgsReferencedRectangle.
QgsReferencedRectangle::operator!=
bool operator!=(const QgsReferencedRectangle &other)
Definition: qgsreferencedgeometry.cpp:34
QgsReferencedRectangle::operator==
bool operator==(const QgsReferencedRectangle &other)
Definition: qgsreferencedgeometry.cpp:29
QgsRectangle::operator==
bool operator==(const QgsRectangle &r1) const
Comparison operator.
Definition: qgsrectangle.h:489
QgsReferencedPointXY::QgsReferencedPointXY
QgsReferencedPointXY()=default
Constructor for QgsReferencedPointXY.
QgsCoordinateReferenceSystem
This class represents a coordinate reference system (CRS).
Definition: qgscoordinatereferencesystem.h:206
QgsReferencedPointXY
A QgsPointXY with associated coordinate reference system.
Definition: qgsreferencedgeometry.h:115
QgsPointXY
A class to represent a 2D point.
Definition: qgspointxy.h:44
QgsReferencedGeometryBase::crs
QgsCoordinateReferenceSystem crs() const
Returns the associated coordinate reference system, or an invalid CRS if no reference system is set.
Definition: qgsreferencedgeometry.h:53
qgsreferencedgeometry.h
QgsReferencedGeometry::fromReferencedRect
static QgsReferencedGeometry fromReferencedRect(const QgsReferencedRectangle &rectangle)
Construct a new QgsReferencedGeometry from referenced rectangle.
Definition: qgsreferencedgeometry.cpp:64
QgsReferencedGeometryBase
A base class for geometry primitives which are stored with an associated reference system.
Definition: qgsreferencedgeometry.h:40
QgsGeometry
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:124
QgsReferencedGeometryBase::QgsReferencedGeometryBase
QgsReferencedGeometryBase(const QgsCoordinateReferenceSystem &crs=QgsCoordinateReferenceSystem())
Constructor for QgsReferencedGeometryBase, with the specified crs.
Definition: qgsreferencedgeometry.cpp:20
QgsGeometry::fromRect
static QgsGeometry fromRect(const QgsRectangle &rect) SIP_HOLDGIL
Creates a new geometry from a QgsRectangle.
Definition: qgsgeometry.cpp:229
QgsReferencedGeometry::fromReferencedPointXY
static QgsReferencedGeometry fromReferencedPointXY(const QgsReferencedPointXY &point)
Construct a new QgsReferencedGeometry from referenced point.
Definition: qgsreferencedgeometry.cpp:59
QgsPointXY::operator==
bool operator==(const QgsPointXY &other) SIP_HOLDGIL
equality operator
Definition: qgspointxy.h:249
QgsReferencedPointXY::operator!=
bool operator!=(const QgsReferencedPointXY &other)
Definition: qgsreferencedgeometry.cpp:49