Skip to content
Snippets Groups Projects
Commit 4384ae9c authored by Daniel Scheffler's avatar Daniel Scheffler
Browse files

Merge branch 'bugfix/fix_quietmode' into 'master'

Fix for not passing the quiet mode parameter to Tie_Point_Refiner class when...

Closes #40

See merge request !11
parents 0e4a1edf f3463f16
No related branches found
No related tags found
1 merge request!11Fix for not passing the quiet mode parameter to Tie_Point_Refiner class when...
Pipeline #14830 passed
......@@ -125,13 +125,16 @@ class Tie_Point_Grid(object):
self.outFillVal = outFillVal
self.rspAlg_calc = resamp_alg_calc
self.tieP_filter_level = tieP_filter_level
self.outlDetect_settings = outlDetect_settings if outlDetect_settings else dict(q=q)
self.outlDetect_settings = outlDetect_settings or dict()
self.dir_out = dir_out
self.CPUs = CPUs
self.v = v
self.q = q if not v else False # overridden by v
self.progress = progress if not q else False # overridden by q
if 'q' not in self.outlDetect_settings:
self.outlDetect_settings['q'] = self.q
self.ref = self.COREG_obj.ref # type: GeoArray_CoReg
self.shift = self.COREG_obj.shift # type: GeoArray_CoReg
......
......@@ -22,5 +22,5 @@
# with this program. If not, see <http://www.gnu.org/licenses/>.
__version__ = '1.0.3'
__versionalias__ = '2020-10-19_01'
__version__ = '1.0.4'
__versionalias__ = '2020-10-21_01'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment