We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c21fc54 commit b1d1f10Copy full SHA for b1d1f10
src/core/qgscoordinatetransform.cpp
@@ -181,7 +181,6 @@ void QgsCoordinateTransform::initialise()
181
{
182
sourceProjString += ( " " + datumTransformString( mSourceDatumTransform ) );
183
}
184
- mSourceProjection = pj_init_plus( sourceProjString.toUtf8() );
185
186
pj_free( mDestinationProjection );
187
QString destProjString = mDestCRS.toProj4();
@@ -199,6 +198,7 @@ void QgsCoordinateTransform::initialise()
199
198
addNullGridShifts( sourceProjString, destProjString );
200
201
+ mSourceProjection = pj_init_plus( sourceProjString.toUtf8() );
202
mDestinationProjection = pj_init_plus( destProjString.toUtf8() );
203
204
#ifdef COORDINATE_TRANSFORM_VERBOSE
0 commit comments