QGIS/python/core/geometry/qgsreferencedgeometry.sip

119 lines
3.1 KiB
Plaintext
Raw Normal View History

/************************************************************************
* This file has been generated automatically from *
* *
* src/core/geometry/qgsreferencedgeometry.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
class QgsReferencedGeometryBase
{
%Docstring
2017-12-15 10:36:55 -04:00
A base class for geometry primitives which are stored with an associated reference system.
2017-12-15 10:36:55 -04:00
QgsReferencedGeometryBase classes represent some form of geometry primitive
(such as rectangles) which have an optional coordinate reference system
associated with them.
.. versionadded:: 3.0
2017-12-15 10:36:55 -04:00
2017-12-05 20:04:14 -04:00
.. seealso:: :py:class:`QgsReferencedRectangle`
%End
%TypeHeaderCode
#include "qgsreferencedgeometry.h"
%End
public:
QgsReferencedGeometryBase( const QgsCoordinateReferenceSystem &crs = QgsCoordinateReferenceSystem() );
%Docstring
2017-12-15 10:36:55 -04:00
Constructor for QgsReferencedGeometryBase, with the specified ``crs``.
%End
QgsCoordinateReferenceSystem crs() const;
%Docstring
2017-12-15 10:36:55 -04:00
Returns the associated coordinate reference system, or an invalid CRS if
no reference system is set.
2017-12-05 20:04:14 -04:00
.. seealso:: :py:func:`setCrs()`
%End
void setCrs( const QgsCoordinateReferenceSystem &crs );
%Docstring
2017-12-15 10:36:55 -04:00
Sets the associated ``crs``. Set to an invalid CRS if
no reference system is required.
2017-12-05 20:04:14 -04:00
.. seealso:: :py:func:`crs()`
%End
};
class QgsReferencedRectangle : QgsRectangle, QgsReferencedGeometryBase
{
%Docstring
2017-12-15 10:36:55 -04:00
A QgsRectangle with associated coordinate reference system.
.. versionadded:: 3.0
%End
%TypeHeaderCode
#include "qgsreferencedgeometry.h"
%End
public:
QgsReferencedRectangle( const QgsRectangle &rectangle, const QgsCoordinateReferenceSystem &crs );
%Docstring
2017-12-15 10:36:55 -04:00
Constructor for QgsReferencedRectangle, with the specified initial ``rectangle``
and ``crs``.
%End
QgsReferencedRectangle();
2017-08-31 19:55:41 +10:00
%Docstring
2017-12-15 10:36:55 -04:00
Constructor for QgsReferencedRectangle.
2017-08-31 19:55:41 +10:00
%End
2017-08-31 20:54:43 +10:00
operator QVariant() const;
};
class QgsReferencedPointXY : QgsPointXY, QgsReferencedGeometryBase
{
%Docstring
2017-12-15 10:36:55 -04:00
A QgsPointXY with associated coordinate reference system.
.. versionadded:: 3.0
%End
%TypeHeaderCode
#include "qgsreferencedgeometry.h"
%End
public:
QgsReferencedPointXY( const QgsPointXY &point, const QgsCoordinateReferenceSystem &crs );
%Docstring
2017-12-15 10:36:55 -04:00
Constructor for QgsReferencedPointXY, with the specified initial ``point``
and ``crs``.
%End
QgsReferencedPointXY();
2017-08-31 19:55:41 +10:00
%Docstring
2017-12-15 10:36:55 -04:00
Constructor for QgsReferencedPointXY.
2017-08-31 19:55:41 +10:00
%End
2017-08-31 20:54:43 +10:00
operator QVariant() const;
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/geometry/qgsreferencedgeometry.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/