We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d11fd92 commit e1a1627Copy full SHA for e1a1627
src/core/qgsrasterprojector.cpp
@@ -195,7 +195,7 @@ void QgsRasterProjector::calc()
195
}
196
// What is the maximum reasonable size of transformatio matrix?
197
// TODO: consider better when to break - ratio
198
- if ( mCPRows * mCPCols > 0.25 * mDestRows * mDestCols )
+ if ( mCPRows * mCPCols > 0.0625 * mDestRows * mDestCols )
199
{
200
QgsDebugMsg( "Too large CP matrix" );
201
mApproximate = false;
0 commit comments