From 521384319b91512efe5e2afcbbe3c60bd199e600 Mon Sep 17 00:00:00 2001 From: Arun Kannawadi Date: Mon, 9 Sep 2024 10:32:23 -0400 Subject: [PATCH] Default flipXY to True --- python/lsst/meas/algorithms/cloughTocher2DInterpolator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/meas/algorithms/cloughTocher2DInterpolator.py b/python/lsst/meas/algorithms/cloughTocher2DInterpolator.py index 4b696075..bcb8e116 100644 --- a/python/lsst/meas/algorithms/cloughTocher2DInterpolator.py +++ b/python/lsst/meas/algorithms/cloughTocher2DInterpolator.py @@ -55,7 +55,7 @@ class CloughTocher2DInterpolateConfig(Config): doc="Whether to flip the x and y coordinates before constructing the " "Delaunay triangulation. This may produce a slightly different result " "since the triangulation is not invariant under coordinate flips.", - default=False, + default=True, )