Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Bit less noise in Find Projection algorithm
- Loading branch information
Showing
with
2 additions
and
0 deletions.
-
+2
−0
python/plugins/processing/algs/qgis/FindProjection.py
|
@@ -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: |
|
|