reverted raster reprojection matrix size, Magnus Homann wrote: Ooops, that wasn't supposed to go in the commit

This commit is contained in:
Radim Blazek 2012-09-26 20:18:29 +02:00
parent c918952c74
commit 965342d2f9

View File

@ -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;