Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bit less noise in Find Projection algorithm
  • Loading branch information
nyalldawson committed Feb 8, 2021
1 parent ab40178 commit f545d13
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/plugins/processing/algs/qgis/FindProjection.py
Expand Up @@ -127,6 +127,8 @@ def processAlgorithm(self, parameters, context, feedback):
continue

transform_candidate = QgsCoordinateTransform(candidate_crs, target_crs, transform_context)
transform_candidate.setBallparkTransformsAreAppropriate(True)
transform_candidate.disableFallbackOperationHandler(True)
transformed_bounds = QgsGeometry(layer_bounds)
try:
if not transformed_bounds.transform(transform_candidate) == 0:
Expand Down

0 comments on commit f545d13

Please sign in to comment.