Run Image Pipeline and Create Source Catalog#
In this run, we are starting from the rate files which have already been calibrated with the detector1 pipeline. This will save time as we do not need to edit any of the steps being performed as part of detector1. Therefore, the first calibration that should be done as part of a WFSS run is to run the rate files direct images through the Image2 and Image3 steps of the JWST pipeline. This includes creating a source catalog, which most likely will need to be adjusted from the pipeline default values. Not having a good source catalog will result in non optimal extraction of sources in the dispersed, WFSS, images.
Use case: The default parameters for the pipeline do not extract the expected sources, so custom parameters need to be set to obtain new combined image and source catalog.
Data: JWST/NIRISS images and spectra from program 2079 observation 004. This should be stored in a single directory data
, and can be downloaded from the previous notebook, 00_niriss_mast_query_data_setup.ipynb.
Tools: astropy, crds, glob, jdaviz, json, jwst, matplotlib, numpy, os, pandas, urllib, warnings, zipfile
Cross-instrument: NIRISS
Content
Imports & Data Setup
Default Imaging Pipeline Run
Image2
Image3
Inspecting Default Results
Custom Imaging Pipeline Run
Image3
Inspecting Custom Results
Refining the Source Catalog Further
Matching Source IDs Across Catalogs
Manually Editing the Source Catalog
Author: Rachel Plesha (rplesha@stsci.edu), Camilla Pacifici (cpacifici@stsci.edu), JWebbinar notebooks.
First Published: May 2024
Last tested: This notebook was last tested with JWST pipeline version 1.12.5 and the CRDS context jwst_1225.pmap.
Imports & Data Setup#
# Update the CRDS path to your local directory
%env CRDS_PATH=crds_cache
%env CRDS_SERVER_URL=https://jwst-crds.stsci.edu
env: CRDS_PATH=crds_cache
env: CRDS_SERVER_URL=https://jwst-crds.stsci.edu
import os
import glob
import json
import warnings
import urllib
import zipfile
import numpy as np
import pandas as pd
import astropy.units as u
from astropy.io import fits
from astropy.coordinates import SkyCoord
from astropy.table import Table
from jdaviz import Imviz
from matplotlib import pyplot as plt
%matplotlib widget
# %matplotlib inline
from jwst.pipeline import Image2Pipeline
from jwst.pipeline import Image3Pipeline
Check what version of the JWST pipeline you are using. To see what the latest version of the pipeline is available or install a previous version, check GitHub. Also verify what CRDS version you are using. CRDS documentation explains how to set a specific context to use in the JWST pipeline. If either of these values are different from the last tested note above there may be differences in this notebook.
import jwst
import crds
print('JWST Pipeliene Version:', jwst.__version__)
print('CRDS Context:', crds.get_context_name('jwst'))
JWST Pipeliene Version: 1.17.1
CRDS - INFO - Calibration SW Found: jwst 1.17.1 (/opt/hostedtoolcache/Python/3.11.11/x64/lib/python3.11/site-packages/jwst-1.17.1.dist-info)
CRDS Context: jwst_1321.pmap
The data directory, data_dir
here should contain all of the association and rate files in a single, flat directory. default_run_image3
and custom_run_image3
are directories that we will use later for our calibrated data. They are separated so that we can compare the two outputs.
data_dir = 'data'
default_run_image3 = 'default_image3_calibrated' # where the results of the default image3 run will be saved (inside of data_dir)
custom_run_image3 = 'custom_image3_calibrated'# where the results of the custom image3 run will be saved (inside of data_dir)
The association files expect that 1) all of the data are in the same directory and 2) that you are performing the pipeline call also in that directory. Because of that, we need to change into the data directory to run the imaging pipelines.
# if you have not downloaded the data from notebook 00, run this cell. Otherwise, feel free to skip it.
# Download uncalibrated data from Box into the data directory:
boxlink = 'https://data.science.stsci.edu/redirect/JWST/jwst-data_analysis_tools/niriss_wfss_advanced/niriss_wfss_advanced_01_input.zip'
boxfile = os.path.basename(boxlink)
urllib.request.urlretrieve(boxlink, boxfile)
zf = zipfile.ZipFile(boxfile, 'r')
zf.extractall(path=data_dir)
# move the files downloaded from the box file into the top level data directory
box_download_dir = os.path.join(data_dir, boxfile.split('.zip')[0])
for filename in glob.glob(os.path.join(box_download_dir, '*')):
if '.csv' in filename:
# move to the current directory
os.rename(filename, os.path.basename(filename))
else:
# move to the data directory
os.rename(filename, os.path.join(data_dir, os.path.basename(filename)))
# remove unnecessary files now
os.remove(boxfile)
os.rmdir(box_download_dir)
# From the csv file we created earlier, find a list of all of the grism observations we will want to calibrate with spec2
listrate_file = 'list_ngdeep_rate.csv'
rate_df = pd.read_csv(listrate_file)
cwd = os.getcwd() # get the current working directory
if cwd != data_dir: # if you are not already in the location of the data, change into it
try:
os.chdir(data_dir)
except FileNotFoundError:
print(f"Not able to change into: {data_dir}.\nRemaining in: {cwd}")
pass
for temp_dir in [default_run_image3, custom_run_image3]:
if not os.path.exists(temp_dir):
os.mkdir(temp_dir)
Default Imaging Pipeline Run#
To start, run the default image2 and image3 steps of the pipeline on all direct images observed with the WFSS data.
Run Default Image2#
Image2 is run on the direct image rate files. While your program should have valid association files to download from MAST, if for any reason you need to make your own association file, see Creating Custom ASN Files.
Looking in a Level 2 Imaging Association File#
First, take a look inside the association (ASN) files to better understand everything that is contained in them.
For image2 association files, there should be one asn file for each dither position in an observing sequence which is set by the exposure strategy. In this case, that should match the number of direct images (FILTER=CLEAR
) in rate_df
because each direct image is at a unique dither position (XOFFSET, YOFFSET) within an observing sequence. For this program and observation, there is one direct image before a grism change with only one dither, another direct image with four dithers between the change in grisms, and a direct image at the end of a sequence with three dithers. This leads to a total of eight images per observing sequence, with five observing sequences in the observation using the blocking filters F115W -> F115W -> F150W -> F150W -> F200W.
image2_asns = glob.glob('*image2*asn*.json')
print(len(image2_asns), 'Image2 ASN files') # there should be 40 asn files for image2
# the number of association files should match the number of rate files
print(len(rate_df[rate_df['FILTER'] == 'CLEAR']), 'Direct Image rate files')
40 Image2 ASN files
40 Direct Image rate files
# look at one of the association files
asn_data = json.load(open(image2_asns[0]))
for key, data in asn_data.items():
print(f"{key} : {data}")
asn_type : image2
asn_rule : candidate_Asn_Lv2Image
version_id : 20231119t124442
code_version : 1.11.4
degraded_status : No known degraded exposures in association.
program : 02079
constraints : DMSAttrConstraint({'name': 'program', 'sources': ['program'], 'value': '2079'})
DMSAttrConstraint({'name': 'is_tso', 'sources': ['tsovisit'], 'value': None})
DMSAttrConstraint({'name': 'instrument', 'sources': ['instrume'], 'value': 'niriss'})
DMSAttrConstraint({'name': 'detector', 'sources': ['detector'], 'value': 'nis'})
DMSAttrConstraint({'name': 'opt_elem', 'sources': ['filter'], 'value': 'clear'})
DMSAttrConstraint({'name': 'opt_elem2', 'sources': ['pupil'], 'value': 'f115w'})
DMSAttrConstraint({'name': 'opt_elem3', 'sources': ['fxd_slit'], 'value': None})
DMSAttrConstraint({'name': 'subarray', 'sources': ['subarray'], 'value': 'full'})
DMSAttrConstraint({'name': 'channel', 'sources': ['channel'], 'value': None})
DMSAttrConstraint({'name': 'slit', 'sources': ['fxd_slit'], 'value': None})
Constraint_Image_Science({'name': 'exp_type', 'sources': ['exp_type'], 'value': 'nis_image'})
Constraint_Background({'name': 'background', 'sources': ['bkgdtarg'], 'value': None})
DMSAttrConstraint({'name': 'asn_candidate', 'sources': ['asn_candidate'], 'value': "\\('o004',\\ 'observation'\\)"})
asn_id : o004
asn_pool : jw02079_20231119t124442_pool.csv
target : 1
products : [{'name': 'jw02079004001_12101_00001_nis', 'members': [{'expname': 'jw02079004001_12101_00001_nis_rate.fits', 'exptype': 'science', 'exposerr': 'null'}]}]
From this association, we can tell many things about the observation:
From
asn_type
andasn_rule
, we can see that this is an image2 associationFrom
degraded_status
we can see that there are no exposures to not be included in the calibration.From
constraints
, we can see this is not a time series observation (TSO), the observation is part of program 2079, observed with NIRISS with the CLEAR (i.e. imaging for WFSS) and F150W filters.From
products
we can see there is only one exposure associated. This is typical for image2 where there is usually only one exposure per dither per observing sequence.
# in particular, take a closer look at the product filenames with the association file:
for product in asn_data['products']:
for key, value in product.items():
if key == 'members':
print(f"{key}:")
for member in value:
print(f" {member['expname']} {member['exptype']}")
else:
print(f"{key}: {value}")
name: jw02079004001_12101_00001_nis
members:
jw02079004001_12101_00001_nis_rate.fits science
Run image2#
The rate.fits
products will be calibrated into cal.fits
files. More information about the steps performed in the Image2 part of the pipeline can be found in the Image2 pipeline documentation.
In this case, we’re saving the outputs to the same directory we are running the pipeline in so that we can then use the output cal
files to run the Image3 pipeline
for img2_asn in image2_asns:
# check if the calibrated file already exists
asn_data = json.load(open(img2_asn))
cal_file = f"{asn_data['products'][0]['name']}_cal.fits"
if os.path.exists(cal_file):
print(cal_file, 'cal file already exists.')
continue
# if not, calibrated with image2
img2 = Image2Pipeline.call(img2_asn, save_results=True)
2025-01-10 19:29:27,263 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_system_datalvl_0002.rmap 694 bytes (1 / 202 files) (0 / 722.7 K bytes)
2025-01-10 19:29:27,352 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_system_calver_0045.rmap 5.1 K bytes (2 / 202 files) (694 / 722.7 K bytes)
2025-01-10 19:29:27,482 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_system_0044.imap 385 bytes (3 / 202 files) (5.8 K / 722.7 K bytes)
2025-01-10 19:29:27,568 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_wavelengthrange_0024.rmap 1.4 K bytes (4 / 202 files) (6.2 K / 722.7 K bytes)
2025-01-10 19:29:27,648 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_wavecorr_0005.rmap 884 bytes (5 / 202 files) (7.6 K / 722.7 K bytes)
2025-01-10 19:29:27,730 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_superbias_0074.rmap 33.8 K bytes (6 / 202 files) (8.4 K / 722.7 K bytes)
2025-01-10 19:29:27,858 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_sflat_0026.rmap 20.6 K bytes (7 / 202 files) (42.2 K / 722.7 K bytes)
2025-01-10 19:29:27,973 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_saturation_0018.rmap 2.0 K bytes (8 / 202 files) (62.8 K / 722.7 K bytes)
2025-01-10 19:29:28,078 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_refpix_0015.rmap 1.6 K bytes (9 / 202 files) (64.8 K / 722.7 K bytes)
2025-01-10 19:29:28,161 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_readnoise_0025.rmap 2.6 K bytes (10 / 202 files) (66.4 K / 722.7 K bytes)
2025-01-10 19:29:28,244 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_photom_0013.rmap 958 bytes (11 / 202 files) (69.0 K / 722.7 K bytes)
2025-01-10 19:29:28,333 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pathloss_0008.rmap 1.2 K bytes (12 / 202 files) (69.9 K / 722.7 K bytes)
2025-01-10 19:29:28,417 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-whitelightstep_0001.rmap 777 bytes (13 / 202 files) (71.1 K / 722.7 K bytes)
2025-01-10 19:29:28,510 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-spec2pipeline_0013.rmap 2.1 K bytes (14 / 202 files) (71.9 K / 722.7 K bytes)
2025-01-10 19:29:28,602 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-resamplespecstep_0002.rmap 709 bytes (15 / 202 files) (74.0 K / 722.7 K bytes)
2025-01-10 19:29:28,696 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-outlierdetectionstep_0005.rmap 1.1 K bytes (16 / 202 files) (74.7 K / 722.7 K bytes)
2025-01-10 19:29:28,789 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-jumpstep_0005.rmap 810 bytes (17 / 202 files) (75.9 K / 722.7 K bytes)
2025-01-10 19:29:28,880 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-image2pipeline_0008.rmap 1.0 K bytes (18 / 202 files) (76.7 K / 722.7 K bytes)
2025-01-10 19:29:28,993 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-detector1pipeline_0003.rmap 1.1 K bytes (19 / 202 files) (77.7 K / 722.7 K bytes)
2025-01-10 19:29:29,087 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-darkpipeline_0003.rmap 872 bytes (20 / 202 files) (78.7 K / 722.7 K bytes)
2025-01-10 19:29:29,201 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-darkcurrentstep_0001.rmap 622 bytes (21 / 202 files) (79.6 K / 722.7 K bytes)
2025-01-10 19:29:29,291 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_ote_0030.rmap 1.3 K bytes (22 / 202 files) (80.2 K / 722.7 K bytes)
2025-01-10 19:29:29,382 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_msaoper_0016.rmap 1.5 K bytes (23 / 202 files) (81.5 K / 722.7 K bytes)
2025-01-10 19:29:29,471 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_msa_0027.rmap 1.3 K bytes (24 / 202 files) (83.0 K / 722.7 K bytes)
2025-01-10 19:29:29,562 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_mask_0039.rmap 2.7 K bytes (25 / 202 files) (84.2 K / 722.7 K bytes)
2025-01-10 19:29:29,645 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_linearity_0017.rmap 1.6 K bytes (26 / 202 files) (86.9 K / 722.7 K bytes)
2025-01-10 19:29:29,737 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_ipc_0006.rmap 876 bytes (27 / 202 files) (88.5 K / 722.7 K bytes)
2025-01-10 19:29:29,820 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_ifuslicer_0017.rmap 1.5 K bytes (28 / 202 files) (89.4 K / 722.7 K bytes)
2025-01-10 19:29:29,932 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_ifupost_0019.rmap 1.5 K bytes (29 / 202 files) (90.9 K / 722.7 K bytes)
2025-01-10 19:29:30,030 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_ifufore_0017.rmap 1.5 K bytes (30 / 202 files) (92.4 K / 722.7 K bytes)
2025-01-10 19:29:30,124 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_gain_0023.rmap 1.8 K bytes (31 / 202 files) (93.9 K / 722.7 K bytes)
2025-01-10 19:29:30,209 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_fpa_0028.rmap 1.3 K bytes (32 / 202 files) (95.7 K / 722.7 K bytes)
2025-01-10 19:29:30,302 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_fore_0026.rmap 5.0 K bytes (33 / 202 files) (96.9 K / 722.7 K bytes)
2025-01-10 19:29:30,386 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_flat_0015.rmap 3.8 K bytes (34 / 202 files) (101.9 K / 722.7 K bytes)
2025-01-10 19:29:30,476 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_fflat_0026.rmap 7.2 K bytes (35 / 202 files) (105.7 K / 722.7 K bytes)
2025-01-10 19:29:30,560 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_extract1d_0018.rmap 2.3 K bytes (36 / 202 files) (112.9 K / 722.7 K bytes)
2025-01-10 19:29:30,658 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_disperser_0028.rmap 5.7 K bytes (37 / 202 files) (115.2 K / 722.7 K bytes)
2025-01-10 19:29:30,750 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_dflat_0007.rmap 1.1 K bytes (38 / 202 files) (120.9 K / 722.7 K bytes)
2025-01-10 19:29:30,831 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_dark_0069.rmap 32.6 K bytes (39 / 202 files) (122.0 K / 722.7 K bytes)
2025-01-10 19:29:30,935 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_cubepar_0015.rmap 966 bytes (40 / 202 files) (154.6 K / 722.7 K bytes)
2025-01-10 19:29:31,019 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_collimator_0026.rmap 1.3 K bytes (41 / 202 files) (155.6 K / 722.7 K bytes)
2025-01-10 19:29:31,110 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_camera_0026.rmap 1.3 K bytes (42 / 202 files) (156.9 K / 722.7 K bytes)
2025-01-10 19:29:31,188 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_barshadow_0007.rmap 1.8 K bytes (43 / 202 files) (158.2 K / 722.7 K bytes)
2025-01-10 19:29:31,269 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_area_0018.rmap 6.3 K bytes (44 / 202 files) (160.0 K / 722.7 K bytes)
2025-01-10 19:29:31,357 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_apcorr_0009.rmap 5.6 K bytes (45 / 202 files) (166.3 K / 722.7 K bytes)
2025-01-10 19:29:31,473 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_0387.imap 5.7 K bytes (46 / 202 files) (171.8 K / 722.7 K bytes)
2025-01-10 19:29:31,563 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_wfssbkg_0008.rmap 3.1 K bytes (47 / 202 files) (177.6 K / 722.7 K bytes)
2025-01-10 19:29:31,655 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_wavemap_0008.rmap 2.2 K bytes (48 / 202 files) (180.7 K / 722.7 K bytes)
2025-01-10 19:29:31,738 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_wavelengthrange_0006.rmap 862 bytes (49 / 202 files) (182.9 K / 722.7 K bytes)
2025-01-10 19:29:31,820 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_trappars_0004.rmap 753 bytes (50 / 202 files) (183.8 K / 722.7 K bytes)
2025-01-10 19:29:31,911 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_trapdensity_0005.rmap 705 bytes (51 / 202 files) (184.5 K / 722.7 K bytes)
2025-01-10 19:29:31,990 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_throughput_0005.rmap 1.3 K bytes (52 / 202 files) (185.2 K / 722.7 K bytes)
2025-01-10 19:29:32,067 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_superbias_0030.rmap 7.4 K bytes (53 / 202 files) (186.5 K / 722.7 K bytes)
2025-01-10 19:29:32,152 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_specwcs_0014.rmap 3.1 K bytes (54 / 202 files) (193.9 K / 722.7 K bytes)
2025-01-10 19:29:32,251 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_spectrace_0008.rmap 2.3 K bytes (55 / 202 files) (197.0 K / 722.7 K bytes)
2025-01-10 19:29:32,342 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_specprofile_0008.rmap 2.4 K bytes (56 / 202 files) (199.4 K / 722.7 K bytes)
2025-01-10 19:29:32,423 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_speckernel_0006.rmap 1.0 K bytes (57 / 202 files) (201.7 K / 722.7 K bytes)
2025-01-10 19:29:32,510 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_saturation_0015.rmap 829 bytes (58 / 202 files) (202.8 K / 722.7 K bytes)
2025-01-10 19:29:32,592 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_readnoise_0011.rmap 987 bytes (59 / 202 files) (203.6 K / 722.7 K bytes)
2025-01-10 19:29:32,671 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_photom_0036.rmap 1.3 K bytes (60 / 202 files) (204.6 K / 722.7 K bytes)
2025-01-10 19:29:32,766 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_persat_0007.rmap 674 bytes (61 / 202 files) (205.8 K / 722.7 K bytes)
2025-01-10 19:29:32,854 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pathloss_0003.rmap 758 bytes (62 / 202 files) (206.5 K / 722.7 K bytes)
2025-01-10 19:29:32,937 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pastasoss_0004.rmap 818 bytes (63 / 202 files) (207.3 K / 722.7 K bytes)
2025-01-10 19:29:33,025 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-undersamplecorrectionstep_0001.rmap 904 bytes (64 / 202 files) (208.1 K / 722.7 K bytes)
2025-01-10 19:29:33,120 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-tweakregstep_0012.rmap 3.1 K bytes (65 / 202 files) (209.0 K / 722.7 K bytes)
2025-01-10 19:29:33,202 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-spec2pipeline_0008.rmap 984 bytes (66 / 202 files) (212.1 K / 722.7 K bytes)
2025-01-10 19:29:33,297 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-sourcecatalogstep_0002.rmap 2.3 K bytes (67 / 202 files) (213.1 K / 722.7 K bytes)
2025-01-10 19:29:33,376 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-resamplestep_0002.rmap 687 bytes (68 / 202 files) (215.4 K / 722.7 K bytes)
2025-01-10 19:29:33,463 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-outlierdetectionstep_0004.rmap 2.7 K bytes (69 / 202 files) (216.1 K / 722.7 K bytes)
2025-01-10 19:29:33,555 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-jumpstep_0007.rmap 6.4 K bytes (70 / 202 files) (218.8 K / 722.7 K bytes)
2025-01-10 19:29:33,635 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-image2pipeline_0005.rmap 1.0 K bytes (71 / 202 files) (225.1 K / 722.7 K bytes)
2025-01-10 19:29:33,724 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-detector1pipeline_0002.rmap 1.0 K bytes (72 / 202 files) (226.2 K / 722.7 K bytes)
2025-01-10 19:29:33,814 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-darkpipeline_0002.rmap 868 bytes (73 / 202 files) (227.2 K / 722.7 K bytes)
2025-01-10 19:29:33,891 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-darkcurrentstep_0001.rmap 591 bytes (74 / 202 files) (228.1 K / 722.7 K bytes)
2025-01-10 19:29:33,971 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-chargemigrationstep_0004.rmap 5.7 K bytes (75 / 202 files) (228.7 K / 722.7 K bytes)
2025-01-10 19:29:34,051 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_nrm_0005.rmap 663 bytes (76 / 202 files) (234.3 K / 722.7 K bytes)
2025-01-10 19:29:34,136 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_mask_0022.rmap 1.3 K bytes (77 / 202 files) (235.0 K / 722.7 K bytes)
2025-01-10 19:29:34,216 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_linearity_0022.rmap 961 bytes (78 / 202 files) (236.3 K / 722.7 K bytes)
2025-01-10 19:29:34,304 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_ipc_0007.rmap 651 bytes (79 / 202 files) (237.2 K / 722.7 K bytes)
2025-01-10 19:29:34,392 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_gain_0011.rmap 797 bytes (80 / 202 files) (237.9 K / 722.7 K bytes)
2025-01-10 19:29:34,485 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_flat_0023.rmap 5.9 K bytes (81 / 202 files) (238.7 K / 722.7 K bytes)
2025-01-10 19:29:34,576 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_filteroffset_0010.rmap 853 bytes (82 / 202 files) (244.5 K / 722.7 K bytes)
2025-01-10 19:29:34,665 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_extract1d_0007.rmap 905 bytes (83 / 202 files) (245.4 K / 722.7 K bytes)
2025-01-10 19:29:34,746 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_drizpars_0004.rmap 519 bytes (84 / 202 files) (246.3 K / 722.7 K bytes)
2025-01-10 19:29:34,837 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_distortion_0025.rmap 3.4 K bytes (85 / 202 files) (246.8 K / 722.7 K bytes)
2025-01-10 19:29:34,918 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_dark_0034.rmap 7.5 K bytes (86 / 202 files) (250.3 K / 722.7 K bytes)
2025-01-10 19:29:35,007 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_area_0014.rmap 2.7 K bytes (87 / 202 files) (257.8 K / 722.7 K bytes)
2025-01-10 19:29:35,100 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_apcorr_0010.rmap 4.3 K bytes (88 / 202 files) (260.5 K / 722.7 K bytes)
2025-01-10 19:29:35,187 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_abvegaoffset_0004.rmap 1.4 K bytes (89 / 202 files) (264.8 K / 722.7 K bytes)
2025-01-10 19:29:35,278 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_0267.imap 5.8 K bytes (90 / 202 files) (266.1 K / 722.7 K bytes)
2025-01-10 19:29:35,358 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_wfssbkg_0004.rmap 7.2 K bytes (91 / 202 files) (271.9 K / 722.7 K bytes)
2025-01-10 19:29:35,444 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_wavelengthrange_0010.rmap 996 bytes (92 / 202 files) (279.1 K / 722.7 K bytes)
2025-01-10 19:29:35,533 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_tsophot_0003.rmap 896 bytes (93 / 202 files) (280.1 K / 722.7 K bytes)
2025-01-10 19:29:35,615 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_trappars_0003.rmap 1.6 K bytes (94 / 202 files) (281.0 K / 722.7 K bytes)
2025-01-10 19:29:35,692 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_trapdensity_0003.rmap 1.6 K bytes (95 / 202 files) (282.6 K / 722.7 K bytes)
2025-01-10 19:29:35,788 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_superbias_0018.rmap 16.2 K bytes (96 / 202 files) (284.3 K / 722.7 K bytes)
2025-01-10 19:29:35,901 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_specwcs_0022.rmap 7.1 K bytes (97 / 202 files) (300.4 K / 722.7 K bytes)
2025-01-10 19:29:35,986 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_sirskernel_0002.rmap 671 bytes (98 / 202 files) (307.6 K / 722.7 K bytes)
2025-01-10 19:29:36,077 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_saturation_0010.rmap 2.2 K bytes (99 / 202 files) (308.2 K / 722.7 K bytes)
2025-01-10 19:29:36,158 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_readnoise_0025.rmap 23.2 K bytes (100 / 202 files) (310.4 K / 722.7 K bytes)
2025-01-10 19:29:36,273 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_psfmask_0008.rmap 28.4 K bytes (101 / 202 files) (333.6 K / 722.7 K bytes)
2025-01-10 19:29:36,377 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_photom_0028.rmap 3.4 K bytes (102 / 202 files) (361.9 K / 722.7 K bytes)
2025-01-10 19:29:36,466 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_persat_0005.rmap 1.6 K bytes (103 / 202 files) (365.3 K / 722.7 K bytes)
2025-01-10 19:29:36,557 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-whitelightstep_0003.rmap 1.5 K bytes (104 / 202 files) (366.9 K / 722.7 K bytes)
2025-01-10 19:29:36,636 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-tweakregstep_0003.rmap 4.5 K bytes (105 / 202 files) (368.3 K / 722.7 K bytes)
2025-01-10 19:29:36,714 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-spec2pipeline_0008.rmap 984 bytes (106 / 202 files) (372.8 K / 722.7 K bytes)
2025-01-10 19:29:36,795 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-sourcecatalogstep_0002.rmap 4.6 K bytes (107 / 202 files) (373.8 K / 722.7 K bytes)
2025-01-10 19:29:36,887 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-resamplestep_0002.rmap 687 bytes (108 / 202 files) (378.4 K / 722.7 K bytes)
2025-01-10 19:29:36,965 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-outlierdetectionstep_0003.rmap 940 bytes (109 / 202 files) (379.1 K / 722.7 K bytes)
2025-01-10 19:29:37,043 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-jumpstep_0005.rmap 806 bytes (110 / 202 files) (380.1 K / 722.7 K bytes)
2025-01-10 19:29:37,122 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-image2pipeline_0003.rmap 1.0 K bytes (111 / 202 files) (380.9 K / 722.7 K bytes)
2025-01-10 19:29:37,209 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-detector1pipeline_0003.rmap 1.0 K bytes (112 / 202 files) (381.9 K / 722.7 K bytes)
2025-01-10 19:29:37,299 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-darkpipeline_0002.rmap 868 bytes (113 / 202 files) (382.9 K / 722.7 K bytes)
2025-01-10 19:29:37,378 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-darkcurrentstep_0001.rmap 618 bytes (114 / 202 files) (383.8 K / 722.7 K bytes)
2025-01-10 19:29:37,469 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_mask_0011.rmap 3.5 K bytes (115 / 202 files) (384.4 K / 722.7 K bytes)
2025-01-10 19:29:37,550 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_linearity_0011.rmap 2.4 K bytes (116 / 202 files) (387.9 K / 722.7 K bytes)
2025-01-10 19:29:37,630 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_ipc_0003.rmap 2.0 K bytes (117 / 202 files) (390.3 K / 722.7 K bytes)
2025-01-10 19:29:37,719 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_gain_0016.rmap 2.1 K bytes (118 / 202 files) (392.3 K / 722.7 K bytes)
2025-01-10 19:29:37,799 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_flat_0027.rmap 51.7 K bytes (119 / 202 files) (394.4 K / 722.7 K bytes)
2025-01-10 19:29:37,918 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_filteroffset_0004.rmap 1.4 K bytes (120 / 202 files) (446.1 K / 722.7 K bytes)
2025-01-10 19:29:37,997 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_extract1d_0004.rmap 842 bytes (121 / 202 files) (447.5 K / 722.7 K bytes)
2025-01-10 19:29:38,086 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_drizpars_0001.rmap 519 bytes (122 / 202 files) (448.4 K / 722.7 K bytes)
2025-01-10 19:29:38,173 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_distortion_0033.rmap 53.4 K bytes (123 / 202 files) (448.9 K / 722.7 K bytes)
2025-01-10 19:29:38,298 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_dark_0046.rmap 26.4 K bytes (124 / 202 files) (502.2 K / 722.7 K bytes)
2025-01-10 19:29:38,413 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_area_0012.rmap 33.5 K bytes (125 / 202 files) (528.6 K / 722.7 K bytes)
2025-01-10 19:29:38,517 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_apcorr_0008.rmap 4.3 K bytes (126 / 202 files) (562.1 K / 722.7 K bytes)
2025-01-10 19:29:38,596 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_abvegaoffset_0003.rmap 1.3 K bytes (127 / 202 files) (566.4 K / 722.7 K bytes)
2025-01-10 19:29:38,690 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_0301.imap 5.6 K bytes (128 / 202 files) (567.7 K / 722.7 K bytes)
2025-01-10 19:29:38,773 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_wavelengthrange_0027.rmap 929 bytes (129 / 202 files) (573.3 K / 722.7 K bytes)
2025-01-10 19:29:38,855 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_tsophot_0004.rmap 882 bytes (130 / 202 files) (574.2 K / 722.7 K bytes)
2025-01-10 19:29:38,944 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_straymask_0009.rmap 987 bytes (131 / 202 files) (575.1 K / 722.7 K bytes)
2025-01-10 19:29:39,039 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_specwcs_0042.rmap 5.8 K bytes (132 / 202 files) (576.1 K / 722.7 K bytes)
2025-01-10 19:29:39,121 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_saturation_0015.rmap 1.2 K bytes (133 / 202 files) (581.9 K / 722.7 K bytes)
2025-01-10 19:29:39,204 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_rscd_0008.rmap 1.0 K bytes (134 / 202 files) (583.0 K / 722.7 K bytes)
2025-01-10 19:29:39,289 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_resol_0006.rmap 790 bytes (135 / 202 files) (584.1 K / 722.7 K bytes)
2025-01-10 19:29:39,369 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_reset_0026.rmap 3.9 K bytes (136 / 202 files) (584.9 K / 722.7 K bytes)
2025-01-10 19:29:39,457 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_regions_0033.rmap 5.2 K bytes (137 / 202 files) (588.7 K / 722.7 K bytes)
2025-01-10 19:29:39,545 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_readnoise_0023.rmap 1.6 K bytes (138 / 202 files) (593.9 K / 722.7 K bytes)
2025-01-10 19:29:39,635 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_psfmask_0009.rmap 2.1 K bytes (139 / 202 files) (595.6 K / 722.7 K bytes)
2025-01-10 19:29:39,712 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_psf_0002.rmap 753 bytes (140 / 202 files) (597.7 K / 722.7 K bytes)
2025-01-10 19:29:39,793 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_photom_0056.rmap 3.7 K bytes (141 / 202 files) (598.4 K / 722.7 K bytes)
2025-01-10 19:29:39,876 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pathloss_0005.rmap 866 bytes (142 / 202 files) (602.2 K / 722.7 K bytes)
2025-01-10 19:29:39,962 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-whitelightstep_0003.rmap 912 bytes (143 / 202 files) (603.1 K / 722.7 K bytes)
2025-01-10 19:29:40,050 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-tweakregstep_0003.rmap 1.8 K bytes (144 / 202 files) (604.0 K / 722.7 K bytes)
2025-01-10 19:29:40,131 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-spec3pipeline_0009.rmap 816 bytes (145 / 202 files) (605.8 K / 722.7 K bytes)
2025-01-10 19:29:40,233 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-spec2pipeline_0012.rmap 1.3 K bytes (146 / 202 files) (606.6 K / 722.7 K bytes)
2025-01-10 19:29:40,323 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-sourcecatalogstep_0003.rmap 1.9 K bytes (147 / 202 files) (607.9 K / 722.7 K bytes)
2025-01-10 19:29:40,412 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-resamplestep_0002.rmap 677 bytes (148 / 202 files) (609.9 K / 722.7 K bytes)
2025-01-10 19:29:40,500 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-resamplespecstep_0002.rmap 706 bytes (149 / 202 files) (610.5 K / 722.7 K bytes)
2025-01-10 19:29:40,590 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-outlierdetectionstep_0017.rmap 3.4 K bytes (150 / 202 files) (611.2 K / 722.7 K bytes)
2025-01-10 19:29:40,674 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-jumpstep_0011.rmap 1.6 K bytes (151 / 202 files) (614.6 K / 722.7 K bytes)
2025-01-10 19:29:40,761 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-image2pipeline_0007.rmap 983 bytes (152 / 202 files) (616.2 K / 722.7 K bytes)
2025-01-10 19:29:40,843 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-extract1dstep_0003.rmap 807 bytes (153 / 202 files) (617.2 K / 722.7 K bytes)
2025-01-10 19:29:40,932 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-emicorrstep_0003.rmap 796 bytes (154 / 202 files) (618.0 K / 722.7 K bytes)
2025-01-10 19:29:41,019 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-detector1pipeline_0010.rmap 1.6 K bytes (155 / 202 files) (618.8 K / 722.7 K bytes)
2025-01-10 19:29:41,108 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-darkpipeline_0002.rmap 860 bytes (156 / 202 files) (620.4 K / 722.7 K bytes)
2025-01-10 19:29:41,199 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-darkcurrentstep_0002.rmap 683 bytes (157 / 202 files) (621.2 K / 722.7 K bytes)
2025-01-10 19:29:41,285 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_mrsxartcorr_0002.rmap 2.2 K bytes (158 / 202 files) (621.9 K / 722.7 K bytes)
2025-01-10 19:29:41,374 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_mrsptcorr_0005.rmap 2.0 K bytes (159 / 202 files) (624.0 K / 722.7 K bytes)
2025-01-10 19:29:41,454 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_mask_0023.rmap 3.5 K bytes (160 / 202 files) (626.0 K / 722.7 K bytes)
2025-01-10 19:29:41,535 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_linearity_0018.rmap 2.8 K bytes (161 / 202 files) (629.5 K / 722.7 K bytes)
2025-01-10 19:29:41,625 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_ipc_0008.rmap 700 bytes (162 / 202 files) (632.3 K / 722.7 K bytes)
2025-01-10 19:29:41,717 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_gain_0013.rmap 3.9 K bytes (163 / 202 files) (633.0 K / 722.7 K bytes)
2025-01-10 19:29:41,797 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_fringefreq_0003.rmap 1.4 K bytes (164 / 202 files) (636.9 K / 722.7 K bytes)
2025-01-10 19:29:41,887 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_fringe_0019.rmap 3.9 K bytes (165 / 202 files) (638.4 K / 722.7 K bytes)
2025-01-10 19:29:41,971 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_flat_0065.rmap 15.5 K bytes (166 / 202 files) (642.3 K / 722.7 K bytes)
2025-01-10 19:29:42,082 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_filteroffset_0025.rmap 2.5 K bytes (167 / 202 files) (657.8 K / 722.7 K bytes)
2025-01-10 19:29:42,172 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_extract1d_0020.rmap 1.4 K bytes (168 / 202 files) (660.3 K / 722.7 K bytes)
2025-01-10 19:29:42,262 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_emicorr_0003.rmap 663 bytes (169 / 202 files) (661.6 K / 722.7 K bytes)
2025-01-10 19:29:42,349 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_drizpars_0002.rmap 511 bytes (170 / 202 files) (662.3 K / 722.7 K bytes)
2025-01-10 19:29:42,427 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_distortion_0040.rmap 4.9 K bytes (171 / 202 files) (662.8 K / 722.7 K bytes)
2025-01-10 19:29:42,511 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_dark_0036.rmap 4.4 K bytes (172 / 202 files) (667.7 K / 722.7 K bytes)
2025-01-10 19:29:42,594 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_cubepar_0017.rmap 800 bytes (173 / 202 files) (672.1 K / 722.7 K bytes)
2025-01-10 19:29:42,686 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_area_0015.rmap 866 bytes (174 / 202 files) (672.9 K / 722.7 K bytes)
2025-01-10 19:29:42,766 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_apcorr_0019.rmap 5.0 K bytes (175 / 202 files) (673.8 K / 722.7 K bytes)
2025-01-10 19:29:42,845 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_abvegaoffset_0003.rmap 1.3 K bytes (176 / 202 files) (678.7 K / 722.7 K bytes)
2025-01-10 19:29:42,925 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_0423.imap 5.8 K bytes (177 / 202 files) (680.0 K / 722.7 K bytes)
2025-01-10 19:29:43,013 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_trappars_0004.rmap 903 bytes (178 / 202 files) (685.8 K / 722.7 K bytes)
2025-01-10 19:29:43,104 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_trapdensity_0006.rmap 930 bytes (179 / 202 files) (686.7 K / 722.7 K bytes)
2025-01-10 19:29:43,183 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_superbias_0017.rmap 3.8 K bytes (180 / 202 files) (687.7 K / 722.7 K bytes)
2025-01-10 19:29:43,277 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_saturation_0009.rmap 779 bytes (181 / 202 files) (691.5 K / 722.7 K bytes)
2025-01-10 19:29:43,357 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_readnoise_0011.rmap 1.3 K bytes (182 / 202 files) (692.2 K / 722.7 K bytes)
2025-01-10 19:29:43,437 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_photom_0014.rmap 1.1 K bytes (183 / 202 files) (693.5 K / 722.7 K bytes)
2025-01-10 19:29:43,526 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_persat_0006.rmap 884 bytes (184 / 202 files) (694.6 K / 722.7 K bytes)
2025-01-10 19:29:43,604 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_pars-tweakregstep_0002.rmap 850 bytes (185 / 202 files) (695.5 K / 722.7 K bytes)
2025-01-10 19:29:43,683 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_pars-sourcecatalogstep_0001.rmap 636 bytes (186 / 202 files) (696.3 K / 722.7 K bytes)
2025-01-10 19:29:43,763 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_pars-outlierdetectionstep_0001.rmap 654 bytes (187 / 202 files) (697.0 K / 722.7 K bytes)
2025-01-10 19:29:43,857 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_pars-image2pipeline_0005.rmap 974 bytes (188 / 202 files) (697.6 K / 722.7 K bytes)
2025-01-10 19:29:43,944 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_pars-detector1pipeline_0002.rmap 1.0 K bytes (189 / 202 files) (698.6 K / 722.7 K bytes)
2025-01-10 19:29:44,026 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_pars-darkpipeline_0002.rmap 856 bytes (190 / 202 files) (699.6 K / 722.7 K bytes)
2025-01-10 19:29:44,114 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_mask_0023.rmap 1.1 K bytes (191 / 202 files) (700.5 K / 722.7 K bytes)
2025-01-10 19:29:44,191 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_linearity_0015.rmap 925 bytes (192 / 202 files) (701.5 K / 722.7 K bytes)
2025-01-10 19:29:44,278 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_ipc_0003.rmap 614 bytes (193 / 202 files) (702.5 K / 722.7 K bytes)
2025-01-10 19:29:44,365 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_gain_0010.rmap 890 bytes (194 / 202 files) (703.1 K / 722.7 K bytes)
2025-01-10 19:29:44,455 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_flat_0009.rmap 1.1 K bytes (195 / 202 files) (704.0 K / 722.7 K bytes)
2025-01-10 19:29:44,537 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_distortion_0011.rmap 1.2 K bytes (196 / 202 files) (705.1 K / 722.7 K bytes)
2025-01-10 19:29:44,618 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_dark_0017.rmap 4.3 K bytes (197 / 202 files) (706.3 K / 722.7 K bytes)
2025-01-10 19:29:44,707 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_area_0010.rmap 1.2 K bytes (198 / 202 files) (710.6 K / 722.7 K bytes)
2025-01-10 19:29:44,800 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_apcorr_0004.rmap 4.0 K bytes (199 / 202 files) (711.8 K / 722.7 K bytes)
2025-01-10 19:29:44,884 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_abvegaoffset_0002.rmap 1.3 K bytes (200 / 202 files) (715.8 K / 722.7 K bytes)
2025-01-10 19:29:44,964 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_0118.imap 5.1 K bytes (201 / 202 files) (717.0 K / 722.7 K bytes)
2025-01-10 19:29:45,047 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_1321.pmap 580 bytes (202 / 202 files) (722.1 K / 722.7 K bytes)
2025-01-10 19:29:45,415 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf 1.2 K bytes (1 / 1 files) (0 / 1.2 K bytes)
2025-01-10 19:29:45,503 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:29:45,514 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf 1.3 K bytes (1 / 1 files) (0 / 1.3 K bytes)
2025-01-10 19:29:45,605 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:29:45,618 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:29:45,620 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:29:45,621 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:29:45,623 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:29:45,624 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:29:45,625 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:29:45,763 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00477_asn.json',).
2025-01-10 19:29:45,771 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:29:45,835 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_12101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:29:45,839 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits 16.8 M bytes (1 / 5 files) (0 / 83.9 M bytes)
2025-01-10 19:29:46,247 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf 9.9 K bytes (2 / 5 files) (16.8 M / 83.9 M bytes)
2025-01-10 19:29:46,339 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf 5.4 K bytes (3 / 5 files) (16.8 M / 83.9 M bytes)
2025-01-10 19:29:46,418 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits 67.1 M bytes (4 / 5 files) (16.8 M / 83.9 M bytes)
2025-01-10 19:29:47,206 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits 14.4 K bytes (5 / 5 files) (83.9 M / 83.9 M bytes)
2025-01-10 19:29:47,314 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:29:47,315 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:29:47,315 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:29:47,316 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:29:47,316 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:29:47,317 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:29:47,317 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:29:47,318 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:29:47,319 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:29:47,319 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:29:47,320 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:29:47,320 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:29:47,321 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:29:47,321 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:29:47,321 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:29:47,322 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:29:47,322 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:29:47,323 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:29:47,323 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:29:47,323 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:29:47,324 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:29:47,324 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:29:47,332 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_12101_00001_nis
2025-01-10 19:29:47,332 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_12101_00001_nis_rate.fits ...
2025-01-10 19:29:47,516 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:29:47,695 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:29:47,756 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148271973 -27.806900343 53.188146805 -27.794445087 53.173973962 -27.759490014 53.134135131 -27.771924130
2025-01-10 19:29:47,757 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148271973 -27.806900343 53.188146805 -27.794445087 53.173973962 -27.759490014 53.134135131 -27.771924130
2025-01-10 19:29:47,758 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:29:47,811 - CRDS - INFO - Calibration SW Found: jwst 1.17.1 (/opt/hostedtoolcache/Python/3.11.11/x64/lib/python3.11/site-packages/jwst-1.17.1.dist-info)
2025-01-10 19:29:47,914 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:29:48,057 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:29:48,149 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:29:48,150 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:29:48,150 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:29:48,151 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:29:48,357 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:29:48,497 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:29:48,517 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:29:48,518 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:29:48,559 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:29:48,560 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:29:48,560 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:29:48,561 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:29:48,562 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:29:48,592 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:29:48,592 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:29:48,594 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:29:48,640 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:29:48,783 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:29:48,784 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:29:48,786 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_12101_00001_nis
2025-01-10 19:29:48,786 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:29:48,787 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:29:49,004 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_12101_00001_nis_cal.fits
2025-01-10 19:29:49,005 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:29:49,005 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:29:49,066 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:29:49,076 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:29:49,087 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:29:49,088 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:29:49,089 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:29:49,090 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:29:49,091 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:29:49,092 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:29:49,235 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00550_asn.json',).
2025-01-10 19:29:49,243 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:29:49,302 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_10101_00002_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:29:49,306 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:29:49,306 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:29:49,307 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:29:49,307 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:29:49,308 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:29:49,309 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:29:49,309 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:29:49,310 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:29:49,310 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:29:49,311 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:29:49,311 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:29:49,312 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:29:49,312 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:29:49,313 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:29:49,313 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:29:49,313 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:29:49,314 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:29:49,314 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:29:49,316 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:29:49,316 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:29:49,317 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:29:49,317 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:29:49,323 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_10101_00002_nis
2025-01-10 19:29:49,324 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_10101_00002_nis_rate.fits ...
2025-01-10 19:29:49,512 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:29:49,676 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:29:49,725 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148442381 -27.806913913 53.188317228 -27.794458682 53.174144412 -27.759503600 53.134305566 -27.771937691
2025-01-10 19:29:49,726 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148442381 -27.806913913 53.188317228 -27.794458682 53.174144412 -27.759503600 53.134305566 -27.771937691
2025-01-10 19:29:49,726 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:29:49,780 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:29:49,922 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:29:50,001 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:29:50,001 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:29:50,002 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:29:50,002 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:29:50,168 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:29:50,311 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:29:50,331 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:29:50,332 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:29:50,371 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:29:50,372 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:29:50,372 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:29:50,372 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:29:50,373 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:29:50,400 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:29:50,400 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:29:50,402 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:29:50,447 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:29:50,590 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:29:50,591 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:29:50,593 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_10101_00002_nis
2025-01-10 19:29:50,593 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:29:50,594 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:29:50,809 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_10101_00002_nis_cal.fits
2025-01-10 19:29:50,809 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:29:50,810 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:29:50,869 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:29:50,879 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:29:50,891 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:29:50,892 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:29:50,893 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:29:50,894 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:29:50,895 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:29:50,897 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:29:51,038 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00328_asn.json',).
2025-01-10 19:29:51,047 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:29:51,107 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_06101_00002_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:29:51,110 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:29:51,111 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:29:51,111 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:29:51,112 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:29:51,112 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:29:51,113 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:29:51,113 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:29:51,114 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:29:51,114 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:29:51,115 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:29:51,115 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:29:51,116 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:29:51,116 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:29:51,116 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:29:51,117 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:29:51,117 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:29:51,117 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:29:51,118 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:29:51,118 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:29:51,119 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:29:51,119 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:29:51,120 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:29:51,127 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_06101_00002_nis
2025-01-10 19:29:51,127 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_06101_00002_nis_rate.fits ...
2025-01-10 19:29:51,317 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:29:51,481 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:29:51,529 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148409828 -27.807078194 53.188284734 -27.794622959 53.174111891 -27.759667878 53.134272987 -27.772101974
2025-01-10 19:29:51,530 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148409828 -27.807078194 53.188284734 -27.794622959 53.174111891 -27.759667878 53.134272987 -27.772101974
2025-01-10 19:29:51,530 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:29:51,580 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:29:51,721 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:29:51,799 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:29:51,799 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:29:51,800 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:29:51,800 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:29:51,955 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:29:52,100 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:29:52,121 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:29:52,121 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:29:52,162 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:29:52,163 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:29:52,163 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:29:52,164 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:29:52,164 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:29:52,191 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:29:52,192 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:29:52,193 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:29:52,239 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:29:52,386 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:29:52,387 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:29:52,388 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_06101_00002_nis
2025-01-10 19:29:52,389 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:29:52,389 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:29:52,604 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_06101_00002_nis_cal.fits
2025-01-10 19:29:52,604 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:29:52,605 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:29:52,666 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:29:52,675 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:29:52,687 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:29:52,688 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:29:52,689 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:29:52,690 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:29:52,692 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:29:52,693 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:29:52,839 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00031_asn.json',).
2025-01-10 19:29:52,847 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:29:52,907 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004003_06101_00003_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:29:52,911 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits 16.8 M bytes (1 / 3 files) (0 / 83.9 M bytes)
2025-01-10 19:29:53,321 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf 9.9 K bytes (2 / 3 files) (16.8 M / 83.9 M bytes)
2025-01-10 19:29:53,407 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits 67.1 M bytes (3 / 3 files) (16.8 M / 83.9 M bytes)
2025-01-10 19:29:54,345 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2025-01-10 19:29:54,346 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:29:54,346 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:29:54,347 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:29:54,347 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:29:54,347 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2025-01-10 19:29:54,348 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:29:54,348 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:29:54,349 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2025-01-10 19:29:54,350 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:29:54,350 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:29:54,350 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:29:54,351 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:29:54,351 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:29:54,351 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:29:54,352 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:29:54,352 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:29:54,353 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:29:54,353 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:29:54,354 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:29:54,354 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:29:54,355 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:29:54,362 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_06101_00003_nis
2025-01-10 19:29:54,362 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_06101_00003_nis_rate.fits ...
2025-01-10 19:29:54,556 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:29:54,720 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2025-01-10 19:29:54,769 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.149298001 -27.809438531 53.189173053 -27.796981956 53.175000700 -27.762027740 53.135161032 -27.774462239
2025-01-10 19:29:54,770 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.149298001 -27.809438531 53.189173053 -27.796981956 53.175000700 -27.762027740 53.135161032 -27.774462239
2025-01-10 19:29:54,770 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:29:54,823 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:29:54,967 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:29:55,047 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2025-01-10 19:29:55,048 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:29:55,048 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:29:55,049 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:29:55,216 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:29:55,369 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:29:55,389 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:29:55,390 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2025-01-10 19:29:55,433 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:29:55,434 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:29:55,434 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:29:55,435 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:29:55,436 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2025-01-10 19:29:55,463 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:29:55,463 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:29:55,464 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.258197
2025-01-10 19:29:55,510 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:29:55,655 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:29:55,656 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:29:55,657 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_06101_00003_nis
2025-01-10 19:29:55,658 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:29:55,659 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:29:55,873 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_06101_00003_nis_cal.fits
2025-01-10 19:29:55,874 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:29:55,874 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:29:55,934 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:29:55,943 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:29:55,955 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:29:55,956 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:29:55,957 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:29:55,958 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:29:55,959 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:29:55,960 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:29:56,105 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00592_asn.json',).
2025-01-10 19:29:56,113 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:29:56,174 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_08101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:29:56,177 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:29:56,178 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:29:56,179 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:29:56,179 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:29:56,179 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:29:56,180 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:29:56,181 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:29:56,181 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:29:56,182 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:29:56,183 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:29:56,183 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:29:56,184 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:29:56,184 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:29:56,185 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:29:56,185 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:29:56,186 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:29:56,186 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:29:56,186 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:29:56,187 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:29:56,187 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:29:56,188 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:29:56,188 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:29:56,195 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_08101_00001_nis
2025-01-10 19:29:56,196 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_08101_00001_nis_rate.fits ...
2025-01-10 19:29:56,388 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_08101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:29:56,551 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:29:56,601 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148021123 -27.806991232 53.187896064 -27.794536165 53.173723420 -27.759581024 53.133884481 -27.772014953
2025-01-10 19:29:56,602 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148021123 -27.806991232 53.187896064 -27.794536165 53.173723420 -27.759581024 53.133884481 -27.772014953
2025-01-10 19:29:56,602 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:29:56,652 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:29:56,814 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_08101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:29:56,892 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:29:56,893 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:29:56,893 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:29:56,894 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:29:57,051 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:29:57,213 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_08101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:29:57,233 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:29:57,233 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:29:57,277 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:29:57,277 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:29:57,278 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:29:57,279 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:29:57,279 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:29:57,306 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:29:57,307 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:29:57,308 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:29:57,355 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:29:57,517 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_08101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:29:57,518 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:29:57,519 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_08101_00001_nis
2025-01-10 19:29:57,519 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:29:57,520 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:29:57,734 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_08101_00001_nis_cal.fits
2025-01-10 19:29:57,735 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:29:57,735 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:29:57,797 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:29:57,806 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:29:57,818 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:29:57,819 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:29:57,820 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:29:57,821 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:29:57,822 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:29:57,823 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:29:57,976 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00179_asn.json',).
2025-01-10 19:29:57,985 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:29:58,049 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_12101_00003_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:29:58,052 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits 16.8 M bytes (1 / 3 files) (0 / 83.9 M bytes)
2025-01-10 19:29:58,411 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf 9.9 K bytes (2 / 3 files) (16.8 M / 83.9 M bytes)
2025-01-10 19:29:58,489 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits 67.1 M bytes (3 / 3 files) (16.8 M / 83.9 M bytes)
2025-01-10 19:29:59,312 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2025-01-10 19:29:59,313 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:29:59,314 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:29:59,314 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:29:59,315 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:29:59,315 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2025-01-10 19:29:59,316 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:29:59,316 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:29:59,316 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2025-01-10 19:29:59,317 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:29:59,317 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:29:59,318 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:29:59,318 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:29:59,318 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:29:59,319 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:29:59,319 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:29:59,319 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:29:59,320 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:29:59,320 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:29:59,321 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:29:59,321 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:29:59,322 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:29:59,330 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_12101_00003_nis
2025-01-10 19:29:59,330 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_12101_00003_nis_rate.fits ...
2025-01-10 19:29:59,520 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:29:59,683 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2025-01-10 19:29:59,733 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148711473 -27.807929147 53.188587375 -27.795473341 53.174414522 -27.760517744 53.134574338 -27.772952020
2025-01-10 19:29:59,734 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148711473 -27.807929147 53.188587375 -27.795473341 53.174414522 -27.760517744 53.134574338 -27.772952020
2025-01-10 19:29:59,734 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:29:59,785 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:29:59,939 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:00,021 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2025-01-10 19:30:00,022 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:00,022 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:00,023 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:00,190 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:00,354 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:00,382 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:00,382 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2025-01-10 19:30:00,428 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:00,429 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:00,429 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:00,429 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:00,430 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2025-01-10 19:30:00,458 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:00,459 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:00,460 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256435
2025-01-10 19:30:00,506 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:00,656 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:00,657 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:00,659 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_12101_00003_nis
2025-01-10 19:30:00,659 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:00,660 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:00,886 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_12101_00003_nis_cal.fits
2025-01-10 19:30:00,887 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:00,888 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:00,949 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:00,959 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:00,971 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:00,972 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:00,973 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:00,974 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:00,975 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:00,976 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:01,125 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00549_asn.json',).
2025-01-10 19:30:01,134 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:01,194 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_10101_00003_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:01,197 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:01,198 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:01,199 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:01,199 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:01,200 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:01,201 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:01,201 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:01,202 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:01,203 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:01,203 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:01,203 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:01,204 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:01,204 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:01,205 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:01,205 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:01,205 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:01,206 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:01,207 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:01,208 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:01,208 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:01,208 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:01,209 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:01,215 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_10101_00003_nis
2025-01-10 19:30:01,216 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_10101_00003_nis_rate.fits ...
2025-01-10 19:30:01,430 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:01,600 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:01,651 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148284448 -27.806876498 53.188159304 -27.794421323 53.173986554 -27.759466221 53.134147701 -27.771900257
2025-01-10 19:30:01,652 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148284448 -27.806876498 53.188159304 -27.794421323 53.173986554 -27.759466221 53.134147701 -27.771900257
2025-01-10 19:30:01,653 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:01,703 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:01,877 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:01,954 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:01,955 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:01,955 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:01,956 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:02,108 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:02,274 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:02,294 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:02,294 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:02,337 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:02,337 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:02,338 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:02,338 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:02,338 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:02,366 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:02,366 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:02,367 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:02,413 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:02,562 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:02,563 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:02,564 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_10101_00003_nis
2025-01-10 19:30:02,565 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:02,565 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:02,781 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_10101_00003_nis_cal.fits
2025-01-10 19:30:02,782 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:02,782 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:02,843 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:02,852 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:02,864 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:02,865 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:02,866 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:02,867 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:02,869 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:02,870 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:03,027 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00327_asn.json',).
2025-01-10 19:30:03,036 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:03,096 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_06101_00003_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:03,099 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:03,100 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:03,100 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:03,101 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:03,101 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:03,101 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:03,102 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:03,102 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:03,103 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:03,104 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:03,104 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:03,105 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:03,105 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:03,105 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:03,106 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:03,106 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:03,107 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:03,108 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:03,108 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:03,108 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:03,109 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:03,109 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:03,116 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_06101_00003_nis
2025-01-10 19:30:03,116 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_06101_00003_nis_rate.fits ...
2025-01-10 19:30:03,313 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:03,477 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:03,525 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148251992 -27.807040721 53.188126921 -27.794585579 53.173954187 -27.759630465 53.134115260 -27.772064469
2025-01-10 19:30:03,526 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148251992 -27.807040721 53.188126921 -27.794585579 53.173954187 -27.759630465 53.134115260 -27.772064469
2025-01-10 19:30:03,527 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:03,576 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:03,726 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:03,826 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:03,827 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:03,828 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:03,828 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:04,003 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:04,154 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:04,174 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:04,175 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:04,218 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:04,218 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:04,219 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:04,219 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:04,219 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:04,247 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:04,248 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:04,249 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:04,295 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:04,446 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:04,446 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:04,448 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_06101_00003_nis
2025-01-10 19:30:04,449 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:04,450 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:04,664 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_06101_00003_nis_cal.fits
2025-01-10 19:30:04,664 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:04,665 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:04,725 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:04,734 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:04,746 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:04,747 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:04,748 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:04,749 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:04,750 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:04,752 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:04,900 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00548_asn.json',).
2025-01-10 19:30:04,909 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:04,969 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_10101_00004_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:04,973 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:04,973 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:04,974 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:04,974 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:04,974 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:04,975 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:04,975 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:04,976 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:04,976 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:04,977 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:04,977 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:04,978 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:04,978 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:04,978 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:04,979 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:04,979 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:04,979 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:04,982 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:04,982 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:04,982 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:04,983 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:04,983 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:04,990 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_10101_00004_nis
2025-01-10 19:30:04,990 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_10101_00004_nis_rate.fits ...
2025-01-10 19:30:05,190 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:05,355 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:05,407 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.147988508 -27.807155306 53.187863510 -27.794700244 53.173690851 -27.759745102 53.133851850 -27.772179025
2025-01-10 19:30:05,408 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.147988508 -27.807155306 53.187863510 -27.794700244 53.173690851 -27.759745102 53.133851850 -27.772179025
2025-01-10 19:30:05,409 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:05,463 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:05,621 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:05,701 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:05,702 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:05,702 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:05,703 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:05,860 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:06,015 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:06,036 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:06,036 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:06,080 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:06,080 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:06,081 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:06,082 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:06,083 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:06,109 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:06,110 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:06,111 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:06,158 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:06,318 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:06,318 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:06,320 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_10101_00004_nis
2025-01-10 19:30:06,321 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:06,321 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:06,537 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_10101_00004_nis_cal.fits
2025-01-10 19:30:06,538 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:06,538 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:06,600 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:06,609 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:06,620 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:06,622 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:06,623 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:06,624 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:06,625 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:06,626 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:06,776 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00107_asn.json',).
2025-01-10 19:30:06,785 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:06,846 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004003_04101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:06,849 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2025-01-10 19:30:06,850 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:06,850 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:06,851 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:06,852 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:06,852 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2025-01-10 19:30:06,854 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:06,855 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:06,856 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2025-01-10 19:30:06,857 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:06,857 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:06,857 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:06,858 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:06,858 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:06,859 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:06,859 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:06,860 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:06,860 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:06,861 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:06,862 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:06,862 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:06,863 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:06,869 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_04101_00001_nis
2025-01-10 19:30:06,870 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_04101_00001_nis_rate.fits ...
2025-01-10 19:30:07,070 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:07,244 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2025-01-10 19:30:07,295 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.145322486 -27.807626701 53.185197301 -27.795171197 53.171026383 -27.760216600 53.131186951 -27.772650030
2025-01-10 19:30:07,295 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.145322486 -27.807626701 53.185197301 -27.795171197 53.171026383 -27.760216600 53.131186951 -27.772650030
2025-01-10 19:30:07,296 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:07,349 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:07,510 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:07,589 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2025-01-10 19:30:07,589 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:07,590 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:07,590 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:07,749 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:07,900 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:07,921 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:07,921 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2025-01-10 19:30:07,964 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:07,965 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:07,965 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:07,965 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:07,966 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2025-01-10 19:30:07,993 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:07,994 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:07,995 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.258197
2025-01-10 19:30:08,041 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:08,193 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:08,194 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:08,195 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_04101_00001_nis
2025-01-10 19:30:08,196 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:08,197 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:08,414 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_04101_00001_nis_cal.fits
2025-01-10 19:30:08,415 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:08,416 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:08,479 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:08,489 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:08,501 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:08,502 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:08,503 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:08,504 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:08,506 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:08,507 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:08,662 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00401_asn.json',).
2025-01-10 19:30:08,670 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:08,731 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_04101_00003_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:08,734 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:08,735 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:08,735 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:08,736 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:08,737 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:08,737 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:08,738 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:08,738 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:08,739 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:08,739 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:08,740 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:08,740 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:08,741 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:08,741 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:08,741 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:08,742 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:08,742 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:08,743 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:08,744 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:08,744 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:08,745 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:08,745 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:08,752 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_04101_00003_nis
2025-01-10 19:30:08,752 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_04101_00003_nis_rate.fits ...
2025-01-10 19:30:08,958 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:09,133 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:09,183 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148284337 -27.806876603 53.188159184 -27.794421406 53.173986410 -27.759466311 53.134147565 -27.771900369
2025-01-10 19:30:09,184 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148284337 -27.806876603 53.188159184 -27.794421406 53.173986410 -27.759466311 53.134147565 -27.771900369
2025-01-10 19:30:09,185 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:09,234 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:09,393 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:09,470 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:09,471 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:09,471 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:09,472 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:09,629 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:09,785 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:09,805 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:09,805 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:09,847 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:09,848 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:09,848 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:09,849 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:09,850 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:09,877 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:09,878 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:09,879 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:09,926 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:10,083 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:10,084 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:10,086 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_04101_00003_nis
2025-01-10 19:30:10,087 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:10,088 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:10,305 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_04101_00003_nis_cal.fits
2025-01-10 19:30:10,306 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:10,307 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:10,368 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:10,377 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:10,388 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:10,390 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:10,391 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:10,392 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:10,393 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:10,394 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:10,545 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00740_asn.json',).
2025-01-10 19:30:10,553 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:10,613 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_02101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:10,616 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:10,617 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:10,617 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:10,618 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:10,618 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:10,618 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:10,619 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:10,619 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:10,620 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:10,620 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:10,621 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:10,621 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:10,622 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:10,624 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:10,624 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:10,625 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:10,625 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:10,625 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:10,626 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:10,626 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:10,627 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:10,627 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:10,634 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_02101_00001_nis
2025-01-10 19:30:10,634 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_02101_00001_nis_rate.fits ...
2025-01-10 19:30:10,831 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_02101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:10,996 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:11,045 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148021184 -27.806991560 53.187896114 -27.794536464 53.173723437 -27.759581333 53.133884509 -27.772015291
2025-01-10 19:30:11,046 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148021184 -27.806991560 53.187896114 -27.794536464 53.173723437 -27.759581333 53.133884509 -27.772015291
2025-01-10 19:30:11,047 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:11,101 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:11,254 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_02101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:11,333 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:11,333 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:11,334 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:11,335 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:11,494 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:11,645 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_02101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:11,666 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:11,666 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:11,707 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:11,707 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:11,708 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:11,708 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:11,709 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:11,736 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:11,736 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:11,737 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:11,785 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:11,939 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_02101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:11,940 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:11,941 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_02101_00001_nis
2025-01-10 19:30:11,942 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:11,942 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:12,160 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_02101_00001_nis_cal.fits
2025-01-10 19:30:12,161 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:12,161 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:12,226 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:12,236 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:12,248 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:12,249 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:12,250 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:12,251 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:12,252 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:12,254 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:12,416 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00253_asn.json',).
2025-01-10 19:30:12,424 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:12,485 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_10101_00003_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:12,489 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2025-01-10 19:30:12,490 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:12,491 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:12,492 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:12,492 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:12,492 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2025-01-10 19:30:12,493 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:12,493 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:12,494 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2025-01-10 19:30:12,495 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:12,496 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:12,496 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:12,496 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:12,497 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:12,497 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:12,498 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:12,498 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:12,499 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:12,499 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:12,500 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:12,500 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:12,501 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:12,507 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_10101_00003_nis
2025-01-10 19:30:12,508 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_10101_00003_nis_rate.fits ...
2025-01-10 19:30:12,709 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:12,878 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2025-01-10 19:30:12,928 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.147095426 -27.807248878 53.186971252 -27.794793506 53.172798974 -27.759837755 53.132958867 -27.772271596
2025-01-10 19:30:12,929 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.147095426 -27.807248878 53.186971252 -27.794793506 53.172798974 -27.759837755 53.132958867 -27.772271596
2025-01-10 19:30:12,930 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:12,980 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:13,138 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:13,218 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2025-01-10 19:30:13,218 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:13,219 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:13,219 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:13,376 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:13,535 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:13,556 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:13,556 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2025-01-10 19:30:13,599 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:13,600 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:13,600 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:13,601 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:13,601 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2025-01-10 19:30:13,628 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:13,628 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:13,630 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256435
2025-01-10 19:30:13,677 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:13,831 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:13,832 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:13,833 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_10101_00003_nis
2025-01-10 19:30:13,834 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:13,834 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:14,052 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_10101_00003_nis_cal.fits
2025-01-10 19:30:14,052 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:14,053 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:14,114 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:14,123 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:14,136 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:14,138 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:14,139 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:14,140 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:14,141 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:14,142 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:14,298 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00252_asn.json',).
2025-01-10 19:30:14,306 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:14,368 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_10101_00004_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:14,371 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2025-01-10 19:30:14,372 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:14,372 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:14,373 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:14,373 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:14,374 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2025-01-10 19:30:14,374 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:14,375 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:14,375 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2025-01-10 19:30:14,376 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:14,376 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:14,377 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:14,377 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:14,378 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:14,378 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:14,378 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:14,379 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:14,379 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:14,379 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:14,380 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:14,380 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:14,381 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:14,388 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_10101_00004_nis
2025-01-10 19:30:14,389 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_10101_00004_nis_rate.fits ...
2025-01-10 19:30:14,589 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:14,754 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2025-01-10 19:30:14,804 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148447857 -27.808043843 53.188323821 -27.795588086 53.174151008 -27.760632471 53.134310763 -27.773066698
2025-01-10 19:30:14,804 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148447857 -27.808043843 53.188323821 -27.795588086 53.174151008 -27.760632471 53.134310763 -27.773066698
2025-01-10 19:30:14,805 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:14,854 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:15,007 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:15,085 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2025-01-10 19:30:15,086 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:15,087 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:15,087 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:15,248 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:15,408 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:15,429 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:15,429 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2025-01-10 19:30:15,472 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:15,472 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:15,473 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:15,473 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:15,474 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2025-01-10 19:30:15,501 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:15,501 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:15,503 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256435
2025-01-10 19:30:15,549 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:15,705 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:15,705 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:15,707 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_10101_00004_nis
2025-01-10 19:30:15,708 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:15,708 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:15,924 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_10101_00004_nis_cal.fits
2025-01-10 19:30:15,924 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:15,925 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:15,986 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:15,995 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:16,006 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:16,007 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:16,009 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:16,010 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:16,010 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:16,012 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:16,166 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00623_asn.json',).
2025-01-10 19:30:16,174 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:16,236 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_06101_00003_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:16,240 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:16,240 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:16,241 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:16,241 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:16,242 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:16,242 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:16,243 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:16,243 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:16,244 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:16,244 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:16,245 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:16,245 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:16,245 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:16,246 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:16,246 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:16,247 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:16,247 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:16,248 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:16,248 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:16,249 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:16,249 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:16,250 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:16,257 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_06101_00003_nis
2025-01-10 19:30:16,257 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_06101_00003_nis_rate.fits ...
2025-01-10 19:30:16,461 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:16,631 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:16,680 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148251972 -27.807040762 53.188126897 -27.794585609 53.173954150 -27.759630499 53.134115227 -27.772064513
2025-01-10 19:30:16,681 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148251972 -27.807040762 53.188126897 -27.794585609 53.173954150 -27.759630499 53.134115227 -27.772064513
2025-01-10 19:30:16,681 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:16,735 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:16,885 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:16,963 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:16,964 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:16,964 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:16,965 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:17,121 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:17,276 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:17,297 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:17,297 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:17,341 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:17,342 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:17,342 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:17,343 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:17,343 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:17,370 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:17,371 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:17,372 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:17,420 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:17,574 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:17,574 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:17,576 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_06101_00003_nis
2025-01-10 19:30:17,576 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:17,577 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:17,793 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_06101_00003_nis_cal.fits
2025-01-10 19:30:17,794 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:17,794 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:17,855 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:17,864 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:17,876 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:17,877 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:17,878 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:17,879 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:17,880 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:17,881 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:18,039 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00329_asn.json',).
2025-01-10 19:30:18,048 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:18,110 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_06101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:18,113 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:18,114 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:18,114 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:18,114 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:18,115 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:18,115 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:18,116 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:18,116 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:18,117 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:18,118 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:18,118 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:18,119 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:18,119 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:18,119 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:18,120 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:18,120 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:18,121 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:18,121 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:18,122 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:18,123 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:18,124 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:18,124 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:18,130 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_06101_00001_nis
2025-01-10 19:30:18,131 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_06101_00001_nis_rate.fits ...
2025-01-10 19:30:18,334 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:18,503 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:18,552 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148272038 -27.806900335 53.188146883 -27.794445113 53.173974077 -27.759490027 53.134135233 -27.771924111
2025-01-10 19:30:18,553 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148272038 -27.806900335 53.188146883 -27.794445113 53.173974077 -27.759490027 53.134135233 -27.771924111
2025-01-10 19:30:18,554 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:18,607 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:18,760 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:18,839 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:18,839 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:18,840 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:18,840 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:19,000 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:19,157 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:19,177 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:19,177 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:19,220 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:19,221 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:19,221 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:19,222 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:19,222 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:19,250 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:19,250 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:19,252 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:19,298 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:19,454 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:19,455 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:19,457 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_06101_00001_nis
2025-01-10 19:30:19,457 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:19,458 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:19,678 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_06101_00001_nis_cal.fits
2025-01-10 19:30:19,678 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:19,679 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:19,742 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:19,751 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:19,763 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:19,764 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:19,765 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:19,766 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:19,767 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:19,768 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:19,941 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00148_asn.json',).
2025-01-10 19:30:19,950 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:20,011 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004003_02101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:20,015 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2025-01-10 19:30:20,015 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:20,016 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:20,017 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:20,017 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:20,017 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2025-01-10 19:30:20,018 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:20,018 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:20,019 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2025-01-10 19:30:20,019 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:20,020 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:20,020 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:20,020 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:20,021 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:20,021 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:20,022 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:20,022 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:20,022 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:20,024 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:20,025 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:20,025 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:20,026 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:20,032 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_02101_00001_nis
2025-01-10 19:30:20,033 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_02101_00001_nis_rate.fits ...
2025-01-10 19:30:20,242 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_02101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:20,407 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2025-01-10 19:30:20,457 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.145039313 -27.807881991 53.184914292 -27.795426662 53.170743537 -27.760472003 53.130903942 -27.772905257
2025-01-10 19:30:20,458 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.145039313 -27.807881991 53.184914292 -27.795426662 53.170743537 -27.760472003 53.130903942 -27.772905257
2025-01-10 19:30:20,458 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:20,512 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:20,665 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_02101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:20,743 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2025-01-10 19:30:20,744 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:20,744 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:20,745 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:20,901 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:21,056 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_02101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:21,076 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:21,077 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2025-01-10 19:30:21,118 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:21,119 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:21,119 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:21,120 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:21,120 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2025-01-10 19:30:21,148 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:21,148 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:21,149 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.258197
2025-01-10 19:30:21,196 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:21,367 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_02101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:21,368 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:21,369 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_02101_00001_nis
2025-01-10 19:30:21,370 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:21,371 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:21,591 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_02101_00001_nis_cal.fits
2025-01-10 19:30:21,591 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:21,592 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:21,654 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:21,663 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:21,675 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:21,676 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:21,677 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:21,678 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:21,679 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:21,680 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:21,849 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00403_asn.json',).
2025-01-10 19:30:21,857 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:21,922 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_04101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:21,925 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:21,926 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:21,926 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:21,927 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:21,927 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:21,927 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:21,928 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:21,929 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:21,929 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:21,930 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:21,930 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:21,930 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:21,931 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:21,931 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:21,932 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:21,932 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:21,932 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:21,933 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:21,933 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:21,934 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:21,934 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:21,935 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:21,942 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_04101_00001_nis
2025-01-10 19:30:21,942 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_04101_00001_nis_rate.fits ...
2025-01-10 19:30:22,160 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:22,326 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:22,376 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148304641 -27.806736020 53.188179440 -27.794280834 53.174006697 -27.759325736 53.134167899 -27.771759783
2025-01-10 19:30:22,377 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148304641 -27.806736020 53.188179440 -27.794280834 53.174006697 -27.759325736 53.134167899 -27.771759783
2025-01-10 19:30:22,377 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:22,433 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:22,602 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:22,687 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:22,688 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:22,688 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:22,688 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:22,864 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:23,030 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:23,050 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:23,051 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:23,093 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:23,094 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:23,094 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:23,095 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:23,095 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:23,123 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:23,124 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:23,125 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:23,172 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:23,337 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:23,338 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:23,339 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_04101_00001_nis
2025-01-10 19:30:23,341 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:23,341 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:23,558 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_04101_00001_nis_cal.fits
2025-01-10 19:30:23,559 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:23,559 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:23,622 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:23,631 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:23,643 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:23,644 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:23,646 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:23,647 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:23,648 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:23,649 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:23,817 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00476_asn.json',).
2025-01-10 19:30:23,826 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:23,889 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_12101_00002_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:23,892 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:23,893 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:23,893 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:23,894 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:23,894 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:23,895 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:23,895 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:23,896 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:23,896 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:23,897 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:23,897 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:23,899 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:23,899 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:23,899 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:23,900 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:23,900 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:23,901 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:23,901 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:23,901 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:23,902 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:23,902 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:23,903 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:23,910 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_12101_00002_nis
2025-01-10 19:30:23,910 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_12101_00002_nis_rate.fits ...
2025-01-10 19:30:24,127 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:24,293 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:24,346 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148409957 -27.807078120 53.188284872 -27.794622909 53.174112056 -27.759667820 53.134273142 -27.772101892
2025-01-10 19:30:24,347 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148409957 -27.807078120 53.188284872 -27.794622909 53.174112056 -27.759667820 53.134273142 -27.772101892
2025-01-10 19:30:24,348 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:24,401 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:24,578 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:24,661 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:24,661 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:24,662 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:24,662 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:24,824 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:25,000 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:25,021 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:25,022 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:25,066 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:25,067 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:25,068 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:25,068 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:25,068 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:25,097 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:25,097 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:25,099 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:25,147 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:25,320 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:25,321 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:25,323 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_12101_00002_nis
2025-01-10 19:30:25,323 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:25,324 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:25,546 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_12101_00002_nis_cal.fits
2025-01-10 19:30:25,546 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:25,547 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:25,610 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:25,619 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:25,631 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:25,633 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:25,634 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:25,635 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:25,636 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:25,638 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:25,808 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00181_asn.json',).
2025-01-10 19:30:25,816 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:25,878 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_12101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:25,881 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2025-01-10 19:30:25,882 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:25,882 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:25,883 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:25,883 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:25,883 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2025-01-10 19:30:25,884 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:25,884 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:25,885 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2025-01-10 19:30:25,885 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:25,886 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:25,886 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:25,887 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:25,887 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:25,887 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:25,888 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:25,888 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:25,889 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:25,889 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:25,890 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:25,890 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:25,891 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:25,898 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_12101_00001_nis
2025-01-10 19:30:25,898 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_12101_00001_nis_rate.fits ...
2025-01-10 19:30:26,120 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:26,285 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2025-01-10 19:30:26,336 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148732032 -27.807788419 53.188607919 -27.795332704 53.174435185 -27.760377074 53.134595017 -27.772811259
2025-01-10 19:30:26,337 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148732032 -27.807788419 53.188607919 -27.795332704 53.174435185 -27.760377074 53.134595017 -27.772811259
2025-01-10 19:30:26,337 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:26,391 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:26,549 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:26,630 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2025-01-10 19:30:26,631 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:26,631 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:26,632 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:26,802 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:26,973 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:26,993 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:26,994 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2025-01-10 19:30:27,034 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:27,034 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:27,035 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:27,035 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:27,036 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2025-01-10 19:30:27,063 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:27,064 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:27,065 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256435
2025-01-10 19:30:27,113 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:27,281 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:27,282 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:27,283 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_12101_00001_nis
2025-01-10 19:30:27,284 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:27,285 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:27,504 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_12101_00001_nis_cal.fits
2025-01-10 19:30:27,505 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:27,505 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:27,566 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:27,576 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:27,588 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:27,589 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:27,590 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:27,591 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:27,592 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:27,594 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:27,759 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00104_asn.json',).
2025-01-10 19:30:27,768 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:27,829 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004003_04101_00004_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:27,832 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2025-01-10 19:30:27,833 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:27,834 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:27,834 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:27,834 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:27,835 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2025-01-10 19:30:27,835 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:27,836 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:27,837 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2025-01-10 19:30:27,837 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:27,837 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:27,838 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:27,838 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:27,839 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:27,839 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:27,839 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:27,840 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:27,840 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:27,840 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:27,841 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:27,841 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:27,842 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:27,849 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_04101_00004_nis
2025-01-10 19:30:27,849 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_04101_00004_nis_rate.fits ...
2025-01-10 19:30:28,066 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:28,232 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2025-01-10 19:30:28,283 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.149034208 -27.809553310 53.188909303 -27.797096737 53.174736937 -27.762142520 53.134897226 -27.774577017
2025-01-10 19:30:28,284 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.149034208 -27.809553310 53.188909303 -27.797096737 53.174736937 -27.762142520 53.134897226 -27.774577017
2025-01-10 19:30:28,285 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:28,334 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:28,501 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:28,580 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2025-01-10 19:30:28,581 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:28,581 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:28,582 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:28,738 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:28,902 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:28,923 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:28,923 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2025-01-10 19:30:28,967 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:28,967 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:28,968 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:28,968 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:28,969 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2025-01-10 19:30:28,997 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:28,997 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:28,998 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.258197
2025-01-10 19:30:29,045 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:29,212 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:29,212 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:29,214 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_04101_00004_nis
2025-01-10 19:30:29,214 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:29,215 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:29,435 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_04101_00004_nis_cal.fits
2025-01-10 19:30:29,436 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:29,436 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:29,498 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:29,508 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:29,519 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:29,520 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:29,522 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:29,523 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:29,524 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:29,525 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:29,690 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00624_asn.json',).
2025-01-10 19:30:29,698 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:29,760 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_06101_00002_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:29,763 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:29,764 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:29,764 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:29,764 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:29,765 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:29,765 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:29,766 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:29,766 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:29,767 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:29,768 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:29,768 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:29,768 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:29,769 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:29,769 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:29,769 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:29,770 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:29,770 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:29,771 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:29,771 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:29,772 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:29,772 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:29,773 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:29,779 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_06101_00002_nis
2025-01-10 19:30:29,780 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_06101_00002_nis_rate.fits ...
2025-01-10 19:30:29,991 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:30,158 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:30,209 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148409988 -27.807078139 53.188284913 -27.794622952 53.174112123 -27.759667854 53.134273200 -27.772101902
2025-01-10 19:30:30,210 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148409988 -27.807078139 53.188284913 -27.794622952 53.174112123 -27.759667854 53.134273200 -27.772101902
2025-01-10 19:30:30,211 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:30,261 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:30,422 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:30,506 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:30,507 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:30,507 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:30,508 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:30,682 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:30,845 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:30,866 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:30,867 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:30,910 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:30,911 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:30,911 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:30,912 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:30,912 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:30,940 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:30,940 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:30,941 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:30,988 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:31,157 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:31,158 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:31,160 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_06101_00002_nis
2025-01-10 19:30:31,160 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:31,161 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:31,379 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_06101_00002_nis_cal.fits
2025-01-10 19:30:31,379 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:31,380 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:31,441 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:31,453 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:31,464 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:31,465 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:31,466 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:31,467 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:31,468 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:31,470 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:31,632 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00551_asn.json',).
2025-01-10 19:30:31,640 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:31,701 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_10101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:31,705 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:31,706 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:31,706 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:31,706 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:31,707 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:31,707 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:31,708 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:31,708 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:31,709 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:31,709 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:31,709 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:31,710 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:31,710 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:31,710 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:31,711 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:31,711 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:31,712 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:31,712 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:31,713 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:31,713 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:31,714 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:31,714 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:31,721 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_10101_00001_nis
2025-01-10 19:30:31,721 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_10101_00001_nis_rate.fits ...
2025-01-10 19:30:31,917 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:32,083 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:32,132 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148304819 -27.806735864 53.188179637 -27.794280724 53.174006945 -27.759325610 53.134168129 -27.771759611
2025-01-10 19:30:32,133 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148304819 -27.806735864 53.188179637 -27.794280724 53.174006945 -27.759325610 53.134168129 -27.771759611
2025-01-10 19:30:32,133 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:32,183 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:32,335 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:32,412 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:32,412 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:32,413 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:32,413 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:32,572 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:32,724 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:32,745 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:32,745 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:32,788 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:32,788 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:32,789 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:32,789 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:32,790 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:32,816 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:32,817 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:32,818 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:32,865 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:33,021 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:33,022 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:33,023 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_10101_00001_nis
2025-01-10 19:30:33,024 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:33,025 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:33,247 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_10101_00001_nis_cal.fits
2025-01-10 19:30:33,247 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:33,248 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:33,310 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:33,320 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:33,331 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:33,332 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:33,333 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:33,334 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:33,335 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:33,337 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:33,490 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00400_asn.json',).
2025-01-10 19:30:33,499 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:33,560 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_04101_00004_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:33,563 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:33,564 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:33,564 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:33,564 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:33,565 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:33,565 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:33,566 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:33,566 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:33,566 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:33,567 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:33,567 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:33,568 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:33,568 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:33,568 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:33,569 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:33,569 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:33,570 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:33,570 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:33,570 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:33,571 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:33,571 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:33,572 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:33,580 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_04101_00004_nis
2025-01-10 19:30:33,580 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_04101_00004_nis_rate.fits ...
2025-01-10 19:30:33,778 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:33,943 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:33,993 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.147988382 -27.807155417 53.187863374 -27.794700328 53.173690684 -27.759745195 53.133851694 -27.772179146
2025-01-10 19:30:33,993 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.147988382 -27.807155417 53.187863374 -27.794700328 53.173690684 -27.759745195 53.133851694 -27.772179146
2025-01-10 19:30:33,994 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:34,045 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:34,197 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:34,274 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:34,275 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:34,275 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:34,276 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:34,434 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:34,584 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:34,605 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:34,605 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:34,648 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:34,648 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:34,649 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:34,649 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:34,650 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:34,677 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:34,677 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:34,679 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:34,724 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:34,874 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:34,874 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:34,876 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_04101_00004_nis
2025-01-10 19:30:34,877 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:34,877 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:35,094 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_04101_00004_nis_cal.fits
2025-01-10 19:30:35,094 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:35,095 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:35,155 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:35,165 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:35,177 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:35,178 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:35,180 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:35,181 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:35,182 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:35,183 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:35,337 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00254_asn.json',).
2025-01-10 19:30:35,346 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:35,407 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_10101_00002_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:35,410 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2025-01-10 19:30:35,411 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:35,412 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:35,412 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:35,412 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:35,413 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2025-01-10 19:30:35,414 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:35,414 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:35,414 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2025-01-10 19:30:35,416 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:35,416 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:35,416 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:35,417 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:35,417 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:35,418 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:35,418 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:35,419 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:35,420 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:35,421 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:35,421 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:35,421 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:35,422 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:35,429 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_10101_00002_nis
2025-01-10 19:30:35,429 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_10101_00002_nis_rate.fits ...
2025-01-10 19:30:35,630 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:35,795 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2025-01-10 19:30:35,845 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.147253582 -27.807286122 53.187129428 -27.794830766 53.172957163 -27.759875009 53.133117036 -27.772308835
2025-01-10 19:30:35,846 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.147253582 -27.807286122 53.187129428 -27.794830766 53.172957163 -27.759875009 53.133117036 -27.772308835
2025-01-10 19:30:35,846 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:35,901 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:36,053 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:36,132 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2025-01-10 19:30:36,132 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:36,133 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:36,133 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:36,286 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:36,439 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:36,460 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:36,461 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2025-01-10 19:30:36,508 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:36,508 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:36,509 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:36,509 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:36,510 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2025-01-10 19:30:36,537 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:36,538 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:36,539 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256435
2025-01-10 19:30:36,586 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:36,742 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:36,743 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:36,745 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_10101_00002_nis
2025-01-10 19:30:36,745 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:36,746 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:36,965 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_10101_00002_nis_cal.fits
2025-01-10 19:30:36,966 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:36,967 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:37,034 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:37,045 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:37,057 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:37,058 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:37,059 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:37,060 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:37,061 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:37,063 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:37,219 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00698_asn.json',).
2025-01-10 19:30:37,227 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:37,288 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_04101_00002_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:37,292 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:37,293 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:37,293 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:37,293 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:37,294 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:37,294 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:37,295 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:37,296 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:37,296 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:37,297 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:37,297 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:37,298 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:37,298 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:37,298 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:37,299 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:37,299 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:37,300 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:37,301 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:37,301 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:37,301 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:37,302 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:37,302 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:37,309 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_04101_00002_nis
2025-01-10 19:30:37,309 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_04101_00002_nis_rate.fits ...
2025-01-10 19:30:37,511 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:37,685 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:37,735 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148442315 -27.806913995 53.188317158 -27.794458753 53.174144328 -27.759503674 53.134305487 -27.771937778
2025-01-10 19:30:37,735 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148442315 -27.806913995 53.188317158 -27.794458753 53.174144328 -27.759503674 53.134305487 -27.771937778
2025-01-10 19:30:37,736 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:37,790 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:37,947 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:38,026 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:38,027 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:38,027 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:38,028 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:38,187 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:38,345 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:38,366 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:38,367 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:38,410 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:38,410 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:38,410 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:38,411 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:38,412 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:38,439 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:38,439 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:38,441 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:38,487 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:38,644 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:38,644 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:38,646 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_04101_00002_nis
2025-01-10 19:30:38,647 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:38,647 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:38,867 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_04101_00002_nis_cal.fits
2025-01-10 19:30:38,868 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:38,868 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:38,933 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:38,942 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:38,954 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:38,955 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:38,956 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:38,957 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:38,958 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:38,960 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:39,117 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00180_asn.json',).
2025-01-10 19:30:39,126 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:39,189 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_12101_00002_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:39,192 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2025-01-10 19:30:39,193 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:39,193 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:39,194 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:39,194 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:39,195 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2025-01-10 19:30:39,195 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:39,196 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:39,196 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2025-01-10 19:30:39,197 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:39,197 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:39,198 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:39,198 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:39,200 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:39,200 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:39,200 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:39,201 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:39,202 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:39,203 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:39,203 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:39,204 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:39,204 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:39,211 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_12101_00002_nis
2025-01-10 19:30:39,211 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_12101_00002_nis_rate.fits ...
2025-01-10 19:30:39,411 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:39,581 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2025-01-10 19:30:39,632 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148869512 -27.807966522 53.188745416 -27.795510685 53.174572524 -27.760555099 53.134732339 -27.772989405
2025-01-10 19:30:39,633 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148869512 -27.807966522 53.188745416 -27.795510685 53.174572524 -27.760555099 53.134732339 -27.772989405
2025-01-10 19:30:39,634 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:39,689 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:39,839 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:39,916 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2025-01-10 19:30:39,917 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:39,918 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:39,918 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:40,074 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:40,226 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:40,246 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:40,247 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2025-01-10 19:30:40,290 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:40,290 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:40,291 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:40,291 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:40,292 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2025-01-10 19:30:40,318 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:40,319 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:40,320 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256435
2025-01-10 19:30:40,365 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:40,518 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:40,519 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:40,520 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_12101_00002_nis
2025-01-10 19:30:40,521 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:40,521 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:40,738 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_12101_00002_nis_cal.fits
2025-01-10 19:30:40,738 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:40,739 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:40,800 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:40,809 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:40,821 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:40,822 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:40,823 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:40,824 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:40,825 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:40,826 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:40,981 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00255_asn.json',).
2025-01-10 19:30:40,988 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:41,051 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_10101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:41,055 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2025-01-10 19:30:41,055 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:41,056 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:41,056 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:41,056 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:41,057 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2025-01-10 19:30:41,057 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:41,058 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:41,058 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2025-01-10 19:30:41,059 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:41,059 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:41,060 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:41,061 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:41,061 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:41,061 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:41,062 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:41,062 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:41,063 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:41,064 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:41,065 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:41,065 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:41,066 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:41,072 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_10101_00001_nis
2025-01-10 19:30:41,072 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_10101_00001_nis_rate.fits ...
2025-01-10 19:30:41,274 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:41,441 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2025-01-10 19:30:41,492 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.147115464 -27.807108478 53.186991206 -27.794653023 53.172818853 -27.759697301 53.132978830 -27.772131226
2025-01-10 19:30:41,493 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.147115464 -27.807108478 53.186991206 -27.794653023 53.172818853 -27.759697301 53.132978830 -27.772131226
2025-01-10 19:30:41,493 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:41,550 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:41,703 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:41,780 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2025-01-10 19:30:41,781 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:41,781 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:41,782 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:41,952 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:42,106 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:42,127 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:42,127 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2025-01-10 19:30:42,169 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:42,169 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:42,170 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:42,170 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:42,171 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2025-01-10 19:30:42,198 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:42,199 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:42,200 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256435
2025-01-10 19:30:42,246 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:42,400 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:42,401 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:42,402 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_10101_00001_nis
2025-01-10 19:30:42,403 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:42,404 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:42,620 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_10101_00001_nis_cal.fits
2025-01-10 19:30:42,621 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:42,621 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:42,682 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:42,692 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:42,703 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:42,705 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:42,706 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:42,707 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:42,708 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:42,709 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:42,866 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00696_asn.json',).
2025-01-10 19:30:42,874 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:42,934 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_04101_00004_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:42,938 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:42,938 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:42,939 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:42,939 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:42,940 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:42,940 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:42,941 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:42,941 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:42,942 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:42,942 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:42,943 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:42,943 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:42,944 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:42,944 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:42,944 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:42,945 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:42,945 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:42,945 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:42,946 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:42,946 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:42,946 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:42,947 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:42,954 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_04101_00004_nis
2025-01-10 19:30:42,955 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_04101_00004_nis_rate.fits ...
2025-01-10 19:30:43,158 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:43,328 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:43,377 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.147988443 -27.807155449 53.187863439 -27.794700369 53.173690758 -27.759745233 53.133851765 -27.772179175
2025-01-10 19:30:43,378 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.147988443 -27.807155449 53.187863439 -27.794700369 53.173690758 -27.759745233 53.133851765 -27.772179175
2025-01-10 19:30:43,379 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:43,432 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:43,592 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:43,672 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:43,673 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:43,673 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:43,673 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:43,827 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:43,981 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:44,002 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:44,003 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:44,046 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:44,046 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:44,047 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:44,047 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:44,048 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:44,075 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:44,075 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:44,077 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:44,123 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:44,280 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00004_nis_image2pipeline.fits>,).
2025-01-10 19:30:44,280 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:44,282 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_04101_00004_nis
2025-01-10 19:30:44,283 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:44,283 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:44,500 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_04101_00004_nis_cal.fits
2025-01-10 19:30:44,501 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:44,501 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:44,566 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:44,575 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:44,587 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:44,588 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:44,589 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:44,590 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:44,591 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:44,592 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:44,747 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00625_asn.json',).
2025-01-10 19:30:44,756 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:44,816 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_06101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:44,820 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:44,821 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:44,821 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:44,821 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:44,822 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:44,822 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:44,823 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:44,824 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:44,824 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:44,825 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:44,825 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:44,825 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:44,826 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:44,826 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:44,826 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:44,827 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:44,827 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:44,828 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:44,828 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:44,829 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:44,829 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:44,830 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:44,836 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_06101_00001_nis
2025-01-10 19:30:44,837 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_06101_00001_nis_rate.fits ...
2025-01-10 19:30:45,038 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:45,204 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:45,254 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148271993 -27.806900352 53.188146834 -27.794445117 53.173974013 -27.759490036 53.134135175 -27.771924132
2025-01-10 19:30:45,254 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148271993 -27.806900352 53.188146834 -27.794445117 53.173974013 -27.759490036 53.134135175 -27.771924132
2025-01-10 19:30:45,255 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:45,305 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:45,461 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:45,539 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:45,540 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:45,540 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:45,541 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:45,710 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:45,866 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:45,887 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:45,888 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:45,930 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:45,931 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:45,931 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:45,932 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:45,932 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:45,960 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:45,960 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:45,962 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:46,008 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:46,165 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:46,166 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:46,167 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_06101_00001_nis
2025-01-10 19:30:46,168 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:46,168 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:46,385 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_06101_00001_nis_cal.fits
2025-01-10 19:30:46,385 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:46,385 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:46,447 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:46,456 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:46,467 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:46,468 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:46,469 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:46,470 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:46,471 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:46,473 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:46,636 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00033_asn.json',).
2025-01-10 19:30:46,645 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:46,706 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004003_06101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:46,710 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2025-01-10 19:30:46,710 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:46,711 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:46,711 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:46,712 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:46,712 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2025-01-10 19:30:46,713 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:46,713 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:46,714 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2025-01-10 19:30:46,714 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:46,715 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:46,715 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:46,715 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:46,716 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:46,716 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:46,717 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:46,717 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:46,719 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:46,719 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:46,719 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:46,720 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:46,720 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:46,727 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_06101_00001_nis
2025-01-10 19:30:46,727 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_06101_00001_nis_rate.fits ...
2025-01-10 19:30:46,922 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:47,087 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2025-01-10 19:30:47,139 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.149317921 -27.809298180 53.189192902 -27.796841556 53.175020511 -27.761887357 53.135180914 -27.774321906
2025-01-10 19:30:47,139 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.149317921 -27.809298180 53.189192902 -27.796841556 53.175020511 -27.761887357 53.135180914 -27.774321906
2025-01-10 19:30:47,140 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:47,190 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:47,346 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:47,427 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2025-01-10 19:30:47,428 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:47,428 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:47,429 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:47,585 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:47,739 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:47,760 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:47,760 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2025-01-10 19:30:47,803 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:47,804 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:47,804 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:47,805 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:47,805 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2025-01-10 19:30:47,832 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:47,832 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:47,834 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.258197
2025-01-10 19:30:47,880 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:48,035 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:48,036 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:48,037 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_06101_00001_nis
2025-01-10 19:30:48,038 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:48,038 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:48,255 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_06101_00001_nis_cal.fits
2025-01-10 19:30:48,256 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:48,256 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:48,318 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:48,327 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:48,339 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:48,340 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:48,342 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:48,343 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:48,344 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:48,345 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:48,500 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00296_asn.json',).
2025-01-10 19:30:48,508 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:48,569 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_08101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:48,573 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2025-01-10 19:30:48,574 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:48,574 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:48,575 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:48,575 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:48,576 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2025-01-10 19:30:48,576 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:48,576 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:48,577 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2025-01-10 19:30:48,579 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:48,579 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:48,580 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:48,580 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:48,581 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:48,581 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:48,582 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:48,582 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:48,583 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:48,583 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:48,584 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:48,584 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:48,585 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:48,591 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_08101_00001_nis
2025-01-10 19:30:48,592 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_08101_00001_nis_rate.fits ...
2025-01-10 19:30:48,795 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_08101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:48,960 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2025-01-10 19:30:49,009 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.146832312 -27.807363505 53.186708246 -27.794908299 53.172536138 -27.759952489 53.132695924 -27.772386165
2025-01-10 19:30:49,010 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.146832312 -27.807363505 53.186708246 -27.794908299 53.172536138 -27.759952489 53.132695924 -27.772386165
2025-01-10 19:30:49,010 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:49,060 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:49,213 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_08101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:49,291 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2025-01-10 19:30:49,292 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:49,292 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:49,293 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:49,449 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:49,612 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_08101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:49,633 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:49,633 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2025-01-10 19:30:49,676 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:49,676 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:49,677 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:49,677 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:49,677 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2025-01-10 19:30:49,705 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:49,705 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:49,706 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256435
2025-01-10 19:30:49,753 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:49,910 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_08101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:49,911 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:49,913 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_08101_00001_nis
2025-01-10 19:30:49,914 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:49,914 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:50,131 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_08101_00001_nis_cal.fits
2025-01-10 19:30:50,132 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:50,132 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:50,194 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:50,204 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:50,215 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:50,216 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:50,218 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:50,218 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:50,219 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:50,221 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:50,376 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00105_asn.json',).
2025-01-10 19:30:50,384 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:50,446 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004003_04101_00003_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:50,449 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2025-01-10 19:30:50,450 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:50,450 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:50,451 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:50,451 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:50,452 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2025-01-10 19:30:50,453 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:50,453 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:50,454 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2025-01-10 19:30:50,454 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:50,455 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:50,455 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:50,456 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:50,456 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:50,456 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:50,457 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:50,457 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:50,458 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:50,458 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:50,459 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:50,459 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:50,460 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:50,466 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_04101_00003_nis
2025-01-10 19:30:50,467 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_04101_00003_nis_rate.fits ...
2025-01-10 19:30:50,668 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:50,834 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2025-01-10 19:30:50,885 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.145302649 -27.807767041 53.185177546 -27.795311613 53.171006695 -27.760356990 53.131167182 -27.772790343
2025-01-10 19:30:50,885 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.145302649 -27.807767041 53.185177546 -27.795311613 53.171006695 -27.760356990 53.131167182 -27.772790343
2025-01-10 19:30:50,886 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:50,935 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:51,092 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:51,171 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2025-01-10 19:30:51,172 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:51,172 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:51,173 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:51,330 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:51,482 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:51,503 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:51,504 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2025-01-10 19:30:51,547 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:51,548 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:51,548 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:51,548 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:51,549 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2025-01-10 19:30:51,576 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:51,577 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:51,578 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.258197
2025-01-10 19:30:51,625 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:51,780 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:51,781 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:51,783 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_04101_00003_nis
2025-01-10 19:30:51,783 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:51,784 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:51,999 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_04101_00003_nis_cal.fits
2025-01-10 19:30:51,999 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:52,000 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:52,065 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:52,075 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:52,087 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:52,088 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:52,090 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:52,090 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:52,092 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:52,093 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:52,246 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00697_asn.json',).
2025-01-10 19:30:52,254 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:52,316 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_04101_00003_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:52,319 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:52,320 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:52,321 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:52,321 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:52,321 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:52,322 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:52,322 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:52,323 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:52,323 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:52,324 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:52,324 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:52,324 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:52,325 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:52,325 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:52,325 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:52,326 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:52,326 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:52,328 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:52,329 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:52,329 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:52,329 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:52,330 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:52,337 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_04101_00003_nis
2025-01-10 19:30:52,337 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_04101_00003_nis_rate.fits ...
2025-01-10 19:30:52,535 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:52,705 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:52,755 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148284428 -27.806876567 53.188159285 -27.794421397 53.173986541 -27.759466293 53.134147685 -27.771900324
2025-01-10 19:30:52,755 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148284428 -27.806876567 53.188159285 -27.794421397 53.173986541 -27.759466293 53.134147685 -27.771900324
2025-01-10 19:30:52,756 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:52,805 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:52,960 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:53,039 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:53,039 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:53,040 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:53,040 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:53,198 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:53,356 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:53,377 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:53,377 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:53,420 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:53,421 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:53,421 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:53,422 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:53,422 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:53,450 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:53,450 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:53,451 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:53,497 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:53,651 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:53,652 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:53,653 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_04101_00003_nis
2025-01-10 19:30:53,654 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:53,655 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:53,869 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_04101_00003_nis_cal.fits
2025-01-10 19:30:53,870 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:53,870 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:53,931 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:53,940 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:53,951 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:53,952 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:53,954 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:53,955 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:53,956 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:53,957 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:54,119 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00699_asn.json',).
2025-01-10 19:30:54,127 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:54,188 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_04101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:54,191 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:54,192 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:54,193 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:54,193 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:54,194 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:54,194 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:54,195 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:54,196 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:54,197 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:54,197 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:54,198 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:54,198 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:54,199 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:54,199 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:54,200 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:54,201 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:54,201 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:54,201 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:54,202 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:54,202 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:54,202 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:54,203 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:54,210 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_04101_00001_nis
2025-01-10 19:30:54,210 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_04101_00001_nis_rate.fits ...
2025-01-10 19:30:54,414 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:54,579 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:54,634 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148304712 -27.806735969 53.188179521 -27.794280806 53.174006802 -27.759325699 53.134167995 -27.771759724
2025-01-10 19:30:54,634 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148304712 -27.806735969 53.188179521 -27.794280806 53.174006802 -27.759325699 53.134167995 -27.771759724
2025-01-10 19:30:54,635 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:54,685 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:54,841 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:54,917 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:54,918 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:54,919 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:54,919 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:55,070 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:55,226 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:55,249 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:55,250 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:55,294 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:55,294 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:55,295 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:55,295 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:55,296 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:55,323 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:55,324 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:55,325 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:55,374 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:55,526 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:30:55,527 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:55,528 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_04101_00001_nis
2025-01-10 19:30:55,529 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:55,529 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:55,747 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_04101_00001_nis_cal.fits
2025-01-10 19:30:55,748 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:55,748 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:55,810 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:55,819 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:55,831 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:55,832 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:55,833 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:55,834 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:55,835 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:55,836 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:55,987 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00402_asn.json',).
2025-01-10 19:30:55,996 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:56,057 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_04101_00002_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:56,060 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:56,061 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:56,061 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:56,062 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:56,062 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:56,062 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:56,063 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:56,063 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:56,064 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:56,065 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:56,065 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:56,066 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:56,066 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:56,066 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:56,067 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:56,067 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:56,068 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:56,068 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:56,068 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:56,069 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:56,069 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:56,070 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:56,077 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_04101_00002_nis
2025-01-10 19:30:56,077 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_04101_00002_nis_rate.fits ...
2025-01-10 19:30:56,280 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:56,446 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:56,495 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148442431 -27.806913942 53.188317288 -27.794458735 53.174144498 -27.759503644 53.134305643 -27.771937712
2025-01-10 19:30:56,496 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148442431 -27.806913942 53.188317288 -27.794458735 53.174144498 -27.759503644 53.134305643 -27.771937712
2025-01-10 19:30:56,496 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:56,546 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:56,705 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:56,783 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:56,783 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:56,784 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:56,784 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:56,951 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:57,105 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:57,126 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:57,126 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:57,166 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:57,167 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:57,168 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:57,168 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:57,169 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:57,195 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:57,196 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:57,197 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:57,243 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:57,397 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:30:57,398 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:57,399 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_04101_00002_nis
2025-01-10 19:30:57,401 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:57,401 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:57,620 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_04101_00002_nis_cal.fits
2025-01-10 19:30:57,621 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:57,621 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:57,682 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:57,692 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:57,703 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:57,704 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:57,706 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:57,707 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:57,708 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:57,710 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:57,864 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00475_asn.json',).
2025-01-10 19:30:57,872 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:57,933 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_12101_00003_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:57,936 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:57,937 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:57,937 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:57,938 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:57,938 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:57,938 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:57,940 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:57,940 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:57,940 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:57,941 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:57,941 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:57,941 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:57,942 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:57,942 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:57,942 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:57,943 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:57,943 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:57,944 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:57,945 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:57,945 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:57,945 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:57,946 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:57,953 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_12101_00003_nis
2025-01-10 19:30:57,953 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_12101_00003_nis_rate.fits ...
2025-01-10 19:30:58,162 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:58,327 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:30:58,378 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148252075 -27.807040650 53.188127009 -27.794585520 53.173954288 -27.759630402 53.134115356 -27.772064393
2025-01-10 19:30:58,378 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148252075 -27.807040650 53.188127009 -27.794585520 53.173954288 -27.759630402 53.134115356 -27.772064393
2025-01-10 19:30:58,379 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:30:58,433 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:30:58,586 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:58,668 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:30:58,668 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:30:58,669 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:30:58,669 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:30:58,825 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:30:58,978 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:58,998 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:30:58,999 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:30:59,043 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:30:59,043 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:30:59,044 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:30:59,044 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:30:59,045 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:30:59,072 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:30:59,073 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:30:59,074 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:30:59,120 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:30:59,276 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00003_nis_image2pipeline.fits>,).
2025-01-10 19:30:59,277 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:30:59,278 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_12101_00003_nis
2025-01-10 19:30:59,279 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:30:59,279 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:30:59,497 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_12101_00003_nis_cal.fits
2025-01-10 19:30:59,498 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:30:59,498 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:30:59,565 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:30:59,574 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:30:59,585 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:30:59,587 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:30:59,588 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:30:59,589 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:30:59,590 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:30:59,592 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:30:59,746 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00444_asn.json',).
2025-01-10 19:30:59,754 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:30:59,814 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_02101_00001_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:30:59,818 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2025-01-10 19:30:59,818 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:30:59,819 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:30:59,819 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:30:59,820 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:30:59,820 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2025-01-10 19:30:59,820 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:30:59,821 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:30:59,821 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2025-01-10 19:30:59,822 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:30:59,822 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:30:59,822 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:30:59,823 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:30:59,823 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:30:59,824 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:30:59,824 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:30:59,824 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:30:59,827 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:30:59,827 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:30:59,827 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:30:59,828 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:30:59,828 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:30:59,835 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_02101_00001_nis
2025-01-10 19:30:59,835 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_02101_00001_nis_rate.fits ...
2025-01-10 19:31:00,036 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_02101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:31:00,202 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2025-01-10 19:31:00,253 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148020701 -27.806991890 53.187895566 -27.794536632 53.173722708 -27.759581559 53.133883845 -27.772015679
2025-01-10 19:31:00,254 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148020701 -27.806991890 53.187895566 -27.794536632 53.173722708 -27.759581559 53.133883845 -27.772015679
2025-01-10 19:31:00,254 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:31:00,304 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:31:00,463 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_02101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:31:00,541 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2025-01-10 19:31:00,542 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:31:00,542 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:31:00,543 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:31:00,701 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:31:00,853 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_02101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:31:00,873 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:31:00,874 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2025-01-10 19:31:00,915 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:31:00,916 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:31:00,916 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:31:00,916 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:31:00,917 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2025-01-10 19:31:00,944 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:31:00,945 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:31:00,946 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230088
2025-01-10 19:31:00,991 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:31:01,145 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_02101_00001_nis_image2pipeline.fits>,).
2025-01-10 19:31:01,146 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:31:01,148 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_02101_00001_nis
2025-01-10 19:31:01,148 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:31:01,149 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:31:01,366 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_02101_00001_nis_cal.fits
2025-01-10 19:31:01,366 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:31:01,367 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:31:01,429 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:31:01,438 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:31:01,450 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:31:01,451 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:31:01,452 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:31:01,453 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:31:01,454 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:31:01,456 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:31:01,609 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00032_asn.json',).
2025-01-10 19:31:01,617 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:31:01,677 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004003_06101_00002_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:31:01,681 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2025-01-10 19:31:01,681 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:31:01,682 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:31:01,682 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:31:01,683 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:31:01,683 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2025-01-10 19:31:01,684 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:31:01,685 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:31:01,685 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2025-01-10 19:31:01,686 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:31:01,686 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:31:01,686 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:31:01,687 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:31:01,687 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:31:01,688 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:31:01,688 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:31:01,688 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:31:01,689 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:31:01,689 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:31:01,689 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:31:01,690 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:31:01,691 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:31:01,698 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_06101_00002_nis
2025-01-10 19:31:01,698 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_06101_00002_nis_rate.fits ...
2025-01-10 19:31:01,913 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:31:02,080 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2025-01-10 19:31:02,130 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.149455953 -27.809475981 53.189330995 -27.797019347 53.175158571 -27.762065152 53.135318913 -27.774499710
2025-01-10 19:31:02,131 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.149455953 -27.809475981 53.189330995 -27.797019347 53.175158571 -27.762065152 53.135318913 -27.774499710
2025-01-10 19:31:02,131 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:31:02,181 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:31:02,361 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:31:02,444 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2025-01-10 19:31:02,444 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:31:02,445 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:31:02,445 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:31:02,606 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:31:02,772 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:31:02,797 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:31:02,798 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2025-01-10 19:31:02,838 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:31:02,839 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:31:02,841 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:31:02,841 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:31:02,842 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2025-01-10 19:31:02,869 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:31:02,870 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:31:02,871 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.258197
2025-01-10 19:31:02,918 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:31:03,074 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:31:03,075 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:31:03,076 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_06101_00002_nis
2025-01-10 19:31:03,077 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:31:03,078 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:31:03,300 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_06101_00002_nis_cal.fits
2025-01-10 19:31:03,301 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:31:03,301 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:31:03,362 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:31:03,372 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2025-01-10 19:31:03,383 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2025-01-10 19:31:03,384 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2025-01-10 19:31:03,385 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2025-01-10 19:31:03,386 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2025-01-10 19:31:03,387 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2025-01-10 19:31:03,389 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:31:03,545 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00106_asn.json',).
2025-01-10 19:31:03,553 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
save_combined_background: False
sigma: 3.0
maxiters: None
wfss_mmag_extract: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
mrs_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
2025-01-10 19:31:03,615 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004003_04101_00002_nis_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2025-01-10 19:31:03,618 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2025-01-10 19:31:03,619 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2025-01-10 19:31:03,619 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2025-01-10 19:31:03,619 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2025-01-10 19:31:03,620 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2025-01-10 19:31:03,620 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2025-01-10 19:31:03,621 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2025-01-10 19:31:03,621 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2025-01-10 19:31:03,622 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2025-01-10 19:31:03,622 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2025-01-10 19:31:03,622 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2025-01-10 19:31:03,623 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2025-01-10 19:31:03,623 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2025-01-10 19:31:03,624 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2025-01-10 19:31:03,624 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2025-01-10 19:31:03,624 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2025-01-10 19:31:03,625 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits'.
2025-01-10 19:31:03,626 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2025-01-10 19:31:03,626 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2025-01-10 19:31:03,627 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2025-01-10 19:31:03,627 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2025-01-10 19:31:03,628 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2025-01-10 19:31:03,634 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_04101_00002_nis
2025-01-10 19:31:03,636 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_04101_00002_nis_rate.fits ...
2025-01-10 19:31:03,854 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:31:04,021 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2025-01-10 19:31:04,073 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.145460527 -27.807804453 53.185335410 -27.795348957 53.171164478 -27.760394358 53.131324979 -27.772827779
2025-01-10 19:31:04,074 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.145460527 -27.807804453 53.185335410 -27.795348957 53.171164478 -27.760394358 53.131324979 -27.772827779
2025-01-10 19:31:04,074 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2025-01-10 19:31:04,128 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2025-01-10 19:31:04,281 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:31:04,361 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2025-01-10 19:31:04,361 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2025-01-10 19:31:04,362 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2025-01-10 19:31:04,362 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2025-01-10 19:31:04,535 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2025-01-10 19:31:04,691 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:31:04,713 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0046.fits
2025-01-10 19:31:04,714 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2025-01-10 19:31:04,758 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2025-01-10 19:31:04,759 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2025-01-10 19:31:04,759 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2025-01-10 19:31:04,760 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2025-01-10 19:31:04,760 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2025-01-10 19:31:04,788 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2025-01-10 19:31:04,789 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2025-01-10 19:31:04,790 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.258197
2025-01-10 19:31:04,836 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2025-01-10 19:31:04,993 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00002_nis_image2pipeline.fits>,).
2025-01-10 19:31:04,994 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2025-01-10 19:31:04,995 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_04101_00002_nis
2025-01-10 19:31:04,996 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2025-01-10 19:31:04,997 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1321.pmap
2025-01-10 19:31:05,216 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_04101_00002_nis_cal.fits
2025-01-10 19:31:05,217 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2025-01-10 19:31:05,217 - stpipe - INFO - Results used jwst version: 1.17.1
Run Default Image3#
Looking in a Level 3 Association File#
The contents are quite similar to image2, but notice now that there are many more members that are associated together, and they use the individual pointing cal files from image2. Image3 resamples and combines images of the same blocking filter (PUPIL for NIRISS WFSS) from all dither and observing sequences to form a single image, which leads to fewer image3 association files.
image3_asns = glob.glob('*image3*asn*.json')
print(len(image3_asns), 'Image3 ASN files') # there should be 3 image3 association files
# the number of image3 association files should match the number of unique blocking filters used
uniq_filters = np.unique(rate_df[rate_df['FILTER'] == 'CLEAR']['PUPIL'])
print(f"{len(uniq_filters)} unique filters used: {uniq_filters}")
3 Image3 ASN files
3 unique filters used: ['F115W' 'F150W' 'F200W']
# look at one of the association files
image3_asn_data = json.load(open(image3_asns[0]))
for key, data in image3_asn_data.items():
print(f"{key} : {data}")
asn_type : image3
asn_rule : candidate_Asn_Lv3Image
version_id : 20231119t124442
code_version : 1.11.4
degraded_status : No known degraded exposures in association.
program : 02079
constraints : DMSAttrConstraint({'name': 'program', 'sources': ['program'], 'value': '2079'})
DMSAttrConstraint({'name': 'instrument', 'sources': ['instrume'], 'value': 'niriss'})
DMSAttrConstraint({'name': 'opt_elem', 'sources': ['filter'], 'value': 'clear'})
DMSAttrConstraint({'name': 'opt_elem2', 'sources': ['pupil'], 'value': 'f200w'})
DMSAttrConstraint({'name': 'opt_elem3', 'sources': ['fxd_slit'], 'value': None})
DMSAttrConstraint({'name': 'subarray', 'sources': ['subarray'], 'value': 'full'})
Constraint_Target({'name': 'target', 'sources': ['targetid'], 'value': '1'})
Constraint_Image({'name': 'exp_type', 'sources': ['exp_type'], 'value': 'nis_image'})
DMSAttrConstraint({'name': 'wfsvisit', 'sources': ['visitype'], 'value': 'prime_targeted_fixed'})
DMSAttrConstraint({'name': 'bkgdtarg', 'sources': ['bkgdtarg'], 'value': None})
Constraint_Obsnum({'name': 'obs_num', 'sources': ['obs_num'], 'value': None})
Constraint_TargetAcq({'name': 'target_acq', 'value': 'target_acquisition'})
DMSAttrConstraint({'name': 'acq_obsnum', 'sources': ['obs_num'], 'value': <function AsnMixin_Science.__init__.<locals>.<lambda> at 0x2ac2c6afc550>})
DMSAttrConstraint({'name': 'asn_candidate', 'sources': ['asn_candidate'], 'value': "\\('o004',\\ 'observation'\\)"})
asn_id : o004
target : t001
asn_pool : jw02079_20231119t124442_pool.csv
products : [{'name': 'jw02079-o004_t001_niriss_clear-f200w', 'members': [{'expname': 'jw02079004003_02101_00001_nis_cal.fits', 'exptype': 'science', 'exposerr': 'null', 'asn_candidate': "[('o004', 'observation')]"}, {'expname': 'jw02079004003_04101_00001_nis_cal.fits', 'exptype': 'science', 'exposerr': 'null', 'asn_candidate': "[('o004', 'observation')]"}, {'expname': 'jw02079004003_04101_00002_nis_cal.fits', 'exptype': 'science', 'exposerr': 'null', 'asn_candidate': "[('o004', 'observation')]"}, {'expname': 'jw02079004003_04101_00003_nis_cal.fits', 'exptype': 'science', 'exposerr': 'null', 'asn_candidate': "[('o004', 'observation')]"}, {'expname': 'jw02079004003_04101_00004_nis_cal.fits', 'exptype': 'science', 'exposerr': 'null', 'asn_candidate': "[('o004', 'observation')]"}, {'expname': 'jw02079004003_06101_00001_nis_cal.fits', 'exptype': 'science', 'exposerr': 'null', 'asn_candidate': "[('o004', 'observation')]"}, {'expname': 'jw02079004003_06101_00002_nis_cal.fits', 'exptype': 'science', 'exposerr': 'null', 'asn_candidate': "[('o004', 'observation')]"}, {'expname': 'jw02079004003_06101_00003_nis_cal.fits', 'exptype': 'science', 'exposerr': 'null', 'asn_candidate': "[('o004', 'observation')]"}]}]
# in particular, take a closer look at the product filenames with the association file:
for product in image3_asn_data['products']:
for key, value in product.items():
if key == 'members':
print(f"{key}:")
for member in value:
print(f" {member['expname']} {member['exptype']}")
else:
print(f"{key}: {value}")
name: jw02079-o004_t001_niriss_clear-f200w
members:
jw02079004003_02101_00001_nis_cal.fits science
jw02079004003_04101_00001_nis_cal.fits science
jw02079004003_04101_00002_nis_cal.fits science
jw02079004003_04101_00003_nis_cal.fits science
jw02079004003_04101_00004_nis_cal.fits science
jw02079004003_06101_00001_nis_cal.fits science
jw02079004003_06101_00002_nis_cal.fits science
jw02079004003_06101_00003_nis_cal.fits science
Run image3#
In Image3, the cal.fits
individual pointing files will be calibrated into a single combined i2d.fits
image. The Image3 step is also where the final source catalog is created, so we can change some input paramters to obtain a more refined output source catalog. This is done below in the Custom Imaging Pipeline Run section. However, we will first calibrate the data with the default parameters. More information about the steps performed in the Image3 part of the pipeline can be found in the Image3 pipeline documentation.
Note: Image3 can take a while to run
for img3_asn in image3_asns:
# check if the calibrated file already exists
asn_data = json.load(open(img3_asn))
cal_file = os.path.join(default_run_image3, f"{asn_data['products'][0]['name']}_i2d.fits")
if os.path.exists(cal_file):
print(cal_file, 'cal file already exists.')
continue
# if not, calibrated with image3
img3 = Image3Pipeline.call(img3_asn, save_results=True, output_dir=default_run_image3)
2025-01-10 19:31:05,367 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0075.asdf 1.7 K bytes (1 / 1 files) (0 / 1.7 K bytes)
2025-01-10 19:31:05,461 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0075.asdf
2025-01-10 19:31:05,473 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0002.asdf 5.3 K bytes (1 / 1 files) (0 / 5.3 K bytes)
2025-01-10 19:31:05,557 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0002.asdf
2025-01-10 19:31:05,572 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:31:05,581 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0002.asdf 1.3 K bytes (1 / 1 files) (0 / 1.3 K bytes)
2025-01-10 19:31:05,676 - stpipe - INFO - PARS-SOURCECATALOGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0002.asdf
2025-01-10 19:31:05,692 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created.
2025-01-10 19:31:05,693 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created.
2025-01-10 19:31:05,696 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created.
2025-01-10 19:31:05,697 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created.
2025-01-10 19:31:05,698 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2025-01-10 19:31:05,700 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:31:05,701 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created.
2025-01-10 19:31:05,868 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('jw02079-o004_20231119t124442_image3_00002_asn.json',).
2025-01-10 19:31:05,881 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: default_image3_calibrated
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
in_memory: True
steps:
assign_mtwcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: True
output_use_index: True
save_results: False
skip: False
suffix: assign_mtwcs
search_output_file: True
input_dir: ''
tweakreg:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: True
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_catalogs: False
use_custom_catalogs: False
catalog_format: ecsv
catfile: ''
starfinder: iraf
snr_threshold: 10
bkg_boxsize: 400
kernel_fwhm: 2.0
minsep_fwhm: 0.0
sigma_radius: 1.5
sharplo: 0.5
sharphi: 3.0
roundlo: 0.0
roundhi: 0.2
brightest: 100
peakmax: None
npixels: 10
connectivity: '8'
nlevels: 32
contrast: 0.001
multithresh_mode: exponential
localbkg_width: 0
apermask_method: correct
kron_params: None
enforce_user_order: False
expand_refcat: False
minobj: 10
fitgeometry: rshift
nclip: 3
sigma: 3.0
searchrad: 1.0
use2dhist: True
separation: 1.5
tolerance: 1.0
xoffset: 0.0
yoffset: 0.0
abs_refcat: GAIADR3
save_abs_catalog: False
abs_minobj: 15
abs_fitgeometry: rshift
abs_nclip: 3
abs_sigma: 3.0
abs_searchrad: 6.0
abs_use2dhist: True
abs_separation: 1.0
abs_tolerance: 0.7
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
in_memory: True
skymatch:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
skymethod: match
match_down: True
subtract: False
stepsize: None
skystat: mode
dqbits: ~DO_NOT_USE+NON_SCIENCE
lower: None
upper: None
nclip: 5
lsigma: 4.0
usigma: 4.0
binwidth: 0.1
in_memory: True
outlier_detection:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: False
input_dir: ''
weight_type: ivm
pixfrac: 1.0
kernel: square
fillval: NAN
maskpt: 0.7
snr: 5.0 4.0
scale: 2.1 0.7
backg: 0.0
kernel_size: 7 7
threshold_percent: 99.8
rolling_window_width: 25
ifu_second_check: False
save_intermediate_results: False
resample_data: True
good_bits: ~DO_NOT_USE
in_memory: False
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
source_catalog:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: cat
search_output_file: True
input_dir: ''
bkg_boxsize: 100
kernel_fwhm: 3.0
snr_threshold: 3.0
npixels: 5
deblend: False
aperture_ee1: 50
aperture_ee2: 70
aperture_ee3: 80
ci1_star_threshold: 1.4
ci2_star_threshold: 1.275
2025-01-10 19:31:06,004 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004003_02101_00001_nis_cal.fits' reftypes = ['abvegaoffset', 'apcorr']
2025-01-10 19:31:06,007 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf 2.1 K bytes (1 / 2 files) (0 / 16.5 K bytes)
2025-01-10 19:31:06,085 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits 14.4 K bytes (2 / 2 files) (2.1 K / 16.5 K bytes)
2025-01-10 19:31:06,182 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2025-01-10 19:31:06,183 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2025-01-10 19:31:06,184 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ...
2025-01-10 19:31:06,562 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f298a84fed0>,).
2025-01-10 19:31:07,932 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 85 sources in jw02079004003_02101_00001_nis_cal.fits.
2025-01-10 19:31:09,457 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_04101_00001_nis_cal.fits.
2025-01-10 19:31:10,993 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_04101_00002_nis_cal.fits.
2025-01-10 19:31:12,521 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 93 sources in jw02079004003_04101_00003_nis_cal.fits.
2025-01-10 19:31:14,053 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 93 sources in jw02079004003_04101_00004_nis_cal.fits.
2025-01-10 19:31:15,596 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 95 sources in jw02079004003_06101_00001_nis_cal.fits.
2025-01-10 19:31:17,154 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_06101_00002_nis_cal.fits.
2025-01-10 19:31:18,738 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 82 sources in jw02079004003_06101_00003_nis_cal.fits.
2025-01-10 19:31:18,763 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:31:18,763 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 8.
2025-01-10 19:31:18,764 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:31:18,764 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2025-01-10 19:31:18.764001
2025-01-10 19:31:18,765 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.8.9
2025-01-10 19:31:18,765 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:31:25,069 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw02079004003_06101_2' as reference image
2025-01-10 19:31:25,075 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_06101_3' to the reference catalog.
2025-01-10 19:31:25,148 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_06101_00003_nis_cal' catalog with sources from the reference 'jw02079004003_06101_00002_nis_cal' catalog.
2025-01-10 19:31:25,148 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:31:25,150 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04899, 0.0503 (arcsec) with significance of 49 and 50 matches.
2025-01-10 19:31:25,151 - stpipe.Image3Pipeline.tweakreg - INFO - Found 52 matches for 'GROUP ID: jw02079004003_06101_3'...
2025-01-10 19:31:25,151 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:31:25,154 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_06101_3:
2025-01-10 19:31:25,155 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00796506 YSH: 0.0110801 ROT: -0.016404 SCALE: 1
2025-01-10 19:31:25,155 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:31:25,156 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.11522 FIT MAE: 0.0477753
2025-01-10 19:31:25,156 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 50 objects.
2025-01-10 19:31:25,200 - stpipe.Image3Pipeline.tweakreg - INFO - Added 30 unmatched sources from 'GROUP ID: jw02079004003_06101_3' to the reference catalog.
2025-01-10 19:31:26,398 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_4' to the reference catalog.
2025-01-10 19:31:26,472 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00004_nis_cal' catalog with sources from the reference 'jw02079004003_06101_00003_nis_cal' catalog.
2025-01-10 19:31:26,473 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:31:26,474 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04899, 0.04899 (arcsec) with significance of 60.25 and 66 matches.
2025-01-10 19:31:26,476 - stpipe.Image3Pipeline.tweakreg - INFO - Found 63 matches for 'GROUP ID: jw02079004003_04101_4'...
2025-01-10 19:31:26,476 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:31:26,478 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_04101_4:
2025-01-10 19:31:26,479 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00402391 YSH: 0.00440909 ROT: -0.00357655 SCALE: 1
2025-01-10 19:31:26,480 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:31:26,480 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00979742 FIT MAE: 0.00853531
2025-01-10 19:31:26,481 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 60 objects.
2025-01-10 19:31:26,710 - stpipe.Image3Pipeline.tweakreg - INFO - Added 30 unmatched sources from 'GROUP ID: jw02079004003_04101_4' to the reference catalog.
2025-01-10 19:31:27,727 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_06101_1' to the reference catalog.
2025-01-10 19:31:27,801 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_06101_00001_nis_cal' catalog with sources from the reference 'jw02079004003_04101_00004_nis_cal' catalog.
2025-01-10 19:31:27,801 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:31:27,803 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04899, 0.04899 (arcsec) with significance of 75 and 75 matches.
2025-01-10 19:31:27,804 - stpipe.Image3Pipeline.tweakreg - INFO - Found 71 matches for 'GROUP ID: jw02079004003_06101_1'...
2025-01-10 19:31:27,805 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:31:27,807 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_06101_1:
2025-01-10 19:31:27,808 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00170246 YSH: 0.00437541 ROT: -0.00544343 SCALE: 1
2025-01-10 19:31:27,808 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:31:27,809 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0105426 FIT MAE: 0.00905846
2025-01-10 19:31:27,809 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 69 objects.
2025-01-10 19:31:27,854 - stpipe.Image3Pipeline.tweakreg - INFO - Added 24 unmatched sources from 'GROUP ID: jw02079004003_06101_1' to the reference catalog.
2025-01-10 19:31:28,761 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_2' to the reference catalog.
2025-01-10 19:31:28,836 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00002_nis_cal' catalog with sources from the reference 'jw02079004003_06101_00001_nis_cal' catalog.
2025-01-10 19:31:28,837 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:31:28,838 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.0498, 0.0498 (arcsec) with significance of 63.02 and 81 matches.
2025-01-10 19:31:28,839 - stpipe.Image3Pipeline.tweakreg - INFO - Found 72 matches for 'GROUP ID: jw02079004003_04101_2'...
2025-01-10 19:31:28,840 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:31:28,843 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_04101_2:
2025-01-10 19:31:28,843 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00442027 YSH: 0.00498962 ROT: -0.00514575 SCALE: 1
2025-01-10 19:31:28,844 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:31:28,844 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0125101 FIT MAE: 0.00994778
2025-01-10 19:31:28,845 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 70 objects.
2025-01-10 19:31:28,894 - stpipe.Image3Pipeline.tweakreg - INFO - Added 28 unmatched sources from 'GROUP ID: jw02079004003_04101_2' to the reference catalog.
2025-01-10 19:31:29,745 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_1' to the reference catalog.
2025-01-10 19:31:29,820 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00001_nis_cal' catalog with sources from the reference 'jw02079004003_04101_00002_nis_cal' catalog.
2025-01-10 19:31:29,821 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:31:29,822 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04974, 0.04974 (arcsec) with significance of 84.26 and 88 matches.
2025-01-10 19:31:29,823 - stpipe.Image3Pipeline.tweakreg - INFO - Found 77 matches for 'GROUP ID: jw02079004003_04101_1'...
2025-01-10 19:31:29,824 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:31:29,827 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_04101_1:
2025-01-10 19:31:29,827 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00783874 YSH: 0.0116018 ROT: -0.00359516 SCALE: 1
2025-01-10 19:31:29,828 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:31:29,828 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0508054 FIT MAE: 0.0204314
2025-01-10 19:31:29,828 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 74 objects.
2025-01-10 19:31:29,878 - stpipe.Image3Pipeline.tweakreg - INFO - Added 23 unmatched sources from 'GROUP ID: jw02079004003_04101_1' to the reference catalog.
2025-01-10 19:31:30,397 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_02101_1' to the reference catalog.
2025-01-10 19:31:30,471 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_02101_00001_nis_cal' catalog with sources from the reference 'jw02079004003_04101_00001_nis_cal' catalog.
2025-01-10 19:31:30,471 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:31:30,473 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04275, 0.05289 (arcsec) with significance of 69.17 and 84 matches.
2025-01-10 19:31:30,474 - stpipe.Image3Pipeline.tweakreg - INFO - Found 69 matches for 'GROUP ID: jw02079004003_02101_1'...
2025-01-10 19:31:30,475 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:31:30,477 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_02101_1:
2025-01-10 19:31:30,478 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.000186892 YSH: 0.0135335 ROT: 0.00485621 SCALE: 1
2025-01-10 19:31:30,479 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:31:30,479 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0429246 FIT MAE: 0.017846
2025-01-10 19:31:30,480 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 66 objects.
2025-01-10 19:31:30,524 - stpipe.Image3Pipeline.tweakreg - INFO - Added 16 unmatched sources from 'GROUP ID: jw02079004003_02101_1' to the reference catalog.
2025-01-10 19:31:30,797 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_3' to the reference catalog.
2025-01-10 19:31:30,870 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00003_nis_cal' catalog with sources from the reference 'jw02079004003_02101_00001_nis_cal' catalog.
2025-01-10 19:31:30,871 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:31:30,872 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04899, 0.04816 (arcsec) with significance of 65.75 and 79 matches.
2025-01-10 19:31:30,873 - stpipe.Image3Pipeline.tweakreg - INFO - Found 69 matches for 'GROUP ID: jw02079004003_04101_3'...
2025-01-10 19:31:30,874 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:31:30,877 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_04101_3:
2025-01-10 19:31:30,877 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -8.40877e-05 YSH: 0.0105748 ROT: 0.00154347 SCALE: 1
2025-01-10 19:31:30,877 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:31:30,878 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0746194 FIT MAE: 0.0273967
2025-01-10 19:31:30,879 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 66 objects.
2025-01-10 19:31:30,923 - stpipe.Image3Pipeline.tweakreg - INFO - Added 24 unmatched sources from 'GROUP ID: jw02079004003_04101_3' to the reference catalog.
2025-01-10 19:31:30,924 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:31:30,924 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2025-01-10 19:31:30.924118
2025-01-10 19:31:30,925 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:12.160117
2025-01-10 19:31:30,925 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:31:31,380 - stpipe.Image3Pipeline.tweakreg - WARNING - Not enough sources (7) in the reference catalog for the single-group alignment step to perform a fit. Skipping alignment to the input reference catalog!
2025-01-10 19:31:31,387 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done
2025-01-10 19:31:31,594 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f298a84fed0>,).
2025-01-10 19:31:31,754 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:31:31,754 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2025-01-10 19:31:31.754133
2025-01-10 19:31:31,755 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:31:31,755 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'match'
2025-01-10 19:31:31,755 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN
2025-01-10 19:31:31,756 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF
2025-01-10 19:31:31,757 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:31:31,758 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions.
2025-01-10 19:31:52,537 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_02101_00001_nis_cal.fits. Sky background: 0.0040431
2025-01-10 19:31:52,537 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00001_nis_cal.fits. Sky background: 0.00692684
2025-01-10 19:31:52,538 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00002_nis_cal.fits. Sky background: 0.00250132
2025-01-10 19:31:52,538 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00003_nis_cal.fits. Sky background: 0.010745
2025-01-10 19:31:52,539 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00004_nis_cal.fits. Sky background: 0.00900353
2025-01-10 19:31:52,539 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_06101_00001_nis_cal.fits. Sky background: 0.00891212
2025-01-10 19:31:52,539 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_06101_00002_nis_cal.fits. Sky background: 0
2025-01-10 19:31:52,540 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_06101_00003_nis_cal.fits. Sky background: 0.00679506
2025-01-10 19:31:52,540 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:31:52,541 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2025-01-10 19:31:52.540874
2025-01-10 19:31:52,541 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:20.786741
2025-01-10 19:31:52,541 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:31:52,564 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done
2025-01-10 19:31:52,750 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f298a84fed0>,).
2025-01-10 19:31:52,751 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection mode: imaging
2025-01-10 19:31:52,752 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection asn_id: o004
2025-01-10 19:31:52,753 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter kernel: square
2025-01-10 19:31:52,753 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter pixfrac: 1.0
2025-01-10 19:31:52,754 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter fillval: NAN
2025-01-10 19:31:52,754 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter weight_type: ivm
2025-01-10 19:31:52,755 - stpipe.Image3Pipeline.outlier_detection - INFO - Output pixel scale ratio: 1.0
2025-01-10 19:31:52,796 - stpipe.Image3Pipeline.outlier_detection - INFO - Computed output pixel scale: 0.06556229340666292 arcsec.
2025-01-10 19:31:52,797 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:31:56,999 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:32:00,558 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:32:03,945 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:32:07,254 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:32:10,722 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:32:14,030 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:32:17,324 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:32:24,528 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:32:24,762 - stpipe.Image3Pipeline.outlier_detection - INFO - 3768 pixels marked as outliers
2025-01-10 19:32:26,899 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:32:27,133 - stpipe.Image3Pipeline.outlier_detection - INFO - 4524 pixels marked as outliers
2025-01-10 19:32:29,244 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:32:29,483 - stpipe.Image3Pipeline.outlier_detection - INFO - 4133 pixels marked as outliers
2025-01-10 19:32:31,588 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:32:31,823 - stpipe.Image3Pipeline.outlier_detection - INFO - 3555 pixels marked as outliers
2025-01-10 19:32:33,964 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:32:34,212 - stpipe.Image3Pipeline.outlier_detection - INFO - 3755 pixels marked as outliers
2025-01-10 19:32:36,330 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:32:36,568 - stpipe.Image3Pipeline.outlier_detection - INFO - 4099 pixels marked as outliers
2025-01-10 19:32:38,676 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:32:38,907 - stpipe.Image3Pipeline.outlier_detection - INFO - 4429 pixels marked as outliers
2025-01-10 19:32:41,005 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:32:41,238 - stpipe.Image3Pipeline.outlier_detection - INFO - 3905 pixels marked as outliers
2025-01-10 19:32:41,490 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_02101_00001_nis_o004_crf.fits
2025-01-10 19:32:41,701 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_04101_00001_nis_o004_crf.fits
2025-01-10 19:32:41,910 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_04101_00002_nis_o004_crf.fits
2025-01-10 19:32:42,119 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_04101_00003_nis_o004_crf.fits
2025-01-10 19:32:42,327 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_04101_00004_nis_o004_crf.fits
2025-01-10 19:32:42,536 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_06101_00001_nis_o004_crf.fits
2025-01-10 19:32:42,745 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_06101_00002_nis_o004_crf.fits
2025-01-10 19:32:42,953 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_06101_00003_nis_o004_crf.fits
2025-01-10 19:32:42,954 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done
2025-01-10 19:32:43,125 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f298a84fed0>,).
2025-01-10 19:32:43,387 - stpipe.Image3Pipeline.resample - INFO - Driz parameter kernel: square
2025-01-10 19:32:43,388 - stpipe.Image3Pipeline.resample - INFO - Driz parameter pixfrac: 1.0
2025-01-10 19:32:43,389 - stpipe.Image3Pipeline.resample - INFO - Driz parameter fillval: NAN
2025-01-10 19:32:43,389 - stpipe.Image3Pipeline.resample - INFO - Driz parameter weight_type: ivm
2025-01-10 19:32:43,390 - stpipe.Image3Pipeline.resample - INFO - Output pixel scale ratio: 1.0
2025-01-10 19:32:43,426 - stpipe.Image3Pipeline.resample - INFO - Computed output pixel scale: 0.06556229340666292 arcsec.
2025-01-10 19:32:43,437 - stpipe.Image3Pipeline.resample - INFO - Resampling science and variance data
2025-01-10 19:32:46,351 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:32:47,240 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:32:48,114 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:32:51,847 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:32:52,727 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:32:53,589 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:32:57,332 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:32:58,214 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:32:59,084 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:02,801 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:03,684 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:04,557 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:08,285 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:09,180 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:10,051 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:13,805 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:14,733 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:15,618 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:19,387 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:20,276 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:21,143 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:24,874 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:25,758 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:26,628 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:33:27,773 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.145923829 -27.810578145 53.189333211 -27.797024897 53.174240939 -27.759208259 53.130844773 -27.772756794
2025-01-10 19:33:28,129 - stpipe.Image3Pipeline.resample - INFO - Saved model in default_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_i2d.fits
2025-01-10 19:33:28,129 - stpipe.Image3Pipeline.resample - INFO - Step resample done
2025-01-10 19:33:28,308 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2236, 2202) from jw02079-o004_t001_niriss_clear-f200w_i2d.fits>,).
2025-01-10 19:33:28,321 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file: crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2025-01-10 19:33:28,328 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file: crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2025-01-10 19:33:28,329 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRISS
2025-01-10 19:33:28,329 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NIS
2025-01-10 19:33:28,330 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: CLEAR
2025-01-10 19:33:28,331 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: F200W
2025-01-10 19:33:28,331 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL
2025-01-10 19:33:28,375 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 1.68884
2025-01-10 19:33:31,733 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 1512 sources
2025-01-10 19:33:32,645 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: default_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_cat.ecsv
2025-01-10 19:33:32,765 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in default_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_segm.fits
2025-01-10 19:33:32,766 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw02079-o004_t001_niriss_clear-f200w_segm.fits
2025-01-10 19:33:32,767 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done
2025-01-10 19:33:32,779 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done
2025-01-10 19:33:32,779 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:33:32,892 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0079.asdf 1.7 K bytes (1 / 1 files) (0 / 1.7 K bytes)
2025-01-10 19:33:32,986 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0079.asdf
2025-01-10 19:33:32,998 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0010.asdf 5.3 K bytes (1 / 1 files) (0 / 5.3 K bytes)
2025-01-10 19:33:33,088 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0010.asdf
2025-01-10 19:33:33,103 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:33:33,112 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0011.asdf 1.3 K bytes (1 / 1 files) (0 / 1.3 K bytes)
2025-01-10 19:33:33,202 - stpipe - INFO - PARS-SOURCECATALOGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0011.asdf
2025-01-10 19:33:33,218 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created.
2025-01-10 19:33:33,219 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created.
2025-01-10 19:33:33,221 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created.
2025-01-10 19:33:33,222 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created.
2025-01-10 19:33:33,224 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2025-01-10 19:33:33,225 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:33:33,227 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created.
2025-01-10 19:33:33,390 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('jw02079-o004_20231119t124442_image3_00005_asn.json',).
2025-01-10 19:33:33,404 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: default_image3_calibrated
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
in_memory: True
steps:
assign_mtwcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: True
output_use_index: True
save_results: False
skip: False
suffix: assign_mtwcs
search_output_file: True
input_dir: ''
tweakreg:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: True
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_catalogs: False
use_custom_catalogs: False
catalog_format: ecsv
catfile: ''
starfinder: iraf
snr_threshold: 10
bkg_boxsize: 400
kernel_fwhm: 2.0
minsep_fwhm: 0.0
sigma_radius: 1.5
sharplo: 0.5
sharphi: 3.0
roundlo: 0.0
roundhi: 0.2
brightest: 100
peakmax: None
npixels: 10
connectivity: '8'
nlevels: 32
contrast: 0.001
multithresh_mode: exponential
localbkg_width: 0
apermask_method: correct
kron_params: None
enforce_user_order: False
expand_refcat: False
minobj: 10
fitgeometry: rshift
nclip: 3
sigma: 3.0
searchrad: 1.0
use2dhist: True
separation: 1.5
tolerance: 1.0
xoffset: 0.0
yoffset: 0.0
abs_refcat: GAIADR3
save_abs_catalog: False
abs_minobj: 15
abs_fitgeometry: rshift
abs_nclip: 3
abs_sigma: 3.0
abs_searchrad: 6.0
abs_use2dhist: True
abs_separation: 1.0
abs_tolerance: 0.7
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
in_memory: True
skymatch:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
skymethod: match
match_down: True
subtract: False
stepsize: None
skystat: mode
dqbits: ~DO_NOT_USE+NON_SCIENCE
lower: None
upper: None
nclip: 5
lsigma: 4.0
usigma: 4.0
binwidth: 0.1
in_memory: True
outlier_detection:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: False
input_dir: ''
weight_type: ivm
pixfrac: 1.0
kernel: square
fillval: NAN
maskpt: 0.7
snr: 5.0 4.0
scale: 2.1 0.7
backg: 0.0
kernel_size: 7 7
threshold_percent: 99.8
rolling_window_width: 25
ifu_second_check: False
save_intermediate_results: False
resample_data: True
good_bits: ~DO_NOT_USE
in_memory: False
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
source_catalog:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: cat
search_output_file: True
input_dir: ''
bkg_boxsize: 100
kernel_fwhm: 3.0
snr_threshold: 3.0
npixels: 5
deblend: False
aperture_ee1: 50
aperture_ee2: 70
aperture_ee3: 80
ci1_star_threshold: 1.4
ci2_star_threshold: 1.4
2025-01-10 19:33:33,528 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_08101_00001_nis_cal.fits' reftypes = ['abvegaoffset', 'apcorr']
2025-01-10 19:33:33,531 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2025-01-10 19:33:33,532 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2025-01-10 19:33:33,532 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ...
2025-01-10 19:33:33,910 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f298b226710>,).
2025-01-10 19:33:35,267 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 83 sources in jw02079004002_08101_00001_nis_cal.fits.
2025-01-10 19:33:36,766 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 69 sources in jw02079004002_10101_00001_nis_cal.fits.
2025-01-10 19:33:38,272 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 58 sources in jw02079004002_10101_00002_nis_cal.fits.
2025-01-10 19:33:39,767 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 64 sources in jw02079004002_10101_00003_nis_cal.fits.
2025-01-10 19:33:41,271 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 63 sources in jw02079004002_10101_00004_nis_cal.fits.
2025-01-10 19:33:42,771 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 74 sources in jw02079004002_12101_00001_nis_cal.fits.
2025-01-10 19:33:44,306 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 49 sources in jw02079004002_12101_00002_nis_cal.fits.
2025-01-10 19:33:45,811 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 73 sources in jw02079004002_12101_00003_nis_cal.fits.
2025-01-10 19:33:45,835 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:33:45,835 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 8.
2025-01-10 19:33:45,836 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:33:45,836 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2025-01-10 19:33:45.836251
2025-01-10 19:33:45,837 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.8.9
2025-01-10 19:33:45,837 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:33:49,821 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw02079004002_12101_1' as reference image
2025-01-10 19:33:49,826 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_12101_3' to the reference catalog.
2025-01-10 19:33:49,898 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_12101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_12101_00001_nis_cal' catalog.
2025-01-10 19:33:49,899 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:33:49,900 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04903, 0.04903 (arcsec) with significance of 38 and 38 matches.
2025-01-10 19:33:49,902 - stpipe.Image3Pipeline.tweakreg - INFO - Found 37 matches for 'GROUP ID: jw02079004002_12101_3'...
2025-01-10 19:33:49,902 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:33:49,905 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_12101_3:
2025-01-10 19:33:49,905 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00115135 YSH: -0.00254776 ROT: -0.00246521 SCALE: 1
2025-01-10 19:33:49,905 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:33:49,906 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00782486 FIT MAE: 0.00713275
2025-01-10 19:33:49,906 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 36 objects.
2025-01-10 19:33:49,957 - stpipe.Image3Pipeline.tweakreg - INFO - Added 36 unmatched sources from 'GROUP ID: jw02079004002_12101_3' to the reference catalog.
2025-01-10 19:33:50,751 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_3' to the reference catalog.
2025-01-10 19:33:50,823 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_12101_00003_nis_cal' catalog.
2025-01-10 19:33:50,823 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:33:50,825 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04903, 0.04903 (arcsec) with significance of 37.24 and 43 matches.
2025-01-10 19:33:50,826 - stpipe.Image3Pipeline.tweakreg - INFO - Found 43 matches for 'GROUP ID: jw02079004002_10101_3'...
2025-01-10 19:33:50,827 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:33:50,829 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_10101_3:
2025-01-10 19:33:50,829 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0017861 YSH: -0.00471025 ROT: -0.000673794 SCALE: 1
2025-01-10 19:33:50,830 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:33:50,830 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00950807 FIT MAE: 0.00829637
2025-01-10 19:33:50,830 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 42 objects.
2025-01-10 19:33:51,074 - stpipe.Image3Pipeline.tweakreg - INFO - Added 21 unmatched sources from 'GROUP ID: jw02079004002_10101_3' to the reference catalog.
2025-01-10 19:33:51,771 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_1' to the reference catalog.
2025-01-10 19:33:51,846 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00003_nis_cal' catalog.
2025-01-10 19:33:51,847 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:33:51,848 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04903, 0.04903 (arcsec) with significance of 53 and 53 matches.
2025-01-10 19:33:51,849 - stpipe.Image3Pipeline.tweakreg - INFO - Found 51 matches for 'GROUP ID: jw02079004002_10101_1'...
2025-01-10 19:33:51,850 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:33:51,852 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_10101_1:
2025-01-10 19:33:51,853 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00205547 YSH: -0.00386753 ROT: -0.00155582 SCALE: 1
2025-01-10 19:33:51,853 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:33:51,854 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0104126 FIT MAE: 0.0091318
2025-01-10 19:33:51,854 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 50 objects.
2025-01-10 19:33:51,899 - stpipe.Image3Pipeline.tweakreg - INFO - Added 18 unmatched sources from 'GROUP ID: jw02079004002_10101_1' to the reference catalog.
2025-01-10 19:33:52,463 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_08101_1' to the reference catalog.
2025-01-10 19:33:52,536 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_08101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00001_nis_cal' catalog.
2025-01-10 19:33:52,537 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:33:52,538 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04805, 0.04707 (arcsec) with significance of 66 and 67 matches.
2025-01-10 19:33:52,539 - stpipe.Image3Pipeline.tweakreg - INFO - Found 64 matches for 'GROUP ID: jw02079004002_08101_1'...
2025-01-10 19:33:52,540 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:33:52,542 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_08101_1:
2025-01-10 19:33:52,542 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.000631248 YSH: -0.00317114 ROT: -0.000216359 SCALE: 1
2025-01-10 19:33:52,543 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:33:52,543 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00775909 FIT MAE: 0.00634956
2025-01-10 19:33:52,544 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 61 objects.
2025-01-10 19:33:52,589 - stpipe.Image3Pipeline.tweakreg - INFO - Added 19 unmatched sources from 'GROUP ID: jw02079004002_08101_1' to the reference catalog.
2025-01-10 19:33:53,000 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_2' to the reference catalog.
2025-01-10 19:33:53,074 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_08101_00001_nis_cal' catalog.
2025-01-10 19:33:53,074 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:33:53,076 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04903, 0.04903 (arcsec) with significance of 49.99 and 54 matches.
2025-01-10 19:33:53,077 - stpipe.Image3Pipeline.tweakreg - INFO - Found 47 matches for 'GROUP ID: jw02079004002_10101_2'...
2025-01-10 19:33:53,077 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:33:53,080 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_10101_2:
2025-01-10 19:33:53,080 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.000265953 YSH: -0.004672 ROT: 0.000302104 SCALE: 1
2025-01-10 19:33:53,080 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:33:53,081 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00796852 FIT MAE: 0.00657852
2025-01-10 19:33:53,081 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 47 objects.
2025-01-10 19:33:53,130 - stpipe.Image3Pipeline.tweakreg - INFO - Added 11 unmatched sources from 'GROUP ID: jw02079004002_10101_2' to the reference catalog.
2025-01-10 19:33:53,417 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_4' to the reference catalog.
2025-01-10 19:33:53,491 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00004_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00002_nis_cal' catalog.
2025-01-10 19:33:53,492 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:33:53,493 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.0479, 0.04677 (arcsec) with significance of 52.03 and 58 matches.
2025-01-10 19:33:53,494 - stpipe.Image3Pipeline.tweakreg - INFO - Found 54 matches for 'GROUP ID: jw02079004002_10101_4'...
2025-01-10 19:33:53,495 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:33:53,498 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_10101_4:
2025-01-10 19:33:53,498 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00412373 YSH: -0.00056986 ROT: -0.00642473 SCALE: 1
2025-01-10 19:33:53,499 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:33:53,499 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0206492 FIT MAE: 0.0118227
2025-01-10 19:33:53,500 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 52 objects.
2025-01-10 19:33:53,544 - stpipe.Image3Pipeline.tweakreg - INFO - Added 9 unmatched sources from 'GROUP ID: jw02079004002_10101_4' to the reference catalog.
2025-01-10 19:33:53,653 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_12101_2' to the reference catalog.
2025-01-10 19:33:53,727 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_12101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00004_nis_cal' catalog.
2025-01-10 19:33:53,727 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:33:53,729 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04903, 0.04903 (arcsec) with significance of 48.64 and 52 matches.
2025-01-10 19:33:53,730 - stpipe.Image3Pipeline.tweakreg - INFO - Found 45 matches for 'GROUP ID: jw02079004002_12101_2'...
2025-01-10 19:33:53,731 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:33:53,733 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_12101_2:
2025-01-10 19:33:53,733 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.000397119 YSH: -0.00259303 ROT: 0.000100691 SCALE: 1
2025-01-10 19:33:53,734 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:33:53,734 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00833289 FIT MAE: 0.00746875
2025-01-10 19:33:53,735 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 44 objects.
2025-01-10 19:33:53,786 - stpipe.Image3Pipeline.tweakreg - INFO - Added 4 unmatched sources from 'GROUP ID: jw02079004002_12101_2' to the reference catalog.
2025-01-10 19:33:53,787 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:33:53,788 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2025-01-10 19:33:53.787234
2025-01-10 19:33:53,789 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:07.950983
2025-01-10 19:33:53,789 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:33:54,147 - stpipe.Image3Pipeline.tweakreg - WARNING - Not enough sources (7) in the reference catalog for the single-group alignment step to perform a fit. Skipping alignment to the input reference catalog!
2025-01-10 19:33:54,155 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done
2025-01-10 19:33:54,384 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f298b226710>,).
2025-01-10 19:33:54,542 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:33:54,543 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2025-01-10 19:33:54.542524
2025-01-10 19:33:54,543 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:33:54,544 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'match'
2025-01-10 19:33:54,544 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN
2025-01-10 19:33:54,544 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF
2025-01-10 19:33:54,545 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:33:54,545 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions.
2025-01-10 19:34:16,084 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_08101_00001_nis_cal.fits. Sky background: 0.00700159
2025-01-10 19:34:16,084 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00001_nis_cal.fits. Sky background: 0
2025-01-10 19:34:16,085 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00002_nis_cal.fits. Sky background: 0.00714181
2025-01-10 19:34:16,085 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00003_nis_cal.fits. Sky background: 0.0089941
2025-01-10 19:34:16,086 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00004_nis_cal.fits. Sky background: 0.0122065
2025-01-10 19:34:16,086 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_12101_00001_nis_cal.fits. Sky background: 0.0119722
2025-01-10 19:34:16,086 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_12101_00002_nis_cal.fits. Sky background: 0.00979612
2025-01-10 19:34:16,087 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_12101_00003_nis_cal.fits. Sky background: 0.00915926
2025-01-10 19:34:16,088 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:34:16,088 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2025-01-10 19:34:16.087993
2025-01-10 19:34:16,088 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:21.545469
2025-01-10 19:34:16,089 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:34:16,109 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done
2025-01-10 19:34:16,315 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f298b226710>,).
2025-01-10 19:34:16,316 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection mode: imaging
2025-01-10 19:34:16,317 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection asn_id: o004
2025-01-10 19:34:16,317 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter kernel: square
2025-01-10 19:34:16,318 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter pixfrac: 1.0
2025-01-10 19:34:16,318 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter fillval: NAN
2025-01-10 19:34:16,318 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter weight_type: ivm
2025-01-10 19:34:16,319 - stpipe.Image3Pipeline.outlier_detection - INFO - Output pixel scale ratio: 1.0
2025-01-10 19:34:16,355 - stpipe.Image3Pipeline.outlier_detection - INFO - Computed output pixel scale: 0.0655645109798961 arcsec.
2025-01-10 19:34:16,358 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:34:19,579 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:34:22,751 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:34:25,931 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:34:29,101 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:34:32,301 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:34:35,499 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:34:38,733 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:34:45,735 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:34:45,970 - stpipe.Image3Pipeline.outlier_detection - INFO - 6141 pixels marked as outliers
2025-01-10 19:34:48,069 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:34:48,295 - stpipe.Image3Pipeline.outlier_detection - INFO - 6342 pixels marked as outliers
2025-01-10 19:34:50,380 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:34:50,609 - stpipe.Image3Pipeline.outlier_detection - INFO - 6469 pixels marked as outliers
2025-01-10 19:34:52,728 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:34:52,956 - stpipe.Image3Pipeline.outlier_detection - INFO - 6144 pixels marked as outliers
2025-01-10 19:34:55,067 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:34:55,294 - stpipe.Image3Pipeline.outlier_detection - INFO - 6451 pixels marked as outliers
2025-01-10 19:34:57,398 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:34:57,623 - stpipe.Image3Pipeline.outlier_detection - INFO - 6392 pixels marked as outliers
2025-01-10 19:34:59,710 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:34:59,941 - stpipe.Image3Pipeline.outlier_detection - INFO - 6206 pixels marked as outliers
2025-01-10 19:35:02,080 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:35:02,307 - stpipe.Image3Pipeline.outlier_detection - INFO - 6278 pixels marked as outliers
2025-01-10 19:35:02,559 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_08101_00001_nis_o004_crf.fits
2025-01-10 19:35:02,771 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_10101_00001_nis_o004_crf.fits
2025-01-10 19:35:02,984 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_10101_00002_nis_o004_crf.fits
2025-01-10 19:35:03,202 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_10101_00003_nis_o004_crf.fits
2025-01-10 19:35:03,414 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_10101_00004_nis_o004_crf.fits
2025-01-10 19:35:03,624 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_12101_00001_nis_o004_crf.fits
2025-01-10 19:35:03,836 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_12101_00002_nis_o004_crf.fits
2025-01-10 19:35:04,056 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_12101_00003_nis_o004_crf.fits
2025-01-10 19:35:04,057 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done
2025-01-10 19:35:04,255 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f298b226710>,).
2025-01-10 19:35:04,522 - stpipe.Image3Pipeline.resample - INFO - Driz parameter kernel: square
2025-01-10 19:35:04,522 - stpipe.Image3Pipeline.resample - INFO - Driz parameter pixfrac: 1.0
2025-01-10 19:35:04,523 - stpipe.Image3Pipeline.resample - INFO - Driz parameter fillval: NAN
2025-01-10 19:35:04,523 - stpipe.Image3Pipeline.resample - INFO - Driz parameter weight_type: ivm
2025-01-10 19:35:04,524 - stpipe.Image3Pipeline.resample - INFO - Output pixel scale ratio: 1.0
2025-01-10 19:35:04,560 - stpipe.Image3Pipeline.resample - INFO - Computed output pixel scale: 0.0655645109798961 arcsec.
2025-01-10 19:35:04,611 - stpipe.Image3Pipeline.resample - INFO - Resampling science and variance data
2025-01-10 19:35:08,487 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:09,373 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:10,245 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:14,054 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:14,931 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:15,785 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:19,508 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:20,383 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:21,241 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:24,998 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:25,877 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:26,734 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:30,491 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:31,386 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:32,244 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:35,987 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:36,884 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:37,741 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:41,478 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:42,370 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:43,232 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:46,997 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:47,896 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:48,754 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:35:49,893 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.147101662 -27.808518168 53.188747319 -27.795515452 53.174270341 -27.759239554 53.132636845 -27.772237933
2025-01-10 19:35:50,237 - stpipe.Image3Pipeline.resample - INFO - Saved model in default_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_i2d.fits
2025-01-10 19:35:50,237 - stpipe.Image3Pipeline.resample - INFO - Step resample done
2025-01-10 19:35:50,438 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2145, 2112) from jw02079-o004_t001_niriss_clear-f150w_i2d.fits>,).
2025-01-10 19:35:50,451 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file: crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2025-01-10 19:35:50,458 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file: crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2025-01-10 19:35:50,459 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRISS
2025-01-10 19:35:50,459 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NIS
2025-01-10 19:35:50,459 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: CLEAR
2025-01-10 19:35:50,460 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: F150W
2025-01-10 19:35:50,460 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL
2025-01-10 19:35:50,501 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 1.19753
2025-01-10 19:35:53,596 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 1371 sources
2025-01-10 19:35:54,450 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: default_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_cat.ecsv
2025-01-10 19:35:54,575 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in default_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_segm.fits
2025-01-10 19:35:54,576 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw02079-o004_t001_niriss_clear-f150w_segm.fits
2025-01-10 19:35:54,577 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done
2025-01-10 19:35:54,586 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done
2025-01-10 19:35:54,586 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:35:54,704 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0078.asdf 1.7 K bytes (1 / 1 files) (0 / 1.7 K bytes)
2025-01-10 19:35:54,801 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0078.asdf
2025-01-10 19:35:54,814 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0006.asdf 5.3 K bytes (1 / 1 files) (0 / 5.3 K bytes)
2025-01-10 19:35:54,913 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0006.asdf
2025-01-10 19:35:54,929 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:35:54,938 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0010.asdf 1.3 K bytes (1 / 1 files) (0 / 1.3 K bytes)
2025-01-10 19:35:55,028 - stpipe - INFO - PARS-SOURCECATALOGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0010.asdf
2025-01-10 19:35:55,044 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created.
2025-01-10 19:35:55,045 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created.
2025-01-10 19:35:55,048 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created.
2025-01-10 19:35:55,049 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created.
2025-01-10 19:35:55,050 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2025-01-10 19:35:55,052 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:35:55,053 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created.
2025-01-10 19:35:55,240 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('jw02079-o004_20231119t124442_image3_00009_asn.json',).
2025-01-10 19:35:55,254 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: default_image3_calibrated
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
in_memory: True
steps:
assign_mtwcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: True
output_use_index: True
save_results: False
skip: False
suffix: assign_mtwcs
search_output_file: True
input_dir: ''
tweakreg:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: True
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_catalogs: False
use_custom_catalogs: False
catalog_format: ecsv
catfile: ''
starfinder: iraf
snr_threshold: 10
bkg_boxsize: 400
kernel_fwhm: 2.0
minsep_fwhm: 0.0
sigma_radius: 1.5
sharplo: 0.5
sharphi: 3.0
roundlo: 0.0
roundhi: 0.2
brightest: 100
peakmax: None
npixels: 10
connectivity: '8'
nlevels: 32
contrast: 0.001
multithresh_mode: exponential
localbkg_width: 0
apermask_method: correct
kron_params: None
enforce_user_order: False
expand_refcat: False
minobj: 10
fitgeometry: rshift
nclip: 3
sigma: 3.0
searchrad: 1.0
use2dhist: True
separation: 1.5
tolerance: 1.0
xoffset: 0.0
yoffset: 0.0
abs_refcat: GAIADR3
save_abs_catalog: False
abs_minobj: 15
abs_fitgeometry: rshift
abs_nclip: 3
abs_sigma: 3.0
abs_searchrad: 6.0
abs_use2dhist: True
abs_separation: 1.0
abs_tolerance: 0.7
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
in_memory: True
skymatch:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
skymethod: match
match_down: True
subtract: False
stepsize: None
skystat: mode
dqbits: ~DO_NOT_USE+NON_SCIENCE
lower: None
upper: None
nclip: 5
lsigma: 4.0
usigma: 4.0
binwidth: 0.1
in_memory: True
outlier_detection:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: False
input_dir: ''
weight_type: ivm
pixfrac: 1.0
kernel: square
fillval: NAN
maskpt: 0.7
snr: 5.0 4.0
scale: 2.1 0.7
backg: 0.0
kernel_size: 7 7
threshold_percent: 99.8
rolling_window_width: 25
ifu_second_check: False
save_intermediate_results: False
resample_data: True
good_bits: ~DO_NOT_USE
in_memory: False
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
source_catalog:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: cat
search_output_file: True
input_dir: ''
bkg_boxsize: 100
kernel_fwhm: 3.0
snr_threshold: 3.0
npixels: 5
deblend: False
aperture_ee1: 50
aperture_ee2: 70
aperture_ee3: 80
ci1_star_threshold: 1.4
ci2_star_threshold: 1.37
2025-01-10 19:35:55,382 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_02101_00001_nis_cal.fits' reftypes = ['abvegaoffset', 'apcorr']
2025-01-10 19:35:55,386 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2025-01-10 19:35:55,387 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2025-01-10 19:35:55,388 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ...
2025-01-10 19:35:56,018 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f29897d0f10>,).
2025-01-10 19:35:57,387 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 68 sources in jw02079004001_02101_00001_nis_cal.fits.
2025-01-10 19:35:58,886 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 65 sources in jw02079004001_04101_00001_nis_cal.fits.
2025-01-10 19:36:00,385 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 69 sources in jw02079004001_04101_00002_nis_cal.fits.
2025-01-10 19:36:01,886 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 59 sources in jw02079004001_04101_00003_nis_cal.fits.
2025-01-10 19:36:03,390 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 67 sources in jw02079004001_04101_00004_nis_cal.fits.
2025-01-10 19:36:04,892 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 62 sources in jw02079004001_06101_00001_nis_cal.fits.
2025-01-10 19:36:06,394 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 47 sources in jw02079004001_06101_00002_nis_cal.fits.
2025-01-10 19:36:07,896 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 50 sources in jw02079004001_06101_00003_nis_cal.fits.
2025-01-10 19:36:09,407 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 73 sources in jw02079004001_08101_00001_nis_cal.fits.
2025-01-10 19:36:10,929 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 69 sources in jw02079004001_10101_00001_nis_cal.fits.
2025-01-10 19:36:12,646 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 59 sources in jw02079004001_10101_00002_nis_cal.fits.
2025-01-10 19:36:14,172 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 55 sources in jw02079004001_10101_00003_nis_cal.fits.
2025-01-10 19:36:15,691 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 69 sources in jw02079004001_10101_00004_nis_cal.fits.
2025-01-10 19:36:17,254 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 64 sources in jw02079004001_12101_00001_nis_cal.fits.
2025-01-10 19:36:18,818 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 56 sources in jw02079004001_12101_00002_nis_cal.fits.
2025-01-10 19:36:20,397 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 67 sources in jw02079004001_12101_00003_nis_cal.fits.
2025-01-10 19:36:21,973 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 70 sources in jw02079004002_02101_00001_nis_cal.fits.
2025-01-10 19:36:23,612 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 59 sources in jw02079004002_04101_00001_nis_cal.fits.
2025-01-10 19:36:25,192 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 62 sources in jw02079004002_04101_00002_nis_cal.fits.
2025-01-10 19:36:26,800 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 62 sources in jw02079004002_04101_00003_nis_cal.fits.
2025-01-10 19:36:28,671 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 69 sources in jw02079004002_04101_00004_nis_cal.fits.
2025-01-10 19:36:30,262 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 62 sources in jw02079004002_06101_00001_nis_cal.fits.
2025-01-10 19:36:31,949 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 51 sources in jw02079004002_06101_00002_nis_cal.fits.
2025-01-10 19:36:33,525 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 51 sources in jw02079004002_06101_00003_nis_cal.fits.
2025-01-10 19:36:33,550 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:36:33,550 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 24.
2025-01-10 19:36:33,551 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:36:33,551 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2025-01-10 19:36:33.551078
2025-01-10 19:36:33,552 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.8.9
2025-01-10 19:36:33,553 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:09,007 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw02079004002_04101_3' as reference image
2025-01-10 19:37:09,013 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_12101_3' to the reference catalog.
2025-01-10 19:37:09,087 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_12101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00003_nis_cal' catalog.
2025-01-10 19:37:09,088 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:09,090 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 30 and 30 matches.
2025-01-10 19:37:09,091 - stpipe.Image3Pipeline.tweakreg - INFO - Found 30 matches for 'GROUP ID: jw02079004001_12101_3'...
2025-01-10 19:37:09,092 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:09,094 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_12101_3:
2025-01-10 19:37:09,094 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00259168 YSH: -0.00036016 ROT: -0.000706546 SCALE: 1
2025-01-10 19:37:09,095 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:09,095 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00805744 FIT MAE: 0.00705577
2025-01-10 19:37:09,096 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 29 objects.
2025-01-10 19:37:09,140 - stpipe.Image3Pipeline.tweakreg - INFO - Added 37 unmatched sources from 'GROUP ID: jw02079004001_12101_3' to the reference catalog.
2025-01-10 19:37:12,118 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_12101_1' to the reference catalog.
2025-01-10 19:37:12,193 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_12101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_12101_00003_nis_cal' catalog.
2025-01-10 19:37:12,193 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:12,195 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 48 and 48 matches.
2025-01-10 19:37:12,196 - stpipe.Image3Pipeline.tweakreg - INFO - Found 44 matches for 'GROUP ID: jw02079004001_12101_1'...
2025-01-10 19:37:12,197 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:12,200 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_12101_1:
2025-01-10 19:37:12,200 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00362336 YSH: 0.00222688 ROT: 0.000119325 SCALE: 1
2025-01-10 19:37:12,200 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:12,201 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00638087 FIT MAE: 0.00471054
2025-01-10 19:37:12,201 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 43 objects.
2025-01-10 19:37:12,245 - stpipe.Image3Pipeline.tweakreg - INFO - Added 20 unmatched sources from 'GROUP ID: jw02079004001_12101_1' to the reference catalog.
2025-01-10 19:37:15,139 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_3' to the reference catalog.
2025-01-10 19:37:15,208 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_12101_00001_nis_cal' catalog.
2025-01-10 19:37:15,208 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:15,210 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 44.31 and 47 matches.
2025-01-10 19:37:15,211 - stpipe.Image3Pipeline.tweakreg - INFO - Found 42 matches for 'GROUP ID: jw02079004001_10101_3'...
2025-01-10 19:37:15,212 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:15,214 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_10101_3:
2025-01-10 19:37:15,214 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00148433 YSH: 0.00500454 ROT: -0.00743791 SCALE: 1
2025-01-10 19:37:15,215 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:15,215 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.029318 FIT MAE: 0.0132721
2025-01-10 19:37:15,216 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 41 objects.
2025-01-10 19:37:15,259 - stpipe.Image3Pipeline.tweakreg - INFO - Added 13 unmatched sources from 'GROUP ID: jw02079004001_10101_3' to the reference catalog.
2025-01-10 19:37:18,049 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_2' to the reference catalog.
2025-01-10 19:37:18,119 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00002_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00003_nis_cal' catalog.
2025-01-10 19:37:18,120 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:18,121 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 41.99 and 46 matches.
2025-01-10 19:37:18,123 - stpipe.Image3Pipeline.tweakreg - INFO - Found 45 matches for 'GROUP ID: jw02079004001_04101_2'...
2025-01-10 19:37:18,123 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:18,126 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_04101_2:
2025-01-10 19:37:18,126 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00163954 YSH: 0.00580198 ROT: -0.0100524 SCALE: 1
2025-01-10 19:37:18,127 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:18,127 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0388483 FIT MAE: 0.0181498
2025-01-10 19:37:18,128 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 42 objects.
2025-01-10 19:37:18,172 - stpipe.Image3Pipeline.tweakreg - INFO - Added 24 unmatched sources from 'GROUP ID: jw02079004001_04101_2' to the reference catalog.
2025-01-10 19:37:20,553 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_02101_1' to the reference catalog.
2025-01-10 19:37:20,622 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_02101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00002_nis_cal' catalog.
2025-01-10 19:37:20,623 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:20,625 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 47.25 and 61 matches.
2025-01-10 19:37:20,626 - stpipe.Image3Pipeline.tweakreg - INFO - Found 51 matches for 'GROUP ID: jw02079004002_02101_1'...
2025-01-10 19:37:20,626 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:20,628 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_02101_1:
2025-01-10 19:37:20,629 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00451088 YSH: 0.00449978 ROT: -0.0037062 SCALE: 1
2025-01-10 19:37:20,629 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:20,629 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0109565 FIT MAE: 0.00953501
2025-01-10 19:37:20,630 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 51 objects.
2025-01-10 19:37:20,683 - stpipe.Image3Pipeline.tweakreg - INFO - Added 19 unmatched sources from 'GROUP ID: jw02079004002_02101_1' to the reference catalog.
2025-01-10 19:37:22,885 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_3' to the reference catalog.
2025-01-10 19:37:22,957 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_02101_00001_nis_cal' catalog.
2025-01-10 19:37:22,957 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:22,959 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 49.81 and 61 matches.
2025-01-10 19:37:22,960 - stpipe.Image3Pipeline.tweakreg - INFO - Found 48 matches for 'GROUP ID: jw02079004001_04101_3'...
2025-01-10 19:37:22,961 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:22,963 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_04101_3:
2025-01-10 19:37:22,964 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.000708532 YSH: 0.00181412 ROT: -0.000720655 SCALE: 1
2025-01-10 19:37:22,964 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:22,965 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00862671 FIT MAE: 0.00601365
2025-01-10 19:37:22,966 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 47 objects.
2025-01-10 19:37:23,009 - stpipe.Image3Pipeline.tweakreg - INFO - Added 11 unmatched sources from 'GROUP ID: jw02079004001_04101_3' to the reference catalog.
2025-01-10 19:37:25,044 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_1' to the reference catalog.
2025-01-10 19:37:25,116 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00003_nis_cal' catalog.
2025-01-10 19:37:25,117 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:25,119 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.05, 0.05 (arcsec) with significance of 47.7 and 66 matches.
2025-01-10 19:37:25,121 - stpipe.Image3Pipeline.tweakreg - INFO - Found 50 matches for 'GROUP ID: jw02079004001_10101_1'...
2025-01-10 19:37:25,122 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:25,126 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_10101_1:
2025-01-10 19:37:25,126 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.000581964 YSH: 0.000525739 ROT: -0.000223115 SCALE: 1
2025-01-10 19:37:25,127 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:25,128 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0142286 FIT MAE: 0.00841414
2025-01-10 19:37:25,129 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 48 objects.
2025-01-10 19:37:25,177 - stpipe.Image3Pipeline.tweakreg - INFO - Added 19 unmatched sources from 'GROUP ID: jw02079004001_10101_1' to the reference catalog.
2025-01-10 19:37:27,117 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_12101_2' to the reference catalog.
2025-01-10 19:37:27,187 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_12101_00002_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00001_nis_cal' catalog.
2025-01-10 19:37:27,188 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:27,189 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 52 and 52 matches.
2025-01-10 19:37:27,190 - stpipe.Image3Pipeline.tweakreg - INFO - Found 44 matches for 'GROUP ID: jw02079004001_12101_2'...
2025-01-10 19:37:27,191 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:27,193 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_12101_2:
2025-01-10 19:37:27,193 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00216573 YSH: 0.00180513 ROT: -0.00249697 SCALE: 1
2025-01-10 19:37:27,194 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:27,194 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0110149 FIT MAE: 0.00958569
2025-01-10 19:37:27,195 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 41 objects.
2025-01-10 19:37:27,239 - stpipe.Image3Pipeline.tweakreg - INFO - Added 12 unmatched sources from 'GROUP ID: jw02079004001_12101_2' to the reference catalog.
2025-01-10 19:37:29,130 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_4' to the reference catalog.
2025-01-10 19:37:29,204 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00004_nis_cal' catalog with sources from the reference 'jw02079004001_12101_00002_nis_cal' catalog.
2025-01-10 19:37:29,205 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:29,206 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 50.22 and 68 matches.
2025-01-10 19:37:29,207 - stpipe.Image3Pipeline.tweakreg - INFO - Found 54 matches for 'GROUP ID: jw02079004001_04101_4'...
2025-01-10 19:37:29,208 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:29,210 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_04101_4:
2025-01-10 19:37:29,211 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00211647 YSH: 0.00226013 ROT: -0.00431548 SCALE: 1
2025-01-10 19:37:29,211 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:29,212 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0106652 FIT MAE: 0.00940067
2025-01-10 19:37:29,213 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 52 objects.
2025-01-10 19:37:29,258 - stpipe.Image3Pipeline.tweakreg - INFO - Added 13 unmatched sources from 'GROUP ID: jw02079004001_04101_4' to the reference catalog.
2025-01-10 19:37:31,133 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_06101_2' to the reference catalog.
2025-01-10 19:37:31,495 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_06101_00002_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00004_nis_cal' catalog.
2025-01-10 19:37:31,495 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:31,497 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 47 and 47 matches.
2025-01-10 19:37:31,498 - stpipe.Image3Pipeline.tweakreg - INFO - Found 39 matches for 'GROUP ID: jw02079004001_06101_2'...
2025-01-10 19:37:31,499 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:31,501 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_06101_2:
2025-01-10 19:37:31,501 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00114425 YSH: 0.001954 ROT: -0.000941124 SCALE: 1
2025-01-10 19:37:31,502 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:31,502 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0101806 FIT MAE: 0.00925067
2025-01-10 19:37:31,503 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 38 objects.
2025-01-10 19:37:31,547 - stpipe.Image3Pipeline.tweakreg - INFO - Added 8 unmatched sources from 'GROUP ID: jw02079004001_06101_2' to the reference catalog.
2025-01-10 19:37:33,311 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_4' to the reference catalog.
2025-01-10 19:37:33,386 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00004_nis_cal' catalog with sources from the reference 'jw02079004001_06101_00002_nis_cal' catalog.
2025-01-10 19:37:33,387 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:33,388 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 56.52 and 74 matches.
2025-01-10 19:37:33,389 - stpipe.Image3Pipeline.tweakreg - INFO - Found 56 matches for 'GROUP ID: jw02079004001_10101_4'...
2025-01-10 19:37:33,390 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:33,392 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_10101_4:
2025-01-10 19:37:33,393 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00265325 YSH: 0.00344146 ROT: -0.0034157 SCALE: 1
2025-01-10 19:37:33,393 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:33,394 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0101832 FIT MAE: 0.00891808
2025-01-10 19:37:33,394 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 54 objects.
2025-01-10 19:37:33,438 - stpipe.Image3Pipeline.tweakreg - INFO - Added 13 unmatched sources from 'GROUP ID: jw02079004001_10101_4' to the reference catalog.
2025-01-10 19:37:35,061 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_02101_1' to the reference catalog.
2025-01-10 19:37:35,136 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_02101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00004_nis_cal' catalog.
2025-01-10 19:37:35,137 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:35,139 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.04986 (arcsec) with significance of 59.41 and 77 matches.
2025-01-10 19:37:35,140 - stpipe.Image3Pipeline.tweakreg - INFO - Found 53 matches for 'GROUP ID: jw02079004001_02101_1'...
2025-01-10 19:37:35,140 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:35,143 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_02101_1:
2025-01-10 19:37:35,144 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00490518 YSH: 0.00259612 ROT: -0.000247542 SCALE: 1
2025-01-10 19:37:35,144 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:35,145 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0124184 FIT MAE: 0.0103838
2025-01-10 19:37:35,145 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 50 objects.
2025-01-10 19:37:35,191 - stpipe.Image3Pipeline.tweakreg - INFO - Added 15 unmatched sources from 'GROUP ID: jw02079004001_02101_1' to the reference catalog.
2025-01-10 19:37:36,707 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_06101_1' to the reference catalog.
2025-01-10 19:37:36,781 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_06101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_02101_00001_nis_cal' catalog.
2025-01-10 19:37:36,782 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:36,783 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 58.09 and 75 matches.
2025-01-10 19:37:36,785 - stpipe.Image3Pipeline.tweakreg - INFO - Found 50 matches for 'GROUP ID: jw02079004002_06101_1'...
2025-01-10 19:37:36,785 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:36,788 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_06101_1:
2025-01-10 19:37:36,788 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00309216 YSH: 0.00397585 ROT: -0.00147545 SCALE: 1
2025-01-10 19:37:36,788 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:36,789 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0074875 FIT MAE: 0.00581303
2025-01-10 19:37:36,789 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 49 objects.
2025-01-10 19:37:36,834 - stpipe.Image3Pipeline.tweakreg - INFO - Added 12 unmatched sources from 'GROUP ID: jw02079004002_06101_1' to the reference catalog.
2025-01-10 19:37:38,210 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_06101_3' to the reference catalog.
2025-01-10 19:37:38,283 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_06101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_06101_00001_nis_cal' catalog.
2025-01-10 19:37:38,284 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:38,285 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 33.37 and 52 matches.
2025-01-10 19:37:38,287 - stpipe.Image3Pipeline.tweakreg - INFO - Found 47 matches for 'GROUP ID: jw02079004002_06101_3'...
2025-01-10 19:37:38,287 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:38,290 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_06101_3:
2025-01-10 19:37:38,290 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0033079 YSH: -0.000467198 ROT: 0.00138272 SCALE: 1
2025-01-10 19:37:38,290 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:38,291 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00815398 FIT MAE: 0.00671099
2025-01-10 19:37:38,291 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 46 objects.
2025-01-10 19:37:38,336 - stpipe.Image3Pipeline.tweakreg - INFO - Added 4 unmatched sources from 'GROUP ID: jw02079004002_06101_3' to the reference catalog.
2025-01-10 19:37:39,621 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_06101_1' to the reference catalog.
2025-01-10 19:37:39,694 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_06101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_06101_00003_nis_cal' catalog.
2025-01-10 19:37:39,695 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:39,697 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 53.33 and 80 matches.
2025-01-10 19:37:39,698 - stpipe.Image3Pipeline.tweakreg - INFO - Found 46 matches for 'GROUP ID: jw02079004001_06101_1'...
2025-01-10 19:37:39,699 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:39,701 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_06101_1:
2025-01-10 19:37:39,702 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00421655 YSH: 0.00269762 ROT: 0.00124674 SCALE: 1
2025-01-10 19:37:39,702 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:39,703 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00570966 FIT MAE: 0.00462992
2025-01-10 19:37:39,703 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 45 objects.
2025-01-10 19:37:39,749 - stpipe.Image3Pipeline.tweakreg - INFO - Added 16 unmatched sources from 'GROUP ID: jw02079004001_06101_1' to the reference catalog.
2025-01-10 19:37:40,915 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_2' to the reference catalog.
2025-01-10 19:37:40,990 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00002_nis_cal' catalog with sources from the reference 'jw02079004001_06101_00001_nis_cal' catalog.
2025-01-10 19:37:40,991 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:40,992 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 43.13 and 61 matches.
2025-01-10 19:37:40,993 - stpipe.Image3Pipeline.tweakreg - INFO - Found 52 matches for 'GROUP ID: jw02079004002_04101_2'...
2025-01-10 19:37:40,994 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:40,997 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_04101_2:
2025-01-10 19:37:40,997 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00147744 YSH: 0.00844526 ROT: -0.011163 SCALE: 1
2025-01-10 19:37:40,998 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:40,998 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0353266 FIT MAE: 0.0151817
2025-01-10 19:37:40,998 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 49 objects.
2025-01-10 19:37:41,045 - stpipe.Image3Pipeline.tweakreg - INFO - Added 10 unmatched sources from 'GROUP ID: jw02079004002_04101_2' to the reference catalog.
2025-01-10 19:37:42,074 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_4' to the reference catalog.
2025-01-10 19:37:42,150 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00004_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00002_nis_cal' catalog.
2025-01-10 19:37:42,151 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:42,152 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 67.66 and 86 matches.
2025-01-10 19:37:42,154 - stpipe.Image3Pipeline.tweakreg - INFO - Found 54 matches for 'GROUP ID: jw02079004002_04101_4'...
2025-01-10 19:37:42,154 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:42,157 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_04101_4:
2025-01-10 19:37:42,157 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00329259 YSH: -0.00138525 ROT: 0.00199915 SCALE: 1
2025-01-10 19:37:42,157 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:42,158 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0276764 FIT MAE: 0.0139936
2025-01-10 19:37:42,159 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 52 objects.
2025-01-10 19:37:42,203 - stpipe.Image3Pipeline.tweakreg - INFO - Added 15 unmatched sources from 'GROUP ID: jw02079004002_04101_4' to the reference catalog.
2025-01-10 19:37:43,116 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_06101_2' to the reference catalog.
2025-01-10 19:37:43,188 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_06101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00004_nis_cal' catalog.
2025-01-10 19:37:43,189 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:43,190 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 61.49 and 71 matches.
2025-01-10 19:37:43,191 - stpipe.Image3Pipeline.tweakreg - INFO - Found 41 matches for 'GROUP ID: jw02079004002_06101_2'...
2025-01-10 19:37:43,192 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:43,195 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_06101_2:
2025-01-10 19:37:43,195 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00234269 YSH: 0.000974264 ROT: -0.000851388 SCALE: 1
2025-01-10 19:37:43,196 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:43,196 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0103741 FIT MAE: 0.00889133
2025-01-10 19:37:43,196 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 40 objects.
2025-01-10 19:37:43,241 - stpipe.Image3Pipeline.tweakreg - INFO - Added 10 unmatched sources from 'GROUP ID: jw02079004002_06101_2' to the reference catalog.
2025-01-10 19:37:44,031 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_2' to the reference catalog.
2025-01-10 19:37:44,098 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_06101_00002_nis_cal' catalog.
2025-01-10 19:37:44,098 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:44,100 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.04984 (arcsec) with significance of 54.45 and 78 matches.
2025-01-10 19:37:44,101 - stpipe.Image3Pipeline.tweakreg - INFO - Found 49 matches for 'GROUP ID: jw02079004001_10101_2'...
2025-01-10 19:37:44,102 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:44,104 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_10101_2:
2025-01-10 19:37:44,105 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00142647 YSH: -0.000674563 ROT: -0.00204497 SCALE: 1
2025-01-10 19:37:44,105 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:44,106 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0119649 FIT MAE: 0.0097957
2025-01-10 19:37:44,106 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 47 objects.
2025-01-10 19:37:44,151 - stpipe.Image3Pipeline.tweakreg - INFO - Added 10 unmatched sources from 'GROUP ID: jw02079004001_10101_2' to the reference catalog.
2025-01-10 19:37:44,792 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_08101_1' to the reference catalog.
2025-01-10 19:37:44,866 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_08101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00002_nis_cal' catalog.
2025-01-10 19:37:44,867 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:44,868 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.04965 (arcsec) with significance of 72.95 and 102 matches.
2025-01-10 19:37:44,870 - stpipe.Image3Pipeline.tweakreg - INFO - Found 56 matches for 'GROUP ID: jw02079004001_08101_1'...
2025-01-10 19:37:44,870 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:44,873 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_08101_1:
2025-01-10 19:37:44,873 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00329959 YSH: 0.000660258 ROT: -0.000745702 SCALE: 1
2025-01-10 19:37:44,874 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:44,874 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.011086 FIT MAE: 0.00903564
2025-01-10 19:37:44,875 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 54 objects.
2025-01-10 19:37:44,920 - stpipe.Image3Pipeline.tweakreg - INFO - Added 17 unmatched sources from 'GROUP ID: jw02079004001_08101_1' to the reference catalog.
2025-01-10 19:37:45,451 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_1' to the reference catalog.
2025-01-10 19:37:45,527 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_08101_00001_nis_cal' catalog.
2025-01-10 19:37:45,528 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:45,529 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.05069, 0.05069 (arcsec) with significance of 55.63 and 78 matches.
2025-01-10 19:37:45,530 - stpipe.Image3Pipeline.tweakreg - INFO - Found 49 matches for 'GROUP ID: jw02079004002_04101_1'...
2025-01-10 19:37:45,531 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:45,534 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_04101_1:
2025-01-10 19:37:45,534 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0062161 YSH: -0.0039141 ROT: -0.000176225 SCALE: 1
2025-01-10 19:37:45,534 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:45,535 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0553164 FIT MAE: 0.0179587
2025-01-10 19:37:45,535 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 47 objects.
2025-01-10 19:37:45,581 - stpipe.Image3Pipeline.tweakreg - INFO - Added 10 unmatched sources from 'GROUP ID: jw02079004002_04101_1' to the reference catalog.
2025-01-10 19:37:45,889 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_06101_3' to the reference catalog.
2025-01-10 19:37:45,964 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_06101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00001_nis_cal' catalog.
2025-01-10 19:37:45,965 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:45,966 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 42.6 and 72 matches.
2025-01-10 19:37:45,967 - stpipe.Image3Pipeline.tweakreg - INFO - Found 42 matches for 'GROUP ID: jw02079004001_06101_3'...
2025-01-10 19:37:45,968 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:45,970 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_06101_3:
2025-01-10 19:37:45,970 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00411292 YSH: 5.44967e-05 ROT: -0.000364518 SCALE: 1
2025-01-10 19:37:45,971 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:45,972 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00784489 FIT MAE: 0.0063553
2025-01-10 19:37:45,972 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 42 objects.
2025-01-10 19:37:46,017 - stpipe.Image3Pipeline.tweakreg - INFO - Added 8 unmatched sources from 'GROUP ID: jw02079004001_06101_3' to the reference catalog.
2025-01-10 19:37:46,156 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_1' to the reference catalog.
2025-01-10 19:37:46,235 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_06101_00003_nis_cal' catalog.
2025-01-10 19:37:46,236 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:37:46,237 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.05055, 0.05055 (arcsec) with significance of 62.11 and 85 matches.
2025-01-10 19:37:46,238 - stpipe.Image3Pipeline.tweakreg - INFO - Found 51 matches for 'GROUP ID: jw02079004001_04101_1'...
2025-01-10 19:37:46,239 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2025-01-10 19:37:46,241 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_04101_1:
2025-01-10 19:37:46,241 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00146944 YSH: 0.00170573 ROT: -0.00163779 SCALE: 1
2025-01-10 19:37:46,242 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:46,242 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0066582 FIT MAE: 0.00566725
2025-01-10 19:37:46,243 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 49 objects.
2025-01-10 19:37:46,606 - stpipe.Image3Pipeline.tweakreg - INFO - Added 14 unmatched sources from 'GROUP ID: jw02079004001_04101_1' to the reference catalog.
2025-01-10 19:37:46,607 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:46,608 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2025-01-10 19:37:46.607593
2025-01-10 19:37:46,609 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:01:13.056515
2025-01-10 19:37:46,609 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:37:47,157 - stpipe.Image3Pipeline.tweakreg - WARNING - Not enough sources (7) in the reference catalog for the single-group alignment step to perform a fit. Skipping alignment to the input reference catalog!
2025-01-10 19:37:47,176 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done
2025-01-10 19:37:47,459 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f29897d0f10>,).
2025-01-10 19:37:47,967 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:37:47,968 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2025-01-10 19:37:47.967545
2025-01-10 19:37:47,968 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:37:47,969 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'match'
2025-01-10 19:37:47,969 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN
2025-01-10 19:37:47,969 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF
2025-01-10 19:37:47,970 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:37:47,971 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions.
2025-01-10 19:41:22,158 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_02101_00001_nis_cal.fits. Sky background: 0.00350093
2025-01-10 19:41:22,159 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00001_nis_cal.fits. Sky background: 0.00163658
2025-01-10 19:41:22,159 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00002_nis_cal.fits. Sky background: 0.00274716
2025-01-10 19:41:22,160 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00003_nis_cal.fits. Sky background: 0.00244247
2025-01-10 19:41:22,160 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00004_nis_cal.fits. Sky background: 0
2025-01-10 19:41:22,160 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_06101_00001_nis_cal.fits. Sky background: 0.0021522
2025-01-10 19:41:22,161 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_06101_00002_nis_cal.fits. Sky background: 0.00463363
2025-01-10 19:41:22,161 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_06101_00003_nis_cal.fits. Sky background: 0.000652982
2025-01-10 19:41:22,162 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_08101_00001_nis_cal.fits. Sky background: 0.0071245
2025-01-10 19:41:22,162 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00001_nis_cal.fits. Sky background: 0.00502136
2025-01-10 19:41:22,162 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00002_nis_cal.fits. Sky background: 0.00415733
2025-01-10 19:41:22,163 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00003_nis_cal.fits. Sky background: 0.00518056
2025-01-10 19:41:22,163 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00004_nis_cal.fits. Sky background: 0.00267963
2025-01-10 19:41:22,163 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_12101_00001_nis_cal.fits. Sky background: 0.00417817
2025-01-10 19:41:22,164 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_12101_00002_nis_cal.fits. Sky background: 0.00396838
2025-01-10 19:41:22,164 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_12101_00003_nis_cal.fits. Sky background: 0.00227716
2025-01-10 19:41:22,165 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_02101_00001_nis_cal.fits. Sky background: 0.00179251
2025-01-10 19:41:22,165 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00001_nis_cal.fits. Sky background: 0.00280956
2025-01-10 19:41:22,165 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00002_nis_cal.fits. Sky background: 0.00631501
2025-01-10 19:41:22,166 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00003_nis_cal.fits. Sky background: 0.00435651
2025-01-10 19:41:22,166 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00004_nis_cal.fits. Sky background: 0.00454333
2025-01-10 19:41:22,166 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_06101_00001_nis_cal.fits. Sky background: 0.00235596
2025-01-10 19:41:22,167 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_06101_00002_nis_cal.fits. Sky background: 0.00979535
2025-01-10 19:41:22,167 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_06101_00003_nis_cal.fits. Sky background: 0.00624794
2025-01-10 19:41:22,168 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:41:22,168 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2025-01-10 19:41:22.168050
2025-01-10 19:41:22,168 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:03:34.200505
2025-01-10 19:41:22,169 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:41:22,231 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done
2025-01-10 19:41:22,526 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f29897d0f10>,).
2025-01-10 19:41:22,527 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection mode: imaging
2025-01-10 19:41:22,529 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection asn_id: o004
2025-01-10 19:41:22,529 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter kernel: square
2025-01-10 19:41:22,530 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter pixfrac: 1.0
2025-01-10 19:41:22,530 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter fillval: NAN
2025-01-10 19:41:22,530 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter weight_type: ivm
2025-01-10 19:41:22,531 - stpipe.Image3Pipeline.outlier_detection - INFO - Output pixel scale ratio: 1.0
2025-01-10 19:41:22,603 - stpipe.Image3Pipeline.outlier_detection - INFO - Computed output pixel scale: 0.06556312845480262 arcsec.
2025-01-10 19:41:22,604 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:41:26,398 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:41:29,749 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:41:33,044 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:41:36,295 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:41:39,573 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:41:42,834 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:41:46,068 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:41:49,299 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:41:52,566 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:41:55,791 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:41:59,047 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:42:02,275 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:42:05,531 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:42:08,773 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:42:12,016 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:42:15,289 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:42:18,558 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:42:21,801 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:42:25,033 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:42:28,268 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:42:31,531 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:42:34,814 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:42:38,044 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:42:47,591 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:42:47,820 - stpipe.Image3Pipeline.outlier_detection - INFO - 14253 pixels marked as outliers
2025-01-10 19:42:49,923 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:42:50,151 - stpipe.Image3Pipeline.outlier_detection - INFO - 14374 pixels marked as outliers
2025-01-10 19:42:52,238 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:42:52,468 - stpipe.Image3Pipeline.outlier_detection - INFO - 13699 pixels marked as outliers
2025-01-10 19:42:54,580 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:42:54,809 - stpipe.Image3Pipeline.outlier_detection - INFO - 14232 pixels marked as outliers
2025-01-10 19:42:56,911 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:42:57,141 - stpipe.Image3Pipeline.outlier_detection - INFO - 14774 pixels marked as outliers
2025-01-10 19:42:59,225 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:42:59,454 - stpipe.Image3Pipeline.outlier_detection - INFO - 14144 pixels marked as outliers
2025-01-10 19:43:01,550 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:01,778 - stpipe.Image3Pipeline.outlier_detection - INFO - 13979 pixels marked as outliers
2025-01-10 19:43:03,878 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:04,106 - stpipe.Image3Pipeline.outlier_detection - INFO - 14397 pixels marked as outliers
2025-01-10 19:43:06,212 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:06,440 - stpipe.Image3Pipeline.outlier_detection - INFO - 13670 pixels marked as outliers
2025-01-10 19:43:08,569 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:08,796 - stpipe.Image3Pipeline.outlier_detection - INFO - 14766 pixels marked as outliers
2025-01-10 19:43:10,870 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:11,097 - stpipe.Image3Pipeline.outlier_detection - INFO - 14106 pixels marked as outliers
2025-01-10 19:43:13,184 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:13,411 - stpipe.Image3Pipeline.outlier_detection - INFO - 14571 pixels marked as outliers
2025-01-10 19:43:15,494 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:15,720 - stpipe.Image3Pipeline.outlier_detection - INFO - 14887 pixels marked as outliers
2025-01-10 19:43:17,807 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:18,034 - stpipe.Image3Pipeline.outlier_detection - INFO - 14302 pixels marked as outliers
2025-01-10 19:43:20,112 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:20,339 - stpipe.Image3Pipeline.outlier_detection - INFO - 14130 pixels marked as outliers
2025-01-10 19:43:22,419 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:22,655 - stpipe.Image3Pipeline.outlier_detection - INFO - 14120 pixels marked as outliers
2025-01-10 19:43:24,774 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:25,003 - stpipe.Image3Pipeline.outlier_detection - INFO - 14287 pixels marked as outliers
2025-01-10 19:43:27,105 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:27,333 - stpipe.Image3Pipeline.outlier_detection - INFO - 14512 pixels marked as outliers
2025-01-10 19:43:29,401 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:29,628 - stpipe.Image3Pipeline.outlier_detection - INFO - 13917 pixels marked as outliers
2025-01-10 19:43:31,714 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:31,940 - stpipe.Image3Pipeline.outlier_detection - INFO - 14524 pixels marked as outliers
2025-01-10 19:43:34,013 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:34,241 - stpipe.Image3Pipeline.outlier_detection - INFO - 14717 pixels marked as outliers
2025-01-10 19:43:36,325 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:36,552 - stpipe.Image3Pipeline.outlier_detection - INFO - 14686 pixels marked as outliers
2025-01-10 19:43:38,630 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:38,866 - stpipe.Image3Pipeline.outlier_detection - INFO - 13995 pixels marked as outliers
2025-01-10 19:43:40,939 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:43:41,167 - stpipe.Image3Pipeline.outlier_detection - INFO - 13665 pixels marked as outliers
2025-01-10 19:43:41,433 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_02101_00001_nis_o004_crf.fits
2025-01-10 19:43:41,645 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_04101_00001_nis_o004_crf.fits
2025-01-10 19:43:41,860 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_04101_00002_nis_o004_crf.fits
2025-01-10 19:43:42,073 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_04101_00003_nis_o004_crf.fits
2025-01-10 19:43:42,282 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_04101_00004_nis_o004_crf.fits
2025-01-10 19:43:42,492 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_06101_00001_nis_o004_crf.fits
2025-01-10 19:43:42,702 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_06101_00002_nis_o004_crf.fits
2025-01-10 19:43:42,942 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_06101_00003_nis_o004_crf.fits
2025-01-10 19:43:43,153 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_08101_00001_nis_o004_crf.fits
2025-01-10 19:43:43,368 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_10101_00001_nis_o004_crf.fits
2025-01-10 19:43:43,592 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_10101_00002_nis_o004_crf.fits
2025-01-10 19:43:43,804 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_10101_00003_nis_o004_crf.fits
2025-01-10 19:43:44,023 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_10101_00004_nis_o004_crf.fits
2025-01-10 19:43:44,246 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_12101_00001_nis_o004_crf.fits
2025-01-10 19:43:44,465 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_12101_00002_nis_o004_crf.fits
2025-01-10 19:43:44,687 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_12101_00003_nis_o004_crf.fits
2025-01-10 19:43:44,906 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_02101_00001_nis_o004_crf.fits
2025-01-10 19:43:45,129 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_04101_00001_nis_o004_crf.fits
2025-01-10 19:43:45,342 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_04101_00002_nis_o004_crf.fits
2025-01-10 19:43:45,557 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_04101_00003_nis_o004_crf.fits
2025-01-10 19:43:45,769 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_04101_00004_nis_o004_crf.fits
2025-01-10 19:43:45,982 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_06101_00001_nis_o004_crf.fits
2025-01-10 19:43:46,204 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_06101_00002_nis_o004_crf.fits
2025-01-10 19:43:46,685 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_06101_00003_nis_o004_crf.fits
2025-01-10 19:43:46,686 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done
2025-01-10 19:43:46,915 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f29897d0f10>,).
2025-01-10 19:43:47,721 - stpipe.Image3Pipeline.resample - INFO - Driz parameter kernel: square
2025-01-10 19:43:47,722 - stpipe.Image3Pipeline.resample - INFO - Driz parameter pixfrac: 1.0
2025-01-10 19:43:47,722 - stpipe.Image3Pipeline.resample - INFO - Driz parameter fillval: NAN
2025-01-10 19:43:47,722 - stpipe.Image3Pipeline.resample - INFO - Driz parameter weight_type: ivm
2025-01-10 19:43:47,723 - stpipe.Image3Pipeline.resample - INFO - Output pixel scale ratio: 1.0
2025-01-10 19:43:47,795 - stpipe.Image3Pipeline.resample - INFO - Computed output pixel scale: 0.06556312845480262 arcsec.
2025-01-10 19:43:47,820 - stpipe.Image3Pipeline.resample - INFO - Resampling science and variance data
2025-01-10 19:43:51,255 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:43:52,144 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:43:53,025 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:43:56,861 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:43:57,751 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:43:58,613 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:02,341 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:03,235 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:04,093 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:07,842 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:08,730 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:09,585 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:13,301 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:14,180 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:15,034 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:18,819 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:19,743 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:20,602 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:24,337 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:25,223 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:26,080 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:29,795 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:30,683 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:31,547 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:35,268 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:36,148 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:37,006 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:40,761 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:41,664 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:42,524 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:46,279 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:47,171 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:48,031 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:51,803 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:52,693 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:53,558 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:57,309 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:58,185 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:44:59,045 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:02,841 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:03,732 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:04,632 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:08,402 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:09,296 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:10,158 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:13,886 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:14,774 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:15,630 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:19,363 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:20,242 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:21,099 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:24,854 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:25,749 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:26,606 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:30,409 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:31,300 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:32,174 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:35,921 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:36,810 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:37,710 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:41,465 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:42,365 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:43,222 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:46,970 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:47,871 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:48,734 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:52,472 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:53,363 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:54,224 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:57,949 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:58,841 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:45:59,698 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:46:00,845 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.147837671 -27.807256739 53.188373666 -27.794599954 53.174262434 -27.759241167 53.133737976 -27.771893837
2025-01-10 19:46:01,180 - stpipe.Image3Pipeline.resample - INFO - Saved model in default_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_i2d.fits
2025-01-10 19:46:01,181 - stpipe.Image3Pipeline.resample - INFO - Step resample done
2025-01-10 19:46:01,411 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2088, 2059) from jw02079-o004_t001_niriss_clear-f115w_i2d.fits>,).
2025-01-10 19:46:01,424 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file: crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2025-01-10 19:46:01,431 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file: crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2025-01-10 19:46:01,431 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRISS
2025-01-10 19:46:01,432 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NIS
2025-01-10 19:46:01,432 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: CLEAR
2025-01-10 19:46:01,433 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: F115W
2025-01-10 19:46:01,433 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL
2025-01-10 19:46:01,473 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 0.76458
2025-01-10 19:46:04,401 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 1577 sources
2025-01-10 19:46:05,375 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: default_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_cat.ecsv
2025-01-10 19:46:05,491 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in default_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_segm.fits
2025-01-10 19:46:05,492 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw02079-o004_t001_niriss_clear-f115w_segm.fits
2025-01-10 19:46:05,494 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done
2025-01-10 19:46:05,538 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done
2025-01-10 19:46:05,539 - stpipe - INFO - Results used jwst version: 1.17.1
# remove unnecessary files to save disk space
for crf in glob.glob(os.path.join(default_run_image3, '*crf.fits')):
os.remove(crf)
Inspecting Default Results#
# These are all resuts from the Image3 pipeline
image3_i2d = np.sort(glob.glob(os.path.join(default_run_image3, '*i2d.fits'))) # combined image over multiple dithers/mosaic
image3_segm = np.sort(glob.glob(os.path.join(default_run_image3, '*segm.fits'))) # segmentation map that defines the extent of a source
image3_cat = np.sort(glob.glob(os.path.join(default_run_image3, '*cat.ecsv'))) # Source catalog that defines the RA/Dec of a source at a particular pixel
Matplotlib#
Matplotlib has limitations where ImViz might better suite your needs – especially if you like to look at things in WCS coordinates. For the notebook purposes, we are highlighting a few key areas using the matplotlib package instead.
Using the i2d
combined image and the source catalog produced by Image3, we can visually inspect if we’re happy with where the pipeline found the sources. In the following figures, what has been defined as an extended source by the pipeline is shown in orange-red, and what has been defined as a point source by the pipeline is shown in grey. This definition affects the extraction box in the WFSS images.
fig = plt.figure(figsize=(10, 10))
cols = 2
rows = int(np.ceil(len(image3_i2d) / cols))
for plt_num, img in enumerate(image3_i2d):
# determine where the subplot should be
xpos = (plt_num % 40) % cols
ypos = ((plt_num % 40) // cols) # // to make it an int.
# make the subplot
ax = plt.subplot2grid((rows, cols), (ypos, xpos))
# plot the image
with fits.open(img) as hdu:
ax.imshow(hdu[1].data, vmin=0, vmax=0.3, origin='lower')
ax.set_title(f"obs{hdu[0].header['OBSERVTN']} {hdu[0].header['PUPIL']}")
# also plot the associated catalog
cat = Table.read(img.replace('i2d.fits', 'cat.ecsv'))
extended_sources = cat[cat['is_extended'] == 1] # 1 is True; i.e. is extended
point_sources = cat[cat['is_extended'] == 0] # 0 is False; i.e. is a point source
ax.scatter(extended_sources['xcentroid'], extended_sources['ycentroid'], s=20, facecolors='None', edgecolors='orangered', alpha=0.9)
ax.scatter(point_sources['xcentroid'], point_sources['ycentroid'], s=20, facecolors='None', edgecolors='dimgrey', alpha=0.9)
# Helps to make the axes not overlap ; you can also set this manually if this doesn't work
plt.tight_layout()
The segmentation maps are also a product of the Image3 pipeline, and they are used the help determine the source catalog. Let’s take a look at those to ensure we are happy with what it is defining as a source.
In the segmentation map, each blue blob should correspond to a physical target. There are cases where sources can be blended, in which case the parameters for making the semgentation map and source catalog should be changed. An example of this can be seen below in the observation 004 F200W filter image where two galaxies at ~(1600, 1300) have been blended into one source. This is discussed in more detail below in Custom Imaging Pipeline Run.
Note that because of the filter offset difference the field of views for the shown in the cutouts below differs for each filter.
# we will look at this multiple times, so let's define this as a function
def plot_image_and_segmentation_map(i2d_images, segm_images, xmin=1250, xmax=1750, ymin=1250, ymax=1750, cat_suffix='cat.ecsv'):
cols = 2
rows = len(i2d_images)
fig = plt.figure(figsize=(10, 10*(rows/2)))
for plt_num, img in enumerate(np.sort(np.concatenate([segm_images, i2d_images]))):
# determine where the subplot should be
xpos = (plt_num % 40) % cols
ypos = ((plt_num % 40) // cols) # // to make it an int.
# make the subplot
ax = plt.subplot2grid((rows, cols), (ypos, xpos))
if 'i2d' in img:
cat = Table.read(img.replace('i2d.fits', cat_suffix))
cmap = 'gist_gray'
else:
cmap = 'tab20c_r'
# plot the image
with fits.open(img) as hdu:
ax.imshow(hdu[1].data, vmin=0, vmax=0.3, origin='lower', cmap=cmap)
title = f"obs{hdu[0].header['OBSERVTN']} {hdu[0].header['PUPIL']}"
# also plot the associated catalog
extended_sources = cat[cat['is_extended'] == 1] # 1 is True; i.e. is extended
point_sources = cat[cat['is_extended'] == 0] # 0 is False; i.e. is a point source
for color, sources in zip(['darkred', 'black'], [extended_sources, point_sources]):
# plotting the sources
ax.scatter(sources['xcentroid'], sources['ycentroid'], s=20, facecolors='None', edgecolors=color, alpha=0.9)
# adding source labels
for i, source_num in enumerate(sources['label']):
ax.annotate(source_num,
(sources['xcentroid'][i]+0.5, sources['ycentroid'][i]+0.5),
fontsize=8,
color=color)
if 'i2d' in img:
ax.set_title(f"{title} combined image")
else:
ax.set_title(f"{title} segmentation map")
# zooming in on a smaller region
ax.set_xlim(xmin, xmax)
ax.set_ylim(ymin, ymax)
# Helps to make the axes not overlap ; you can also set this manually if this doesn't work
plt.tight_layout()
return fig
default_fig = plot_image_and_segmentation_map(image3_i2d, image3_segm)
ImViz#
Similarly to DS9, ImViz allows you to interactively view these images and the corresponding source catalog as well.
imviz = Imviz()
viewer = imviz.default_viewer
# plot each i2d image
catalogs = [] # for plotting the catalogs
labels = [] # for plotting the catalogs
for img in image3_i2d:
print(f'Plotting: {img}')
label = f"obs{fits.getval(img, 'OBSERVTN')} {fits.getval(img, 'PUPIL')}"
with warnings.catch_warnings():
warnings.simplefilter('ignore')
imviz.load_data(img, data_label=label)
# save info to plot the catalogs next
catalogs.append(img.replace('i2d.fits', 'cat.ecsv'))
labels.append(label)
# this aligns the image to use the WCS coordinates;
# the images need to be loaded first, but before adding markers
linking = imviz.plugins['Orientation']
linking.link_type = 'WCS'
# also plot the associated catalog
# this needs to be a separate loop due to linking in imviz when using sky coordinates
for catname, label in zip(catalogs, labels):
cat = Table.read(catname)
# format the table into the format imviz expects
sky_coords = Table({'coord': [SkyCoord(ra=cat['sky_centroid'].ra.degree,
dec=cat['sky_centroid'].dec.degree,
unit="deg")]})
viewer.marker = {'color': 'orange', 'alpha': 1, 'markersize': 20, 'fill': False}
viewer.add_markers(sky_coords, use_skycoord=True, marker_name=f"{label} catalog")
# This changes the stretch of all of the images
plotopt = imviz.plugins['Plot Options']
plotopt.select_all(viewers=True, layers=True)
plotopt.stretch_preset = '99.5%'
imviz.show()
Plotting: default_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_i2d.fits
Plotting: default_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_i2d.fits
Plotting: default_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_i2d.fits
2025-01-10 19:46:16,445 - stpipe - WARNING - /opt/hostedtoolcache/Python/3.11.11/x64/lib/python3.11/site-packages/jdaviz/core/user_api.py:53: AstropyDeprecationWarning: The link_type function is deprecated and may be removed in a future version.
Use align_by instead.
exp_obj = getattr(self._obj, attr)
Custom Imaging Pipeline Run#
Image3#
Try editing a few parameters and compare the outcomes to the default run above, at first for a single file.
When we call the image3 pipeline, we can add modifications to a specific step of the pipeline. In this case we’re going to edit the source_catalog
and tweakreg
steps of the pipeline. An explanation of the different parameters to tweak can be found in the further information below, while the default values are a combination of both the default pipeline values listed in there, and the parameter reference files that are supplied.
image3_asns = np.sort(glob.glob('*image3*asn*.json'))
test_asn = image3_asns[1]
# check if the calibrated file already exists
asn_data = json.load(open(test_asn))
i2d_file = os.path.join(custom_run_image3, f"{asn_data['products'][0]['name']}_i2d.fits")
if os.path.exists(i2d_file):
print(i2d_file, 'i2d file already exists.')
else:
# call the image3 pipeline in the same way as before, but add a few new modifications
cust_img3 = Image3Pipeline.call(test_asn,
steps={
'source_catalog': {'kernel_fwhm': 5.0,
'snr_threshold': 10.0,
'npixels': 50,
'deblend': True,
},
'tweakreg': {'snr_threshold': 20,
'abs_refcat': 'GAIADR3',
'save_catalogs': True,
'searchrad': 3.0,
'kernel_fwhm': 2.302,
'fitgeometry': 'shift',
},
},
save_results=True,
output_dir=custom_run_image3)
2025-01-10 19:46:18,228 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0079.asdf
2025-01-10 19:46:18,240 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0010.asdf
2025-01-10 19:46:18,254 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:46:18,263 - stpipe - INFO - PARS-SOURCECATALOGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0011.asdf
2025-01-10 19:46:18,278 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created.
2025-01-10 19:46:18,279 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created.
2025-01-10 19:46:18,281 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created.
2025-01-10 19:46:18,283 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created.
2025-01-10 19:46:18,284 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2025-01-10 19:46:18,285 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:46:18,287 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created.
2025-01-10 19:46:18,594 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('jw02079-o004_20231119t124442_image3_00005_asn.json',).
2025-01-10 19:46:18,607 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: custom_image3_calibrated
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
in_memory: True
steps:
assign_mtwcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: True
output_use_index: True
save_results: False
skip: False
suffix: assign_mtwcs
search_output_file: True
input_dir: ''
tweakreg:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: True
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_catalogs: True
use_custom_catalogs: False
catalog_format: ecsv
catfile: ''
starfinder: iraf
snr_threshold: 20
bkg_boxsize: 400
kernel_fwhm: 2.302
minsep_fwhm: 0.0
sigma_radius: 1.5
sharplo: 0.5
sharphi: 3.0
roundlo: 0.0
roundhi: 0.2
brightest: 100
peakmax: None
npixels: 10
connectivity: '8'
nlevels: 32
contrast: 0.001
multithresh_mode: exponential
localbkg_width: 0
apermask_method: correct
kron_params: None
enforce_user_order: False
expand_refcat: False
minobj: 10
fitgeometry: shift
nclip: 3
sigma: 3.0
searchrad: 3.0
use2dhist: True
separation: 1.5
tolerance: 1.0
xoffset: 0.0
yoffset: 0.0
abs_refcat: GAIADR3
save_abs_catalog: False
abs_minobj: 15
abs_fitgeometry: rshift
abs_nclip: 3
abs_sigma: 3.0
abs_searchrad: 6.0
abs_use2dhist: True
abs_separation: 1.0
abs_tolerance: 0.7
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
in_memory: True
skymatch:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
skymethod: match
match_down: True
subtract: False
stepsize: None
skystat: mode
dqbits: ~DO_NOT_USE+NON_SCIENCE
lower: None
upper: None
nclip: 5
lsigma: 4.0
usigma: 4.0
binwidth: 0.1
in_memory: True
outlier_detection:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: False
input_dir: ''
weight_type: ivm
pixfrac: 1.0
kernel: square
fillval: NAN
maskpt: 0.7
snr: 5.0 4.0
scale: 2.1 0.7
backg: 0.0
kernel_size: 7 7
threshold_percent: 99.8
rolling_window_width: 25
ifu_second_check: False
save_intermediate_results: False
resample_data: True
good_bits: ~DO_NOT_USE
in_memory: False
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
source_catalog:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: cat
search_output_file: True
input_dir: ''
bkg_boxsize: 100
kernel_fwhm: 5.0
snr_threshold: 10.0
npixels: 50
deblend: True
aperture_ee1: 50
aperture_ee2: 70
aperture_ee3: 80
ci1_star_threshold: 1.4
ci2_star_threshold: 1.4
2025-01-10 19:46:18,726 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_08101_00001_nis_cal.fits' reftypes = ['abvegaoffset', 'apcorr']
2025-01-10 19:46:18,729 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2025-01-10 19:46:18,730 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2025-01-10 19:46:18,731 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ...
2025-01-10 19:46:19,255 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f29829e6710>,).
2025-01-10 19:46:20,609 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 62 sources in jw02079004002_08101_00001_nis_cal.fits.
2025-01-10 19:46:20,613 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_08101_00001_nis_cal_cat.ecsv
2025-01-10 19:46:22,221 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 59 sources in jw02079004002_10101_00001_nis_cal.fits.
2025-01-10 19:46:22,224 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_10101_00001_nis_cal_cat.ecsv
2025-01-10 19:46:23,806 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 50 sources in jw02079004002_10101_00002_nis_cal.fits.
2025-01-10 19:46:23,809 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_10101_00002_nis_cal_cat.ecsv
2025-01-10 19:46:25,393 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 52 sources in jw02079004002_10101_00003_nis_cal.fits.
2025-01-10 19:46:25,396 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_10101_00003_nis_cal_cat.ecsv
2025-01-10 19:46:27,005 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 51 sources in jw02079004002_10101_00004_nis_cal.fits.
2025-01-10 19:46:27,008 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_10101_00004_nis_cal_cat.ecsv
2025-01-10 19:46:28,603 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 61 sources in jw02079004002_12101_00001_nis_cal.fits.
2025-01-10 19:46:28,607 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_12101_00001_nis_cal_cat.ecsv
2025-01-10 19:46:30,218 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 42 sources in jw02079004002_12101_00002_nis_cal.fits.
2025-01-10 19:46:30,222 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_12101_00002_nis_cal_cat.ecsv
2025-01-10 19:46:31,821 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 59 sources in jw02079004002_12101_00003_nis_cal.fits.
2025-01-10 19:46:31,824 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_12101_00003_nis_cal_cat.ecsv
2025-01-10 19:46:31,851 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:46:31,852 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 8.
2025-01-10 19:46:31,852 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:46:31,853 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2025-01-10 19:46:31.852639
2025-01-10 19:46:31,853 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.8.9
2025-01-10 19:46:31,854 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:46:36,203 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw02079004002_12101_3' as reference image
2025-01-10 19:46:36,209 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_12101_1' to the reference catalog.
2025-01-10 19:46:36,285 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_12101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_12101_00003_nis_cal' catalog.
2025-01-10 19:46:36,285 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:46:36,287 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01595, 0.01595 (arcsec) with significance of 32 and 32 matches.
2025-01-10 19:46:36,288 - stpipe.Image3Pipeline.tweakreg - INFO - Found 31 matches for 'GROUP ID: jw02079004002_12101_1'...
2025-01-10 19:46:36,288 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:46:36,290 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_12101_1:
2025-01-10 19:46:36,291 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.000101799 YSH: 0.00375681
2025-01-10 19:46:36,291 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:46:36,292 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00711466 FIT MAE: 0.00646931
2025-01-10 19:46:36,292 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 31 objects.
2025-01-10 19:46:36,335 - stpipe.Image3Pipeline.tweakreg - INFO - Added 30 unmatched sources from 'GROUP ID: jw02079004002_12101_1' to the reference catalog.
2025-01-10 19:46:37,367 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_2' to the reference catalog.
2025-01-10 19:46:37,435 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_12101_00001_nis_cal' catalog.
2025-01-10 19:46:37,435 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:46:37,437 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01595, 0.01595 (arcsec) with significance of 39.96 and 41 matches.
2025-01-10 19:46:37,439 - stpipe.Image3Pipeline.tweakreg - INFO - Found 38 matches for 'GROUP ID: jw02079004002_10101_2'...
2025-01-10 19:46:37,439 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:46:37,441 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_10101_2:
2025-01-10 19:46:37,441 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.000177396 YSH: 0.000304604
2025-01-10 19:46:37,442 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:46:37,442 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00785167 FIT MAE: 0.0067608
2025-01-10 19:46:37,442 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 38 objects.
2025-01-10 19:46:37,486 - stpipe.Image3Pipeline.tweakreg - INFO - Added 12 unmatched sources from 'GROUP ID: jw02079004002_10101_2' to the reference catalog.
2025-01-10 19:46:38,376 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_1' to the reference catalog.
2025-01-10 19:46:38,445 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00002_nis_cal' catalog.
2025-01-10 19:46:38,446 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:46:38,448 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01595, 0.01595 (arcsec) with significance of 40.44 and 46 matches.
2025-01-10 19:46:38,449 - stpipe.Image3Pipeline.tweakreg - INFO - Found 44 matches for 'GROUP ID: jw02079004002_10101_1'...
2025-01-10 19:46:38,449 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:46:38,451 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_10101_1:
2025-01-10 19:46:38,452 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00305461 YSH: -0.000371486
2025-01-10 19:46:38,452 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:46:38,452 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0106651 FIT MAE: 0.00949312
2025-01-10 19:46:38,453 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 44 objects.
2025-01-10 19:46:38,497 - stpipe.Image3Pipeline.tweakreg - INFO - Added 15 unmatched sources from 'GROUP ID: jw02079004002_10101_1' to the reference catalog.
2025-01-10 19:46:39,269 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_08101_1' to the reference catalog.
2025-01-10 19:46:39,345 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_08101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00001_nis_cal' catalog.
2025-01-10 19:46:39,346 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:46:39,347 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01595, 0.01595 (arcsec) with significance of 56.12 and 59 matches.
2025-01-10 19:46:39,349 - stpipe.Image3Pipeline.tweakreg - INFO - Found 55 matches for 'GROUP ID: jw02079004002_08101_1'...
2025-01-10 19:46:39,349 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:46:39,352 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_08101_1:
2025-01-10 19:46:39,352 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00113343 YSH: 0.000181515
2025-01-10 19:46:39,353 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:46:39,353 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0084289 FIT MAE: 0.00657388
2025-01-10 19:46:39,353 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 53 objects.
2025-01-10 19:46:39,398 - stpipe.Image3Pipeline.tweakreg - INFO - Added 7 unmatched sources from 'GROUP ID: jw02079004002_08101_1' to the reference catalog.
2025-01-10 19:46:39,984 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_4' to the reference catalog.
2025-01-10 19:46:40,058 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00004_nis_cal' catalog with sources from the reference 'jw02079004002_08101_00001_nis_cal' catalog.
2025-01-10 19:46:40,058 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:46:40,060 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01595, 0.01595 (arcsec) with significance of 43.23 and 47 matches.
2025-01-10 19:46:40,061 - stpipe.Image3Pipeline.tweakreg - INFO - Found 44 matches for 'GROUP ID: jw02079004002_10101_4'...
2025-01-10 19:46:40,062 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:46:40,064 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_10101_4:
2025-01-10 19:46:40,064 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00108547 YSH: -0.00178554
2025-01-10 19:46:40,064 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:46:40,065 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00845128 FIT MAE: 0.00633818
2025-01-10 19:46:40,065 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 43 objects.
2025-01-10 19:46:40,109 - stpipe.Image3Pipeline.tweakreg - INFO - Added 7 unmatched sources from 'GROUP ID: jw02079004002_10101_4' to the reference catalog.
2025-01-10 19:46:40,520 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_3' to the reference catalog.
2025-01-10 19:46:40,593 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00004_nis_cal' catalog.
2025-01-10 19:46:40,593 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:46:40,595 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01595, 0.01595 (arcsec) with significance of 35.41 and 45 matches.
2025-01-10 19:46:40,596 - stpipe.Image3Pipeline.tweakreg - INFO - Found 43 matches for 'GROUP ID: jw02079004002_10101_3'...
2025-01-10 19:46:40,596 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:46:40,599 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_10101_3:
2025-01-10 19:46:40,599 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00255837 YSH: -0.00149242
2025-01-10 19:46:40,599 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:46:40,600 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00841303 FIT MAE: 0.00745714
2025-01-10 19:46:40,600 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 42 objects.
2025-01-10 19:46:40,645 - stpipe.Image3Pipeline.tweakreg - INFO - Added 9 unmatched sources from 'GROUP ID: jw02079004002_10101_3' to the reference catalog.
2025-01-10 19:46:40,853 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_12101_2' to the reference catalog.
2025-01-10 19:46:40,926 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_12101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00003_nis_cal' catalog.
2025-01-10 19:46:40,927 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:46:40,928 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01595, 0.01595 (arcsec) with significance of 42.29 and 47 matches.
2025-01-10 19:46:40,929 - stpipe.Image3Pipeline.tweakreg - INFO - Found 41 matches for 'GROUP ID: jw02079004002_12101_2'...
2025-01-10 19:46:40,930 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:46:40,932 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_12101_2:
2025-01-10 19:46:40,933 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.000278312 YSH: 0.000581292
2025-01-10 19:46:40,933 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:46:40,933 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00952347 FIT MAE: 0.00851925
2025-01-10 19:46:40,934 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 39 objects.
2025-01-10 19:46:41,312 - stpipe.Image3Pipeline.tweakreg - INFO - Added 1 unmatched sources from 'GROUP ID: jw02079004002_12101_2' to the reference catalog.
2025-01-10 19:46:41,313 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:46:41,314 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2025-01-10 19:46:41.313464
2025-01-10 19:46:41,314 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:09.460825
2025-01-10 19:46:41,314 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:46:41,693 - stpipe.Image3Pipeline.tweakreg - WARNING - Not enough sources (7) in the reference catalog for the single-group alignment step to perform a fit. Skipping alignment to the input reference catalog!
2025-01-10 19:46:41,700 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done
2025-01-10 19:46:42,011 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f29829e6710>,).
2025-01-10 19:46:42,167 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:46:42,167 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2025-01-10 19:46:42.167162
2025-01-10 19:46:42,168 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:46:42,168 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'match'
2025-01-10 19:46:42,169 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN
2025-01-10 19:46:42,170 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF
2025-01-10 19:46:42,170 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:46:42,171 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions.
2025-01-10 19:47:03,436 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_08101_00001_nis_cal.fits. Sky background: 0.00700159
2025-01-10 19:47:03,436 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00001_nis_cal.fits. Sky background: 0
2025-01-10 19:47:03,437 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00002_nis_cal.fits. Sky background: 0.00714181
2025-01-10 19:47:03,437 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00003_nis_cal.fits. Sky background: 0.0089941
2025-01-10 19:47:03,438 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00004_nis_cal.fits. Sky background: 0.0122065
2025-01-10 19:47:03,438 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_12101_00001_nis_cal.fits. Sky background: 0.0119722
2025-01-10 19:47:03,439 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_12101_00002_nis_cal.fits. Sky background: 0.00979612
2025-01-10 19:47:03,439 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_12101_00003_nis_cal.fits. Sky background: 0.00915926
2025-01-10 19:47:03,440 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:47:03,440 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2025-01-10 19:47:03.440431
2025-01-10 19:47:03,441 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:21.273269
2025-01-10 19:47:03,441 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:47:03,465 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done
2025-01-10 19:47:03,782 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f29829e6710>,).
2025-01-10 19:47:03,782 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection mode: imaging
2025-01-10 19:47:03,783 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection asn_id: o004
2025-01-10 19:47:03,784 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter kernel: square
2025-01-10 19:47:03,784 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter pixfrac: 1.0
2025-01-10 19:47:03,785 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter fillval: NAN
2025-01-10 19:47:03,785 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter weight_type: ivm
2025-01-10 19:47:03,786 - stpipe.Image3Pipeline.outlier_detection - INFO - Output pixel scale ratio: 1.0
2025-01-10 19:47:03,821 - stpipe.Image3Pipeline.outlier_detection - INFO - Computed output pixel scale: 0.0655645109798961 arcsec.
2025-01-10 19:47:03,823 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:47:07,042 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:47:10,249 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:47:13,455 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:47:16,662 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:47:19,882 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:47:23,113 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:47:26,365 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:47:33,410 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:47:33,639 - stpipe.Image3Pipeline.outlier_detection - INFO - 6141 pixels marked as outliers
2025-01-10 19:47:35,734 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:47:35,966 - stpipe.Image3Pipeline.outlier_detection - INFO - 6342 pixels marked as outliers
2025-01-10 19:47:38,058 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:47:38,286 - stpipe.Image3Pipeline.outlier_detection - INFO - 6469 pixels marked as outliers
2025-01-10 19:47:40,386 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:47:40,613 - stpipe.Image3Pipeline.outlier_detection - INFO - 6144 pixels marked as outliers
2025-01-10 19:47:42,724 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:47:42,951 - stpipe.Image3Pipeline.outlier_detection - INFO - 6451 pixels marked as outliers
2025-01-10 19:47:45,076 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:47:45,300 - stpipe.Image3Pipeline.outlier_detection - INFO - 6392 pixels marked as outliers
2025-01-10 19:47:47,395 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:47:47,623 - stpipe.Image3Pipeline.outlier_detection - INFO - 6206 pixels marked as outliers
2025-01-10 19:47:49,782 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2025-01-10 19:47:50,010 - stpipe.Image3Pipeline.outlier_detection - INFO - 6278 pixels marked as outliers
2025-01-10 19:47:50,265 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_08101_00001_nis_o004_crf.fits
2025-01-10 19:47:50,483 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_10101_00001_nis_o004_crf.fits
2025-01-10 19:47:50,696 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_10101_00002_nis_o004_crf.fits
2025-01-10 19:47:50,907 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_10101_00003_nis_o004_crf.fits
2025-01-10 19:47:51,118 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_10101_00004_nis_o004_crf.fits
2025-01-10 19:47:51,328 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_12101_00001_nis_o004_crf.fits
2025-01-10 19:47:51,538 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_12101_00002_nis_o004_crf.fits
2025-01-10 19:47:51,753 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_12101_00003_nis_o004_crf.fits
2025-01-10 19:47:51,754 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done
2025-01-10 19:47:52,076 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f29829e6710>,).
2025-01-10 19:47:52,364 - stpipe.Image3Pipeline.resample - INFO - Driz parameter kernel: square
2025-01-10 19:47:52,364 - stpipe.Image3Pipeline.resample - INFO - Driz parameter pixfrac: 1.0
2025-01-10 19:47:52,365 - stpipe.Image3Pipeline.resample - INFO - Driz parameter fillval: NAN
2025-01-10 19:47:52,366 - stpipe.Image3Pipeline.resample - INFO - Driz parameter weight_type: ivm
2025-01-10 19:47:52,366 - stpipe.Image3Pipeline.resample - INFO - Output pixel scale ratio: 1.0
2025-01-10 19:47:52,404 - stpipe.Image3Pipeline.resample - INFO - Computed output pixel scale: 0.0655645109798961 arcsec.
2025-01-10 19:47:52,416 - stpipe.Image3Pipeline.resample - INFO - Resampling science and variance data
2025-01-10 19:47:55,362 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:47:56,254 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:47:57,121 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:00,896 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:01,775 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:02,636 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:06,382 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:07,261 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:08,120 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:11,868 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:12,753 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:13,611 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:17,371 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:18,270 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:19,127 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:22,863 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:23,779 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:24,643 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:28,382 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:29,278 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:30,142 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:33,896 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:34,788 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:35,643 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2025-01-10 19:48:36,777 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.147101662 -27.808518168 53.188747319 -27.795515452 53.174270341 -27.759239554 53.132636845 -27.772237933
2025-01-10 19:48:37,119 - stpipe.Image3Pipeline.resample - INFO - Saved model in custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_i2d.fits
2025-01-10 19:48:37,119 - stpipe.Image3Pipeline.resample - INFO - Step resample done
2025-01-10 19:48:37,408 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2145, 2112) from jw02079-o004_t001_niriss_clear-f150w_i2d.fits>,).
2025-01-10 19:48:37,421 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file: crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2025-01-10 19:48:37,428 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file: crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2025-01-10 19:48:37,428 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRISS
2025-01-10 19:48:37,429 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NIS
2025-01-10 19:48:37,429 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: CLEAR
2025-01-10 19:48:37,430 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: F150W
2025-01-10 19:48:37,430 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL
2025-01-10 19:48:37,470 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 1.19753
2025-01-10 19:48:43,979 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 229 sources
2025-01-10 19:48:44,326 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_cat.ecsv
2025-01-10 19:48:44,443 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_segm.fits
2025-01-10 19:48:44,444 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw02079-o004_t001_niriss_clear-f150w_segm.fits
2025-01-10 19:48:44,446 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done
2025-01-10 19:48:44,458 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done
2025-01-10 19:48:44,458 - stpipe - INFO - Results used jwst version: 1.17.1
# remove unnecessary files to save disk space
for crf in glob.glob(os.path.join(custom_run_image3, '*crf.fits')):
os.remove(crf)
Inspecting Custom Results#
default_i2d = os.path.join(default_run_image3, os.path.basename(i2d_file))
compare_i2ds = [i2d_file, default_i2d]
compare_segm = [i2d_file.replace('i2d.fits', 'segm.fits'), default_i2d.replace('i2d.fits', 'segm.fits')]
compare_fig = plot_image_and_segmentation_map(compare_i2ds, compare_segm)
The cell below shows similar information using Imviz instead to visualize this.
imviz = Imviz()
viewer = imviz.default_viewer
for img, label in zip([i2d_file, os.path.join(default_run_image3, os.path.basename(i2d_file))], ['custom', 'default']):
print(f'Plotting: {img}')
title = f"{label} obs{fits.getval(img, 'OBSERVTN')} {fits.getval(img, 'PUPIL')}"
with warnings.catch_warnings():
warnings.simplefilter('ignore')
imviz.load_data(img, data_label=title)
# this aligns the image to use the WCS coordinates
linking = imviz.plugins['Orientation']
linking.link_type = 'WCS'
# also plot the associated catalog
cat = Table.read(img.replace('i2d.fits', 'cat.ecsv'))
# format the table into the format imviz expects
t_xy = Table({'x': cat['xcentroid'],
'y': cat['ycentroid']})
viewer.marker = {'color': 'orange', 'alpha': 1, 'markersize': 20, 'fill': False}
viewer.add_markers(t_xy, marker_name=f"{label} catalog")
# This changes the stretch of all of the images
plotopt = imviz.plugins['Plot Options']
plotopt.select_all(viewers=True, layers=True)
plotopt.stretch_preset = '99.5%'
imviz.show()
Plotting: custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_i2d.fits
2025-01-10 19:48:48,127 - stpipe - WARNING - /opt/hostedtoolcache/Python/3.11.11/x64/lib/python3.11/site-packages/jdaviz/core/user_api.py:53: AstropyDeprecationWarning: The link_type function is deprecated and may be removed in a future version.
Use align_by instead.
exp_obj = getattr(self._obj, attr)
2025-01-10 19:48:48,961 - stpipe - WARNING - /opt/hostedtoolcache/Python/3.11.11/x64/lib/python3.11/site-packages/jdaviz/core/user_api.py:53: AstropyDeprecationWarning: The link_type function is deprecated and may be removed in a future version.
Use align_by instead.
exp_obj = getattr(self._obj, attr)
Plotting: default_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_i2d.fits
Calibrate the remaining images if you are happy with the above results
image3_asns = np.sort(glob.glob('*image3*asn*.json'))
for img3_asn in image3_asns:
# check if the calibrated file already exists
asn_data = json.load(open(img3_asn))
i2d_file = os.path.join(custom_run_image3, f"{asn_data['products'][0]['name']}_i2d.fits")
if os.path.exists(i2d_file):
print(i2d_file, 'cal file already exists.')
continue
# call the image3 pipeline in the same way as before, but add a few new modifications
cust_img3 = Image3Pipeline.call(img3_asn,
steps={
'source_catalog': {'kernel_fwhm': 5.0,
'snr_threshold': 10.0,
'npixels': 50,
'deblend': True,
},
'tweakreg': {'snr_threshold': 20,
'abs_refcat': 'GAIADR3',
'save_catalogs': True,
'searchrad': 3.0,
'kernel_fwhm': 2.302,
'fitgeometry': 'shift',
},
},
save_results=True,
output_dir=custom_run_image3)
2025-01-10 19:48:49,387 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0075.asdf
2025-01-10 19:48:49,399 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0002.asdf
2025-01-10 19:48:49,413 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:48:49,422 - stpipe - INFO - PARS-SOURCECATALOGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0002.asdf
2025-01-10 19:48:49,436 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created.
2025-01-10 19:48:49,437 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created.
2025-01-10 19:48:49,440 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created.
2025-01-10 19:48:49,441 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created.
2025-01-10 19:48:49,442 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2025-01-10 19:48:49,443 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:48:49,444 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created.
2025-01-10 19:48:49,787 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('jw02079-o004_20231119t124442_image3_00002_asn.json',).
2025-01-10 19:48:49,800 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: custom_image3_calibrated
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
in_memory: True
steps:
assign_mtwcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: True
output_use_index: True
save_results: False
skip: False
suffix: assign_mtwcs
search_output_file: True
input_dir: ''
tweakreg:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: True
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_catalogs: True
use_custom_catalogs: False
catalog_format: ecsv
catfile: ''
starfinder: iraf
snr_threshold: 20
bkg_boxsize: 400
kernel_fwhm: 2.302
minsep_fwhm: 0.0
sigma_radius: 1.5
sharplo: 0.5
sharphi: 3.0
roundlo: 0.0
roundhi: 0.2
brightest: 100
peakmax: None
npixels: 10
connectivity: '8'
nlevels: 32
contrast: 0.001
multithresh_mode: exponential
localbkg_width: 0
apermask_method: correct
kron_params: None
enforce_user_order: False
expand_refcat: False
minobj: 10
fitgeometry: shift
nclip: 3
sigma: 3.0
searchrad: 3.0
use2dhist: True
separation: 1.5
tolerance: 1.0
xoffset: 0.0
yoffset: 0.0
abs_refcat: GAIADR3
save_abs_catalog: False
abs_minobj: 15
abs_fitgeometry: rshift
abs_nclip: 3
abs_sigma: 3.0
abs_searchrad: 6.0
abs_use2dhist: True
abs_separation: 1.0
abs_tolerance: 0.7
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
in_memory: True
skymatch:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
skymethod: match
match_down: True
subtract: False
stepsize: None
skystat: mode
dqbits: ~DO_NOT_USE+NON_SCIENCE
lower: None
upper: None
nclip: 5
lsigma: 4.0
usigma: 4.0
binwidth: 0.1
in_memory: True
outlier_detection:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: False
input_dir: ''
weight_type: ivm
pixfrac: 1.0
kernel: square
fillval: NAN
maskpt: 0.7
snr: 5.0 4.0
scale: 2.1 0.7
backg: 0.0
kernel_size: 7 7
threshold_percent: 99.8
rolling_window_width: 25
ifu_second_check: False
save_intermediate_results: False
resample_data: True
good_bits: ~DO_NOT_USE
in_memory: False
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
source_catalog:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: cat
search_output_file: True
input_dir: ''
bkg_boxsize: 100
kernel_fwhm: 5.0
snr_threshold: 10.0
npixels: 50
deblend: True
aperture_ee1: 50
aperture_ee2: 70
aperture_ee3: 80
ci1_star_threshold: 1.4
ci2_star_threshold: 1.275
2025-01-10 19:48:49,918 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004003_02101_00001_nis_cal.fits' reftypes = ['abvegaoffset', 'apcorr']
2025-01-10 19:48:49,921 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2025-01-10 19:48:49,922 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2025-01-10 19:48:49,923 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ...
2025-01-10 19:48:50,484 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f2983e0b090>,).
2025-01-10 19:48:51,840 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 63 sources in jw02079004003_02101_00001_nis_cal.fits.
2025-01-10 19:48:51,844 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_02101_00001_nis_cal_cat.ecsv
2025-01-10 19:48:53,441 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 76 sources in jw02079004003_04101_00001_nis_cal.fits.
2025-01-10 19:48:53,445 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_04101_00001_nis_cal_cat.ecsv
2025-01-10 19:48:54,966 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 82 sources in jw02079004003_04101_00002_nis_cal.fits.
2025-01-10 19:48:54,970 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_04101_00002_nis_cal_cat.ecsv
2025-01-10 19:48:56,484 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 67 sources in jw02079004003_04101_00003_nis_cal.fits.
2025-01-10 19:48:56,487 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_04101_00003_nis_cal_cat.ecsv
2025-01-10 19:48:58,132 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 64 sources in jw02079004003_04101_00004_nis_cal.fits.
2025-01-10 19:48:58,136 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_04101_00004_nis_cal_cat.ecsv
2025-01-10 19:48:59,751 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 68 sources in jw02079004003_06101_00001_nis_cal.fits.
2025-01-10 19:48:59,755 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_06101_00001_nis_cal_cat.ecsv
2025-01-10 19:49:01,304 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 74 sources in jw02079004003_06101_00002_nis_cal.fits.
2025-01-10 19:49:01,308 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_06101_00002_nis_cal_cat.ecsv
2025-01-10 19:49:02,913 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 63 sources in jw02079004003_06101_00003_nis_cal.fits.
2025-01-10 19:49:02,916 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_06101_00003_nis_cal_cat.ecsv
2025-01-10 19:49:02,941 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:49:02,942 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 8.
2025-01-10 19:49:02,942 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:49:02,942 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2025-01-10 19:49:02.942507
2025-01-10 19:49:02,943 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.8.9
2025-01-10 19:49:02,943 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:49:07,850 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw02079004003_04101_1' as reference image
2025-01-10 19:49:07,855 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_2' to the reference catalog.
2025-01-10 19:49:07,929 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00002_nis_cal' catalog with sources from the reference 'jw02079004003_04101_00001_nis_cal' catalog.
2025-01-10 19:49:07,930 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:49:07,931 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01585, 0.01585 (arcsec) with significance of 48 and 48 matches.
2025-01-10 19:49:07,933 - stpipe.Image3Pipeline.tweakreg - INFO - Found 46 matches for 'GROUP ID: jw02079004003_04101_2'...
2025-01-10 19:49:07,933 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:49:07,936 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_04101_2:
2025-01-10 19:49:07,936 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.000996637 YSH: -0.000929519
2025-01-10 19:49:07,936 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:49:07,937 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00930476 FIT MAE: 0.00813538
2025-01-10 19:49:07,937 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 45 objects.
2025-01-10 19:49:07,982 - stpipe.Image3Pipeline.tweakreg - INFO - Added 36 unmatched sources from 'GROUP ID: jw02079004003_04101_2' to the reference catalog.
2025-01-10 19:49:09,255 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_3' to the reference catalog.
2025-01-10 19:49:09,328 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00003_nis_cal' catalog with sources from the reference 'jw02079004003_04101_00002_nis_cal' catalog.
2025-01-10 19:49:09,329 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:49:09,330 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01585, 0.01585 (arcsec) with significance of 48.79 and 51 matches.
2025-01-10 19:49:09,332 - stpipe.Image3Pipeline.tweakreg - INFO - Found 46 matches for 'GROUP ID: jw02079004003_04101_3'...
2025-01-10 19:49:09,332 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:49:09,335 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_04101_3:
2025-01-10 19:49:09,336 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00372858 YSH: 0.00234908
2025-01-10 19:49:09,336 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:49:09,337 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0105263 FIT MAE: 0.00892933
2025-01-10 19:49:09,337 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 45 objects.
2025-01-10 19:49:09,381 - stpipe.Image3Pipeline.tweakreg - INFO - Added 21 unmatched sources from 'GROUP ID: jw02079004003_04101_3' to the reference catalog.
2025-01-10 19:49:10,436 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_02101_1' to the reference catalog.
2025-01-10 19:49:10,511 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_02101_00001_nis_cal' catalog with sources from the reference 'jw02079004003_04101_00003_nis_cal' catalog.
2025-01-10 19:49:10,512 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:49:10,513 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01585, 0.01585 (arcsec) with significance of 53.41 and 60 matches.
2025-01-10 19:49:10,514 - stpipe.Image3Pipeline.tweakreg - INFO - Found 55 matches for 'GROUP ID: jw02079004003_02101_1'...
2025-01-10 19:49:10,515 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:49:10,518 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_02101_1:
2025-01-10 19:49:10,518 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00356035 YSH: 0.00882396
2025-01-10 19:49:10,519 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:49:10,519 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0474884 FIT MAE: 0.0170886
2025-01-10 19:49:10,519 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 54 objects.
2025-01-10 19:49:10,563 - stpipe.Image3Pipeline.tweakreg - INFO - Added 8 unmatched sources from 'GROUP ID: jw02079004003_02101_1' to the reference catalog.
2025-01-10 19:49:11,316 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_06101_3' to the reference catalog.
2025-01-10 19:49:11,391 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_06101_00003_nis_cal' catalog with sources from the reference 'jw02079004003_02101_00001_nis_cal' catalog.
2025-01-10 19:49:11,391 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:49:11,393 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01585, 0.01585 (arcsec) with significance of 48.91 and 52 matches.
2025-01-10 19:49:11,394 - stpipe.Image3Pipeline.tweakreg - INFO - Found 49 matches for 'GROUP ID: jw02079004003_06101_3'...
2025-01-10 19:49:11,395 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:49:11,397 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_06101_3:
2025-01-10 19:49:11,397 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.000686564 YSH: -0.00190186
2025-01-10 19:49:11,397 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:49:11,398 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0093596 FIT MAE: 0.00822823
2025-01-10 19:49:11,398 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 46 objects.
2025-01-10 19:49:11,450 - stpipe.Image3Pipeline.tweakreg - INFO - Added 14 unmatched sources from 'GROUP ID: jw02079004003_06101_3' to the reference catalog.
2025-01-10 19:49:12,182 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_06101_2' to the reference catalog.
2025-01-10 19:49:12,256 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_06101_00002_nis_cal' catalog with sources from the reference 'jw02079004003_06101_00003_nis_cal' catalog.
2025-01-10 19:49:12,256 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:49:12,258 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01585, 0.01585 (arcsec) with significance of 50.46 and 57 matches.
2025-01-10 19:49:12,260 - stpipe.Image3Pipeline.tweakreg - INFO - Found 52 matches for 'GROUP ID: jw02079004003_06101_2'...
2025-01-10 19:49:12,260 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:49:12,262 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_06101_2:
2025-01-10 19:49:12,263 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0034148 YSH: -0.00616638
2025-01-10 19:49:12,263 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:49:12,264 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.010299 FIT MAE: 0.00895365
2025-01-10 19:49:12,264 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 51 objects.
2025-01-10 19:49:12,313 - stpipe.Image3Pipeline.tweakreg - INFO - Added 22 unmatched sources from 'GROUP ID: jw02079004003_06101_2' to the reference catalog.
2025-01-10 19:49:12,814 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_4' to the reference catalog.
2025-01-10 19:49:12,888 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00004_nis_cal' catalog with sources from the reference 'jw02079004003_06101_00002_nis_cal' catalog.
2025-01-10 19:49:12,888 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:49:12,890 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01585, 0.01585 (arcsec) with significance of 49.19 and 56 matches.
2025-01-10 19:49:12,891 - stpipe.Image3Pipeline.tweakreg - INFO - Found 50 matches for 'GROUP ID: jw02079004003_04101_4'...
2025-01-10 19:49:12,892 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:49:12,894 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_04101_4:
2025-01-10 19:49:12,894 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.000487236 YSH: -0.00298733
2025-01-10 19:49:12,895 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:49:12,895 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0104239 FIT MAE: 0.00939506
2025-01-10 19:49:12,895 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 49 objects.
2025-01-10 19:49:12,940 - stpipe.Image3Pipeline.tweakreg - INFO - Added 14 unmatched sources from 'GROUP ID: jw02079004003_04101_4' to the reference catalog.
2025-01-10 19:49:13,199 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_06101_1' to the reference catalog.
2025-01-10 19:49:13,276 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_06101_00001_nis_cal' catalog with sources from the reference 'jw02079004003_04101_00004_nis_cal' catalog.
2025-01-10 19:49:13,276 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:49:13,278 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01585, 0.01585 (arcsec) with significance of 51.95 and 63 matches.
2025-01-10 19:49:13,279 - stpipe.Image3Pipeline.tweakreg - INFO - Found 54 matches for 'GROUP ID: jw02079004003_06101_1'...
2025-01-10 19:49:13,280 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:49:13,282 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_06101_1:
2025-01-10 19:49:13,282 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00174762 YSH: -0.00251172
2025-01-10 19:49:13,282 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:49:13,283 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0101467 FIT MAE: 0.00848861
2025-01-10 19:49:13,283 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 53 objects.
2025-01-10 19:49:13,328 - stpipe.Image3Pipeline.tweakreg - INFO - Added 14 unmatched sources from 'GROUP ID: jw02079004003_06101_1' to the reference catalog.
2025-01-10 19:49:13,328 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:49:13,328 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2025-01-10 19:49:13.328450
2025-01-10 19:49:13,329 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:10.385943
2025-01-10 19:49:13,330 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:49:13,727 - stpipe.Image3Pipeline.tweakreg - WARNING - Not enough sources (7) in the reference catalog for the single-group alignment step to perform a fit. Skipping alignment to the input reference catalog!
2025-01-10 19:49:13,734 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done
2025-01-10 19:49:14,123 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f2983e0b090>,).
2025-01-10 19:49:14,280 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:49:14,280 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2025-01-10 19:49:14.280221
2025-01-10 19:49:14,281 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:49:14,281 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'match'
2025-01-10 19:49:14,282 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN
2025-01-10 19:49:14,283 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF
2025-01-10 19:49:14,283 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:49:14,284 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions.
2025-01-10 19:49:34,948 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_02101_00001_nis_cal.fits. Sky background: 0.0040431
2025-01-10 19:49:34,949 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00001_nis_cal.fits. Sky background: 0.00692684
2025-01-10 19:49:34,950 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00002_nis_cal.fits. Sky background: 0.00250132
2025-01-10 19:49:34,950 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00003_nis_cal.fits. Sky background: 0.010745
2025-01-10 19:49:34,950 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00004_nis_cal.fits. Sky background: 0.00900353
2025-01-10 19:49:34,951 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_06101_00001_nis_cal.fits. Sky background: 0.00891212
2025-01-10 19:49:34,951 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_06101_00002_nis_cal.fits. Sky background: 0
2025-01-10 19:49:34,952 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_06101_00003_nis_cal.fits. Sky background: 0.00679506
2025-01-10 19:49:34,952 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:49:34,952 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2025-01-10 19:49:34.952544
2025-01-10 19:49:34,953 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:20.672323
2025-01-10 19:49:34,953 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:49:34,974 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done
2025-01-10 19:49:35,328 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f2983e0b090>,).
2025-01-10 19:49:35,328 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection mode: imaging
2025-01-10 19:49:35,329 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection asn_id: o004
2025-01-10 19:49:35,330 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter kernel: square
2025-01-10 19:49:35,330 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter pixfrac: 1.0
2025-01-10 19:49:35,331 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter fillval: NAN
2025-01-10 19:49:35,331 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter weight_type: ivm
2025-01-10 19:49:35,331 - stpipe.Image3Pipeline.outlier_detection - INFO - Output pixel scale ratio: 1.0
2025-01-10 19:49:35,372 - stpipe.Image3Pipeline.outlier_detection - INFO - Computed output pixel scale: 0.06556229340666292 arcsec.
2025-01-10 19:49:35,375 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:49:38,608 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:49:41,841 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:49:45,130 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:49:48,375 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:49:51,641 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:49:54,897 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:49:58,114 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:50:05,235 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:50:05,464 - stpipe.Image3Pipeline.outlier_detection - INFO - 3768 pixels marked as outliers
2025-01-10 19:50:07,531 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:50:07,756 - stpipe.Image3Pipeline.outlier_detection - INFO - 4524 pixels marked as outliers
2025-01-10 19:50:09,838 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:50:10,061 - stpipe.Image3Pipeline.outlier_detection - INFO - 4133 pixels marked as outliers
2025-01-10 19:50:12,124 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:50:12,349 - stpipe.Image3Pipeline.outlier_detection - INFO - 3555 pixels marked as outliers
2025-01-10 19:50:14,435 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:50:14,664 - stpipe.Image3Pipeline.outlier_detection - INFO - 3755 pixels marked as outliers
2025-01-10 19:50:16,751 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:50:16,981 - stpipe.Image3Pipeline.outlier_detection - INFO - 4099 pixels marked as outliers
2025-01-10 19:50:19,081 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:50:19,309 - stpipe.Image3Pipeline.outlier_detection - INFO - 4429 pixels marked as outliers
2025-01-10 19:50:21,403 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2025-01-10 19:50:21,630 - stpipe.Image3Pipeline.outlier_detection - INFO - 3905 pixels marked as outliers
2025-01-10 19:50:21,881 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_02101_00001_nis_o004_crf.fits
2025-01-10 19:50:22,094 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_04101_00001_nis_o004_crf.fits
2025-01-10 19:50:22,306 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_04101_00002_nis_o004_crf.fits
2025-01-10 19:50:22,524 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_04101_00003_nis_o004_crf.fits
2025-01-10 19:50:22,736 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_04101_00004_nis_o004_crf.fits
2025-01-10 19:50:22,949 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_06101_00001_nis_o004_crf.fits
2025-01-10 19:50:23,163 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_06101_00002_nis_o004_crf.fits
2025-01-10 19:50:23,374 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_06101_00003_nis_o004_crf.fits
2025-01-10 19:50:23,375 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done
2025-01-10 19:50:23,740 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f2983e0b090>,).
2025-01-10 19:50:24,007 - stpipe.Image3Pipeline.resample - INFO - Driz parameter kernel: square
2025-01-10 19:50:24,007 - stpipe.Image3Pipeline.resample - INFO - Driz parameter pixfrac: 1.0
2025-01-10 19:50:24,008 - stpipe.Image3Pipeline.resample - INFO - Driz parameter fillval: NAN
2025-01-10 19:50:24,008 - stpipe.Image3Pipeline.resample - INFO - Driz parameter weight_type: ivm
2025-01-10 19:50:24,009 - stpipe.Image3Pipeline.resample - INFO - Output pixel scale ratio: 1.0
2025-01-10 19:50:24,046 - stpipe.Image3Pipeline.resample - INFO - Computed output pixel scale: 0.06556229340666292 arcsec.
2025-01-10 19:50:24,058 - stpipe.Image3Pipeline.resample - INFO - Resampling science and variance data
2025-01-10 19:50:26,994 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:27,895 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:28,769 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:32,543 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:33,427 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:34,294 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:38,066 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:38,949 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:39,811 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:43,559 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:44,442 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:45,310 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:49,065 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:49,967 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:50,830 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:54,637 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:55,534 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:50:56,400 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:51:00,178 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:51:01,085 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:51:01,947 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:51:05,717 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:51:06,616 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:51:07,478 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2025-01-10 19:51:08,630 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.145923829 -27.810578145 53.189333211 -27.797024897 53.174240939 -27.759208259 53.130844773 -27.772756794
2025-01-10 19:51:08,986 - stpipe.Image3Pipeline.resample - INFO - Saved model in custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_i2d.fits
2025-01-10 19:51:08,987 - stpipe.Image3Pipeline.resample - INFO - Step resample done
2025-01-10 19:51:09,338 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2236, 2202) from jw02079-o004_t001_niriss_clear-f200w_i2d.fits>,).
2025-01-10 19:51:09,351 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file: crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2025-01-10 19:51:09,358 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file: crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2025-01-10 19:51:09,359 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRISS
2025-01-10 19:51:09,359 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NIS
2025-01-10 19:51:09,359 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: CLEAR
2025-01-10 19:51:09,360 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: F200W
2025-01-10 19:51:09,360 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL
2025-01-10 19:51:09,401 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 1.68884
2025-01-10 19:51:16,468 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 270 sources
2025-01-10 19:51:16,853 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_cat.ecsv
2025-01-10 19:51:16,970 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_segm.fits
2025-01-10 19:51:16,971 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw02079-o004_t001_niriss_clear-f200w_segm.fits
2025-01-10 19:51:16,973 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done
2025-01-10 19:51:16,986 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done
2025-01-10 19:51:16,986 - stpipe - INFO - Results used jwst version: 1.17.1
2025-01-10 19:51:17,166 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0078.asdf
2025-01-10 19:51:17,178 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0006.asdf
custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_i2d.fits cal file already exists.
2025-01-10 19:51:17,193 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2025-01-10 19:51:17,203 - stpipe - INFO - PARS-SOURCECATALOGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0010.asdf
2025-01-10 19:51:17,218 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created.
2025-01-10 19:51:17,219 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created.
2025-01-10 19:51:17,221 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created.
2025-01-10 19:51:17,222 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created.
2025-01-10 19:51:17,224 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2025-01-10 19:51:17,225 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created.
2025-01-10 19:51:17,226 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created.
2025-01-10 19:51:17,568 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('jw02079-o004_20231119t124442_image3_00009_asn.json',).
2025-01-10 19:51:17,582 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: custom_image3_calibrated
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
in_memory: True
steps:
assign_mtwcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: True
output_use_index: True
save_results: False
skip: False
suffix: assign_mtwcs
search_output_file: True
input_dir: ''
tweakreg:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: True
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_catalogs: True
use_custom_catalogs: False
catalog_format: ecsv
catfile: ''
starfinder: iraf
snr_threshold: 20
bkg_boxsize: 400
kernel_fwhm: 2.302
minsep_fwhm: 0.0
sigma_radius: 1.5
sharplo: 0.5
sharphi: 3.0
roundlo: 0.0
roundhi: 0.2
brightest: 100
peakmax: None
npixels: 10
connectivity: '8'
nlevels: 32
contrast: 0.001
multithresh_mode: exponential
localbkg_width: 0
apermask_method: correct
kron_params: None
enforce_user_order: False
expand_refcat: False
minobj: 10
fitgeometry: shift
nclip: 3
sigma: 3.0
searchrad: 3.0
use2dhist: True
separation: 1.5
tolerance: 1.0
xoffset: 0.0
yoffset: 0.0
abs_refcat: GAIADR3
save_abs_catalog: False
abs_minobj: 15
abs_fitgeometry: rshift
abs_nclip: 3
abs_sigma: 3.0
abs_searchrad: 6.0
abs_use2dhist: True
abs_separation: 1.0
abs_tolerance: 0.7
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
in_memory: True
skymatch:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
skymethod: match
match_down: True
subtract: False
stepsize: None
skystat: mode
dqbits: ~DO_NOT_USE+NON_SCIENCE
lower: None
upper: None
nclip: 5
lsigma: 4.0
usigma: 4.0
binwidth: 0.1
in_memory: True
outlier_detection:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: False
input_dir: ''
weight_type: ivm
pixfrac: 1.0
kernel: square
fillval: NAN
maskpt: 0.7
snr: 5.0 4.0
scale: 2.1 0.7
backg: 0.0
kernel_size: 7 7
threshold_percent: 99.8
rolling_window_width: 25
ifu_second_check: False
save_intermediate_results: False
resample_data: True
good_bits: ~DO_NOT_USE
in_memory: False
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: ivm
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
source_catalog:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: cat
search_output_file: True
input_dir: ''
bkg_boxsize: 100
kernel_fwhm: 5.0
snr_threshold: 10.0
npixels: 50
deblend: True
aperture_ee1: 50
aperture_ee2: 70
aperture_ee3: 80
ci1_star_threshold: 1.4
ci2_star_threshold: 1.37
2025-01-10 19:51:17,703 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_02101_00001_nis_cal.fits' reftypes = ['abvegaoffset', 'apcorr']
2025-01-10 19:51:17,706 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2025-01-10 19:51:17,707 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2025-01-10 19:51:17,708 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ...
2025-01-10 19:51:18,511 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f2985a78810>,).
2025-01-10 19:51:19,875 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 46 sources in jw02079004001_02101_00001_nis_cal.fits.
2025-01-10 19:51:19,878 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_02101_00001_nis_cal_cat.ecsv
2025-01-10 19:51:21,395 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 48 sources in jw02079004001_04101_00001_nis_cal.fits.
2025-01-10 19:51:21,398 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_04101_00001_nis_cal_cat.ecsv
2025-01-10 19:51:22,983 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 47 sources in jw02079004001_04101_00002_nis_cal.fits.
2025-01-10 19:51:22,987 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_04101_00002_nis_cal_cat.ecsv
2025-01-10 19:51:24,500 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 40 sources in jw02079004001_04101_00003_nis_cal.fits.
2025-01-10 19:51:24,504 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_04101_00003_nis_cal_cat.ecsv
2025-01-10 19:51:26,111 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 45 sources in jw02079004001_04101_00004_nis_cal.fits.
2025-01-10 19:51:26,115 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_04101_00004_nis_cal_cat.ecsv
2025-01-10 19:51:27,732 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 44 sources in jw02079004001_06101_00001_nis_cal.fits.
2025-01-10 19:51:27,736 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_06101_00001_nis_cal_cat.ecsv
2025-01-10 19:51:29,365 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 33 sources in jw02079004001_06101_00002_nis_cal.fits.
2025-01-10 19:51:29,368 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_06101_00002_nis_cal_cat.ecsv
2025-01-10 19:51:30,970 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 39 sources in jw02079004001_06101_00003_nis_cal.fits.
2025-01-10 19:51:30,973 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_06101_00003_nis_cal_cat.ecsv
2025-01-10 19:51:32,600 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 50 sources in jw02079004001_08101_00001_nis_cal.fits.
2025-01-10 19:51:32,603 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_08101_00001_nis_cal_cat.ecsv
2025-01-10 19:51:34,201 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 54 sources in jw02079004001_10101_00001_nis_cal.fits.
2025-01-10 19:51:34,205 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_10101_00001_nis_cal_cat.ecsv
2025-01-10 19:51:35,795 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 45 sources in jw02079004001_10101_00002_nis_cal.fits.
2025-01-10 19:51:35,798 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_10101_00002_nis_cal_cat.ecsv
2025-01-10 19:51:37,429 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 36 sources in jw02079004001_10101_00003_nis_cal.fits.
2025-01-10 19:51:37,432 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_10101_00003_nis_cal_cat.ecsv
2025-01-10 19:51:39,033 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 49 sources in jw02079004001_10101_00004_nis_cal.fits.
2025-01-10 19:51:39,036 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_10101_00004_nis_cal_cat.ecsv
2025-01-10 19:51:40,637 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 42 sources in jw02079004001_12101_00001_nis_cal.fits.
2025-01-10 19:51:40,641 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_12101_00001_nis_cal_cat.ecsv
2025-01-10 19:51:42,393 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 40 sources in jw02079004001_12101_00002_nis_cal.fits.
2025-01-10 19:51:42,396 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_12101_00002_nis_cal_cat.ecsv
2025-01-10 19:51:43,913 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 46 sources in jw02079004001_12101_00003_nis_cal.fits.
2025-01-10 19:51:43,916 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_12101_00003_nis_cal_cat.ecsv
2025-01-10 19:51:45,872 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 50 sources in jw02079004002_02101_00001_nis_cal.fits.
2025-01-10 19:51:45,875 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_02101_00001_nis_cal_cat.ecsv
2025-01-10 19:51:47,497 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 45 sources in jw02079004002_04101_00001_nis_cal.fits.
2025-01-10 19:51:47,501 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_04101_00001_nis_cal_cat.ecsv
2025-01-10 19:51:49,027 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 46 sources in jw02079004002_04101_00002_nis_cal.fits.
2025-01-10 19:51:49,030 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_04101_00002_nis_cal_cat.ecsv
2025-01-10 19:51:50,642 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 39 sources in jw02079004002_04101_00003_nis_cal.fits.
2025-01-10 19:51:50,645 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_04101_00003_nis_cal_cat.ecsv
2025-01-10 19:51:52,236 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 47 sources in jw02079004002_04101_00004_nis_cal.fits.
2025-01-10 19:51:52,240 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_04101_00004_nis_cal_cat.ecsv
2025-01-10 19:51:53,839 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 40 sources in jw02079004002_06101_00001_nis_cal.fits.
2025-01-10 19:51:53,842 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_06101_00001_nis_cal_cat.ecsv
2025-01-10 19:51:55,427 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 38 sources in jw02079004002_06101_00002_nis_cal.fits.
2025-01-10 19:51:55,430 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_06101_00002_nis_cal_cat.ecsv
2025-01-10 19:51:57,016 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 34 sources in jw02079004002_06101_00003_nis_cal.fits.
2025-01-10 19:51:57,019 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_06101_00003_nis_cal_cat.ecsv
2025-01-10 19:51:57,045 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:51:57,046 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 24.
2025-01-10 19:51:57,046 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:51:57,047 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2025-01-10 19:51:57.046625
2025-01-10 19:51:57,048 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.8.9
2025-01-10 19:51:57,048 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:26,357 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw02079004001_04101_4' as reference image
2025-01-10 19:52:26,363 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_12101_3' to the reference catalog.
2025-01-10 19:52:26,439 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_12101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00004_nis_cal' catalog.
2025-01-10 19:52:26,440 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:26,441 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 24 and 24 matches.
2025-01-10 19:52:26,443 - stpipe.Image3Pipeline.tweakreg - INFO - Found 24 matches for 'GROUP ID: jw02079004001_12101_3'...
2025-01-10 19:52:26,443 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:26,445 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_12101_3:
2025-01-10 19:52:26,446 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00012055 YSH: -0.000625905
2025-01-10 19:52:26,446 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:26,447 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00835642 FIT MAE: 0.00736632
2025-01-10 19:52:26,448 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 23 objects.
2025-01-10 19:52:26,492 - stpipe.Image3Pipeline.tweakreg - INFO - Added 22 unmatched sources from 'GROUP ID: jw02079004001_12101_3' to the reference catalog.
2025-01-10 19:52:28,502 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_3' to the reference catalog.
2025-01-10 19:52:28,589 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_12101_00003_nis_cal' catalog.
2025-01-10 19:52:28,590 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:28,591 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 26.4 and 28 matches.
2025-01-10 19:52:28,593 - stpipe.Image3Pipeline.tweakreg - INFO - Found 29 matches for 'GROUP ID: jw02079004002_04101_3'...
2025-01-10 19:52:28,593 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:28,595 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_04101_3:
2025-01-10 19:52:28,596 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00199611 YSH: 0.000451459
2025-01-10 19:52:28,596 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:28,597 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00951485 FIT MAE: 0.00812901
2025-01-10 19:52:28,597 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 28 objects.
2025-01-10 19:52:28,642 - stpipe.Image3Pipeline.tweakreg - INFO - Added 10 unmatched sources from 'GROUP ID: jw02079004002_04101_3' to the reference catalog.
2025-01-10 19:52:30,389 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_12101_1' to the reference catalog.
2025-01-10 19:52:30,464 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_12101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00003_nis_cal' catalog.
2025-01-10 19:52:30,465 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:30,467 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 35.1 and 37 matches.
2025-01-10 19:52:30,468 - stpipe.Image3Pipeline.tweakreg - INFO - Found 35 matches for 'GROUP ID: jw02079004001_12101_1'...
2025-01-10 19:52:30,468 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:30,471 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_12101_1:
2025-01-10 19:52:30,471 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00261774 YSH: 0.00202987
2025-01-10 19:52:30,472 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:30,472 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00807871 FIT MAE: 0.0071372
2025-01-10 19:52:30,473 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 34 objects.
2025-01-10 19:52:30,518 - stpipe.Image3Pipeline.tweakreg - INFO - Added 7 unmatched sources from 'GROUP ID: jw02079004001_12101_1' to the reference catalog.
2025-01-10 19:52:32,482 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_02101_1' to the reference catalog.
2025-01-10 19:52:32,558 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_02101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_12101_00001_nis_cal' catalog.
2025-01-10 19:52:32,559 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:32,561 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 32.74 and 35 matches.
2025-01-10 19:52:32,562 - stpipe.Image3Pipeline.tweakreg - INFO - Found 33 matches for 'GROUP ID: jw02079004001_02101_1'...
2025-01-10 19:52:32,563 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:32,565 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_02101_1:
2025-01-10 19:52:32,565 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0059776 YSH: 0.001015
2025-01-10 19:52:32,565 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:32,566 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00672068 FIT MAE: 0.00582929
2025-01-10 19:52:32,566 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 33 objects.
2025-01-10 19:52:32,612 - stpipe.Image3Pipeline.tweakreg - INFO - Added 13 unmatched sources from 'GROUP ID: jw02079004001_02101_1' to the reference catalog.
2025-01-10 19:52:34,846 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_2' to the reference catalog.
2025-01-10 19:52:34,917 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00002_nis_cal' catalog with sources from the reference 'jw02079004001_02101_00001_nis_cal' catalog.
2025-01-10 19:52:34,918 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:34,919 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 35.74 and 38 matches.
2025-01-10 19:52:34,921 - stpipe.Image3Pipeline.tweakreg - INFO - Found 36 matches for 'GROUP ID: jw02079004001_04101_2'...
2025-01-10 19:52:34,922 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:34,923 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_04101_2:
2025-01-10 19:52:34,924 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00151232 YSH: -0.00247181
2025-01-10 19:52:34,924 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:34,925 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00658056 FIT MAE: 0.0052247
2025-01-10 19:52:34,925 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 35 objects.
2025-01-10 19:52:34,970 - stpipe.Image3Pipeline.tweakreg - INFO - Added 11 unmatched sources from 'GROUP ID: jw02079004001_04101_2' to the reference catalog.
2025-01-10 19:52:37,137 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_3' to the reference catalog.
2025-01-10 19:52:37,210 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00002_nis_cal' catalog.
2025-01-10 19:52:37,210 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:37,212 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 31.66 and 35 matches.
2025-01-10 19:52:37,213 - stpipe.Image3Pipeline.tweakreg - INFO - Found 29 matches for 'GROUP ID: jw02079004001_10101_3'...
2025-01-10 19:52:37,214 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:37,216 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_10101_3:
2025-01-10 19:52:37,216 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00126849 YSH: -0.00231879
2025-01-10 19:52:37,217 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:37,217 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00913743 FIT MAE: 0.00812695
2025-01-10 19:52:37,218 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 29 objects.
2025-01-10 19:52:37,263 - stpipe.Image3Pipeline.tweakreg - INFO - Added 7 unmatched sources from 'GROUP ID: jw02079004001_10101_3' to the reference catalog.
2025-01-10 19:52:39,283 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_3' to the reference catalog.
2025-01-10 19:52:39,358 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00003_nis_cal' catalog.
2025-01-10 19:52:39,359 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:39,360 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 34.69 and 38 matches.
2025-01-10 19:52:39,361 - stpipe.Image3Pipeline.tweakreg - INFO - Found 30 matches for 'GROUP ID: jw02079004001_04101_3'...
2025-01-10 19:52:39,362 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:39,364 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_04101_3:
2025-01-10 19:52:39,364 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00128741 YSH: -0.00152002
2025-01-10 19:52:39,364 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:39,365 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00928379 FIT MAE: 0.00802717
2025-01-10 19:52:39,365 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 30 objects.
2025-01-10 19:52:39,411 - stpipe.Image3Pipeline.tweakreg - INFO - Added 10 unmatched sources from 'GROUP ID: jw02079004001_04101_3' to the reference catalog.
2025-01-10 19:52:41,304 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_06101_1' to the reference catalog.
2025-01-10 19:52:41,380 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_06101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00003_nis_cal' catalog.
2025-01-10 19:52:41,381 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:41,382 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 31.84 and 39 matches.
2025-01-10 19:52:41,383 - stpipe.Image3Pipeline.tweakreg - INFO - Found 34 matches for 'GROUP ID: jw02079004001_06101_1'...
2025-01-10 19:52:41,384 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:41,386 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_06101_1:
2025-01-10 19:52:41,386 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00312058 YSH: 0.00190537
2025-01-10 19:52:41,387 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:41,387 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0083284 FIT MAE: 0.00721436
2025-01-10 19:52:41,388 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 34 objects.
2025-01-10 19:52:41,433 - stpipe.Image3Pipeline.tweakreg - INFO - Added 10 unmatched sources from 'GROUP ID: jw02079004001_06101_1' to the reference catalog.
2025-01-10 19:52:43,218 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_2' to the reference catalog.
2025-01-10 19:52:43,293 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00002_nis_cal' catalog with sources from the reference 'jw02079004001_06101_00001_nis_cal' catalog.
2025-01-10 19:52:43,294 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:43,296 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 35.14 and 42 matches.
2025-01-10 19:52:43,297 - stpipe.Image3Pipeline.tweakreg - INFO - Found 38 matches for 'GROUP ID: jw02079004002_04101_2'...
2025-01-10 19:52:43,297 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:43,300 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_04101_2:
2025-01-10 19:52:43,300 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0014252 YSH: -0.00177343
2025-01-10 19:52:43,300 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:43,301 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00739044 FIT MAE: 0.00555408
2025-01-10 19:52:43,301 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 37 objects.
2025-01-10 19:52:43,346 - stpipe.Image3Pipeline.tweakreg - INFO - Added 8 unmatched sources from 'GROUP ID: jw02079004002_04101_2' to the reference catalog.
2025-01-10 19:52:45,025 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_1' to the reference catalog.
2025-01-10 19:52:45,100 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00002_nis_cal' catalog.
2025-01-10 19:52:45,101 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:45,103 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01722, 0.01722 (arcsec) with significance of 42.71 and 49 matches.
2025-01-10 19:52:45,104 - stpipe.Image3Pipeline.tweakreg - INFO - Found 37 matches for 'GROUP ID: jw02079004001_10101_1'...
2025-01-10 19:52:45,105 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:45,107 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_10101_1:
2025-01-10 19:52:45,107 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00291636 YSH: -0.00247927
2025-01-10 19:52:45,108 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:45,109 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0169079 FIT MAE: 0.00941929
2025-01-10 19:52:45,109 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 36 objects.
2025-01-10 19:52:45,155 - stpipe.Image3Pipeline.tweakreg - INFO - Added 17 unmatched sources from 'GROUP ID: jw02079004001_10101_1' to the reference catalog.
2025-01-10 19:52:46,848 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_06101_2' to the reference catalog.
2025-01-10 19:52:47,388 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_06101_00002_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00001_nis_cal' catalog.
2025-01-10 19:52:47,389 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:47,391 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 33 and 33 matches.
2025-01-10 19:52:47,392 - stpipe.Image3Pipeline.tweakreg - INFO - Found 26 matches for 'GROUP ID: jw02079004001_06101_2'...
2025-01-10 19:52:47,392 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:47,394 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_06101_2:
2025-01-10 19:52:47,395 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00398255 YSH: -0.00124179
2025-01-10 19:52:47,395 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:47,396 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00783601 FIT MAE: 0.00730477
2025-01-10 19:52:47,396 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 25 objects.
2025-01-10 19:52:47,443 - stpipe.Image3Pipeline.tweakreg - INFO - Added 7 unmatched sources from 'GROUP ID: jw02079004001_06101_2' to the reference catalog.
2025-01-10 19:52:49,169 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_02101_1' to the reference catalog.
2025-01-10 19:52:49,246 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_02101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_06101_00002_nis_cal' catalog.
2025-01-10 19:52:49,247 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:49,248 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 34.45 and 45 matches.
2025-01-10 19:52:49,250 - stpipe.Image3Pipeline.tweakreg - INFO - Found 38 matches for 'GROUP ID: jw02079004002_02101_1'...
2025-01-10 19:52:49,250 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:49,252 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_02101_1:
2025-01-10 19:52:49,252 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00668354 YSH: 0.000808106
2025-01-10 19:52:49,253 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:49,254 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00700734 FIT MAE: 0.00612753
2025-01-10 19:52:49,254 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 38 objects.
2025-01-10 19:52:49,299 - stpipe.Image3Pipeline.tweakreg - INFO - Added 12 unmatched sources from 'GROUP ID: jw02079004002_02101_1' to the reference catalog.
2025-01-10 19:52:50,848 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_06101_2' to the reference catalog.
2025-01-10 19:52:50,924 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_06101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_02101_00001_nis_cal' catalog.
2025-01-10 19:52:50,925 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:50,927 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 30.83 and 39 matches.
2025-01-10 19:52:50,928 - stpipe.Image3Pipeline.tweakreg - INFO - Found 31 matches for 'GROUP ID: jw02079004002_06101_2'...
2025-01-10 19:52:50,929 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:50,931 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_06101_2:
2025-01-10 19:52:50,931 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00474691 YSH: -0.00166762
2025-01-10 19:52:50,931 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:50,932 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00882208 FIT MAE: 0.00743255
2025-01-10 19:52:50,933 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 30 objects.
2025-01-10 19:52:50,977 - stpipe.Image3Pipeline.tweakreg - INFO - Added 7 unmatched sources from 'GROUP ID: jw02079004002_06101_2' to the reference catalog.
2025-01-10 19:52:52,262 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_12101_2' to the reference catalog.
2025-01-10 19:52:52,332 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_12101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_06101_00002_nis_cal' catalog.
2025-01-10 19:52:52,333 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:52,335 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 35.9 and 43 matches.
2025-01-10 19:52:52,336 - stpipe.Image3Pipeline.tweakreg - INFO - Found 35 matches for 'GROUP ID: jw02079004001_12101_2'...
2025-01-10 19:52:52,337 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:52,339 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_12101_2:
2025-01-10 19:52:52,339 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00431646 YSH: -0.00141649
2025-01-10 19:52:52,340 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:52,340 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00806293 FIT MAE: 0.007271
2025-01-10 19:52:52,341 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 34 objects.
2025-01-10 19:52:52,385 - stpipe.Image3Pipeline.tweakreg - INFO - Added 5 unmatched sources from 'GROUP ID: jw02079004001_12101_2' to the reference catalog.
2025-01-10 19:52:53,486 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_06101_3' to the reference catalog.
2025-01-10 19:52:53,561 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_06101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_12101_00002_nis_cal' catalog.
2025-01-10 19:52:53,561 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:53,563 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 25.8 and 32 matches.
2025-01-10 19:52:53,564 - stpipe.Image3Pipeline.tweakreg - INFO - Found 32 matches for 'GROUP ID: jw02079004002_06101_3'...
2025-01-10 19:52:53,565 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:53,567 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_06101_3:
2025-01-10 19:52:53,567 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.000530813 YSH: -0.00151304
2025-01-10 19:52:53,568 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:53,568 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0092745 FIT MAE: 0.00773868
2025-01-10 19:52:53,569 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 32 objects.
2025-01-10 19:52:53,613 - stpipe.Image3Pipeline.tweakreg - INFO - Added 2 unmatched sources from 'GROUP ID: jw02079004002_06101_3' to the reference catalog.
2025-01-10 19:52:54,616 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_2' to the reference catalog.
2025-01-10 19:52:54,694 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_06101_00003_nis_cal' catalog.
2025-01-10 19:52:54,694 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:54,696 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 36.15 and 44 matches.
2025-01-10 19:52:54,697 - stpipe.Image3Pipeline.tweakreg - INFO - Found 35 matches for 'GROUP ID: jw02079004001_10101_2'...
2025-01-10 19:52:54,698 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:54,700 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_10101_2:
2025-01-10 19:52:54,700 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0007566 YSH: -0.00258755
2025-01-10 19:52:54,701 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:54,701 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00644784 FIT MAE: 0.0049892
2025-01-10 19:52:54,701 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 34 objects.
2025-01-10 19:52:54,747 - stpipe.Image3Pipeline.tweakreg - INFO - Added 10 unmatched sources from 'GROUP ID: jw02079004001_10101_2' to the reference catalog.
2025-01-10 19:52:55,634 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_06101_1' to the reference catalog.
2025-01-10 19:52:55,709 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_06101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00002_nis_cal' catalog.
2025-01-10 19:52:55,710 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:55,712 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 32.25 and 40 matches.
2025-01-10 19:52:55,713 - stpipe.Image3Pipeline.tweakreg - INFO - Found 32 matches for 'GROUP ID: jw02079004002_06101_1'...
2025-01-10 19:52:55,714 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:55,715 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_06101_1:
2025-01-10 19:52:55,716 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00183532 YSH: 0.0018933
2025-01-10 19:52:55,716 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:55,717 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00912277 FIT MAE: 0.00793426
2025-01-10 19:52:55,717 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 32 objects.
2025-01-10 19:52:55,763 - stpipe.Image3Pipeline.tweakreg - INFO - Added 8 unmatched sources from 'GROUP ID: jw02079004002_06101_1' to the reference catalog.
2025-01-10 19:52:56,552 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_4' to the reference catalog.
2025-01-10 19:52:56,628 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00004_nis_cal' catalog with sources from the reference 'jw02079004002_06101_00001_nis_cal' catalog.
2025-01-10 19:52:56,629 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:56,631 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 39.63 and 48 matches.
2025-01-10 19:52:56,632 - stpipe.Image3Pipeline.tweakreg - INFO - Found 39 matches for 'GROUP ID: jw02079004002_04101_4'...
2025-01-10 19:52:56,632 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:56,635 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_04101_4:
2025-01-10 19:52:56,635 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 4.40688e-05 YSH: -0.000478177
2025-01-10 19:52:56,636 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:56,636 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00496746 FIT MAE: 0.00375618
2025-01-10 19:52:56,636 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 38 objects.
2025-01-10 19:52:56,682 - stpipe.Image3Pipeline.tweakreg - INFO - Added 8 unmatched sources from 'GROUP ID: jw02079004002_04101_4' to the reference catalog.
2025-01-10 19:52:57,345 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_1' to the reference catalog.
2025-01-10 19:52:57,419 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00004_nis_cal' catalog.
2025-01-10 19:52:57,420 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:57,421 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.0194, 0.0194 (arcsec) with significance of 45.45 and 56 matches.
2025-01-10 19:52:57,423 - stpipe.Image3Pipeline.tweakreg - INFO - Found 34 matches for 'GROUP ID: jw02079004002_04101_1'...
2025-01-10 19:52:57,424 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:57,425 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_04101_1:
2025-01-10 19:52:57,426 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00130871 YSH: -7.8348e-05
2025-01-10 19:52:57,426 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:57,427 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00790005 FIT MAE: 0.00710188
2025-01-10 19:52:57,427 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 34 objects.
2025-01-10 19:52:57,473 - stpipe.Image3Pipeline.tweakreg - INFO - Added 11 unmatched sources from 'GROUP ID: jw02079004002_04101_1' to the reference catalog.
2025-01-10 19:52:57,973 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_4' to the reference catalog.
2025-01-10 19:52:58,048 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00004_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00001_nis_cal' catalog.
2025-01-10 19:52:58,048 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:58,050 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01463 (arcsec) with significance of 43.68 and 52 matches.
2025-01-10 19:52:58,051 - stpipe.Image3Pipeline.tweakreg - INFO - Found 39 matches for 'GROUP ID: jw02079004001_10101_4'...
2025-01-10 19:52:58,052 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:58,054 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_10101_4:
2025-01-10 19:52:58,055 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.000673563 YSH: 0.000490941
2025-01-10 19:52:58,055 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:58,056 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00761117 FIT MAE: 0.00404219
2025-01-10 19:52:58,056 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 38 objects.
2025-01-10 19:52:58,102 - stpipe.Image3Pipeline.tweakreg - INFO - Added 10 unmatched sources from 'GROUP ID: jw02079004001_10101_4' to the reference catalog.
2025-01-10 19:52:58,464 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_08101_1' to the reference catalog.
2025-01-10 19:52:58,539 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_08101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00004_nis_cal' catalog.
2025-01-10 19:52:58,539 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:58,541 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 35.95 and 48 matches.
2025-01-10 19:52:58,542 - stpipe.Image3Pipeline.tweakreg - INFO - Found 38 matches for 'GROUP ID: jw02079004001_08101_1'...
2025-01-10 19:52:58,543 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:58,545 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_08101_1:
2025-01-10 19:52:58,545 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00540835 YSH: -0.000280913
2025-01-10 19:52:58,546 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:58,546 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00620889 FIT MAE: 0.00551135
2025-01-10 19:52:58,546 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 38 objects.
2025-01-10 19:52:58,591 - stpipe.Image3Pipeline.tweakreg - INFO - Added 12 unmatched sources from 'GROUP ID: jw02079004001_08101_1' to the reference catalog.
2025-01-10 19:52:58,826 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_1' to the reference catalog.
2025-01-10 19:52:58,901 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_08101_00001_nis_cal' catalog.
2025-01-10 19:52:58,902 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:58,904 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01992, 0.01992 (arcsec) with significance of 52.02 and 65 matches.
2025-01-10 19:52:58,905 - stpipe.Image3Pipeline.tweakreg - INFO - Found 37 matches for 'GROUP ID: jw02079004001_04101_1'...
2025-01-10 19:52:58,906 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:58,907 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_04101_1:
2025-01-10 19:52:58,908 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.000874203 YSH: 0.000646871
2025-01-10 19:52:58,908 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:58,908 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.00766127 FIT MAE: 0.00663013
2025-01-10 19:52:58,909 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 37 objects.
2025-01-10 19:52:58,963 - stpipe.Image3Pipeline.tweakreg - INFO - Added 11 unmatched sources from 'GROUP ID: jw02079004001_04101_1' to the reference catalog.
2025-01-10 19:52:59,080 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_06101_3' to the reference catalog.
2025-01-10 19:52:59,154 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_06101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00001_nis_cal' catalog.
2025-01-10 19:52:59,155 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2025-01-10 19:52:59,157 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01589, 0.01589 (arcsec) with significance of 24.54 and 33 matches.
2025-01-10 19:52:59,158 - stpipe.Image3Pipeline.tweakreg - INFO - Found 32 matches for 'GROUP ID: jw02079004001_06101_3'...
2025-01-10 19:52:59,159 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2025-01-10 19:52:59,161 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_06101_3:
2025-01-10 19:52:59,161 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00134929 YSH: -0.000464421
2025-01-10 19:52:59,161 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:59,162 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0069845 FIT MAE: 0.00608576
2025-01-10 19:52:59,163 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 32 objects.
2025-01-10 19:52:59,213 - stpipe.Image3Pipeline.tweakreg - INFO - Added 7 unmatched sources from 'GROUP ID: jw02079004001_06101_3' to the reference catalog.
2025-01-10 19:52:59,214 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:59,214 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2025-01-10 19:52:59.214047
2025-01-10 19:52:59,215 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:01:02.167422
2025-01-10 19:52:59,215 - stpipe.Image3Pipeline.tweakreg - INFO -
2025-01-10 19:52:59,759 - stpipe.Image3Pipeline.tweakreg - WARNING - Not enough sources (7) in the reference catalog for the single-group alignment step to perform a fit. Skipping alignment to the input reference catalog!
2025-01-10 19:52:59,784 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done
2025-01-10 19:53:00,344 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f2985a78810>,).
2025-01-10 19:53:00,832 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:53:00,833 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2025-01-10 19:53:00.832520
2025-01-10 19:53:00,833 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:53:00,833 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'match'
2025-01-10 19:53:00,834 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN
2025-01-10 19:53:00,834 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF
2025-01-10 19:53:00,836 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:53:00,836 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions.
2025-01-10 19:56:33,980 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_02101_00001_nis_cal.fits. Sky background: 0.00350093
2025-01-10 19:56:33,981 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00001_nis_cal.fits. Sky background: 0.00163658
2025-01-10 19:56:33,982 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00002_nis_cal.fits. Sky background: 0.00274716
2025-01-10 19:56:33,982 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00003_nis_cal.fits. Sky background: 0.00244247
2025-01-10 19:56:33,983 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00004_nis_cal.fits. Sky background: 0
2025-01-10 19:56:33,983 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_06101_00001_nis_cal.fits. Sky background: 0.0021522
2025-01-10 19:56:33,984 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_06101_00002_nis_cal.fits. Sky background: 0.00463363
2025-01-10 19:56:33,984 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_06101_00003_nis_cal.fits. Sky background: 0.000652982
2025-01-10 19:56:33,985 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_08101_00001_nis_cal.fits. Sky background: 0.0071245
2025-01-10 19:56:33,985 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00001_nis_cal.fits. Sky background: 0.00502136
2025-01-10 19:56:33,986 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00002_nis_cal.fits. Sky background: 0.00415733
2025-01-10 19:56:33,986 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00003_nis_cal.fits. Sky background: 0.00518056
2025-01-10 19:56:33,986 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00004_nis_cal.fits. Sky background: 0.00267963
2025-01-10 19:56:33,987 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_12101_00001_nis_cal.fits. Sky background: 0.00417817
2025-01-10 19:56:33,987 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_12101_00002_nis_cal.fits. Sky background: 0.00396838
2025-01-10 19:56:33,988 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_12101_00003_nis_cal.fits. Sky background: 0.00227716
2025-01-10 19:56:33,988 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_02101_00001_nis_cal.fits. Sky background: 0.00179251
2025-01-10 19:56:33,989 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00001_nis_cal.fits. Sky background: 0.00280956
2025-01-10 19:56:33,989 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00002_nis_cal.fits. Sky background: 0.00631501
2025-01-10 19:56:33,990 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00003_nis_cal.fits. Sky background: 0.00435651
2025-01-10 19:56:33,990 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00004_nis_cal.fits. Sky background: 0.00454333
2025-01-10 19:56:33,991 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_06101_00001_nis_cal.fits. Sky background: 0.00235596
2025-01-10 19:56:33,991 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_06101_00002_nis_cal.fits. Sky background: 0.00979535
2025-01-10 19:56:33,992 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_06101_00003_nis_cal.fits. Sky background: 0.00624794
2025-01-10 19:56:33,995 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:56:33,995 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2025-01-10 19:56:33.995059
2025-01-10 19:56:33,995 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:03:33.162539
2025-01-10 19:56:33,996 - stpipe.Image3Pipeline.skymatch - INFO -
2025-01-10 19:56:34,052 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done
2025-01-10 19:56:34,448 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f2985a78810>,).
2025-01-10 19:56:34,449 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection mode: imaging
2025-01-10 19:56:34,450 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection asn_id: o004
2025-01-10 19:56:34,451 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter kernel: square
2025-01-10 19:56:34,451 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter pixfrac: 1.0
2025-01-10 19:56:34,452 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter fillval: NAN
2025-01-10 19:56:34,453 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter weight_type: ivm
2025-01-10 19:56:34,453 - stpipe.Image3Pipeline.outlier_detection - INFO - Output pixel scale ratio: 1.0
2025-01-10 19:56:34,525 - stpipe.Image3Pipeline.outlier_detection - INFO - Computed output pixel scale: 0.06556312845480262 arcsec.
2025-01-10 19:56:34,526 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:56:38,181 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:56:41,557 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:56:44,930 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:56:48,247 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:56:51,533 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:56:54,827 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:56:58,153 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:01,459 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:04,850 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:08,140 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:11,484 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:14,801 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:18,104 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:21,437 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:24,769 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:28,103 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:31,406 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:34,749 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:38,136 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:41,448 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:44,819 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:48,223 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:57:51,487 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2025-01-10 19:58:01,070 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:01,306 - stpipe.Image3Pipeline.outlier_detection - INFO - 14253 pixels marked as outliers
2025-01-10 19:58:03,470 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:03,700 - stpipe.Image3Pipeline.outlier_detection - INFO - 14374 pixels marked as outliers
2025-01-10 19:58:05,842 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:06,073 - stpipe.Image3Pipeline.outlier_detection - INFO - 13699 pixels marked as outliers
2025-01-10 19:58:08,206 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:08,442 - stpipe.Image3Pipeline.outlier_detection - INFO - 14232 pixels marked as outliers
2025-01-10 19:58:10,556 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:10,784 - stpipe.Image3Pipeline.outlier_detection - INFO - 14774 pixels marked as outliers
2025-01-10 19:58:12,896 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:13,127 - stpipe.Image3Pipeline.outlier_detection - INFO - 14144 pixels marked as outliers
2025-01-10 19:58:15,255 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:15,485 - stpipe.Image3Pipeline.outlier_detection - INFO - 13979 pixels marked as outliers
2025-01-10 19:58:17,630 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:17,860 - stpipe.Image3Pipeline.outlier_detection - INFO - 14397 pixels marked as outliers
2025-01-10 19:58:19,996 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:20,225 - stpipe.Image3Pipeline.outlier_detection - INFO - 13670 pixels marked as outliers
2025-01-10 19:58:22,353 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:22,583 - stpipe.Image3Pipeline.outlier_detection - INFO - 14766 pixels marked as outliers
2025-01-10 19:58:24,694 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:24,920 - stpipe.Image3Pipeline.outlier_detection - INFO - 14106 pixels marked as outliers
2025-01-10 19:58:27,041 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:27,271 - stpipe.Image3Pipeline.outlier_detection - INFO - 14571 pixels marked as outliers
2025-01-10 19:58:29,360 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:29,589 - stpipe.Image3Pipeline.outlier_detection - INFO - 14887 pixels marked as outliers
2025-01-10 19:58:31,703 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:31,932 - stpipe.Image3Pipeline.outlier_detection - INFO - 14302 pixels marked as outliers
2025-01-10 19:58:34,044 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:34,272 - stpipe.Image3Pipeline.outlier_detection - INFO - 14130 pixels marked as outliers
2025-01-10 19:58:36,374 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:36,604 - stpipe.Image3Pipeline.outlier_detection - INFO - 14120 pixels marked as outliers
2025-01-10 19:58:38,740 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:38,971 - stpipe.Image3Pipeline.outlier_detection - INFO - 14287 pixels marked as outliers
2025-01-10 19:58:41,084 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:41,314 - stpipe.Image3Pipeline.outlier_detection - INFO - 14512 pixels marked as outliers
2025-01-10 19:58:43,470 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:43,700 - stpipe.Image3Pipeline.outlier_detection - INFO - 13917 pixels marked as outliers
2025-01-10 19:58:45,846 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:46,077 - stpipe.Image3Pipeline.outlier_detection - INFO - 14524 pixels marked as outliers
2025-01-10 19:58:48,208 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:48,440 - stpipe.Image3Pipeline.outlier_detection - INFO - 14717 pixels marked as outliers
2025-01-10 19:58:50,572 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:50,803 - stpipe.Image3Pipeline.outlier_detection - INFO - 14686 pixels marked as outliers
2025-01-10 19:58:52,954 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:53,189 - stpipe.Image3Pipeline.outlier_detection - INFO - 13995 pixels marked as outliers
2025-01-10 19:58:55,329 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2025-01-10 19:58:55,559 - stpipe.Image3Pipeline.outlier_detection - INFO - 13665 pixels marked as outliers
2025-01-10 19:58:55,828 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_02101_00001_nis_o004_crf.fits
2025-01-10 19:58:56,040 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_04101_00001_nis_o004_crf.fits
2025-01-10 19:58:56,256 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_04101_00002_nis_o004_crf.fits
2025-01-10 19:58:56,476 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_04101_00003_nis_o004_crf.fits
2025-01-10 19:58:56,691 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_04101_00004_nis_o004_crf.fits
2025-01-10 19:58:56,905 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_06101_00001_nis_o004_crf.fits
2025-01-10 19:58:57,116 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_06101_00002_nis_o004_crf.fits
2025-01-10 19:58:57,326 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_06101_00003_nis_o004_crf.fits
2025-01-10 19:58:57,540 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_08101_00001_nis_o004_crf.fits
2025-01-10 19:58:57,759 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_10101_00001_nis_o004_crf.fits
2025-01-10 19:58:57,973 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_10101_00002_nis_o004_crf.fits
2025-01-10 19:58:58,187 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_10101_00003_nis_o004_crf.fits
2025-01-10 19:58:58,406 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_10101_00004_nis_o004_crf.fits
2025-01-10 19:58:58,627 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_12101_00001_nis_o004_crf.fits
2025-01-10 19:58:58,855 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_12101_00002_nis_o004_crf.fits
2025-01-10 19:58:59,080 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_12101_00003_nis_o004_crf.fits
2025-01-10 19:58:59,298 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_02101_00001_nis_o004_crf.fits
2025-01-10 19:58:59,518 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_04101_00001_nis_o004_crf.fits
2025-01-10 19:58:59,730 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_04101_00002_nis_o004_crf.fits
2025-01-10 19:58:59,947 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_04101_00003_nis_o004_crf.fits
2025-01-10 19:59:00,180 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_04101_00004_nis_o004_crf.fits
2025-01-10 19:59:00,694 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_06101_00001_nis_o004_crf.fits
2025-01-10 19:59:00,943 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_06101_00002_nis_o004_crf.fits
2025-01-10 19:59:01,173 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_06101_00003_nis_o004_crf.fits
2025-01-10 19:59:01,173 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done
2025-01-10 19:59:01,589 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f2985a78810>,).
2025-01-10 19:59:02,444 - stpipe.Image3Pipeline.resample - INFO - Driz parameter kernel: square
2025-01-10 19:59:02,444 - stpipe.Image3Pipeline.resample - INFO - Driz parameter pixfrac: 1.0
2025-01-10 19:59:02,445 - stpipe.Image3Pipeline.resample - INFO - Driz parameter fillval: NAN
2025-01-10 19:59:02,445 - stpipe.Image3Pipeline.resample - INFO - Driz parameter weight_type: ivm
2025-01-10 19:59:02,446 - stpipe.Image3Pipeline.resample - INFO - Output pixel scale ratio: 1.0
2025-01-10 19:59:02,521 - stpipe.Image3Pipeline.resample - INFO - Computed output pixel scale: 0.06556312845480262 arcsec.
2025-01-10 19:59:02,563 - stpipe.Image3Pipeline.resample - INFO - Resampling science and variance data
2025-01-10 19:59:05,976 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:06,867 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:07,736 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:11,780 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:12,674 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:13,534 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:17,373 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:18,268 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:19,130 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:22,937 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:23,838 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:24,699 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:28,503 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:29,383 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:30,246 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:34,054 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:34,962 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:35,834 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:39,631 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:40,531 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:41,392 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:45,173 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:46,070 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:46,930 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:50,711 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:51,596 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:52,464 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:56,208 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:57,114 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 19:59:57,971 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:01,742 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:02,635 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:03,501 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:07,262 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:08,157 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:09,016 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:12,778 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:13,661 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:14,518 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:18,289 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:19,188 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:20,047 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:23,777 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:24,666 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:25,531 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:29,267 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:30,157 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:31,023 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:34,779 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:35,652 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:36,509 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:40,279 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:41,177 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:42,040 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:45,810 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:46,702 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:47,568 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:51,371 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:52,273 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:53,142 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:56,931 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:57,816 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:00:58,679 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:01:02,422 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:01:03,314 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:01:04,228 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:01:08,007 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:01:08,908 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:01:09,769 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:01:13,576 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:01:14,466 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:01:15,327 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2025-01-10 20:01:16,468 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.147837671 -27.807256739 53.188373666 -27.794599954 53.174262434 -27.759241167 53.133737976 -27.771893837
2025-01-10 20:01:16,809 - stpipe.Image3Pipeline.resample - INFO - Saved model in custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_i2d.fits
2025-01-10 20:01:16,810 - stpipe.Image3Pipeline.resample - INFO - Step resample done
2025-01-10 20:01:17,201 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2088, 2059) from jw02079-o004_t001_niriss_clear-f115w_i2d.fits>,).
2025-01-10 20:01:17,214 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file: crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2025-01-10 20:01:17,220 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file: crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2025-01-10 20:01:17,221 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRISS
2025-01-10 20:01:17,221 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NIS
2025-01-10 20:01:17,222 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: CLEAR
2025-01-10 20:01:17,222 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: F115W
2025-01-10 20:01:17,223 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL
2025-01-10 20:01:17,263 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 0.76458
2025-01-10 20:01:23,456 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 279 sources
2025-01-10 20:01:23,830 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_cat.ecsv
2025-01-10 20:01:23,946 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_segm.fits
2025-01-10 20:01:23,947 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw02079-o004_t001_niriss_clear-f115w_segm.fits
2025-01-10 20:01:23,948 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done
2025-01-10 20:01:23,985 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done
2025-01-10 20:01:23,985 - stpipe - INFO - Results used jwst version: 1.17.1
# remove unnecessary files to save disk space
for crf in glob.glob(os.path.join(custom_run_image3, '*crf.fits')):
os.remove(crf)
# These are all resuts from the Image3 pipeline
cust_image3_i2d = np.sort(glob.glob(os.path.join(custom_run_image3, '*i2d.fits'))) # combined image over multiple dithers/mosaic
cust_image3_segm = np.sort(glob.glob(os.path.join(custom_run_image3, '*segm.fits'))) # segmentation map that defines the extent of a source
custom_fig = plot_image_and_segmentation_map(cust_image3_i2d, cust_image3_segm)
Refining the Source Catalog Further#
In the above cases, we have modified the results using the pipeline directly. It might be the case that perhaps you want to use someone else’s custom source catalog, or modify the source catalog even further from what was output by the pipeline. In these cases, we will then need to modify the spec2 ASN files to point to the new source catalog, which will be discussed in the spec2 notebook. Additionally, it can be useful to match all of the source IDs across the different catalogs. In this case, there are three different catalogs created by the pipeline that identify the same RA/Dec or X/Y pixel location as a different source ID, so we will edit those to have the same source ID values across the catalogs. These extra steps aren’t always necessary, but could be helpful in analyses of NIRISS WFSS data.
Matching Source IDs Across Catalogs#
In the above figures, you can see that the same source has multiple source IDs. Here we want to match all of the source IDs across all observations to be sure we are talking about the same source regardless of which filter or observation we look at. To do this, we use the astropy match_to_catalog_3d
function and rebase the labels.
The first step is to decide on a base catalog to match all of the other catalogs to. Here we’ll use the the observation 004 F115W filter.
custom_cats = np.sort(glob.glob(os.path.join(custom_run_image3, '*niriss_clear-f????_cat.ecsv'))) # cat filename format from image3 results
print("All image3 catalogs:\n", custom_cats)
base_cat = Table.read(custom_cats[0])
# save out the base catalog with a new name to be consistent
base_cat_name = custom_cats[0].replace('cat.ecsv', 'source-match_cat.ecsv')
base_cat.write(base_cat_name, overwrite=True)
print("\nBase catalog:", base_cat_name)
All image3 catalogs:
['custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_cat.ecsv'
'custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_cat.ecsv'
'custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_cat.ecsv']
Base catalog: custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_source-match_cat.ecsv
Loop through the remaining catalogs to match the IDs based off of sky coordinates matching to within 1 arcsecond.
max_sep = 1 * u.arcsec # adjust if necessary
base_sky = base_cat['sky_centroid']
for to_match_cat in custom_cats[1:]:
# read in the catalog
other_cat = Table.read(to_match_cat)
other_sky = other_cat['sky_centroid']
# find the matching sources between the two catalogs based on sky coordinates
idx, d2d, d3d = base_sky.match_to_catalog_3d(other_sky)
sep_constraint = d2d < max_sep
base_matches = base_cat[sep_constraint]
other_matches = other_cat[idx[sep_constraint]]
# rebase the ID values to be the same
other_matches['label'] = base_matches['label']
# save out the new catalog
match_cat_name = to_match_cat.replace('cat.ecsv', 'source-match_cat.ecsv')
other_matches.write(match_cat_name, overwrite=True)
print('Saved:', match_cat_name)
Saved: custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_source-match_cat.ecsv
Saved: custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_source-match_cat.ecsv
Look at the new source label numbers. They should match!
new_cat_fig = plot_image_and_segmentation_map(cust_image3_i2d, cust_image3_segm, cat_suffix='source-match_cat.ecsv',
xmin=1500, xmax=2000, ymin=800, ymax=1300)
Manually Editing the Source Catalog#
Looking ahead to the WFSS extraction, it might be that we only really care about one or two sources at any particular moment. In this case, it’s helpful to pair down the source catalog to just that source to make it easier to look at the extracted 1-D spectrum in the WFSS data.
To start, look at the current custom source catalog for one of the filters to get an idea of what is contained in the catalogs.
# first, look at the current, custom source catalog for the F200W filter
cat_name = np.sort(glob.glob(os.path.join(custom_run_image3, '*source-match_cat.ecsv')))[2]
cat = Table.read(cat_name)
print(cat_name)
cat
custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_source-match_cat.ecsv
label | xcentroid | ycentroid | sky_centroid | aper_bkg_flux | aper_bkg_flux_err | aper50_flux | aper50_flux_err | aper70_flux | aper70_flux_err | aper80_flux | aper80_flux_err | aper_total_flux | aper_total_flux_err | aper50_abmag | aper50_abmag_err | aper70_abmag | aper70_abmag_err | aper80_abmag | aper80_abmag_err | aper_total_abmag | aper_total_abmag_err | aper50_vegamag | aper50_vegamag_err | aper70_vegamag | aper70_vegamag_err | aper80_vegamag | aper80_vegamag_err | aper_total_vegamag | aper_total_vegamag_err | CI_70_50 | CI_80_70 | CI_80_50 | is_extended | sharpness | roundness | nn_label | nn_dist | isophotal_flux | isophotal_flux_err | isophotal_abmag | isophotal_abmag_err | isophotal_vegamag | isophotal_vegamag_err | isophotal_area | semimajor_sigma | semiminor_sigma | ellipticity | orientation | sky_orientation | sky_bbox_ll | sky_bbox_ul | sky_bbox_lr | sky_bbox_ur |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
deg,deg | Jy | Jy | Jy | Jy | Jy | Jy | Jy | Jy | Jy | Jy | pix | Jy | Jy | pix2 | pix | pix | deg | deg | deg,deg | deg,deg | deg,deg | deg,deg | |||||||||||||||||||||||||||||||
int32 | float64 | float64 | SkyCoord | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | bool | float64 | float32 | int32 | float64 | float64 | float32 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | float64 | SkyCoord | SkyCoord | SkyCoord | SkyCoord |
1 | 1976.3039 | 169.6596 | 53.13568409669427,-27.7756079930388 | 8.405765e-09 | 8.376293e-10 | 6.041376e-08 | 2.061325e-09 | 1.148013e-07 | 2.993193e-09 | 1.788850e-07 | 4.223272e-09 | 2.386132e-07 | 5.633384e-09 | 26.947160 | 0.036427 | 26.250133 | 0.027945 | 25.768565 | 0.025335 | 25.455764 | 0.025335 | 25.258318 | 0.036427 | 24.561291 | 0.027945 | 24.079723 | 0.025335 | 23.766922 | 0.025335 | 1.9003 | 1.5582 | 2.9610 | True | 0.488102 | -0.706799 | 14 | 46.553309 | 1.001637e-06 | 7.573089e-09 | 23.898224 | 0.008178 | 22.209382 | 0.008178 | 101.0 | 3.645722 | 1.881840 | 0.483822 | -2.251545 | 158.310476 | 53.13565677891035,-27.775767219581375 | 53.135831482847244,-27.775712704636856 | 53.13554039700687,-27.775475245837793 | 53.13571510053284,-27.77542073103943 |
2 | 1992.5966 | 213.2687 | 53.13641907329381,-27.775064015371814 | 6.168381e-09 | 1.251869e-09 | 1.716048e-07 | 1.960891e-09 | 3.012633e-07 | 2.737083e-09 | 4.395400e-07 | 3.687583e-09 | 5.862985e-07 | 4.918833e-09 | 25.813676 | 0.012336 | 25.202634 | 0.009820 | 24.792504 | 0.009071 | 24.479703 | 0.009071 | 24.124834 | 0.012336 | 23.513792 | 0.009820 | 23.103662 | 0.009071 | 22.790861 | 0.009071 | 1.7556 | 1.4590 | 2.5614 | True | 0.485961 | -0.711300 | 12 | 46.553309 | 9.311478e-07 | 5.379393e-09 | 23.977453 | 0.006254 | 22.288611 | 0.006254 | 73.0 | 2.551001 | 1.825632 | 0.284347 | -59.404584 | 101.157437 | 53.13634198645929,-27.775186491787156 | 53.136574923302916,-27.775113803996224 | 53.136266679661546,-27.77499756798264 | 53.136499616150665,-27.7749248803178 |
4 | 1651.8684 | 243.3791 | 53.139336364959114,-27.780733565626527 | 1.450437e-08 | 1.814730e-09 | 4.356462e-08 | 1.674096e-09 | 9.563929e-08 | 2.474161e-09 | 1.706653e-07 | 3.584261e-09 | 2.276490e-07 | 4.781014e-09 | 27.302165 | 0.040941 | 26.448409 | 0.027731 | 25.819637 | 0.022566 | 25.506836 | 0.022566 | 25.613323 | 0.040941 | 24.759567 | 0.027731 | 24.130795 | 0.022566 | 23.817994 | 0.022566 | 2.1953 | 1.7845 | 3.9175 | True | 0.371306 | 0.644818 | 35 | 174.023570 | 2.935361e-06 | 1.065455e-08 | 22.730846 | 0.003934 | 21.042004 | 0.003934 | 320.0 | 5.039317 | 4.470233 | 0.112929 | 75.462786 | 236.024807 | 53.139215581405836,-27.780971484215396 | 53.13970088797507,-27.780820040849484 | 53.13905810321647,-27.780576464904694 | 53.13954340824139,-27.780425022088156 |
5 | 275.6719 | 243.6906 | 53.14876715108877,-27.80436718019406 | 7.230324e-09 | 5.592304e-10 | 1.490784e-07 | 1.848744e-09 | 2.811548e-07 | 2.638768e-09 | 4.295992e-07 | 3.606607e-09 | 5.730385e-07 | 4.810820e-09 | 25.966464 | 0.013382 | 25.277636 | 0.010143 | 24.817341 | 0.009077 | 24.504540 | 0.009077 | 24.277621 | 0.013382 | 23.588794 | 0.010143 | 23.128499 | 0.009077 | 22.815698 | 0.009077 | 1.8860 | 1.5280 | 2.8817 | True | 0.410129 | -0.118221 | 18 | 51.184976 | 9.137957e-07 | 5.369915e-09 | 23.997877 | 0.006362 | 22.309035 | 0.006362 | 81.0 | 2.249278 | 2.191749 | 0.025576 | -35.951195 | 124.610826 | 53.14870179820285,-27.804487452729763 | 53.1489153736472,-27.804420803297464 | 53.14862644962452,-27.80429853562469 | 53.14884002474385,-27.804231886308056 |
6 | 1294.2138 | 261.6152 | 53.14213935300199,-27.786765693329126 | 1.300980e-07 | 8.211598e-09 | 8.253276e-07 | 4.372216e-09 | 1.486375e-06 | 6.178043e-09 | 2.267777e-06 | 8.475328e-09 | 3.024968e-06 | 1.130516e-08 | 24.108434 | 0.005737 | 23.469679 | 0.004503 | 23.010999 | 0.004050 | 22.698198 | 0.004050 | 22.419592 | 0.005737 | 21.780837 | 0.004503 | 21.322157 | 0.004050 | 21.009356 | 0.004050 | 1.8010 | 1.5257 | 2.7477 | True | 0.521275 | 0.922417 | 11 | 131.980718 | 3.482439e-05 | 2.463911e-08 | 20.045291 | 0.000768 | 18.356449 | 0.000768 | 869.0 | 7.457953 | 4.230191 | 0.432795 | 52.411497 | 212.973518 | 53.14192154310583,-27.787156431815166 | 53.142659244805124,-27.786926222878233 | 53.14168872188698,-27.786572494680346 | 53.14242642011623,-27.786342286977963 |
7 | 235.5958 | 275.5310 | 53.14965988276399,-27.804862532650926 | 8.776644e-09 | 5.148448e-10 | 3.290586e-08 | 1.486646e-09 | 6.030249e-08 | 2.170510e-09 | 9.213516e-08 | 3.123223e-09 | 1.228983e-07 | 4.166040e-09 | 27.606817 | 0.047976 | 26.949162 | 0.038393 | 26.488936 | 0.036195 | 26.176136 | 0.036195 | 25.917975 | 0.047976 | 25.260320 | 0.038393 | 24.800094 | 0.036195 | 24.487294 | 0.036195 | 1.8326 | 1.5279 | 2.8000 | True | 0.252687 | -0.170275 | 16 | 51.184976 | 1.426313e-06 | 7.702281e-09 | 23.514463 | 0.005847 | 21.825621 | 0.005847 | 186.0 | 4.700859 | 2.761014 | 0.412658 | -71.557142 | 89.004879 | 53.149506878353684,-27.805028002234152 | 53.14991461415255,-27.80490075976097 | 53.14941097795086,-27.80478756283202 | 53.14981871296005,-27.804660320639826 |
8 | 1027.3772 | 289.1676 | 53.144501553309844,-27.79118157077941 | 5.840191e-09 | 1.484395e-09 | 2.904094e-08 | 1.398882e-09 | 6.219223e-08 | 2.071598e-09 | 1.229204e-07 | 3.032450e-09 | 1.639624e-07 | 4.044958e-09 | 27.742473 | 0.051079 | 26.915660 | 0.035576 | 26.175940 | 0.026460 | 25.863139 | 0.026460 | 26.053631 | 0.051079 | 25.226818 | 0.035576 | 24.487098 | 0.026460 | 24.174297 | 0.026460 | 2.1415 | 1.9765 | 4.2327 | True | 0.046142 | -0.788289 | 23 | 56.330665 | 8.049001e-07 | 5.801840e-09 | 24.135645 | 0.007798 | 22.446803 | 0.007798 | 107.0 | 3.825215 | 1.922666 | 0.497371 | -62.893927 | 97.668094 | 53.14439294421933,-27.791328962623044 | 53.14470356556354,-27.79123202750119 | 53.14430391555375,-27.791105694170522 | 53.14461453633933,-27.791008759247443 |
9 | 1144.9490 | 283.3296 | 53.143583055562985,-27.789197701440116 | 5.519307e-09 | 1.032938e-09 | 2.264818e-07 | 2.085125e-09 | 3.681816e-07 | 2.826427e-09 | 4.982560e-07 | 3.697501e-09 | 6.646192e-07 | 4.932063e-09 | 25.512417 | 0.009950 | 24.984845 | 0.008303 | 24.656369 | 0.008027 | 24.343568 | 0.008027 | 23.823575 | 0.009950 | 23.296003 | 0.008303 | 22.967527 | 0.008027 | 22.654726 | 0.008027 | 1.6257 | 1.3533 | 2.2000 | True | 0.717308 | -0.824147 | 24 | 36.719942 | 1.001124e-06 | 5.736077e-09 | 23.898780 | 0.006203 | 22.209938 | 0.006203 | 92.0 | 2.721301 | 1.993646 | 0.267392 | -41.463480 | 119.098541 | 53.14350719711976,-27.78932660318253 | 53.14374015948041,-27.78925390338971 | 53.143425019992826,-27.78912050870438 | 53.14365798196671,-27.789047809049173 |
10 | 528.1102 | 288.1443 | 53.14790112419123,-27.799762384672267 | 7.696286e-09 | 8.649731e-10 | 1.575215e-07 | 1.884148e-09 | 2.717945e-07 | 2.637475e-09 | 3.889654e-07 | 3.577736e-09 | 5.188374e-07 | 4.772310e-09 | 25.906651 | 0.012910 | 25.314398 | 0.010485 | 24.925223 | 0.009941 | 24.612422 | 0.009941 | 24.217809 | 0.012910 | 23.625556 | 0.010485 | 23.236381 | 0.009941 | 22.923580 | 0.009941 | 1.7254 | 1.4311 | 2.4693 | True | 0.579427 | -0.631277 | 25 | 52.223108 | 1.020455e-06 | 5.944548e-09 | 23.878016 | 0.006306 | 22.189174 | 0.006306 | 103.0 | 2.810589 | 2.194507 | 0.219200 | -57.198381 | 103.363640 | 53.14782996691814,-27.799892934154492 | 53.14808236419751,-27.799814168186025 | 53.14774777360854,-27.799686842240764 | 53.14800017046891,-27.7996080764214 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
270 | 1580.9733 | 1291.8858 | 53.160174659306726,-27.775598049707874 | 9.953018e-08 | 4.925380e-09 | 3.833304e-06 | 7.136929e-09 | 5.963854e-06 | 9.155592e-09 | 7.512283e-06 | 1.098618e-08 | 1.002057e-05 | 1.465436e-08 | 22.441067 | 0.002020 | 21.961183 | 0.001666 | 21.710570 | 0.001587 | 21.397769 | 0.001587 | 20.752225 | 0.002020 | 20.272340 | 0.001666 | 20.021728 | 0.001587 | 19.708927 | 0.001587 | 1.5558 | 1.2596 | 1.9597 | False | 0.834336 | -0.071712 | 268 | 33.166220 | 2.166977e-05 | 1.971673e-08 | 20.560364 | 0.000987 | 18.871522 | 0.000987 | 595.0 | 4.443324 | 3.932014 | 0.115074 | -9.045534 | 151.516487 | 53.160013978777805,-27.775927736171507 | 53.1605768746143,-27.775751977438347 | 53.159808483639004,-27.775412524295117 | 53.16037137714086,-27.7752367663949 |
271 | 1578.6006 | 1324.9670 | 53.16083302308634,-27.77543830218573 | 5.387334e-08 | 2.406323e-09 | 3.003431e-07 | 2.878026e-09 | 5.376183e-07 | 4.101785e-09 | 7.881432e-07 | 5.672370e-09 | 1.051297e-06 | 7.566323e-09 | 25.205956 | 0.010354 | 24.573815 | 0.008252 | 24.158487 | 0.007786 | 23.845686 | 0.007786 | 23.517114 | 0.010354 | 22.884973 | 0.008252 | 22.469645 | 0.007786 | 22.156844 | 0.007786 | 1.7900 | 1.4660 | 2.6241 | True | 0.689147 | 0.064078 | 267 | 33.166220 | 1.765489e-05 | 2.092815e-08 | 20.782837 | 0.001286 | 19.093995 | 0.001286 | 975.0 | 9.270214 | 4.933045 | 0.467861 | 73.580285 | 234.142306 | 53.160500373552,-27.775833801932936 | 53.161509700442075,-27.775518643188583 | 53.16030172616385,-27.7753357644862 | 53.161311049007345,-27.7750206071857 |
272 | 581.5101 | 1417.9318 | 53.16946883359184,-27.791998317610464 | 2.039760e-07 | 2.614897e-08 | 5.051328e-06 | 8.509728e-09 | 8.759897e-06 | 1.148057e-08 | 1.192374e-05 | 1.430689e-08 | 1.590497e-05 | 1.908383e-08 | 22.141486 | 0.001828 | 21.543753 | 0.001422 | 21.208969 | 0.001302 | 20.896168 | 0.001302 | 20.452644 | 0.001828 | 19.854910 | 0.001422 | 19.520127 | 0.001302 | 19.207326 | 0.001302 | 1.7342 | 1.3612 | 2.3605 | True | 0.349533 | -0.542827 | 162 | 85.590697 | 4.078882e-05 | 2.644552e-08 | 19.873647 | 0.000704 | 18.184805 | 0.000704 | 925.0 | 5.890558 | 4.136467 | 0.297780 | -47.064812 | 113.497209 | 53.16912937508967,-27.792374896841615 | 53.169925292335066,-27.792126357457924 | 53.16888954430162,-27.791773832025502 | 53.16968545769633,-27.791525294016296 |
273 | 581.5101 | 1417.9318 | 53.16946883359184,-27.791998317610464 | 2.039760e-07 | 2.614897e-08 | 5.051328e-06 | 8.509728e-09 | 8.759897e-06 | 1.148057e-08 | 1.192374e-05 | 1.430689e-08 | 1.590497e-05 | 1.908383e-08 | 22.141486 | 0.001828 | 21.543753 | 0.001422 | 21.208969 | 0.001302 | 20.896168 | 0.001302 | 20.452644 | 0.001828 | 19.854910 | 0.001422 | 19.520127 | 0.001302 | 19.207326 | 0.001302 | 1.7342 | 1.3612 | 2.3605 | True | 0.349533 | -0.542827 | 162 | 85.590697 | 4.078882e-05 | 2.644552e-08 | 19.873647 | 0.000704 | 18.184805 | 0.000704 | 925.0 | 5.890558 | 4.136467 | 0.297780 | -47.064812 | 113.497209 | 53.16912937508967,-27.792374896841615 | 53.169925292335066,-27.792126357457924 | 53.16888954430162,-27.791773832025502 | 53.16968545769633,-27.791525294016296 |
275 | 845.8088 | 2143.6780 | 53.18174535077199,-27.7830594850451 | 1.822960e-08 | 1.285597e-09 | 1.605314e-07 | 2.928068e-09 | 3.030847e-07 | 4.209807e-09 | 4.523471e-07 | 5.815114e-09 | 6.033817e-07 | 7.756729e-09 | 25.886100 | 0.019625 | 25.196090 | 0.014977 | 24.761321 | 0.013869 | 24.448520 | 0.013869 | 24.197258 | 0.019625 | 23.507248 | 0.014977 | 23.072478 | 0.013869 | 22.759678 | 0.013869 | 1.8880 | 1.4925 | 2.8178 | True | 0.487344 | 0.146130 | 230 | 168.104158 | 2.994394e-06 | 1.339025e-08 | 22.709228 | 0.004844 | 21.020386 | 0.004844 | 232.0 | 4.737465 | 2.830360 | 0.402558 | 37.515590 | 198.077611 | 53.1816310031021,-27.78327499392448 | 53.18198038881419,-27.78316584820611 | 53.18148707490579,-27.782914368041794 | 53.18183645960421,-27.78280522268598 |
276 | 171.2370 | 2194.7290 | 53.18736019451357,-27.7943340021468 | 1.579741e-08 | 2.236322e-09 | 3.664779e-08 | 2.312905e-09 | 8.930771e-08 | 3.458994e-09 | 2.171650e-07 | 5.151568e-09 | 2.896744e-07 | 6.871631e-09 | 27.489880 | 0.066447 | 26.522778 | 0.041258 | 25.558026 | 0.025455 | 25.245225 | 0.025455 | 25.801038 | 0.066447 | 24.833936 | 0.041258 | 23.869184 | 0.025455 | 23.556383 | 0.025455 | 2.4369 | 2.4316 | 5.9257 | True | 0.437835 | 1.163964 | 270 | 22.544445 | 4.929708e-06 | 1.684408e-08 | 22.167947 | 0.003703 | 20.479105 | 0.003703 | 365.0 | 7.381717 | 3.089495 | 0.581467 | 46.985047 | 207.547068 | 53.18717815278179,-27.79465619037878 | 53.18772168955449,-27.79448638604133 | 53.18699305940661,-27.794192535931593 | 53.18753659415194,-27.79402273231944 |
277 | 173.0109 | 2217.2036 | 53.187784309359124,-27.7941672451492 | 4.094552e-08 | 2.801094e-09 | 1.966989e-07 | 4.045548e-09 | 3.728733e-07 | 5.831527e-09 | 6.401542e-07 | 8.288835e-09 | 8.538960e-07 | 1.105640e-08 | 25.665495 | 0.022104 | 24.971097 | 0.016849 | 24.384288 | 0.013968 | 24.071488 | 0.013968 | 23.976653 | 0.022104 | 23.282255 | 0.016849 | 22.695446 | 0.013968 | 22.382646 | 0.013968 | 1.8957 | 1.7168 | 3.2545 | True | 0.544039 | 1.466864 | 269 | 22.544445 | 2.083916e-05 | 3.786536e-08 | 20.602800 | 0.001971 | 18.913957 | 0.001971 | 896.0 | 8.795689 | 5.350064 | 0.391740 | 49.523901 | 210.085922 | 53.187456776758886,-27.794588460844523 | 53.18817502039359,-27.79436407464985 | 53.187203129213025,-27.79395308297441 | 53.18792136917649,-27.793728698093172 |
278 | 349.8548 | 2219.5695 | 53.18661793328708,-27.79111606656968 | 1.240569e-07 | 1.106249e-08 | 6.481735e-09 | 4.974042e-09 | 2.320227e-08 | 7.377250e-09 | 9.001341e-08 | 1.096388e-08 | 1.200681e-07 | 1.462462e-08 | 29.370772 | 0.618333 | 27.986174 | 0.299750 | 26.514232 | 0.124791 | 26.201431 | 0.124791 | 27.681930 | 0.618333 | 26.297332 | 0.299750 | 24.825390 | 0.124791 | 24.512589 | 0.124791 | 3.5796 | 3.8795 | 13.8872 | True | 0.465989 | 0.380719 | 246 | 37.050936 | 8.476411e-05 | 7.530273e-08 | 19.079470 | 0.000964 | 17.390628 | 0.000964 | 2032.0 | 10.433554 | 8.159101 | 0.217994 | -40.632089 | 119.929932 | 53.18615897268221,-27.791884347818915 | 53.187051904916494,-27.791605388989776 | 53.18571340200882,-27.790768138947595 | 53.186606326224904,-27.790489182986956 |
279 | 325.2420 | 2191.8750 | 53.18624906116693,-27.79170667418589 | 1.051027e-08 | 7.986341e-10 | 1.017228e-07 | 2.535165e-09 | 1.911805e-07 | 3.635450e-09 | 2.978151e-07 | 5.071228e-09 | 3.972529e-07 | 6.764466e-09 | 26.381454 | 0.026727 | 25.696391 | 0.020452 | 25.215133 | 0.018332 | 24.902332 | 0.018332 | 24.692612 | 0.026727 | 24.007549 | 0.020452 | 23.526291 | 0.018332 | 23.213490 | 0.018332 | 1.8794 | 1.5578 | 2.9277 | True | 0.374762 | 0.316759 | 245 | 37.050936 | 1.105153e-06 | 8.565022e-09 | 23.791444 | 0.008382 | 22.102602 | 0.008382 | 102.0 | 2.711758 | 2.365934 | 0.127528 | 65.474150 | 226.036171 | 53.18618408590432,-27.79183787443043 | 53.18643643665768,-27.791759038775616 | 53.186101826002314,-27.791631805223588 | 53.18635417633734,-27.79155296971844 |
There may be multiple ways to look for a source, so shown below are three options:
With a known RA/Dec of an object
A known x/y location of an object
With a source ID of an object. Note that we are using the rebased source catalogs here for the IDs.
This same concept can be extended to filter by any of the columns contained in the source catalog.
# with a known RA/Dec
desired_ra = 53.15437048946369
desired_dec = -27.771689847051736
c = SkyCoord(ra=desired_ra*u.degree, dec=desired_dec*u.degree)
nearest_id, distance_2d, distance_3d = c.match_to_catalog_sky(cat['sky_centroid'])
cat[['label', 'xcentroid', 'ycentroid', 'sky_centroid', 'is_extended', 'isophotal_abmag', 'isophotal_vegamag']][nearest_id]
label | xcentroid | ycentroid | sky_centroid | is_extended | isophotal_abmag | isophotal_vegamag |
---|---|---|---|---|---|---|
deg,deg | ||||||
int32 | float64 | float64 | SkyCoord | bool | float64 | float64 |
118 | 1884.8742 | 1105.8923 | 53.15448302573917,-27.77150606236118 | True | 22.884021 | 21.195179 |
# alternatively with a known X/Y pixel location in the F200W image (based on what you've defined cat to be)
known_x = 1880
known_y = 1100
nearest_pos = [np.sqrt((x-known_x)**2 + (y-known_y)**2) for x, y in zip(cat['xcentroid'], cat['ycentroid'])]
wh_nearest = np.where(np.array(nearest_pos) == min(nearest_pos))[0][0]
cat[['label', 'xcentroid', 'ycentroid', 'sky_centroid', 'is_extended', 'isophotal_abmag', 'isophotal_vegamag']][wh_nearest]
label | xcentroid | ycentroid | sky_centroid | is_extended | isophotal_abmag | isophotal_vegamag |
---|---|---|---|---|---|---|
deg,deg | ||||||
int32 | float64 | float64 | SkyCoord | bool | float64 | float64 |
118 | 1884.8742 | 1105.8923 | 53.15448302573917,-27.77150606236118 | True | 22.884021 | 21.195179 |
# alternatively with a known source number
# note that this number might be different for you depending on pipeline versions and parameters changed.
# source = 109 # if you want to specify the number
source = cat['label'][nearest_id] # to match the one chosen in this notebook
wh_source = np.where(np.array(cat['label'] == source))[0][0]
cat[['label', 'xcentroid', 'ycentroid', 'sky_centroid', 'is_extended', 'isophotal_abmag', 'isophotal_vegamag']][wh_source]
label | xcentroid | ycentroid | sky_centroid | is_extended | isophotal_abmag | isophotal_vegamag |
---|---|---|---|---|---|---|
deg,deg | ||||||
int32 | float64 | float64 | SkyCoord | bool | float64 | float64 |
118 | 1884.8742 | 1105.8923 | 53.15448302573917,-27.77150606236118 | True | 22.884021 | 21.195179 |
Using any of the three methods above, write out the new catalog.
with RA/Dec:
new_cat = Table(cat[nearest_id])
with x/y:
new_cat = Table(cat[wh_nearest])
with source ID:
new_cat = Table(cat[wh_source])
new_cat = Table(cat[wh_source]) # turn the row instance into a dataframe again
# save the new catalog with a unique name
new_cat_name = cat_name.replace('cat.ecsv', f'source{source}_cat.ecsv')
new_cat.write(new_cat_name, overwrite=True)
print('Saved:', new_cat_name)
Saved: custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_source-match_source118_cat.ecsv
Once we have an updated source catalog that we are content with, we can move on to the spec2 step of the pipeline. It likely will be necessary to come back to this step after running spec2. Let’s take a quick look at the source that we will be extracting in the following notebook with spec2.
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(9, 6))
img = cust_image3_i2d[-1]
cat = Table.read(new_cat_name)
for ax in [ax1, ax2]:
# plot the image
with fits.open(img) as hdu:
ax.imshow(hdu[1].data, vmin=0, vmax=0.3, origin='lower')
title = f"obs{hdu[0].header['OBSERVTN']} {hdu[0].header['PUPIL']}"
# also plot the associated catalog
extended_sources = cat[cat['is_extended'] == 1] # 1 is True; i.e. is extended
point_sources = cat[cat['is_extended'] == 0] # 0 is False; i.e. is a point source
for color, sources in zip(['darkred', 'black'], [extended_sources, point_sources]):
# plotting the sources
ax.scatter(sources['xcentroid'], sources['ycentroid'], s=20, facecolors='None', edgecolors=color, alpha=0.9)
# adding source labels
for i, source_num in enumerate(sources['label']):
ax.annotate(source_num,
(sources['xcentroid'][i]+0.5, sources['ycentroid'][i]+0.5),
fontsize=8,
color=color)
fig.suptitle("Speicifc Source to Extract with Spec2")
# zooming in on a smaller region
ax2.set_xlim(known_x-50, known_x+50)
ax2.set_ylim(known_y-50, known_y+50)
fig.tight_layout()