From ea069dad4376bca8e7b6a96dfabb30f2399a26bf Mon Sep 17 00:00:00 2001 From: Melanie Clarke Date: Fri, 22 Nov 2024 15:32:53 -0500 Subject: [PATCH] Fix for ref names in extract params default --- jwst/extract_1d/extract.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jwst/extract_1d/extract.py b/jwst/extract_1d/extract.py index 80efb8db0a..22e3f3f4a8 100644 --- a/jwst/extract_1d/extract.py +++ b/jwst/extract_1d/extract.py @@ -246,8 +246,8 @@ def get_extract_parameters(ref_dict, input_model, slitname, sp_order, meta, extract_params['subtract_background'] = False extract_params['extraction_type'] = 'box' extract_params['use_source_posn'] = False # no source position correction - extract_params['specwcs_ref_name'] = 'N/A' - extract_params['psf_ref_name'] = 'N/A' + extract_params['specwcs'] = 'N/A' + extract_params['psf'] = 'N/A' extract_params['position_correction'] = 0 extract_params['independent_var'] = 'pixel' # Note that extract_params['dispaxis'] is not assigned.