Skip to content

Commit

Permalink
Fix bug in datum transform sync
Browse files Browse the repository at this point in the history
  • Loading branch information
mhugent committed Nov 12, 2013
1 parent c01c18a commit 4fd011f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/qgscoordinatereferencesystem.cpp
Expand Up @@ -2019,6 +2019,7 @@ bool QgsCoordinateReferenceSystem::syncDatumTransform( const QString& dbPath )
sql = QString( "UPDATE tbl_datum_transform SET source_crs = %2, target_crs = %3, coord_op_method = %4, p1 = %5, p2 = %6, p3 = %7, p4 = %8, p5 = %9, p6 = %10, p7 = %11 WHERE coord_op = %1" )
.arg( coord_op ).arg( source_crs ).arg( target_crs ).arg( coord_op_method ).arg( p1 ).arg( p2 ).arg( p3 ).arg( p4 ).arg( p5 ).arg( p6 ).arg( p7 );
}
else
{
//not yet in database, do insert
QgsDebugMsg( "Trying datum transform insert" );
Expand Down

0 comments on commit 4fd011f

Please sign in to comment.