QGIS API Documentation
2.0.1-Dufour
|
Class for doing transforms between two map coordinate systems. More...
#include <qgscoordinatetransform.h>
Public Types | |
enum | TransformDirection { ForwardTransform, ReverseTransform } |
Enum used to indicate the direction (forward or inverse) of the transform. More... |
Public Slots | |
void | initialise () |
initialise is used to actually create the Transformer instance | |
bool | readXML (QDomNode &theNode) |
bool | writeXML (QDomNode &theNode, QDomDocument &theDoc) |
Signals | |
void | invalidTransformInput () const |
Signal when an invalid pj_transform() has occured. |
Private Member Functions | |
void | setFinder () |
Private Attributes | |
bool | mShortCircuit |
bool | mInitialisedFlag |
QgsCoordinateReferenceSystem | mSourceCRS |
QgsCoordinateReferenceSystem | mDestCRS |
projPJ | mSourceProjection |
projPJ | mDestinationProjection |
Class for doing transforms between two map coordinate systems.
This class can convert map coordinates to a different coordinate reference system. It is normally associated with a map layer and is used to transform between the layer's coordinate system and the coordinate system of the map canvas, although it can be used in a more general sense to transform coordinates.
All references to source and destination coordinate systems refer to layer and map canvas respectively. All operations are from the perspective of the layer. For example, a forward transformation transforms coordinates from the layers coordinate system to the map canvas.
Definition at line 52 of file qgscoordinatetransform.h.
Enum used to indicate the direction (forward or inverse) of the transform.
ForwardTransform |
Transform from source to destination CRS. |
ReverseTransform |
Transform from destination to source CRS. |
Definition at line 92 of file qgscoordinatetransform.h.
QgsCoordinateTransform::QgsCoordinateTransform | ( | ) |
Default constructor. Make sure you use initialised() manually if you use this one!
Definition at line 37 of file qgscoordinatetransform.cpp.
References setFinder().
QgsCoordinateTransform::QgsCoordinateTransform | ( | const QgsCoordinateReferenceSystem & | theSource, |
const QgsCoordinateReferenceSystem & | theDest | ||
) |
Constructs a QgsCoordinateTransform using QgsCoordinateReferenceSystem objects.
theSource | CRS, typically of the layer's coordinate system |
theDest | CRS, typically of the map canvas coordinate system |
Definition at line 46 of file qgscoordinatetransform.cpp.
References initialise(), mDestCRS, mSourceCRS, and setFinder().
QgsCoordinateTransform::QgsCoordinateTransform | ( | long | theSourceSrsId, |
long | theDestSrsId | ||
) |
Constructs a QgsCoordinateTransform using CRS ID of source and destination CRS.
Definition at line 58 of file qgscoordinatetransform.cpp.
References initialise().
QgsCoordinateTransform::QgsCoordinateTransform | ( | QString | theSourceWkt, |
QString | theDestWkt | ||
) |
Constructs a QgsCoordinateTransform using the Well Known Text representation of the layer and map canvas coordinate systems
theSourceWkt | Wkt, typically of the layer's coordinate system |
theDestWkt | Wkt, typically of the map canvas coordinate system |
Definition at line 69 of file qgscoordinatetransform.cpp.
References QgsCoordinateReferenceSystem::createFromWkt(), initialise(), mDestCRS, mSourceCRS, and setFinder().
QgsCoordinateTransform::QgsCoordinateTransform | ( | long | theSourceSrid, |
QString | theDestWkt, | ||
QgsCoordinateReferenceSystem::CrsType | theSourceCRSType = QgsCoordinateReferenceSystem::PostgisCrsId |
||
) |
Constructs a QgsCoordinateTransform using a Spatial Reference Id of the layer and map canvas coordinate system as Wkt
theSourceSrid | Spatial Ref Id of the layer's coordinate system |
theDestWkt | Wkt of the map canvas coordinate system |
theSourceCRSType | On of the enum members defined in QgsCoordinateReferenceSystem::CrsType |
Definition at line 85 of file qgscoordinatetransform.cpp.
References QgsCoordinateReferenceSystem::createFromId(), QgsCoordinateReferenceSystem::createFromWkt(), initialise(), mDestCRS, mSourceCRS, and setFinder().
QgsCoordinateTransform::~QgsCoordinateTransform | ( | ) |
destructor
Definition at line 104 of file qgscoordinatetransform.cpp.
References mDestinationProjection, and mSourceProjection.
|
inline |
Get the QgsCoordinateReferenceSystem representation of the map canvas coordinate system
Definition at line 120 of file qgscoordinatetransform.h.
Referenced by QgsDistanceArea::_copy(), QgsVectorFileWriter::createSymbolLayerTable(), QgsRasterLayer::draw(), QgsVectorFileWriter::exportFeaturesSymbolLevels(), QgsDistanceArea::measureLine(), operator<<(), and QgsVectorFileWriter::writeAsVectorFormat().
|
slot |
initialise is used to actually create the Transformer instance
Definition at line 137 of file qgscoordinatetransform.cpp.
References QgsCoordinateReferenceSystem::authid(), QgsCRSCache::crsByAuthId(), QgsCRSCache::instance(), QgsCoordinateReferenceSystem::isValid(), mDestCRS, mDestinationProjection, mInitialisedFlag, mShortCircuit, mSourceCRS, mSourceProjection, QgsDebugMsg, QgsDebugMsgLevel, and QgsCoordinateReferenceSystem::toProj4().
Referenced by QgsCoordinateTransform(), readXML(), setDestCRS(), setDestCRSID(), and setSourceCrs().
|
signal |
Signal when an invalid pj_transform() has occured.
Referenced by transformCoords().
|
inline |
Flag to indicate whether the coordinate systems have been initialised
Definition at line 196 of file qgscoordinatetransform.h.
Referenced by operator<<().
|
inline |
See if the transform short circuits because src and dest are equivalent
Definition at line 201 of file qgscoordinatetransform.h.
Referenced by operator<<().
|
slot |
Restores state from the given Dom node.
theNode | The node from which state will be restored |
Definition at line 658 of file qgscoordinatetransform.cpp.
References initialise(), mDestCRS, mSourceCRS, QgsDebugMsg, and QgsCoordinateReferenceSystem::readXML().
void QgsCoordinateTransform::setDestCRS | ( | const QgsCoordinateReferenceSystem & | theCRS | ) |
Mutator for dest QgsCoordinateReferenceSystem
theCRS | of the destination coordinate system |
Definition at line 122 of file qgscoordinatetransform.cpp.
References initialise(), and mDestCRS.
Referenced by QgsAtlasComposition::beginRender(), QgsRasterProjector::operator=(), QgsRasterProjector::QgsRasterProjector(), QgsRasterProjector::setCRS(), and QgsDistanceArea::setEllipsoid().
void QgsCoordinateTransform::setDestCRSID | ( | long | theCRSID | ) |
Change the destination coordinate system by passing it a qgis srsid A QGIS srsid is a unique key value to an entry on the tbl_srs in the srs.db sqlite database.
theCRSID | - A long representing the srsid of the srs to be used |
todo Add some logic here to determine if the srsid is a system or user one
Definition at line 128 of file qgscoordinatetransform.cpp.
References QgsCoordinateReferenceSystem::createFromSrsId(), initialise(), and mDestCRS.
|
private |
Finder for PROJ grid files.
Definition at line 704 of file qgscoordinatetransform.cpp.
References finder().
Referenced by QgsCoordinateTransform().
void QgsCoordinateTransform::setSourceCrs | ( | const QgsCoordinateReferenceSystem & | theCRS | ) |
Set the source (layer) QgsCoordinateReferenceSystem
theCRS | QgsCoordinateReferenceSystem representation of the layer's coordinate system |
Definition at line 117 of file qgscoordinatetransform.cpp.
References initialise(), and mSourceCRS.
Referenced by QgsAtlasComposition::beginRender(), QgsRasterProjector::operator=(), QgsRasterProjector::QgsRasterProjector(), QgsRasterProjector::setCRS(), QgsDistanceArea::setSourceAuthId(), and QgsDistanceArea::setSourceCrs().
|
inline |
Get the QgsCoordinateReferenceSystem representation of the layer's coordinate system
Definition at line 114 of file qgscoordinatetransform.h.
Referenced by QgsDistanceArea::_copy(), QgsDistanceArea::measureLine(), and operator<<().
QgsPoint QgsCoordinateTransform::transform | ( | const QgsPoint | p, |
TransformDirection | direction = ForwardTransform |
||
) | const |
Transform the point from Source Coordinate System to Destination Coordinate System If the direction is ForwardTransform then coordinates are transformed from layer CS –> map canvas CS, otherwise points are transformed from map canvas CS to layerCS.
p | Point to transform |
direction | TransformDirection (defaults to ForwardTransform) |
Definition at line 226 of file qgscoordinatetransform.cpp.
References mInitialisedFlag, mShortCircuit, QgsDebugMsg, transformCoords(), QgsPoint::x(), and QgsPoint::y().
Referenced by QgsDistanceArea::bearing(), QgsRasterProjector::calcCP(), QgsRasterProjector::checkCols(), QgsRasterProjector::checkRows(), QgsMapRenderer::layerToMapCoordinates(), QgsMapRenderer::mapToLayerCoordinates(), QgsDistanceArea::measureLine(), QgsDistanceArea::measurePolygon(), QgsLabel::renderLabel(), QgsRasterLayerSaveAsDialog::setResolution(), QgsMapRenderer::splitLayersExtent(), transform(), and transformBoundingBox().
QgsPoint QgsCoordinateTransform::transform | ( | const double | x, |
const double | y = 0 , |
||
TransformDirection | direction = ForwardTransform |
||
) | const |
Transform the point specified by x,y from Source Coordinate System to Destination Coordinate System If the direction is ForwardTransform then coordinates are transformed from layer CS –> map canvas CS, otherwise points are transformed from map canvas CS to layerCS.
x | x cordinate of point to transform |
y | y coordinate of point to transform |
direction | TransformDirection (defaults to ForwardTransform) |
Definition at line 249 of file qgscoordinatetransform.cpp.
References QgsDebugMsg, and transform().
QgsRectangle QgsCoordinateTransform::transform | ( | const QgsRectangle | theRect, |
TransformDirection | direction = ForwardTransform |
||
) | const |
Transform a QgsRectangle to the dest Coordinate system If the direction is ForwardTransform then coordinates are transformed from layer CS –> map canvas CS, otherwise points are transformed from map canvas CS to layerCS.
theRect | rect to transform |
direction | TransformDirection (defaults to ForwardTransform) |
Definition at line 263 of file qgscoordinatetransform.cpp.
References QgsLogger::debug(), mInitialisedFlag, mShortCircuit, QgsDebugMsg, transformCoords(), QgsRectangle::xMaximum(), QgsRectangle::xMinimum(), QgsRectangle::yMaximum(), and QgsRectangle::yMinimum().
QgsRectangle QgsCoordinateTransform::transformBoundingBox | ( | const QgsRectangle | theRect, |
TransformDirection | direction = ForwardTransform |
||
) | const |
Transform a QgsRectangle to the dest Coordinate system If the direction is ForwardTransform then coordinates are transformed from layer CS –> map canvas CS, otherwise points are transformed from map canvas CS to layerCS. It assumes that rect is a bounding box, and creates a bounding box in the proejcted CS, so that all points in source rectangle is within returned rectangle.
theRect | rect to transform |
direction | TransformDirection (defaults to ForwardTransform) |
Definition at line 466 of file qgscoordinatetransform.cpp.
References QgsRectangle::combineExtentWith(), QgsRectangle::height(), QgsRectangle::isEmpty(), mInitialisedFlag, mShortCircuit, QgsDebugMsg, QgsRectangle::setMinimal(), QgsRectangle::toString(), transform(), transformCoords(), QgsRectangle::width(), QgsRectangle::xMinimum(), and QgsRectangle::yMinimum().
Referenced by QgsRasterLayer::draw(), QgsMapRenderer::layerExtentToOutputExtent(), QgsMapRenderer::outputExtentToLayerExtent(), QgsMapRenderer::setDestinationCrs(), QgsRasterLayerSaveAsDialog::setOutputExtent(), and QgsMapRenderer::splitLayersExtent().
void QgsCoordinateTransform::transformCoords | ( | const int & | numPoint, |
double * | x, | ||
double * | y, | ||
double * | z, | ||
TransformDirection | direction = ForwardTransform |
||
) | const |
Transform an array of coordinates to a different Coordinate System If the direction is ForwardTransform then coordinates are transformed from layer CS –> map canvas CS, otherwise points are transformed from map canvas CS to layerCS.
numPoint | number of coordinates in arrays |
x | array of x coordinates to transform |
y | array of y coordinates to transform |
z | array of z coordinates to transform |
direction | TransformDirection (defaults to ForwardTransform) |
Definition at line 552 of file qgscoordinatetransform.cpp.
References ForwardTransform, invalidTransformInput(), QgsCoordinateReferenceSystem::isValid(), QgsMessageLog::logMessage(), mDestCRS, mDestinationProjection, mSourceCRS, mSourceProjection, QgsDebugMsg, ReverseTransform, QgsCoordinateReferenceSystem::toProj4(), and tr.
Referenced by transform(), transformBoundingBox(), transformInPlace(), and transformPolygon().
void QgsCoordinateTransform::transformInPlace | ( | double & | x, |
double & | y, | ||
double & | z, | ||
TransformDirection | direction = ForwardTransform |
||
) | const |
Definition at line 303 of file qgscoordinatetransform.cpp.
References mInitialisedFlag, mShortCircuit, QgsDebugMsg, and transformCoords().
Referenced by QgsFeatureRendererV2::_getPoint(), QgsRasterProjector::preciseSrcRowCol(), QgsPalLabeling::registerDiagramFeature(), QgsPalLayerSettings::registerFeature(), and QgsGeometry::transformVertex().
void QgsCoordinateTransform::transformInPlace | ( | QVector< double > & | x, |
QVector< double > & | y, | ||
QVector< double > & | z, | ||
TransformDirection | direction = ForwardTransform |
||
) | const |
Definition at line 365 of file qgscoordinatetransform.cpp.
References mInitialisedFlag, mShortCircuit, QgsDebugMsg, and transformCoords().
void QgsCoordinateTransform::transformPolygon | ( | QPolygonF & | poly, |
TransformDirection | direction = ForwardTransform |
||
) | const |
Definition at line 324 of file qgscoordinatetransform.cpp.
References mInitialisedFlag, mShortCircuit, QgsDebugMsg, and transformCoords().
Referenced by QgsFeatureRendererV2::_getLineString(), and QgsFeatureRendererV2::_getPolygon().
|
slot |
Stores state to the given Dom node in the given document
theNode | The node in which state will be restored |
theDoc | The document in which state will be stored |
Definition at line 674 of file qgscoordinatetransform.cpp.
References mDestCRS, mSourceCRS, and QgsCoordinateReferenceSystem::writeXML().
|
private |
QgsCoordinateReferenceSystem of the destination (map canvas) coordinate system
Definition at line 256 of file qgscoordinatetransform.h.
Referenced by initialise(), QgsCoordinateTransform(), readXML(), setDestCRS(), setDestCRSID(), transformCoords(), and writeXML().
|
private |
Proj4 data structure of the destination projection (map canvas coordinate system)
Definition at line 266 of file qgscoordinatetransform.h.
Referenced by initialise(), transformCoords(), and ~QgsCoordinateTransform().
|
private |
flag to show whether the transform is properly initialised or not
Definition at line 246 of file qgscoordinatetransform.h.
Referenced by initialise(), transform(), transformBoundingBox(), transformInPlace(), and transformPolygon().
|
private |
Flag to indicate that the source and destination coordinate systems are equal and not transformation needs to be done
Definition at line 241 of file qgscoordinatetransform.h.
Referenced by initialise(), transform(), transformBoundingBox(), transformInPlace(), and transformPolygon().
|
private |
QgsCoordinateReferenceSystem of the source (layer) coordinate system
Definition at line 251 of file qgscoordinatetransform.h.
Referenced by initialise(), QgsCoordinateTransform(), readXML(), setSourceCrs(), transformCoords(), and writeXML().
|
private |
Proj4 data structure of the source projection (layer coordinate system)
Definition at line 261 of file qgscoordinatetransform.h.
Referenced by initialise(), transformCoords(), and ~QgsCoordinateTransform().