QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgsreferencedgeometry.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsreferencedgeometry.h
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 #ifndef QGSREFERENCEDGEOMETRY_H
19 #define QGSREFERENCEDGEOMETRY_H
20 
21 #include "qgis_sip.h"
22 #include "qgis_core.h"
24 #include "qgsrectangle.h"
25 #include "qgsgeometry.h"
26 
39 class CORE_EXPORT QgsReferencedGeometryBase
40 {
41  public:
42 
47 
53  QgsCoordinateReferenceSystem crs() const { return mCrs; }
54 
60  void setCrs( const QgsCoordinateReferenceSystem &crs ) { mCrs = crs; }
61 
62  private:
63 
65 
66 };
67 
74 {
75  public:
76 
82 
87 
89  operator QVariant() const
90  {
91  return QVariant::fromValue( *this );
92  }
93 
94  bool operator==( const QgsReferencedRectangle &other );
95  bool operator!=( const QgsReferencedRectangle &other );
96 
97 #ifdef SIP_RUN
98  SIP_PYOBJECT __repr__();
99  % MethodCode
100  QString str = QStringLiteral( "<QgsReferencedRectangle: %1 (%2)>" ).arg( sipCpp->asWktCoordinates(), sipCpp->crs().authid() );
101  sipRes = PyUnicode_FromString( str.toUtf8().constData() );
102  % End
103 #endif
104 
105 };
106 
108 
109 
115 {
116  public:
117 
123 
127  QgsReferencedPointXY() = default;
128 
130  operator QVariant() const
131  {
132  return QVariant::fromValue( *this );
133  }
134 
135  bool operator==( const QgsReferencedPointXY &other );
136  bool operator!=( const QgsReferencedPointXY &other );
137 
138 #ifdef SIP_RUN
139  SIP_PYOBJECT __repr__();
140  % MethodCode
141  QString str = QStringLiteral( "<QgsReferencedPointXY: %1 (%2)>" ).arg( sipCpp->asWkt(), sipCpp->crs().authid() );
142  sipRes = PyUnicode_FromString( str.toUtf8().constData() );
143  % End
144 #endif
145 
146 };
147 
149 
150 
156 {
157  public:
158 
164 
169 
171  operator QVariant() const
172  {
173  return QVariant::fromValue( *this );
174  }
175 
179  static QgsReferencedGeometry fromReferencedPointXY( const QgsReferencedPointXY &point );
180 
184  static QgsReferencedGeometry fromReferencedRect( const QgsReferencedRectangle &rectangle );
185 
186 
187 #ifdef SIP_RUN
188  SIP_PYOBJECT __repr__();
189  % MethodCode
190  QString str = QStringLiteral( "<QgsReferencedGeometry: %1 (%2)>" ).arg( sipCpp->asWkt(), sipCpp->crs().authid() );
191  sipRes = PyUnicode_FromString( str.toUtf8().constData() );
192  % End
193 #endif
194 
195 };
196 
198 
199 #endif // QGSREFERENCEDGEOMETRY_H
qgsrectangle.h
operator==
bool operator==(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
Definition: qgsfeatureiterator.h:400
QgsReferencedRectangle
A QgsRectangle with associated coordinate reference system.
Definition: qgsreferencedgeometry.h:74
crs
const QgsCoordinateReferenceSystem & crs
Definition: qgswfsgetfeature.cpp:51
QgsReferencedGeometry
A QgsGeometry with associated coordinate reference system.
Definition: qgsreferencedgeometry.h:156
QgsReferencedGeometry::QgsReferencedGeometry
QgsReferencedGeometry()=default
Constructor for QgsReferencedGeometry.
operator!=
bool operator!=(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
Definition: qgsfeatureiterator.h:405
QgsRectangle
A rectangle specified with double values.
Definition: qgsrectangle.h:42
Q_DECLARE_METATYPE
Q_DECLARE_METATYPE(QgsMeshTimeSettings)
QgsReferencedRectangle::QgsReferencedRectangle
QgsReferencedRectangle()=default
Constructor for QgsReferencedRectangle.
qgis_sip.h
QgsRectangle::operator==
bool operator==(const QgsRectangle &r1) const
Comparison operator.
Definition: qgsrectangle.h:489
QgsReferencedPointXY::QgsReferencedPointXY
QgsReferencedPointXY()=default
Constructor for QgsReferencedPointXY.
QgsReferencedGeometryBase::setCrs
void setCrs(const QgsCoordinateReferenceSystem &crs)
Sets the associated crs.
Definition: qgsreferencedgeometry.h:60
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
QgsRectangle::operator!=
bool operator!=(const QgsRectangle &r1) const
Comparison operator.
Definition: qgsrectangle.h:501
qgsgeometry.h
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
qgscoordinatereferencesystem.h