QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
src
core
proj
qgsprojoperation.h
Go to the documentation of this file.
1
/***************************************************************************
2
qgsprojoperation.h
3
------------------------
4
begin : May 2021
5
copyright : (C) 2021 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
#ifndef QGSPROJOPERATION_H
18
#define QGSPROJOPERATION_H
19
20
#include "qgis_core.h"
21
#include "
qgis_sip.h
"
22
#include <QString>
23
30
class
CORE_EXPORT
QgsProjOperation
31
{
32
public
:
33
38
bool
isValid()
const
{
return
mValid; }
39
43
QString id()
const
{
return
mId; }
44
48
QString description()
const
{
return
mDescription; }
49
53
QString details()
const
{
return
mDetails; }
54
55
#ifdef SIP_RUN
56
SIP_PYOBJECT __repr__();
57
% MethodCode
58
QString
str
;
59
if
( !sipCpp->isValid() )
60
{
61
str
= QStringLiteral(
"<QgsProjOperation: invalid>"
);
62
}
63
else
64
{
65
str
= QStringLiteral(
"<QgsProjOperation: %1>"
).arg( sipCpp->id() );
66
}
67
sipRes = PyUnicode_FromString(
str
.toUtf8().constData() );
68
% End
69
#endif
70
71
private
:
72
73
bool
mValid =
false
;
74
QString mId;
75
QString mDescription;
76
QString mDetails;
77
78
friend
class
QgsCoordinateReferenceSystemRegistry
;
79
friend
class
QgsCoordinateReferenceSystem
;
80
};
81
82
#endif // QGSCELESTIALBODY_H
QgsCoordinateReferenceSystemRegistry
A registry for known coordinate reference system (CRS) definitions, including any user-defined CRSes.
Definition:
qgscoordinatereferencesystemregistry.h:39
QgsProjOperation
Contains information about a PROJ operation.
Definition:
qgsprojoperation.h:30
qgis_sip.h
QgsCoordinateReferenceSystem
This class represents a coordinate reference system (CRS).
Definition:
qgscoordinatereferencesystem.h:211
str
#define str(x)
Definition:
qgis.cpp:37
Generated on Sun Sep 11 2022 00:03:17 for QGIS API Documentation by
1.8.17