Reversed erroneous change

This commit is contained in:
Magnus Homann 2012-09-14 08:35:20 +02:00
parent d11fd92343
commit e1a1627896

View File

@ -195,7 +195,7 @@ void QgsRasterProjector::calc()
}
// What is the maximum reasonable size of transformatio matrix?
// TODO: consider better when to break - ratio
if ( mCPRows * mCPCols > 0.25 * mDestRows * mDestCols )
if ( mCPRows * mCPCols > 0.0625 * mDestRows * mDestCols )
{
QgsDebugMsg( "Too large CP matrix" );
mApproximate = false;