Showing with 1 addition and 1 deletion.
  1. +1 −1 src/core/qgsrasterprojector.cpp
2 changes: 1 addition & 1 deletion src/core/qgsrasterprojector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down