Navigation Menu

Skip to content

Commit

Permalink
reverted raster reprojection matrix size, Magnus Homann wrote: Ooops,…
Browse files Browse the repository at this point in the history
… that wasn't supposed to go in the commit
  • Loading branch information
blazek committed Sep 26, 2012
1 parent c918952 commit 965342d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsrasterprojector.cpp
Expand Up @@ -202,7 +202,7 @@ void QgsRasterProjector::calc()
}
// What is the maximum reasonable size of transformatio matrix?
// TODO: consider better when to break - ratio
if ( mCPRows * mCPCols > 0.0625 * mDestRows * mDestCols )
if ( mCPRows * mCPCols > 0.25 * mDestRows * mDestCols )
{
QgsDebugMsg( "Too large CP matrix" );
mApproximate = false;
Expand Down

0 comments on commit 965342d

Please sign in to comment.