From 2e7c5725031d5f81a8360c00b6c5bc8c941e6838 Mon Sep 17 00:00:00 2001 From: Pierre-Francois Leget Date: Thu, 8 Aug 2024 21:25:03 -0700 Subject: [PATCH] set default use legacy --- python/lsst/meas/algorithms/interp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lsst/meas/algorithms/interp.py b/python/lsst/meas/algorithms/interp.py index 5fcdbcf96..9f77a9741 100644 --- a/python/lsst/meas/algorithms/interp.py +++ b/python/lsst/meas/algorithms/interp.py @@ -9,9 +9,9 @@ def interpolateOverDefects( psf, badList, fallbackValue=0.0, - fwhm=1.0, useFallbackValueAtEdge=False, - useLegacyInterp=False, + fwhm=1.0, + useLegacyInterp=True, maskNameList=None, **kwargs ):