QGIS API Documentation
2.8.2-Wien
|
Class for storing a coordinate reference system (CRS) More...
#include <qgscoordinatereferencesystem.h>
Public Types | |
enum | CrsType { InternalCrsId, PostgisCrsId, EpsgCrsId } |
Public Member Functions | |
QgsCoordinateReferenceSystem () | |
Default constructor. | |
QgsCoordinateReferenceSystem (QString theDefinition) | |
QgsCoordinateReferenceSystem (const long theId, CrsType theType=PostgisCrsId) | |
QgsCoordinateReferenceSystem (const QgsCoordinateReferenceSystem &srs) | |
copy constructor | |
~QgsCoordinateReferenceSystem () | |
QString | authid () const |
bool | axisInverted () const |
bool | createFromId (const long theId, CrsType theType=PostgisCrsId) |
bool | createFromOgcWmsCrs (QString theCrs) |
Set up this CRS from the given OGC CRS. | |
bool | createFromProj4 (const QString &theProjString) |
bool | createFromSrid (const long theSrid) |
bool | createFromSrsId (const long theSrsId) |
bool | createFromString (const QString &theDefinition) |
bool | createFromUserInput (const QString &theDefinition) |
bool | createFromWkt (const QString &theWkt) |
QString | description () const |
QString | ellipsoidAcronym () const |
long | findMatchingProj () |
QString | geographicCRSAuthId () const |
Returns auth id of related geographic CRS. | |
bool | geographicFlag () const |
bool | isValid () const |
QGis::UnitType | mapUnits () const |
bool | operator!= (const QgsCoordinateReferenceSystem &theSrs) const |
QgsCoordinateReferenceSystem & | operator= (const QgsCoordinateReferenceSystem &srs) |
Assignment operator. | |
bool | operator== (const QgsCoordinateReferenceSystem &theSrs) const |
long | postgisSrid () const |
QString | projectionAcronym () const |
bool | readXML (QDomNode &theNode) |
bool | saveAsUserCRS (QString name) |
Copied from QgsCustomProjectionDialog /// Please refactor into SQL handler !!! ///. | |
void | setValidationHint (QString html) |
long | srsid () const |
QString | toProj4 () const |
Get the Proj Proj4 string representation of this srs. | |
QString | toWkt () const |
void | validate () |
QString | validationHint () |
bool | writeXML (QDomNode &theNode, QDomDocument &theDoc) const |
Static Public Member Functions | |
static CUSTOM_CRS_VALIDATION | customSrsValidation () |
Gets custom function. | |
static QStringList | recentProjections () |
Returns a list of recently used projections. | |
static void | setCustomSrsValidation (CUSTOM_CRS_VALIDATION f) |
Sets custom function to force valid CRS QGIS uses implementation in QgisGui::customSrsValidation. | |
static void | setupESRIWktFix () |
static int | syncDb () |
Class for storing a coordinate reference system (CRS)
Definition at line 50 of file qgscoordinatereferencesystem.h.
Definition at line 54 of file qgscoordinatereferencesystem.h.
QgsCoordinateReferenceSystem::QgsCoordinateReferenceSystem | ( | ) |
Default constructor.
Definition at line 51 of file qgscoordinatereferencesystem.cpp.
QgsCoordinateReferenceSystem::~QgsCoordinateReferenceSystem | ( | ) |
Definition at line 90 of file qgscoordinatereferencesystem.cpp.
|
explicit |
Constructs a CRS object from a string definition as defined in the createFromString member function (by default a WKT definition).
theDefinition | A String containing a coordinate reference system definition. |
Definition at line 63 of file qgscoordinatereferencesystem.cpp.
QgsCoordinateReferenceSystem::QgsCoordinateReferenceSystem | ( | const long | theId, |
CrsType | theType = PostgisCrsId |
||
) |
Use this constructor when you want to create a CRS object using a postgis SRID, an EpsgCrsId id or a QGIS CRS_ID.
theId | The ID no valid for the chosen coordinate system id type |
theType | One of the types described in QgsCoordinateReferenceSystem::CrsType |
Definition at line 77 of file qgscoordinatereferencesystem.cpp.
QgsCoordinateReferenceSystem::QgsCoordinateReferenceSystem | ( | const QgsCoordinateReferenceSystem & | srs | ) |
copy constructor
Definition at line 257 of file qgscoordinatereferencesystem.cpp.
QString QgsCoordinateReferenceSystem::authid | ( | ) | const |
Get the authority identifier for this srs
Definition at line 833 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::axisInverted | ( | ) | const |
return if axis is inverted (eg. for WMS 1.3)
Definition at line 404 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::createFromId | ( | const long | theId, |
CrsType | theType = PostgisCrsId |
||
) |
Definition at line 95 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::createFromOgcWmsCrs | ( | QString | theCrs | ) |
Set up this CRS from the given OGC CRS.
Sets this CRS to the given OGC WMS-format Coordinate Reference Systems.
false | if not given an valid label |
Definition at line 210 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::createFromProj4 | ( | const QString & | theProjString | ) |
Set up this srs by passing it a proj4 style formatted string. The string will be parsed and the projection and ellipsoid members set and the remainder of the proj4 string will be stored in the parameters member. The reason for this is so that we can easily present the user with 'natural language' representation of the projection and ellipsoid by looking them up in the srs.bs sqlite database. Also having the ellipse and proj elements stripped out is helpful to speed up globbing queries (see below).
We try to match the proj string to and srsid using the following logic:
theProjString | A proj4 format string |
Definition at line 511 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::createFromSrid | ( | const long | theSrid | ) |
Set up this srs by fetching the appropriate information from the sqlite backend. First the system level read only srs.db will be checked and then the users ~/.qgis/qgis.db database will be checked for a match.
theSrid | The postgis SRID for the desired spatial reference system. |
Definition at line 308 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::createFromSrsId | ( | const long | theSrsId | ) |
Set up this srs by fetching the appropriate information from the sqlite backend. If the srsid is < 100000, only the system srs.db will be checked. If the srsid > 100000 the srs will be retrieved from the ~/.qgis/qgis.db
theSrsId | The QGIS SrsId for the desired spatial reference system. |
Definition at line 313 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::createFromString | ( | const QString & | theDefinition | ) |
Set up this srs from a string definition, by default a WKT definition. Otherwise the string defines a authority, followed by a colon, followed by the definition. The authority can be one of "epsg", "postgis", "internal" for integer definitions, and "wkt" or "proj4" for string definitions. The implementation of each authority uses the corresponding createFrom... function.
theDefinition | A String containing a coordinate reference system definition. |
Definition at line 116 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::createFromUserInput | ( | const QString & | theDefinition | ) |
Set up this srs from a various text formats.
Valid formats: WKT string, "EPSG:n", "EPSGA:n", "AUTO:proj_id,unit_id,lon0,lat0", "urn:ogc:def:crs:EPSG::n", PROJ.4 string, filename (with WKT, XML or PROJ.4 string), well known name (such as NAD27, NAD83, WGS84 or WGS72), ESRI::[WKT string] (directly or in a file), "IGNF:xxx" For more details on supported formats see OGRSpatialReference::SetFromUserInput() ( http://www.gdal.org/ogr/classOGRSpatialReference.html#aec3c6a49533fe457ddc763d699ff8796 ) @note this function generates a WKT string using OSRSetFromUserInput() and passes it to createFromWkt() function. @param theDefinition A String containing a coordinate reference system definition.
Definition at line 160 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::createFromWkt | ( | const QString & | theWkt | ) |
Set up this srs using a Wkt spatial ref sys definition. The wkt will be converted to a proj4 string using OGR helper functions. After this the srs databasses will be searched for matches. First the system level read only srs.db will be checked and then the users ~/.qgis/qgis.db database will be checked for a match.
theWkt | The Wkt for the desired spatial reference system. |
Definition at line 430 of file qgscoordinatereferencesystem.cpp.
|
static |
Gets custom function.
Definition at line 1421 of file qgscoordinatereferencesystem.cpp.
QString QgsCoordinateReferenceSystem::description | ( | ) | const |
Get the Description
Definition at line 838 of file qgscoordinatereferencesystem.cpp.
QString QgsCoordinateReferenceSystem::ellipsoidAcronym | ( | ) | const |
Get the Ellipsoid Acronym
Definition at line 862 of file qgscoordinatereferencesystem.cpp.
long QgsCoordinateReferenceSystem::findMatchingProj | ( | ) |
This is a globbing function to try to find a record in the database that matches a CRS defined only by a proj4string. The goal is to learn what the tbl_srs.srs_id value is for the CRS. Internally the source CRS is converted to an OGR srs object using the proj4string call and then every record in the database that matches projection and ellipsoid will be converted to an OGR srs in turn and compared to the source CRS. There are some gotchas with using ogr isSame() srs comparison, but its more effective than using straight string comparison of proj4params.
Definition at line 1028 of file qgscoordinatereferencesystem.cpp.
QString QgsCoordinateReferenceSystem::geographicCRSAuthId | ( | ) | const |
Returns auth id of related geographic CRS.
Definition at line 2153 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::geographicFlag | ( | ) | const |
Get this Geographic? flag
Definition at line 891 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::isValid | ( | ) | const |
Find out whether this CRS is correctly initialised and usable
Definition at line 506 of file qgscoordinatereferencesystem.cpp.
QGis::UnitType QgsCoordinateReferenceSystem::mapUnits | ( | ) | const |
Get the units that the projection is in
Definition at line 896 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::operator!= | ( | const QgsCoordinateReferenceSystem & | theSrs | ) | const |
Overloaded != operator used to compare to CRS's. Returns opposite bool value to operator ==
Definition at line 1137 of file qgscoordinatereferencesystem.cpp.
QgsCoordinateReferenceSystem & QgsCoordinateReferenceSystem::operator= | ( | const QgsCoordinateReferenceSystem & | srs | ) |
Assignment operator.
Definition at line 264 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::operator== | ( | const QgsCoordinateReferenceSystem & | theSrs | ) | const |
Overloaded == operator used to compare to CRS's. Internally it will delegate to the equals method described below
Definition at line 1131 of file qgscoordinatereferencesystem.cpp.
long QgsCoordinateReferenceSystem::postgisSrid | ( | ) | const |
Get the postgis srid for this srs
Definition at line 828 of file qgscoordinatereferencesystem.cpp.
QString QgsCoordinateReferenceSystem::projectionAcronym | ( | ) | const |
Get the Projection Acronym
Definition at line 850 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::readXML | ( | QDomNode & | theNode | ) |
Restores state from the given Dom node.
theNode | The node from which state will be restored |
Definition at line 1156 of file qgscoordinatereferencesystem.cpp.
|
static |
Returns a list of recently used projections.
Definition at line 2169 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::saveAsUserCRS | ( | QString | name | ) |
Copied from QgsCustomProjectionDialog /// Please refactor into SQL handler !!! ///.
Save the proj4-string as a custom CRS
Definition at line 1461 of file qgscoordinatereferencesystem.cpp.
|
static |
Sets custom function to force valid CRS QGIS uses implementation in QgisGui::customSrsValidation.
Definition at line 1416 of file qgscoordinatereferencesystem.cpp.
|
static |
Make sure that ESRI WKT import is done properly. This is required for proper shapefile CRS import when using gdal>= 1.9.
Definition at line 187 of file qgscoordinatereferencesystem.cpp.
void QgsCoordinateReferenceSystem::setValidationHint | ( | QString | html | ) |
Set user hint for validation
Definition at line 1448 of file qgscoordinatereferencesystem.cpp.
long QgsCoordinateReferenceSystem::srsid | ( | ) | const |
Get the SrsId - if possible
Definition at line 823 of file qgscoordinatereferencesystem.cpp.
|
static |
Update proj.4 parameters in our database from proj.4
Definition at line 1698 of file qgscoordinatereferencesystem.cpp.
QString QgsCoordinateReferenceSystem::toProj4 | ( | ) | const |
Get the Proj Proj4 string representation of this srs.
If proj and ellps keys are found in the parameters, they will be stripped out and the Projection and ellipsoid acronyms will be overridden with these.
Definition at line 874 of file qgscoordinatereferencesystem.cpp.
QString QgsCoordinateReferenceSystem::toWkt | ( | ) | const |
A helper to get an wkt representation of this srs
Definition at line 1142 of file qgscoordinatereferencesystem.cpp.
void QgsCoordinateReferenceSystem::validate | ( | ) |
Perform some validation on this CRS. If the sts doesn't validate the default behaviour settings for layers with unknown CRS will be consulted and acted on accordingly. By hell or high water this method will do its best to make sure that this CRS is valid - even if that involves resorting to a hard coded default of geocs:wgs84.
Definition at line 293 of file qgscoordinatereferencesystem.cpp.
QString QgsCoordinateReferenceSystem::validationHint | ( | ) |
Get user hint for validation
Definition at line 1453 of file qgscoordinatereferencesystem.cpp.
bool QgsCoordinateReferenceSystem::writeXML | ( | QDomNode & | theNode, |
QDomDocument & | theDoc | ||
) | const |
Stores state to the given Dom node in the given document. Below is an example of the generated tag.
theNode | The node in which state will be restored |
theDoc | The document in which state will be stored |
Definition at line 1275 of file qgscoordinatereferencesystem.cpp.