We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28367f0 commit b8eced4Copy full SHA for b8eced4
wf_psf/SimPSFToolkit.py
@@ -79,6 +79,8 @@ class SimPSFToolkit(object):
79
Number of points to interpolate in between SED values. It can be 0, 1 or 2.
80
extrapolate: bool
81
SED interpolation mode. Default mode uses extrapolation.
82
+ SED_interp_kind: str
83
+ SED interpolation kind. Options are `'cubic'` or `'linear'`.
84
85
"""
86
@@ -102,7 +104,7 @@ def __init__(
102
104
SED_sigma=0,
103
105
interp_pts_per_bin=0,
106
extrapolate=True,
- SED_interp_kind='cubic'
107
+ SED_interp_kind='linear'
108
):
109
# Input attributes
110
self.max_order = max_order
0 commit comments