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.16.0
CRDS - INFO - Calibration SW Found: jwst 1.16.0 (/opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/site-packages/jwst-1.16.0.dist-info)
CRDS Context: jwst_1298.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)
2024-11-12 19:25:38,141 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_system_datalvl_0002.rmap 694 bytes (1 / 200 files) (0 / 717.5 K bytes)
2024-11-12 19:25:38,391 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_system_calver_0043.rmap 4.9 K bytes (2 / 200 files) (694 / 717.5 K bytes)
2024-11-12 19:25:38,669 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_system_0042.imap 385 bytes (3 / 200 files) (5.6 K / 717.5 K bytes)
2024-11-12 19:25:38,907 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_wavelengthrange_0024.rmap 1.4 K bytes (4 / 200 files) (6.0 K / 717.5 K bytes)
2024-11-12 19:25:39,143 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_wavecorr_0005.rmap 884 bytes (5 / 200 files) (7.4 K / 717.5 K bytes)
2024-11-12 19:25:39,398 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_superbias_0074.rmap 33.8 K bytes (6 / 200 files) (8.3 K / 717.5 K bytes)
2024-11-12 19:25:39,718 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_sflat_0026.rmap 20.6 K bytes (7 / 200 files) (42.0 K / 717.5 K bytes)
2024-11-12 19:25:40,037 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_saturation_0018.rmap 2.0 K bytes (8 / 200 files) (62.6 K / 717.5 K bytes)
2024-11-12 19:25:40,275 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_refpix_0015.rmap 1.6 K bytes (9 / 200 files) (64.6 K / 717.5 K bytes)
2024-11-12 19:25:40,517 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_readnoise_0025.rmap 2.6 K bytes (10 / 200 files) (66.2 K / 717.5 K bytes)
2024-11-12 19:25:40,742 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_photom_0013.rmap 958 bytes (11 / 200 files) (68.8 K / 717.5 K bytes)
2024-11-12 19:25:40,981 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pathloss_0007.rmap 1.1 K bytes (12 / 200 files) (69.7 K / 717.5 K bytes)
2024-11-12 19:25:41,276 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-whitelightstep_0001.rmap 777 bytes (13 / 200 files) (70.8 K / 717.5 K bytes)
2024-11-12 19:25:41,498 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-spec2pipeline_0013.rmap 2.1 K bytes (14 / 200 files) (71.6 K / 717.5 K bytes)
2024-11-12 19:25:41,797 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-resamplespecstep_0002.rmap 709 bytes (15 / 200 files) (73.7 K / 717.5 K bytes)
2024-11-12 19:25:42,026 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-outlierdetectionstep_0003.rmap 1.1 K bytes (16 / 200 files) (74.5 K / 717.5 K bytes)
2024-11-12 19:25:42,324 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-jumpstep_0005.rmap 810 bytes (17 / 200 files) (75.6 K / 717.5 K bytes)
2024-11-12 19:25:42,562 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-image2pipeline_0008.rmap 1.0 K bytes (18 / 200 files) (76.4 K / 717.5 K bytes)
2024-11-12 19:25:42,788 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-detector1pipeline_0003.rmap 1.1 K bytes (19 / 200 files) (77.4 K / 717.5 K bytes)
2024-11-12 19:25:43,015 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-darkpipeline_0003.rmap 872 bytes (20 / 200 files) (78.5 K / 717.5 K bytes)
2024-11-12 19:25:43,253 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_pars-darkcurrentstep_0001.rmap 622 bytes (21 / 200 files) (79.3 K / 717.5 K bytes)
2024-11-12 19:25:43,491 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_ote_0030.rmap 1.3 K bytes (22 / 200 files) (80.0 K / 717.5 K bytes)
2024-11-12 19:25:43,730 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_msaoper_0014.rmap 1.4 K bytes (23 / 200 files) (81.2 K / 717.5 K bytes)
2024-11-12 19:25:43,963 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_msa_0027.rmap 1.3 K bytes (24 / 200 files) (82.6 K / 717.5 K bytes)
2024-11-12 19:25:44,206 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_mask_0039.rmap 2.7 K bytes (25 / 200 files) (83.9 K / 717.5 K bytes)
2024-11-12 19:25:44,437 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_linearity_0017.rmap 1.6 K bytes (26 / 200 files) (86.6 K / 717.5 K bytes)
2024-11-12 19:25:44,666 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_ipc_0006.rmap 876 bytes (27 / 200 files) (88.2 K / 717.5 K bytes)
2024-11-12 19:25:44,904 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_ifuslicer_0017.rmap 1.5 K bytes (28 / 200 files) (89.0 K / 717.5 K bytes)
2024-11-12 19:25:45,133 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_ifupost_0019.rmap 1.5 K bytes (29 / 200 files) (90.6 K / 717.5 K bytes)
2024-11-12 19:25:45,371 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_ifufore_0017.rmap 1.5 K bytes (30 / 200 files) (92.1 K / 717.5 K bytes)
2024-11-12 19:25:45,595 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_gain_0023.rmap 1.8 K bytes (31 / 200 files) (93.6 K / 717.5 K bytes)
2024-11-12 19:25:45,836 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_fpa_0028.rmap 1.3 K bytes (32 / 200 files) (95.3 K / 717.5 K bytes)
2024-11-12 19:25:46,073 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_fore_0026.rmap 5.0 K bytes (33 / 200 files) (96.6 K / 717.5 K bytes)
2024-11-12 19:25:46,300 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_flat_0015.rmap 3.8 K bytes (34 / 200 files) (101.5 K / 717.5 K bytes)
2024-11-12 19:25:46,542 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_fflat_0026.rmap 7.2 K bytes (35 / 200 files) (105.4 K / 717.5 K bytes)
2024-11-12 19:25:46,773 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_extract1d_0018.rmap 2.3 K bytes (36 / 200 files) (112.6 K / 717.5 K bytes)
2024-11-12 19:25:47,012 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_disperser_0028.rmap 5.7 K bytes (37 / 200 files) (114.9 K / 717.5 K bytes)
2024-11-12 19:25:47,248 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_dflat_0007.rmap 1.1 K bytes (38 / 200 files) (120.6 K / 717.5 K bytes)
2024-11-12 19:25:47,481 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_dark_0069.rmap 32.6 K bytes (39 / 200 files) (121.7 K / 717.5 K bytes)
2024-11-12 19:25:47,795 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_cubepar_0015.rmap 966 bytes (40 / 200 files) (154.3 K / 717.5 K bytes)
2024-11-12 19:25:48,026 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_collimator_0026.rmap 1.3 K bytes (41 / 200 files) (155.3 K / 717.5 K bytes)
2024-11-12 19:25:48,264 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_camera_0026.rmap 1.3 K bytes (42 / 200 files) (156.6 K / 717.5 K bytes)
2024-11-12 19:25:48,498 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_barshadow_0007.rmap 1.8 K bytes (43 / 200 files) (157.9 K / 717.5 K bytes)
2024-11-12 19:25:48,728 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_area_0018.rmap 6.3 K bytes (44 / 200 files) (159.7 K / 717.5 K bytes)
2024-11-12 19:25:48,955 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_apcorr_0009.rmap 5.6 K bytes (45 / 200 files) (165.9 K / 717.5 K bytes)
2024-11-12 19:25:49,196 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nirspec_0383.imap 5.6 K bytes (46 / 200 files) (171.5 K / 717.5 K bytes)
2024-11-12 19:25:49,432 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_wfssbkg_0007.rmap 3.1 K bytes (47 / 200 files) (177.1 K / 717.5 K bytes)
2024-11-12 19:25:49,673 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_wavemap_0008.rmap 2.2 K bytes (48 / 200 files) (180.2 K / 717.5 K bytes)
2024-11-12 19:25:49,909 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_wavelengthrange_0006.rmap 862 bytes (49 / 200 files) (182.5 K / 717.5 K bytes)
2024-11-12 19:25:50,169 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_trappars_0004.rmap 753 bytes (50 / 200 files) (183.3 K / 717.5 K bytes)
2024-11-12 19:25:50,392 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_trapdensity_0005.rmap 705 bytes (51 / 200 files) (184.1 K / 717.5 K bytes)
2024-11-12 19:25:50,621 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_throughput_0005.rmap 1.3 K bytes (52 / 200 files) (184.8 K / 717.5 K bytes)
2024-11-12 19:25:50,842 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_superbias_0028.rmap 6.5 K bytes (53 / 200 files) (186.0 K / 717.5 K bytes)
2024-11-12 19:25:51,081 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_specwcs_0014.rmap 3.1 K bytes (54 / 200 files) (192.5 K / 717.5 K bytes)
2024-11-12 19:25:51,309 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_spectrace_0008.rmap 2.3 K bytes (55 / 200 files) (195.7 K / 717.5 K bytes)
2024-11-12 19:25:51,548 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_specprofile_0008.rmap 2.4 K bytes (56 / 200 files) (198.0 K / 717.5 K bytes)
2024-11-12 19:25:51,794 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_speckernel_0006.rmap 1.0 K bytes (57 / 200 files) (200.3 K / 717.5 K bytes)
2024-11-12 19:25:52,030 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_saturation_0015.rmap 829 bytes (58 / 200 files) (201.4 K / 717.5 K bytes)
2024-11-12 19:25:52,257 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_readnoise_0011.rmap 987 bytes (59 / 200 files) (202.2 K / 717.5 K bytes)
2024-11-12 19:25:52,497 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_photom_0035.rmap 1.3 K bytes (60 / 200 files) (203.2 K / 717.5 K bytes)
2024-11-12 19:25:52,722 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_persat_0007.rmap 674 bytes (61 / 200 files) (204.4 K / 717.5 K bytes)
2024-11-12 19:25:52,960 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pathloss_0003.rmap 758 bytes (62 / 200 files) (205.1 K / 717.5 K bytes)
2024-11-12 19:25:53,196 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pastasoss_0004.rmap 818 bytes (63 / 200 files) (205.9 K / 717.5 K bytes)
2024-11-12 19:25:53,424 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-undersamplecorrectionstep_0001.rmap 904 bytes (64 / 200 files) (206.7 K / 717.5 K bytes)
2024-11-12 19:25:53,648 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-tweakregstep_0012.rmap 3.1 K bytes (65 / 200 files) (207.6 K / 717.5 K bytes)
2024-11-12 19:25:53,887 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-spec2pipeline_0008.rmap 984 bytes (66 / 200 files) (210.7 K / 717.5 K bytes)
2024-11-12 19:25:54,116 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-sourcecatalogstep_0002.rmap 2.3 K bytes (67 / 200 files) (211.7 K / 717.5 K bytes)
2024-11-12 19:25:54,354 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-resamplestep_0002.rmap 687 bytes (68 / 200 files) (214.0 K / 717.5 K bytes)
2024-11-12 19:25:54,593 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-outlierdetectionstep_0004.rmap 2.7 K bytes (69 / 200 files) (214.7 K / 717.5 K bytes)
2024-11-12 19:25:54,820 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-jumpstep_0007.rmap 6.4 K bytes (70 / 200 files) (217.4 K / 717.5 K bytes)
2024-11-12 19:25:55,047 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-image2pipeline_0005.rmap 1.0 K bytes (71 / 200 files) (223.7 K / 717.5 K bytes)
2024-11-12 19:25:55,287 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-detector1pipeline_0002.rmap 1.0 K bytes (72 / 200 files) (224.8 K / 717.5 K bytes)
2024-11-12 19:25:55,521 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-darkpipeline_0002.rmap 868 bytes (73 / 200 files) (225.8 K / 717.5 K bytes)
2024-11-12 19:25:55,757 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-darkcurrentstep_0001.rmap 591 bytes (74 / 200 files) (226.7 K / 717.5 K bytes)
2024-11-12 19:25:55,999 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_pars-chargemigrationstep_0004.rmap 5.7 K bytes (75 / 200 files) (227.3 K / 717.5 K bytes)
2024-11-12 19:25:56,241 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_nrm_0002.rmap 663 bytes (76 / 200 files) (232.9 K / 717.5 K bytes)
2024-11-12 19:25:56,465 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_mask_0020.rmap 859 bytes (77 / 200 files) (233.6 K / 717.5 K bytes)
2024-11-12 19:25:56,690 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_linearity_0022.rmap 961 bytes (78 / 200 files) (234.4 K / 717.5 K bytes)
2024-11-12 19:25:56,912 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_ipc_0007.rmap 651 bytes (79 / 200 files) (235.4 K / 717.5 K bytes)
2024-11-12 19:25:57,143 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_gain_0011.rmap 797 bytes (80 / 200 files) (236.1 K / 717.5 K bytes)
2024-11-12 19:25:57,376 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_flat_0023.rmap 5.9 K bytes (81 / 200 files) (236.9 K / 717.5 K bytes)
2024-11-12 19:25:57,604 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_filteroffset_0010.rmap 853 bytes (82 / 200 files) (242.7 K / 717.5 K bytes)
2024-11-12 19:25:57,839 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_extract1d_0007.rmap 905 bytes (83 / 200 files) (243.6 K / 717.5 K bytes)
2024-11-12 19:25:58,078 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_drizpars_0004.rmap 519 bytes (84 / 200 files) (244.5 K / 717.5 K bytes)
2024-11-12 19:25:58,317 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_distortion_0025.rmap 3.4 K bytes (85 / 200 files) (245.0 K / 717.5 K bytes)
2024-11-12 19:25:58,543 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_dark_0031.rmap 6.8 K bytes (86 / 200 files) (248.4 K / 717.5 K bytes)
2024-11-12 19:25:58,780 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_area_0014.rmap 2.7 K bytes (87 / 200 files) (255.2 K / 717.5 K bytes)
2024-11-12 19:25:59,002 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_apcorr_0010.rmap 4.3 K bytes (88 / 200 files) (257.9 K / 717.5 K bytes)
2024-11-12 19:25:59,250 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_abvegaoffset_0004.rmap 1.4 K bytes (89 / 200 files) (262.2 K / 717.5 K bytes)
2024-11-12 19:25:59,500 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_niriss_0261.imap 5.7 K bytes (90 / 200 files) (263.6 K / 717.5 K bytes)
2024-11-12 19:25:59,724 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_wfssbkg_0004.rmap 7.2 K bytes (91 / 200 files) (269.2 K / 717.5 K bytes)
2024-11-12 19:25:59,962 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_wavelengthrange_0010.rmap 996 bytes (92 / 200 files) (276.4 K / 717.5 K bytes)
2024-11-12 19:26:00,188 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_tsophot_0003.rmap 896 bytes (93 / 200 files) (277.4 K / 717.5 K bytes)
2024-11-12 19:26:00,425 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_trappars_0003.rmap 1.6 K bytes (94 / 200 files) (278.3 K / 717.5 K bytes)
2024-11-12 19:26:00,662 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_trapdensity_0003.rmap 1.6 K bytes (95 / 200 files) (279.9 K / 717.5 K bytes)
2024-11-12 19:26:00,884 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_superbias_0017.rmap 16.1 K bytes (96 / 200 files) (281.6 K / 717.5 K bytes)
2024-11-12 19:26:01,177 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_specwcs_0022.rmap 7.1 K bytes (97 / 200 files) (297.6 K / 717.5 K bytes)
2024-11-12 19:26:01,416 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_saturation_0010.rmap 2.2 K bytes (98 / 200 files) (304.7 K / 717.5 K bytes)
2024-11-12 19:26:01,654 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_readnoise_0024.rmap 23.1 K bytes (99 / 200 files) (306.9 K / 717.5 K bytes)
2024-11-12 19:26:01,956 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_psfmask_0008.rmap 28.4 K bytes (100 / 200 files) (330.0 K / 717.5 K bytes)
2024-11-12 19:26:02,268 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_photom_0028.rmap 3.4 K bytes (101 / 200 files) (358.3 K / 717.5 K bytes)
2024-11-12 19:26:02,505 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_persat_0005.rmap 1.6 K bytes (102 / 200 files) (361.7 K / 717.5 K bytes)
2024-11-12 19:26:02,732 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-whitelightstep_0003.rmap 1.5 K bytes (103 / 200 files) (363.2 K / 717.5 K bytes)
2024-11-12 19:26:02,958 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-tweakregstep_0003.rmap 4.5 K bytes (104 / 200 files) (364.7 K / 717.5 K bytes)
2024-11-12 19:26:03,189 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-spec2pipeline_0008.rmap 984 bytes (105 / 200 files) (369.2 K / 717.5 K bytes)
2024-11-12 19:26:03,424 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-sourcecatalogstep_0002.rmap 4.6 K bytes (106 / 200 files) (370.2 K / 717.5 K bytes)
2024-11-12 19:26:03,648 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-resamplestep_0002.rmap 687 bytes (107 / 200 files) (374.8 K / 717.5 K bytes)
2024-11-12 19:26:03,890 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-outlierdetectionstep_0003.rmap 940 bytes (108 / 200 files) (375.5 K / 717.5 K bytes)
2024-11-12 19:26:04,124 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-jumpstep_0005.rmap 806 bytes (109 / 200 files) (376.4 K / 717.5 K bytes)
2024-11-12 19:26:04,363 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-image2pipeline_0003.rmap 1.0 K bytes (110 / 200 files) (377.2 K / 717.5 K bytes)
2024-11-12 19:26:04,606 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-detector1pipeline_0003.rmap 1.0 K bytes (111 / 200 files) (378.2 K / 717.5 K bytes)
2024-11-12 19:26:04,833 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-darkpipeline_0002.rmap 868 bytes (112 / 200 files) (379.3 K / 717.5 K bytes)
2024-11-12 19:26:05,077 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_pars-darkcurrentstep_0001.rmap 618 bytes (113 / 200 files) (380.2 K / 717.5 K bytes)
2024-11-12 19:26:05,301 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_mask_0011.rmap 3.5 K bytes (114 / 200 files) (380.8 K / 717.5 K bytes)
2024-11-12 19:26:05,542 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_linearity_0011.rmap 2.4 K bytes (115 / 200 files) (384.3 K / 717.5 K bytes)
2024-11-12 19:26:05,780 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_ipc_0003.rmap 2.0 K bytes (116 / 200 files) (386.7 K / 717.5 K bytes)
2024-11-12 19:26:06,013 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_gain_0016.rmap 2.1 K bytes (117 / 200 files) (388.7 K / 717.5 K bytes)
2024-11-12 19:26:06,251 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_flat_0027.rmap 51.7 K bytes (118 / 200 files) (390.8 K / 717.5 K bytes)
2024-11-12 19:26:06,615 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_filteroffset_0004.rmap 1.4 K bytes (119 / 200 files) (442.5 K / 717.5 K bytes)
2024-11-12 19:26:06,857 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_extract1d_0004.rmap 842 bytes (120 / 200 files) (443.9 K / 717.5 K bytes)
2024-11-12 19:26:07,096 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_drizpars_0001.rmap 519 bytes (121 / 200 files) (444.7 K / 717.5 K bytes)
2024-11-12 19:26:07,324 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_distortion_0033.rmap 53.4 K bytes (122 / 200 files) (445.3 K / 717.5 K bytes)
2024-11-12 19:26:07,692 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_dark_0044.rmap 26.3 K bytes (123 / 200 files) (498.6 K / 717.5 K bytes)
2024-11-12 19:26:08,005 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_area_0012.rmap 33.5 K bytes (124 / 200 files) (524.9 K / 717.5 K bytes)
2024-11-12 19:26:08,317 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_apcorr_0008.rmap 4.3 K bytes (125 / 200 files) (558.4 K / 717.5 K bytes)
2024-11-12 19:26:08,568 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_abvegaoffset_0003.rmap 1.3 K bytes (126 / 200 files) (562.7 K / 717.5 K bytes)
2024-11-12 19:26:08,816 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_nircam_0295.imap 5.5 K bytes (127 / 200 files) (564.0 K / 717.5 K bytes)
2024-11-12 19:26:09,041 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_wavelengthrange_0027.rmap 929 bytes (128 / 200 files) (569.5 K / 717.5 K bytes)
2024-11-12 19:26:09,265 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_tsophot_0004.rmap 882 bytes (129 / 200 files) (570.4 K / 717.5 K bytes)
2024-11-12 19:26:09,499 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_straymask_0009.rmap 987 bytes (130 / 200 files) (571.3 K / 717.5 K bytes)
2024-11-12 19:26:09,725 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_specwcs_0042.rmap 5.8 K bytes (131 / 200 files) (572.3 K / 717.5 K bytes)
2024-11-12 19:26:09,960 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_saturation_0015.rmap 1.2 K bytes (132 / 200 files) (578.0 K / 717.5 K bytes)
2024-11-12 19:26:10,197 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_rscd_0008.rmap 1.0 K bytes (133 / 200 files) (579.2 K / 717.5 K bytes)
2024-11-12 19:26:10,442 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_resol_0006.rmap 790 bytes (134 / 200 files) (580.2 K / 717.5 K bytes)
2024-11-12 19:26:10,703 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_reset_0026.rmap 3.9 K bytes (135 / 200 files) (581.0 K / 717.5 K bytes)
2024-11-12 19:26:10,927 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_regions_0033.rmap 5.2 K bytes (136 / 200 files) (584.9 K / 717.5 K bytes)
2024-11-12 19:26:11,168 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_readnoise_0023.rmap 1.6 K bytes (137 / 200 files) (590.1 K / 717.5 K bytes)
2024-11-12 19:26:11,391 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_psfmask_0009.rmap 2.1 K bytes (138 / 200 files) (591.8 K / 717.5 K bytes)
2024-11-12 19:26:11,630 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_photom_0056.rmap 3.7 K bytes (139 / 200 files) (593.9 K / 717.5 K bytes)
2024-11-12 19:26:11,869 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pathloss_0005.rmap 866 bytes (140 / 200 files) (597.6 K / 717.5 K bytes)
2024-11-12 19:26:12,094 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-whitelightstep_0003.rmap 912 bytes (141 / 200 files) (598.5 K / 717.5 K bytes)
2024-11-12 19:26:12,331 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-tweakregstep_0003.rmap 1.8 K bytes (142 / 200 files) (599.4 K / 717.5 K bytes)
2024-11-12 19:26:12,564 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-spec3pipeline_0008.rmap 816 bytes (143 / 200 files) (601.2 K / 717.5 K bytes)
2024-11-12 19:26:12,802 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-spec2pipeline_0012.rmap 1.3 K bytes (144 / 200 files) (602.0 K / 717.5 K bytes)
2024-11-12 19:26:13,039 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-sourcecatalogstep_0003.rmap 1.9 K bytes (145 / 200 files) (603.4 K / 717.5 K bytes)
2024-11-12 19:26:13,269 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-resamplestep_0002.rmap 677 bytes (146 / 200 files) (605.3 K / 717.5 K bytes)
2024-11-12 19:26:13,501 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-resamplespecstep_0002.rmap 706 bytes (147 / 200 files) (606.0 K / 717.5 K bytes)
2024-11-12 19:26:13,725 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-outlierdetectionstep_0017.rmap 3.4 K bytes (148 / 200 files) (606.7 K / 717.5 K bytes)
2024-11-12 19:26:13,965 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-jumpstep_0009.rmap 1.4 K bytes (149 / 200 files) (610.1 K / 717.5 K bytes)
2024-11-12 19:26:14,203 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-image2pipeline_0007.rmap 983 bytes (150 / 200 files) (611.5 K / 717.5 K bytes)
2024-11-12 19:26:14,441 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-extract1dstep_0002.rmap 728 bytes (151 / 200 files) (612.5 K / 717.5 K bytes)
2024-11-12 19:26:14,698 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-emicorrstep_0002.rmap 796 bytes (152 / 200 files) (613.2 K / 717.5 K bytes)
2024-11-12 19:26:14,924 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-detector1pipeline_0009.rmap 1.4 K bytes (153 / 200 files) (614.0 K / 717.5 K bytes)
2024-11-12 19:26:15,147 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-darkpipeline_0002.rmap 860 bytes (154 / 200 files) (615.4 K / 717.5 K bytes)
2024-11-12 19:26:15,369 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_pars-darkcurrentstep_0002.rmap 683 bytes (155 / 200 files) (616.3 K / 717.5 K bytes)
2024-11-12 19:26:15,604 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_mrsxartcorr_0002.rmap 2.2 K bytes (156 / 200 files) (616.9 K / 717.5 K bytes)
2024-11-12 19:26:15,830 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_mrsptcorr_0005.rmap 2.0 K bytes (157 / 200 files) (619.1 K / 717.5 K bytes)
2024-11-12 19:26:16,069 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_mask_0023.rmap 3.5 K bytes (158 / 200 files) (621.1 K / 717.5 K bytes)
2024-11-12 19:26:16,306 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_linearity_0018.rmap 2.8 K bytes (159 / 200 files) (624.5 K / 717.5 K bytes)
2024-11-12 19:26:16,544 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_ipc_0008.rmap 700 bytes (160 / 200 files) (627.4 K / 717.5 K bytes)
2024-11-12 19:26:16,780 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_gain_0013.rmap 3.9 K bytes (161 / 200 files) (628.1 K / 717.5 K bytes)
2024-11-12 19:26:17,005 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_fringefreq_0003.rmap 1.4 K bytes (162 / 200 files) (632.0 K / 717.5 K bytes)
2024-11-12 19:26:17,244 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_fringe_0019.rmap 3.9 K bytes (163 / 200 files) (633.4 K / 717.5 K bytes)
2024-11-12 19:26:17,468 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_flat_0065.rmap 15.5 K bytes (164 / 200 files) (637.4 K / 717.5 K bytes)
2024-11-12 19:26:17,775 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_filteroffset_0025.rmap 2.5 K bytes (165 / 200 files) (652.8 K / 717.5 K bytes)
2024-11-12 19:26:18,015 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_extract1d_0020.rmap 1.4 K bytes (166 / 200 files) (655.3 K / 717.5 K bytes)
2024-11-12 19:26:18,239 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_emicorr_0003.rmap 663 bytes (167 / 200 files) (656.7 K / 717.5 K bytes)
2024-11-12 19:26:18,483 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_drizpars_0002.rmap 511 bytes (168 / 200 files) (657.3 K / 717.5 K bytes)
2024-11-12 19:26:18,708 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_distortion_0040.rmap 4.9 K bytes (169 / 200 files) (657.9 K / 717.5 K bytes)
2024-11-12 19:26:18,947 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_dark_0036.rmap 4.4 K bytes (170 / 200 files) (662.8 K / 717.5 K bytes)
2024-11-12 19:26:19,183 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_cubepar_0017.rmap 800 bytes (171 / 200 files) (667.1 K / 717.5 K bytes)
2024-11-12 19:26:19,407 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_area_0015.rmap 866 bytes (172 / 200 files) (667.9 K / 717.5 K bytes)
2024-11-12 19:26:19,641 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_apcorr_0019.rmap 5.0 K bytes (173 / 200 files) (668.8 K / 717.5 K bytes)
2024-11-12 19:26:19,884 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_abvegaoffset_0002.rmap 1.3 K bytes (174 / 200 files) (673.8 K / 717.5 K bytes)
2024-11-12 19:26:20,125 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_miri_0416.imap 5.7 K bytes (175 / 200 files) (675.0 K / 717.5 K bytes)
2024-11-12 19:26:20,360 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_trappars_0004.rmap 903 bytes (176 / 200 files) (680.7 K / 717.5 K bytes)
2024-11-12 19:26:20,601 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_trapdensity_0006.rmap 930 bytes (177 / 200 files) (681.6 K / 717.5 K bytes)
2024-11-12 19:26:20,830 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_superbias_0017.rmap 3.8 K bytes (178 / 200 files) (682.6 K / 717.5 K bytes)
2024-11-12 19:26:21,053 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_saturation_0009.rmap 779 bytes (179 / 200 files) (686.3 K / 717.5 K bytes)
2024-11-12 19:26:21,277 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_readnoise_0011.rmap 1.3 K bytes (180 / 200 files) (687.1 K / 717.5 K bytes)
2024-11-12 19:26:21,515 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_photom_0014.rmap 1.1 K bytes (181 / 200 files) (688.4 K / 717.5 K bytes)
2024-11-12 19:26:21,742 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_persat_0006.rmap 884 bytes (182 / 200 files) (689.5 K / 717.5 K bytes)
2024-11-12 19:26:21,981 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_pars-tweakregstep_0002.rmap 850 bytes (183 / 200 files) (690.4 K / 717.5 K bytes)
2024-11-12 19:26:22,216 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_pars-sourcecatalogstep_0001.rmap 636 bytes (184 / 200 files) (691.2 K / 717.5 K bytes)
2024-11-12 19:26:22,464 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_pars-outlierdetectionstep_0001.rmap 654 bytes (185 / 200 files) (691.9 K / 717.5 K bytes)
2024-11-12 19:26:22,699 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_pars-image2pipeline_0005.rmap 974 bytes (186 / 200 files) (692.5 K / 717.5 K bytes)
2024-11-12 19:26:22,925 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_pars-detector1pipeline_0002.rmap 1.0 K bytes (187 / 200 files) (693.5 K / 717.5 K bytes)
2024-11-12 19:26:23,165 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_pars-darkpipeline_0002.rmap 856 bytes (188 / 200 files) (694.5 K / 717.5 K bytes)
2024-11-12 19:26:23,391 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_mask_0023.rmap 1.1 K bytes (189 / 200 files) (695.4 K / 717.5 K bytes)
2024-11-12 19:26:23,629 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_linearity_0015.rmap 925 bytes (190 / 200 files) (696.4 K / 717.5 K bytes)
2024-11-12 19:26:23,856 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_ipc_0003.rmap 614 bytes (191 / 200 files) (697.4 K / 717.5 K bytes)
2024-11-12 19:26:24,175 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_gain_0010.rmap 890 bytes (192 / 200 files) (698.0 K / 717.5 K bytes)
2024-11-12 19:26:24,398 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_flat_0009.rmap 1.1 K bytes (193 / 200 files) (698.9 K / 717.5 K bytes)
2024-11-12 19:26:24,634 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_distortion_0011.rmap 1.2 K bytes (194 / 200 files) (700.0 K / 717.5 K bytes)
2024-11-12 19:26:24,861 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_dark_0017.rmap 4.3 K bytes (195 / 200 files) (701.2 K / 717.5 K bytes)
2024-11-12 19:26:25,098 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_area_0010.rmap 1.2 K bytes (196 / 200 files) (705.5 K / 717.5 K bytes)
2024-11-12 19:26:25,334 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_apcorr_0004.rmap 4.0 K bytes (197 / 200 files) (706.7 K / 717.5 K bytes)
2024-11-12 19:26:25,557 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_abvegaoffset_0002.rmap 1.3 K bytes (198 / 200 files) (710.6 K / 717.5 K bytes)
2024-11-12 19:26:25,785 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_fgs_0117.imap 5.0 K bytes (199 / 200 files) (711.9 K / 717.5 K bytes)
2024-11-12 19:26:26,028 - CRDS - INFO - Fetching crds_cache/mappings/jwst/jwst_1298.pmap 580 bytes (200 / 200 files) (716.9 K / 717.5 K bytes)
2024-11-12 19:26:26,381 - 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)
2024-11-12 19:26:26,621 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:26:26,632 - 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)
2024-11-12 19:26:26,879 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:26:26,893 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:26:26,894 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:26:26,896 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:26:26,897 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:26:26,898 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:26:26,899 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:26:27,044 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00477_asn.json',).
2024-11-12 19:26:27,053 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:26:27,147 - 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']
2024-11-12 19:26:27,151 - 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)
2024-11-12 19:26:28,322 - 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)
2024-11-12 19:26:28,561 - 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)
2024-11-12 19:26:28,804 - 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)
2024-11-12 19:26:31,106 - CRDS - INFO - Fetching crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits 11.5 K bytes (5 / 5 files) (83.9 M / 83.9 M bytes)
2024-11-12 19:26:31,343 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:26:31,344 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:26:31,344 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:26:31,344 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:26:31,345 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:26:31,345 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:26:31,346 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:26:31,346 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:26:31,347 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:26:31,348 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:26:31,349 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:26:31,349 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:26:31,350 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:26:31,350 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:26:31,351 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:26:31,351 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:26:31,352 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:26:31,353 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:26:31,354 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:26:31,354 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:26:31,355 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:26:31,356 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:26:31,363 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_12101_00001_nis
2024-11-12 19:26:31,363 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_12101_00001_nis_rate.fits ...
2024-11-12 19:26:31,568 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:26:31,757 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:26:31,826 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148278246 -27.806888762 53.188153048 -27.794433509 53.173980222 -27.759478465 53.134141441 -27.771912564
2024-11-12 19:26:31,827 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148278246 -27.806888762 53.188153048 -27.794433509 53.173980222 -27.759478465 53.134141441 -27.771912564
2024-11-12 19:26:31,828 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:26:31,884 - CRDS - INFO - Calibration SW Found: jwst 1.16.0 (/opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/site-packages/jwst-1.16.0.dist-info)
2024-11-12 19:26:32,128 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:26:32,277 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:26:32,381 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:26:32,381 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:26:32,382 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:26:32,382 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:26:32,605 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:26:32,755 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:26:32,778 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:26:32,778 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:26:32,821 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:26:32,822 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:26:32,822 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:26:32,823 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:26:32,823 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:26:32,853 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:26:32,854 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:26:32,855 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:26:32,902 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:26:33,050 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:26:33,051 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:26:33,053 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_12101_00001_nis
2024-11-12 19:26:33,053 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:26:33,054 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:26:33,327 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_12101_00001_nis_cal.fits
2024-11-12 19:26:33,328 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:26:33,328 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:26:33,394 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:26:33,404 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:26:33,416 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:26:33,417 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:26:33,419 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:26:33,420 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:26:33,421 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:26:33,422 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:26:33,574 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00550_asn.json',).
2024-11-12 19:26:33,582 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:26:33,649 - 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']
2024-11-12 19:26:33,652 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:26:33,653 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:26:33,654 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:26:33,654 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:26:33,655 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:26:33,655 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:26:33,656 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:26:33,656 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:26:33,657 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:26:33,657 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:26:33,657 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:26:33,658 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:26:33,658 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:26:33,659 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:26:33,659 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:26:33,659 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:26:33,660 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:26:33,661 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:26:33,661 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:26:33,662 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:26:33,662 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:26:33,663 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:26:33,669 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_10101_00002_nis
2024-11-12 19:26:33,670 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_10101_00002_nis_rate.fits ...
2024-11-12 19:26:33,869 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:26:34,045 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:26:34,104 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148448654 -27.806902332 53.188323472 -27.794447104 53.174150672 -27.759492052 53.134311876 -27.771926126
2024-11-12 19:26:34,105 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148448654 -27.806902332 53.188323472 -27.794447104 53.174150672 -27.759492052 53.134311876 -27.771926126
2024-11-12 19:26:34,105 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:26:34,157 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:26:34,309 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:26:34,397 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:26:34,398 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:26:34,398 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:26:34,399 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:26:34,569 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:26:34,724 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:26:34,748 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:26:34,748 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:26:34,792 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:26:34,793 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:26:34,794 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:26:34,794 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:26:34,794 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:26:34,821 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:26:34,821 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:26:34,823 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:26:34,869 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:26:35,021 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:26:35,022 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:26:35,023 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_10101_00002_nis
2024-11-12 19:26:35,024 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:26:35,024 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:26:35,294 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_10101_00002_nis_cal.fits
2024-11-12 19:26:35,294 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:26:35,295 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:26:35,361 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:26:35,371 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:26:35,383 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:26:35,385 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:26:35,386 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:26:35,387 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:26:35,388 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:26:35,390 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:26:35,544 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00328_asn.json',).
2024-11-12 19:26:35,552 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:26:35,619 - 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']
2024-11-12 19:26:35,623 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:26:35,624 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:26:35,624 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:26:35,624 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:26:35,625 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:26:35,625 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:26:35,626 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:26:35,626 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:26:35,627 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:26:35,627 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:26:35,628 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:26:35,628 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:26:35,628 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:26:35,629 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:26:35,629 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:26:35,629 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:26:35,630 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:26:35,631 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:26:35,631 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:26:35,631 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:26:35,632 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:26:35,633 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:26:35,639 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_06101_00002_nis
2024-11-12 19:26:35,640 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_06101_00002_nis_rate.fits ...
2024-11-12 19:26:35,840 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:26:36,015 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:26:36,075 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148416101 -27.807066613 53.188290977 -27.794611381 53.174118152 -27.759656330 53.134279297 -27.772090408
2024-11-12 19:26:36,075 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148416101 -27.807066613 53.188290977 -27.794611381 53.174118152 -27.759656330 53.134279297 -27.772090408
2024-11-12 19:26:36,076 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:26:36,128 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:26:36,288 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:26:36,372 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:26:36,373 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:26:36,373 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:26:36,374 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:26:36,533 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:26:36,688 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:26:36,711 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:26:36,712 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:26:36,756 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:26:36,757 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:26:36,757 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:26:36,758 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:26:36,758 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:26:36,785 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:26:36,785 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:26:36,787 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:26:36,835 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:26:36,993 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:26:36,993 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:26:36,995 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_06101_00002_nis
2024-11-12 19:26:36,996 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:26:36,996 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:26:37,266 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_06101_00002_nis_cal.fits
2024-11-12 19:26:37,267 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:26:37,267 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:26:37,335 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:26:37,345 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:26:37,357 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:26:37,358 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:26:37,359 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:26:37,360 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:26:37,361 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:26:37,362 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:26:37,522 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00031_asn.json',).
2024-11-12 19:26:37,529 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:26:37,596 - 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']
2024-11-12 19:26:37,600 - 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)
2024-11-12 19:26:39,036 - 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)
2024-11-12 19:26:39,263 - 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)
2024-11-12 19:26:43,131 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2024-11-12 19:26:43,132 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:26:43,132 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:26:43,132 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:26:43,133 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:26:43,133 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2024-11-12 19:26:43,134 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:26:43,134 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:26:43,136 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2024-11-12 19:26:43,136 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:26:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:26:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:26:43,138 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:26:43,138 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:26:43,138 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:26:43,139 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:26:43,139 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:26:43,140 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:26:43,140 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:26:43,141 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:26:43,141 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:26:43,142 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:26:43,149 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_06101_00003_nis
2024-11-12 19:26:43,149 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_06101_00003_nis_rate.fits ...
2024-11-12 19:26:43,350 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:43,527 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2024-11-12 19:26:43,584 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.149304276 -27.809426948 53.189179298 -27.796970378 53.175006964 -27.762016193 53.135167344 -27.774450672
2024-11-12 19:26:43,585 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.149304276 -27.809426948 53.189179298 -27.796970378 53.175006964 -27.762016193 53.135167344 -27.774450672
2024-11-12 19:26:43,586 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:26:43,636 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:26:43,773 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:43,857 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2024-11-12 19:26:43,858 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:26:43,859 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:26:43,859 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:26:44,022 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:26:44,176 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:44,199 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:26:44,200 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2024-11-12 19:26:44,243 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:26:44,244 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:26:44,244 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:26:44,245 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:26:44,245 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2024-11-12 19:26:44,272 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:26:44,273 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:26:44,274 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.259995
2024-11-12 19:26:44,319 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:26:44,478 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:44,479 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:26:44,480 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_06101_00003_nis
2024-11-12 19:26:44,481 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:26:44,482 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:26:44,753 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_06101_00003_nis_cal.fits
2024-11-12 19:26:44,753 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:26:44,754 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:26:44,820 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:26:44,830 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:26:44,842 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:26:44,843 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:26:44,844 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:26:44,845 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:26:44,846 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:26:44,848 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:26:45,004 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00592_asn.json',).
2024-11-12 19:26:45,012 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:26:45,080 - 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']
2024-11-12 19:26:45,083 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:26:45,084 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:26:45,084 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:26:45,085 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:26:45,085 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:26:45,085 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:26:45,086 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:26:45,087 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:26:45,087 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:26:45,088 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:26:45,088 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:26:45,089 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:26:45,089 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:26:45,089 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:26:45,090 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:26:45,090 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:26:45,091 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:26:45,091 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:26:45,091 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:26:45,092 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:26:45,092 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:26:45,093 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:26:45,100 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_08101_00001_nis
2024-11-12 19:26:45,101 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_08101_00001_nis_rate.fits ...
2024-11-12 19:26:45,307 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_08101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:26:45,486 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:26:45,544 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148027396 -27.806979651 53.187902307 -27.794524587 53.173729681 -27.759569476 53.133890791 -27.772003387
2024-11-12 19:26:45,545 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148027396 -27.806979651 53.187902307 -27.794524587 53.173729681 -27.759569476 53.133890791 -27.772003387
2024-11-12 19:26:45,545 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:26:45,596 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:26:45,753 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_08101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:26:45,836 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:26:45,836 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:26:45,837 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:26:45,837 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:26:45,994 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:26:46,151 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_08101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:26:46,175 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:26:46,175 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:26:46,220 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:26:46,221 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:26:46,221 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:26:46,222 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:26:46,222 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:26:46,248 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:26:46,249 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:26:46,250 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:26:46,297 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:26:46,461 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_08101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:26:46,461 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:26:46,463 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_08101_00001_nis
2024-11-12 19:26:46,463 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:26:46,464 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:26:46,736 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_08101_00001_nis_cal.fits
2024-11-12 19:26:46,737 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:26:46,737 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:26:46,805 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:26:46,814 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:26:46,826 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:26:46,828 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:26:46,829 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:26:46,830 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:26:46,831 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:26:46,832 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:26:46,989 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00179_asn.json',).
2024-11-12 19:26:46,997 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:26:47,063 - 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']
2024-11-12 19:26:47,066 - 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)
2024-11-12 19:26:48,527 - 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)
2024-11-12 19:26:48,759 - 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)
2024-11-12 19:26:51,488 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2024-11-12 19:26:51,489 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:26:51,489 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:26:51,490 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:26:51,490 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:26:51,491 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2024-11-12 19:26:51,491 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:26:51,492 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:26:51,492 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2024-11-12 19:26:51,493 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:26:51,493 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:26:51,493 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:26:51,494 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:26:51,494 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:26:51,494 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:26:51,495 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:26:51,495 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:26:51,496 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:26:51,496 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:26:51,496 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:26:51,497 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:26:51,498 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:26:51,505 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_12101_00003_nis
2024-11-12 19:26:51,506 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_12101_00003_nis_rate.fits ...
2024-11-12 19:26:51,717 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:51,892 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2024-11-12 19:26:51,950 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148717747 -27.807917565 53.188593620 -27.795461762 53.174420785 -27.760506196 53.134580649 -27.772940453
2024-11-12 19:26:51,951 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148717747 -27.807917565 53.188593620 -27.795461762 53.174420785 -27.760506196 53.134580649 -27.772940453
2024-11-12 19:26:51,952 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:26:52,003 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:26:52,167 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:52,253 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2024-11-12 19:26:52,254 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:26:52,254 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:26:52,254 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:26:52,424 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:26:52,571 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:52,595 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:26:52,596 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2024-11-12 19:26:52,639 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:26:52,640 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:26:52,640 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:26:52,641 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:26:52,641 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2024-11-12 19:26:52,668 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:26:52,668 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:26:52,670 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256732
2024-11-12 19:26:52,715 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:26:52,860 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:52,861 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:26:52,862 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_12101_00003_nis
2024-11-12 19:26:52,863 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:26:52,863 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:26:53,130 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_12101_00003_nis_cal.fits
2024-11-12 19:26:53,130 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:26:53,131 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:26:53,197 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:26:53,206 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:26:53,218 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:26:53,219 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:26:53,221 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:26:53,222 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:26:53,223 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:26:53,225 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:26:53,377 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00549_asn.json',).
2024-11-12 19:26:53,385 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:26:53,451 - 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']
2024-11-12 19:26:53,454 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:26:53,455 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:26:53,456 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:26:53,456 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:26:53,457 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:26:53,457 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:26:53,458 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:26:53,459 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:26:53,459 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:26:53,460 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:26:53,460 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:26:53,460 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:26:53,461 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:26:53,461 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:26:53,462 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:26:53,462 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:26:53,462 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:26:53,464 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:26:53,464 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:26:53,465 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:26:53,465 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:26:53,466 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:26:53,472 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_10101_00003_nis
2024-11-12 19:26:53,473 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_10101_00003_nis_rate.fits ...
2024-11-12 19:26:53,683 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:53,858 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:26:53,915 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148290721 -27.806864917 53.188165547 -27.794409745 53.173992815 -27.759454672 53.134154011 -27.771888691
2024-11-12 19:26:53,916 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148290721 -27.806864917 53.188165547 -27.794409745 53.173992815 -27.759454672 53.134154011 -27.771888691
2024-11-12 19:26:53,917 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:26:53,967 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:26:54,114 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:54,196 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:26:54,197 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:26:54,197 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:26:54,198 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:26:54,349 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:26:54,495 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:54,519 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:26:54,519 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:26:54,567 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:26:54,567 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:26:54,568 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:26:54,568 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:26:54,569 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:26:54,596 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:26:54,596 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:26:54,598 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:26:54,643 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:26:54,791 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:54,792 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:26:54,793 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_10101_00003_nis
2024-11-12 19:26:54,794 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:26:54,794 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:26:55,060 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_10101_00003_nis_cal.fits
2024-11-12 19:26:55,061 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:26:55,061 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:26:55,127 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:26:55,137 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:26:55,149 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:26:55,150 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:26:55,152 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:26:55,153 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:26:55,154 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:26:55,155 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:26:55,304 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00327_asn.json',).
2024-11-12 19:26:55,313 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:26:55,379 - 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']
2024-11-12 19:26:55,383 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:26:55,383 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:26:55,384 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:26:55,384 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:26:55,384 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:26:55,385 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:26:55,385 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:26:55,386 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:26:55,387 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:26:55,387 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:26:55,388 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:26:55,388 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:26:55,388 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:26:55,389 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:26:55,389 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:26:55,390 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:26:55,391 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:26:55,392 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:26:55,392 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:26:55,393 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:26:55,393 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:26:55,394 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:26:55,400 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_06101_00003_nis
2024-11-12 19:26:55,401 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_06101_00003_nis_rate.fits ...
2024-11-12 19:26:55,598 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:55,772 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:26:55,829 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148258265 -27.807029140 53.188133164 -27.794574001 53.173960447 -27.759618917 53.134121570 -27.772052903
2024-11-12 19:26:55,829 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148258265 -27.807029140 53.188133164 -27.794574001 53.173960447 -27.759618917 53.134121570 -27.772052903
2024-11-12 19:26:55,830 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:26:55,886 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:26:56,028 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:56,111 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:26:56,112 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:26:56,112 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:26:56,113 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:26:56,283 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:26:56,438 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:56,462 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:26:56,462 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:26:56,506 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:26:56,506 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:26:56,507 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:26:56,507 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:26:56,507 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:26:56,534 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:26:56,534 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:26:56,535 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:26:56,583 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:26:56,724 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:26:56,725 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:26:56,726 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_06101_00003_nis
2024-11-12 19:26:56,727 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:26:56,728 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:26:56,993 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_06101_00003_nis_cal.fits
2024-11-12 19:26:56,993 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:26:56,994 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:26:57,059 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:26:57,068 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:26:57,080 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:26:57,081 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:26:57,082 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:26:57,083 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:26:57,084 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:26:57,086 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:26:57,233 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00548_asn.json',).
2024-11-12 19:26:57,241 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:26:57,307 - 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']
2024-11-12 19:26:57,310 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:26:57,311 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:26:57,311 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:26:57,312 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:26:57,312 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:26:57,312 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:26:57,313 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:26:57,314 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:26:57,314 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:26:57,315 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:26:57,315 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:26:57,316 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:26:57,316 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:26:57,317 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:26:57,317 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:26:57,318 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:26:57,318 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:26:57,320 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:26:57,320 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:26:57,321 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:26:57,321 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:26:57,322 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:26:57,328 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_10101_00004_nis
2024-11-12 19:26:57,329 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_10101_00004_nis_rate.fits ...
2024-11-12 19:26:57,524 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:26:57,702 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:26:57,759 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.147994781 -27.807143725 53.187869754 -27.794688666 53.173697112 -27.759733554 53.133858160 -27.772167459
2024-11-12 19:26:57,760 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.147994781 -27.807143725 53.187869754 -27.794688666 53.173697112 -27.759733554 53.133858160 -27.772167459
2024-11-12 19:26:57,761 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:26:57,821 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:26:57,966 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:26:58,047 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:26:58,048 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:26:58,049 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:26:58,049 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:26:58,200 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:26:58,351 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:26:58,375 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:26:58,375 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:26:58,419 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:26:58,420 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:26:58,420 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:26:58,420 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:26:58,421 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:26:58,448 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:26:58,448 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:26:58,450 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:26:58,496 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:26:58,650 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:26:58,651 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:26:58,653 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_10101_00004_nis
2024-11-12 19:26:58,653 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:26:58,654 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:26:58,927 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_10101_00004_nis_cal.fits
2024-11-12 19:26:58,927 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:26:58,928 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:26:58,995 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:26:59,004 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:26:59,017 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:26:59,018 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:26:59,019 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:26:59,020 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:26:59,021 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:26:59,023 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:26:59,180 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00107_asn.json',).
2024-11-12 19:26:59,188 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:26:59,253 - 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']
2024-11-12 19:26:59,257 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2024-11-12 19:26:59,258 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:26:59,258 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:26:59,258 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:26:59,259 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:26:59,259 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2024-11-12 19:26:59,261 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:26:59,261 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:26:59,261 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2024-11-12 19:26:59,262 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:26:59,263 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:26:59,263 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:26:59,264 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:26:59,264 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:26:59,264 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:26:59,265 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:26:59,265 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:26:59,267 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:26:59,267 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:26:59,268 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:26:59,268 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:26:59,269 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:26:59,275 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_04101_00001_nis
2024-11-12 19:26:59,276 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_04101_00001_nis_rate.fits ...
2024-11-12 19:26:59,468 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:26:59,642 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2024-11-12 19:26:59,700 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.145328761 -27.807615119 53.185203546 -27.795159619 53.171032646 -27.760205054 53.131193263 -27.772638463
2024-11-12 19:26:59,701 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.145328761 -27.807615119 53.185203546 -27.795159619 53.171032646 -27.760205054 53.131193263 -27.772638463
2024-11-12 19:26:59,701 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:26:59,752 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:26:59,897 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:26:59,979 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2024-11-12 19:26:59,979 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:26:59,980 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:26:59,980 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:00,138 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:00,283 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:00,306 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:00,307 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2024-11-12 19:27:00,349 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:00,350 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:00,350 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:00,351 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:00,351 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2024-11-12 19:27:00,377 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:00,378 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:00,379 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.259995
2024-11-12 19:27:00,424 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:00,565 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:00,566 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:00,567 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_04101_00001_nis
2024-11-12 19:27:00,568 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:00,569 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:00,838 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_04101_00001_nis_cal.fits
2024-11-12 19:27:00,839 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:00,839 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:00,904 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:00,914 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:00,926 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:00,927 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:00,928 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:00,929 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:00,930 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:00,932 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:01,079 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00401_asn.json',).
2024-11-12 19:27:01,087 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:01,154 - 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']
2024-11-12 19:27:01,157 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:01,158 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:01,158 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:01,159 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:01,159 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:01,159 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:01,161 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:01,161 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:01,162 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:01,163 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:01,163 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:01,163 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:01,164 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:01,164 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:01,165 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:01,165 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:01,167 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:01,167 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:01,168 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:01,168 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:01,169 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:01,170 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:01,176 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_04101_00003_nis
2024-11-12 19:27:01,176 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_04101_00003_nis_rate.fits ...
2024-11-12 19:27:01,388 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:01,561 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:01,619 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148290610 -27.806865021 53.188165427 -27.794409827 53.173992671 -27.759454763 53.134153875 -27.771888803
2024-11-12 19:27:01,620 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148290610 -27.806865021 53.188165427 -27.794409827 53.173992671 -27.759454763 53.134153875 -27.771888803
2024-11-12 19:27:01,621 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:01,672 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:01,825 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:01,906 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:01,907 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:01,907 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:01,908 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:02,063 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:02,215 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:02,239 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:02,239 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:02,283 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:02,283 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:02,284 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:02,285 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:02,285 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:02,312 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:02,312 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:02,314 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:02,359 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:02,518 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:02,519 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:02,520 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_04101_00003_nis
2024-11-12 19:27:02,521 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:02,522 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:02,793 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_04101_00003_nis_cal.fits
2024-11-12 19:27:02,793 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:02,794 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:02,859 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:02,868 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:02,880 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:02,881 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:02,882 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:02,884 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:02,885 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:02,886 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:03,031 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00740_asn.json',).
2024-11-12 19:27:03,040 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:03,106 - 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']
2024-11-12 19:27:03,109 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:03,110 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:03,110 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:03,111 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:03,111 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:03,112 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:03,113 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:03,113 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:03,114 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:03,115 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:03,115 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:03,116 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:03,116 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:03,116 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:03,117 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:03,117 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:03,118 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:03,118 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:03,118 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:03,120 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:03,121 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:03,122 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:03,128 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_02101_00001_nis
2024-11-12 19:27:03,128 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_02101_00001_nis_rate.fits ...
2024-11-12 19:27:03,322 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_02101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:03,497 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:03,555 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148027457 -27.806979979 53.187902357 -27.794524885 53.173729698 -27.759569785 53.133890819 -27.772003725
2024-11-12 19:27:03,556 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148027457 -27.806979979 53.187902357 -27.794524885 53.173729698 -27.759569785 53.133890819 -27.772003725
2024-11-12 19:27:03,557 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:03,611 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:03,766 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_02101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:03,849 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:03,850 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:03,850 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:03,850 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:04,009 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:04,172 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_02101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:04,195 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:04,196 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:04,240 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:04,240 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:04,241 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:04,241 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:04,242 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:04,269 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:04,270 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:04,271 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:04,318 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:04,489 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_02101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:04,490 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:04,491 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_02101_00001_nis
2024-11-12 19:27:04,492 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:04,493 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:04,763 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_02101_00001_nis_cal.fits
2024-11-12 19:27:04,764 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:04,764 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:04,831 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:04,840 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:04,853 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:04,854 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:04,856 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:04,857 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:04,858 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:04,859 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:05,005 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00253_asn.json',).
2024-11-12 19:27:05,016 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:05,092 - 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']
2024-11-12 19:27:05,095 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2024-11-12 19:27:05,096 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:05,096 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:05,096 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:05,097 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:05,097 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2024-11-12 19:27:05,098 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:05,098 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:05,099 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2024-11-12 19:27:05,099 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:05,100 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:05,100 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:05,100 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:05,101 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:05,102 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:05,102 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:05,103 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:05,103 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:05,104 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:05,104 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:05,104 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:05,105 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:05,112 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_10101_00003_nis
2024-11-12 19:27:05,112 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_10101_00003_nis_rate.fits ...
2024-11-12 19:27:05,322 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:05,497 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2024-11-12 19:27:05,556 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.147101701 -27.807237296 53.186977497 -27.794781927 53.172805237 -27.759826207 53.132965179 -27.772260029
2024-11-12 19:27:05,556 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.147101701 -27.807237296 53.186977497 -27.794781927 53.172805237 -27.759826207 53.132965179 -27.772260029
2024-11-12 19:27:05,557 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:05,608 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:05,762 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:05,844 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2024-11-12 19:27:05,845 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:05,845 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:05,845 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:06,004 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:06,150 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:06,176 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:06,176 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2024-11-12 19:27:06,220 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:06,221 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:06,221 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:06,222 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:06,222 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2024-11-12 19:27:06,249 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:06,249 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:06,251 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256732
2024-11-12 19:27:06,299 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:06,444 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:06,445 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:06,446 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_10101_00003_nis
2024-11-12 19:27:06,447 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:06,448 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:06,716 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_10101_00003_nis_cal.fits
2024-11-12 19:27:06,717 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:06,717 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:06,784 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:06,793 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:06,806 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:06,807 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:06,809 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:06,810 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:06,811 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:06,812 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:06,955 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00252_asn.json',).
2024-11-12 19:27:06,963 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:07,029 - 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']
2024-11-12 19:27:07,032 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2024-11-12 19:27:07,033 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:07,034 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:07,034 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:07,034 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:07,035 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2024-11-12 19:27:07,036 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:07,036 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:07,037 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2024-11-12 19:27:07,037 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:07,038 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:07,038 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:07,039 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:07,039 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:07,039 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:07,040 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:07,040 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:07,041 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:07,041 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:07,041 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:07,042 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:07,043 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:07,049 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_10101_00004_nis
2024-11-12 19:27:07,050 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_10101_00004_nis_rate.fits ...
2024-11-12 19:27:07,246 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:07,425 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2024-11-12 19:27:07,485 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148454131 -27.808032261 53.188330066 -27.795576507 53.174157271 -27.760620923 53.134317074 -27.773055131
2024-11-12 19:27:07,486 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148454131 -27.808032261 53.188330066 -27.795576507 53.174157271 -27.760620923 53.134317074 -27.773055131
2024-11-12 19:27:07,486 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:07,546 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:07,692 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:07,773 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2024-11-12 19:27:07,774 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:07,774 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:07,775 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:07,933 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:08,076 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:08,100 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:08,100 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2024-11-12 19:27:08,141 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:08,141 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:08,142 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:08,142 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:08,143 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2024-11-12 19:27:08,169 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:08,169 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:08,170 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256732
2024-11-12 19:27:08,216 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:08,364 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:08,365 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:08,366 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_10101_00004_nis
2024-11-12 19:27:08,366 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:08,367 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:08,635 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_10101_00004_nis_cal.fits
2024-11-12 19:27:08,636 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:08,636 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:08,702 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:08,711 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:08,724 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:08,724 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:08,726 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:08,727 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:08,728 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:08,730 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:08,876 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00623_asn.json',).
2024-11-12 19:27:08,883 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:08,950 - 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']
2024-11-12 19:27:08,953 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:08,954 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:08,954 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:08,955 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:08,955 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:08,956 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:08,956 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:08,956 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:08,957 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:08,958 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:08,958 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:08,959 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:08,959 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:08,960 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:08,960 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:08,960 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:08,961 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:08,961 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:08,961 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:08,962 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:08,962 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:08,963 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:08,970 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_06101_00003_nis
2024-11-12 19:27:08,970 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_06101_00003_nis_rate.fits ...
2024-11-12 19:27:09,168 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:09,343 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:09,401 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148258245 -27.807029181 53.188133140 -27.794574030 53.173960411 -27.759618951 53.134121537 -27.772052947
2024-11-12 19:27:09,401 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148258245 -27.807029181 53.188133140 -27.794574030 53.173960411 -27.759618951 53.134121537 -27.772052947
2024-11-12 19:27:09,402 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:09,452 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:09,593 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:09,677 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:09,677 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:09,678 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:09,678 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:09,832 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:09,979 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:10,003 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:10,003 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:10,046 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:10,047 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:10,047 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:10,048 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:10,048 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:10,074 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:10,075 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:10,076 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:10,121 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:10,265 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:10,266 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:10,267 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_06101_00003_nis
2024-11-12 19:27:10,268 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:10,268 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:10,535 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_06101_00003_nis_cal.fits
2024-11-12 19:27:10,535 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:10,536 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:10,601 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:10,611 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:10,623 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:10,624 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:10,625 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:10,626 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:10,627 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:10,628 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:10,773 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00329_asn.json',).
2024-11-12 19:27:10,781 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:10,846 - 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']
2024-11-12 19:27:10,850 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:10,850 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:10,851 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:10,851 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:10,852 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:10,852 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:10,853 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:10,854 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:10,854 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:10,855 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:10,855 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:10,856 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:10,856 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:10,856 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:10,857 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:10,857 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:10,858 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:10,858 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:10,859 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:10,859 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:10,859 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:10,860 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:10,868 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_06101_00001_nis
2024-11-12 19:27:10,868 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_06101_00001_nis_rate.fits ...
2024-11-12 19:27:11,056 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:11,231 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:11,289 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148278310 -27.806888754 53.188153126 -27.794433534 53.173980338 -27.759478479 53.134141543 -27.771912545
2024-11-12 19:27:11,289 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148278310 -27.806888754 53.188153126 -27.794433534 53.173980338 -27.759478479 53.134141543 -27.771912545
2024-11-12 19:27:11,290 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:11,341 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:11,483 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:11,564 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:11,565 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:11,566 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:11,566 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:11,732 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:11,874 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:11,898 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:11,898 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:11,942 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:11,943 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:11,943 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:11,943 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:11,944 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:11,970 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:11,971 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:11,972 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:12,017 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:12,160 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_06101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:12,161 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:12,162 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_06101_00001_nis
2024-11-12 19:27:12,164 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:12,164 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:12,429 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_06101_00001_nis_cal.fits
2024-11-12 19:27:12,429 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:12,430 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:12,495 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:12,504 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:12,516 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:12,518 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:12,519 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:12,520 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:12,521 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:12,523 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:12,670 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00148_asn.json',).
2024-11-12 19:27:12,678 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:12,744 - 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']
2024-11-12 19:27:12,747 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2024-11-12 19:27:12,748 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:12,748 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:12,749 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:12,749 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:12,750 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2024-11-12 19:27:12,750 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:12,751 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:12,751 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2024-11-12 19:27:12,752 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:12,753 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:12,753 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:12,753 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:12,754 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:12,754 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:12,755 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:12,755 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:12,756 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:12,756 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:12,756 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:12,757 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:12,758 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:12,765 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_02101_00001_nis
2024-11-12 19:27:12,765 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_02101_00001_nis_rate.fits ...
2024-11-12 19:27:12,953 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_02101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:13,126 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2024-11-12 19:27:13,184 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.145045589 -27.807870408 53.184920537 -27.795415084 53.170749800 -27.760460456 53.130910254 -27.772893691
2024-11-12 19:27:13,185 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.145045589 -27.807870408 53.184920537 -27.795415084 53.170749800 -27.760460456 53.130910254 -27.772893691
2024-11-12 19:27:13,186 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:13,236 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:13,383 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_02101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:13,466 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2024-11-12 19:27:13,467 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:13,468 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:13,468 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:13,624 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:13,769 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_02101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:13,792 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:13,793 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2024-11-12 19:27:13,833 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:13,834 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:13,834 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:13,835 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:13,835 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2024-11-12 19:27:13,862 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:13,862 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:13,863 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.259995
2024-11-12 19:27:13,909 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:14,052 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_02101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:14,052 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:14,054 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_02101_00001_nis
2024-11-12 19:27:14,055 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:14,055 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:14,320 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_02101_00001_nis_cal.fits
2024-11-12 19:27:14,321 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:14,322 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:14,387 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:14,396 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:14,408 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:14,409 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:14,411 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:14,412 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:14,413 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:14,414 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:14,558 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00403_asn.json',).
2024-11-12 19:27:14,566 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:14,632 - 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']
2024-11-12 19:27:14,635 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:14,636 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:14,637 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:14,637 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:14,638 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:14,638 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:14,639 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:14,639 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:14,640 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:14,641 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:14,641 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:14,642 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:14,642 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:14,642 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:14,643 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:14,643 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:14,644 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:14,645 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:14,645 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:14,645 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:14,646 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:14,647 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:14,653 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_04101_00001_nis
2024-11-12 19:27:14,654 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_04101_00001_nis_rate.fits ...
2024-11-12 19:27:14,843 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:15,016 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:15,074 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148310914 -27.806724439 53.188185683 -27.794269255 53.174012957 -27.759314187 53.134174209 -27.771748217
2024-11-12 19:27:15,075 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148310914 -27.806724439 53.188185683 -27.794269255 53.174012957 -27.759314187 53.134174209 -27.771748217
2024-11-12 19:27:15,076 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:15,126 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:15,266 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:15,348 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:15,348 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:15,349 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:15,349 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:15,511 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:15,655 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:15,679 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:15,679 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:15,724 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:15,724 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:15,724 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:15,725 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:15,725 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:15,752 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:15,752 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:15,753 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:15,798 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:15,942 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:15,943 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:15,944 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_04101_00001_nis
2024-11-12 19:27:15,945 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:15,945 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:16,211 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_04101_00001_nis_cal.fits
2024-11-12 19:27:16,211 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:16,212 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:16,277 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:16,287 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:16,299 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:16,300 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:16,301 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:16,302 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:16,303 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:16,305 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:16,461 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00476_asn.json',).
2024-11-12 19:27:16,470 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:16,536 - 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']
2024-11-12 19:27:16,539 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:16,540 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:16,540 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:16,541 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:16,541 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:16,541 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:16,542 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:16,542 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:16,542 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:16,544 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:16,544 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:16,544 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:16,545 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:16,545 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:16,545 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:16,546 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:16,546 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:16,547 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:16,548 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:16,548 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:16,548 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:16,549 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:16,555 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_12101_00002_nis
2024-11-12 19:27:16,556 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_12101_00002_nis_rate.fits ...
2024-11-12 19:27:16,750 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:16,925 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:16,983 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148416230 -27.807066539 53.188291115 -27.794611330 53.174118316 -27.759656271 53.134279452 -27.772090326
2024-11-12 19:27:16,984 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148416230 -27.807066539 53.188291115 -27.794611330 53.174118316 -27.759656271 53.134279452 -27.772090326
2024-11-12 19:27:16,985 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:17,039 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:17,183 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:17,265 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:17,265 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:17,266 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:17,267 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:17,422 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:17,569 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:17,593 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:17,593 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:17,638 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:17,638 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:17,639 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:17,639 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:17,639 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:17,666 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:17,666 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:17,667 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:17,713 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:17,856 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:17,857 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:17,858 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_12101_00002_nis
2024-11-12 19:27:17,859 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:17,860 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:18,126 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_12101_00002_nis_cal.fits
2024-11-12 19:27:18,127 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:18,127 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:18,194 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:18,203 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:18,215 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:18,216 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:18,217 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:18,218 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:18,219 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:18,220 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:18,369 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00181_asn.json',).
2024-11-12 19:27:18,377 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:18,442 - 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']
2024-11-12 19:27:18,445 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2024-11-12 19:27:18,446 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:18,447 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:18,447 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:18,448 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:18,448 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2024-11-12 19:27:18,449 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:18,449 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:18,450 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2024-11-12 19:27:18,450 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:18,451 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:18,451 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:18,451 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:18,452 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:18,452 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:18,452 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:18,453 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:18,453 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:18,454 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:18,454 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:18,454 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:18,455 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:18,462 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_12101_00001_nis
2024-11-12 19:27:18,463 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_12101_00001_nis_rate.fits ...
2024-11-12 19:27:18,651 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:18,830 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2024-11-12 19:27:18,888 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148738306 -27.807776837 53.188614164 -27.795321124 53.174441448 -27.760365526 53.134601328 -27.772799693
2024-11-12 19:27:18,889 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148738306 -27.807776837 53.188614164 -27.795321124 53.174441448 -27.760365526 53.134601328 -27.772799693
2024-11-12 19:27:18,889 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:18,940 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:19,079 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:19,161 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2024-11-12 19:27:19,162 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:19,162 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:19,163 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:19,329 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:19,477 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:19,502 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:19,502 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2024-11-12 19:27:19,541 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:19,542 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:19,542 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:19,542 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:19,543 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2024-11-12 19:27:19,569 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:19,570 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:19,571 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256732
2024-11-12 19:27:19,617 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:19,768 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:19,769 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:19,770 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_12101_00001_nis
2024-11-12 19:27:19,771 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:19,771 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:20,039 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_12101_00001_nis_cal.fits
2024-11-12 19:27:20,039 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:20,040 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:20,105 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:20,115 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:20,126 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:20,127 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:20,129 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:20,129 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:20,130 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:20,132 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:20,287 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00104_asn.json',).
2024-11-12 19:27:20,295 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:20,361 - 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']
2024-11-12 19:27:20,364 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2024-11-12 19:27:20,365 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:20,366 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:20,366 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:20,366 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:20,367 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2024-11-12 19:27:20,367 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:20,368 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:20,368 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2024-11-12 19:27:20,368 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:20,370 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:20,371 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:20,371 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:20,371 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:20,372 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:20,372 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:20,372 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:20,373 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:20,374 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:20,374 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:20,374 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:20,375 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:20,381 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_04101_00004_nis
2024-11-12 19:27:20,382 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_04101_00004_nis_rate.fits ...
2024-11-12 19:27:20,577 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:20,786 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2024-11-12 19:27:20,843 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.149040483 -27.809541727 53.188915548 -27.797085158 53.174743200 -27.762130973 53.134903537 -27.774565450
2024-11-12 19:27:20,844 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.149040483 -27.809541727 53.188915548 -27.797085158 53.174743200 -27.762130973 53.134903537 -27.774565450
2024-11-12 19:27:20,844 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:20,895 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:21,037 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:21,118 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2024-11-12 19:27:21,119 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:21,119 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:21,120 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:21,275 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:21,417 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:21,441 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:21,442 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2024-11-12 19:27:21,486 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:21,487 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:21,487 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:21,487 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:21,488 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2024-11-12 19:27:21,515 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:21,515 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:21,516 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.259995
2024-11-12 19:27:21,561 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:21,706 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:21,706 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:21,708 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_04101_00004_nis
2024-11-12 19:27:21,708 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:21,709 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:21,975 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_04101_00004_nis_cal.fits
2024-11-12 19:27:21,976 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:21,977 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:22,042 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:22,051 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:22,064 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:22,065 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:22,066 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:22,067 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:22,068 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:22,070 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:22,216 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00624_asn.json',).
2024-11-12 19:27:22,224 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:22,290 - 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']
2024-11-12 19:27:22,294 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:22,295 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:22,295 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:22,295 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:22,296 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:22,296 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:22,297 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:22,298 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:22,298 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:22,299 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:22,300 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:22,300 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:22,300 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:22,301 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:22,301 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:22,302 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:22,302 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:22,304 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:22,304 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:22,305 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:22,305 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:22,306 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:22,312 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_06101_00002_nis
2024-11-12 19:27:22,312 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_06101_00002_nis_rate.fits ...
2024-11-12 19:27:22,515 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:22,690 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:22,749 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148416261 -27.807066558 53.188291156 -27.794611373 53.174118384 -27.759656305 53.134279510 -27.772090336
2024-11-12 19:27:22,750 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148416261 -27.807066558 53.188291156 -27.794611373 53.174118384 -27.759656305 53.134279510 -27.772090336
2024-11-12 19:27:22,750 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:22,811 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:22,957 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:23,039 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:23,040 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:23,040 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:23,040 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:23,197 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:23,350 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:23,373 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:23,373 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:23,417 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:23,418 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:23,418 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:23,419 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:23,419 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:23,446 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:23,447 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:23,448 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:23,492 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:23,638 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:23,639 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:23,640 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_06101_00002_nis
2024-11-12 19:27:23,641 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:23,642 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:23,908 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_06101_00002_nis_cal.fits
2024-11-12 19:27:23,909 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:23,909 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:23,975 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:23,984 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:23,996 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:23,997 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:23,998 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:23,999 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:24,000 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:24,002 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:24,148 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00551_asn.json',).
2024-11-12 19:27:24,157 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:24,223 - 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']
2024-11-12 19:27:24,227 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:24,227 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:24,228 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:24,228 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:24,228 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:24,229 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:24,229 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:24,231 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:24,231 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:24,232 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:24,232 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:24,233 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:24,233 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:24,233 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:24,234 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:24,234 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:24,235 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:24,236 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:24,237 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:24,237 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:24,238 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:24,239 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:24,245 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_10101_00001_nis
2024-11-12 19:27:24,245 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_10101_00001_nis_rate.fits ...
2024-11-12 19:27:24,437 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:24,612 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:24,670 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148311092 -27.806724283 53.188185880 -27.794269146 53.174013206 -27.759314061 53.134174439 -27.771748045
2024-11-12 19:27:24,670 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148311092 -27.806724283 53.188185880 -27.794269146 53.174013206 -27.759314061 53.134174439 -27.771748045
2024-11-12 19:27:24,671 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:24,722 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:24,876 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:24,959 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:24,959 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:24,960 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:24,960 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:25,113 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:25,255 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:25,278 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:25,279 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:25,323 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:25,324 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:25,324 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:25,325 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:25,326 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:25,352 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:25,352 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:25,354 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:25,400 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:25,552 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_10101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:25,553 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:25,554 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_10101_00001_nis
2024-11-12 19:27:25,555 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:25,556 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:25,823 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_10101_00001_nis_cal.fits
2024-11-12 19:27:25,823 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:25,824 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:25,890 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:25,900 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:25,912 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:25,913 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:25,914 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:25,915 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:25,917 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:25,918 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:26,059 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00400_asn.json',).
2024-11-12 19:27:26,068 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:26,134 - 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']
2024-11-12 19:27:26,137 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:26,138 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:26,138 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:26,138 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:26,139 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:26,139 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:26,140 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:26,140 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:26,141 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:26,141 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:26,142 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:26,142 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:26,143 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:26,143 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:26,144 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:26,144 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:26,145 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:26,146 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:26,146 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:26,147 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:26,147 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:26,148 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:26,154 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_04101_00004_nis
2024-11-12 19:27:26,155 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_04101_00004_nis_rate.fits ...
2024-11-12 19:27:26,354 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:26,529 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:26,588 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.147994655 -27.807143836 53.187869617 -27.794688749 53.173696945 -27.759733647 53.133858004 -27.772167580
2024-11-12 19:27:26,589 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.147994655 -27.807143836 53.187869617 -27.794688749 53.173696945 -27.759733647 53.133858004 -27.772167580
2024-11-12 19:27:26,589 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:26,640 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:26,782 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:26,863 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:26,864 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:26,865 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:26,865 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:27,027 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:27,175 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:27,198 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:27,199 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:27,242 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:27,242 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:27,243 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:27,243 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:27,244 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:27,271 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:27,271 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:27,272 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:27,318 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:27,471 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:27,471 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:27,473 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_04101_00004_nis
2024-11-12 19:27:27,474 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:27,475 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:27,746 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_04101_00004_nis_cal.fits
2024-11-12 19:27:27,746 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:27,747 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:27,817 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:27,826 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:27,838 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:27,839 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:27,840 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:27,841 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:27,842 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:27,843 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:27,990 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00254_asn.json',).
2024-11-12 19:27:27,998 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:28,065 - 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']
2024-11-12 19:27:28,068 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2024-11-12 19:27:28,069 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:28,069 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:28,070 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:28,071 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:28,071 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2024-11-12 19:27:28,072 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:28,072 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:28,072 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2024-11-12 19:27:28,073 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:28,073 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:28,074 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:28,074 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:28,075 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:28,075 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:28,075 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:28,076 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:28,077 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:28,077 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:28,077 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:28,078 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:28,079 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:28,085 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_10101_00002_nis
2024-11-12 19:27:28,085 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_10101_00002_nis_rate.fits ...
2024-11-12 19:27:28,278 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:28,453 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2024-11-12 19:27:28,512 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.147259857 -27.807274540 53.187135673 -27.794819187 53.172963426 -27.759863461 53.133123347 -27.772297268
2024-11-12 19:27:28,512 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.147259857 -27.807274540 53.187135673 -27.794819187 53.172963426 -27.759863461 53.133123347 -27.772297268
2024-11-12 19:27:28,513 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:28,567 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:28,713 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:28,798 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2024-11-12 19:27:28,799 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:28,799 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:28,800 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:28,952 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:29,101 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:29,125 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:29,126 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2024-11-12 19:27:29,169 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:29,169 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:29,170 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:29,170 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:29,170 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2024-11-12 19:27:29,197 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:29,197 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:29,199 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256732
2024-11-12 19:27:29,244 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:29,396 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:29,397 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:29,398 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_10101_00002_nis
2024-11-12 19:27:29,399 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:29,399 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:29,667 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_10101_00002_nis_cal.fits
2024-11-12 19:27:29,668 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:29,669 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:29,743 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:29,752 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:29,767 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:29,768 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:29,769 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:29,770 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:29,772 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:29,773 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:29,929 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00698_asn.json',).
2024-11-12 19:27:29,937 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:30,009 - 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']
2024-11-12 19:27:30,012 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:30,013 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:30,014 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:30,014 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:30,015 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:30,016 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:30,017 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:30,017 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:30,018 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:30,018 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:30,019 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:30,019 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:30,020 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:30,020 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:30,021 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:30,021 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:30,021 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:30,022 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:30,023 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:30,023 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:30,023 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:30,024 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:30,031 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_04101_00002_nis
2024-11-12 19:27:30,031 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_04101_00002_nis_rate.fits ...
2024-11-12 19:27:30,228 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:30,403 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:30,462 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148448588 -27.806902414 53.188323401 -27.794447174 53.174150589 -27.759492126 53.134311797 -27.771926212
2024-11-12 19:27:30,463 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148448588 -27.806902414 53.188323401 -27.794447174 53.174150589 -27.759492126 53.134311797 -27.771926212
2024-11-12 19:27:30,463 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:30,524 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:30,669 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:30,751 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:30,752 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:30,752 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:30,753 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:30,928 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:31,077 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:31,103 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:31,103 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:31,148 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:31,148 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:31,149 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:31,149 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:31,150 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:31,177 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:31,177 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:31,179 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:31,225 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:31,388 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:31,389 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:31,390 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_04101_00002_nis
2024-11-12 19:27:31,391 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:31,391 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:31,659 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_04101_00002_nis_cal.fits
2024-11-12 19:27:31,660 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:31,660 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:31,727 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:31,736 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:31,748 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:31,749 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:31,751 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:31,752 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:31,753 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:31,754 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:31,899 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00180_asn.json',).
2024-11-12 19:27:31,907 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:31,973 - 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']
2024-11-12 19:27:31,977 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2024-11-12 19:27:31,978 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:31,978 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:31,978 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:31,979 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:31,979 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2024-11-12 19:27:31,980 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:31,981 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:31,981 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2024-11-12 19:27:31,982 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:31,983 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:31,983 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:31,983 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:31,984 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:31,985 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:31,985 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:31,986 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:31,987 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:31,987 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:31,988 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:31,988 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:31,989 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:31,995 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_12101_00002_nis
2024-11-12 19:27:31,996 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_12101_00002_nis_rate.fits ...
2024-11-12 19:27:32,192 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:32,383 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2024-11-12 19:27:32,442 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148875786 -27.807954940 53.188751661 -27.795499106 53.174578787 -27.760543551 53.134738650 -27.772977838
2024-11-12 19:27:32,442 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148875786 -27.807954940 53.188751661 -27.795499106 53.174578787 -27.760543551 53.134738650 -27.772977838
2024-11-12 19:27:32,443 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:32,494 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:32,643 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:32,726 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2024-11-12 19:27:32,726 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:32,727 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:32,727 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:32,885 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:33,031 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:33,055 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:33,055 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2024-11-12 19:27:33,095 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:33,096 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:33,096 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:33,097 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:33,097 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2024-11-12 19:27:33,124 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:33,125 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:33,126 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256732
2024-11-12 19:27:33,172 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:33,321 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_12101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:33,322 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:33,323 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_12101_00002_nis
2024-11-12 19:27:33,324 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:33,325 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:33,594 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_12101_00002_nis_cal.fits
2024-11-12 19:27:33,595 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:33,596 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:33,662 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:33,672 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:33,683 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:33,684 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:33,686 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:33,687 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:33,688 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:33,689 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:33,840 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00255_asn.json',).
2024-11-12 19:27:33,848 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:33,913 - 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']
2024-11-12 19:27:33,917 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2024-11-12 19:27:33,917 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:33,918 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:33,918 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:33,919 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:33,919 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2024-11-12 19:27:33,920 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:33,920 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:33,921 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2024-11-12 19:27:33,921 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:33,922 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:33,922 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:33,923 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:33,923 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:33,923 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:33,924 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:33,924 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:33,924 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:33,925 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:33,925 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:33,925 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:33,927 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:33,933 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_10101_00001_nis
2024-11-12 19:27:33,934 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_10101_00001_nis_rate.fits ...
2024-11-12 19:27:34,129 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:34,303 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2024-11-12 19:27:34,361 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.147121739 -27.807096896 53.186997451 -27.794641444 53.172825116 -27.759685753 53.132985142 -27.772119659
2024-11-12 19:27:34,361 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.147121739 -27.807096896 53.186997451 -27.794641444 53.172825116 -27.759685753 53.132985142 -27.772119659
2024-11-12 19:27:34,362 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:34,417 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:34,568 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:34,650 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2024-11-12 19:27:34,651 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:34,651 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:34,652 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:34,817 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:34,963 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:34,987 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:34,987 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2024-11-12 19:27:35,031 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:35,032 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:35,032 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:35,032 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:35,033 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2024-11-12 19:27:35,059 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:35,060 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:35,061 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256732
2024-11-12 19:27:35,107 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:35,256 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_10101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:35,257 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:35,258 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_10101_00001_nis
2024-11-12 19:27:35,259 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:35,260 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:35,527 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_10101_00001_nis_cal.fits
2024-11-12 19:27:35,528 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:35,528 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:35,594 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:35,604 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:35,616 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:35,618 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:35,619 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:35,620 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:35,622 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:35,623 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:35,774 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00696_asn.json',).
2024-11-12 19:27:35,782 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:35,849 - 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']
2024-11-12 19:27:35,853 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:35,853 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:35,854 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:35,855 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:35,855 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:35,856 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:35,857 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:35,857 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:35,858 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:35,858 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:35,859 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:35,859 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:35,860 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:35,860 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:35,860 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:35,861 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:35,861 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:35,862 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:35,862 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:35,863 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:35,863 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:35,864 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:35,870 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_04101_00004_nis
2024-11-12 19:27:35,871 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_04101_00004_nis_rate.fits ...
2024-11-12 19:27:36,064 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:36,239 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:36,298 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.147994716 -27.807143868 53.187869682 -27.794688790 53.173697019 -27.759733685 53.133858075 -27.772167609
2024-11-12 19:27:36,298 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.147994716 -27.807143868 53.187869682 -27.794688790 53.173697019 -27.759733685 53.133858075 -27.772167609
2024-11-12 19:27:36,299 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:36,349 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:36,495 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:36,577 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:36,578 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:36,578 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:36,579 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:36,733 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:36,882 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:36,906 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:36,906 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:36,951 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:36,952 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:36,952 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:36,953 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:36,953 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:36,980 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:36,980 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:36,981 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:37,026 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:37,175 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00004_nis_image2pipeline.fits>,).
2024-11-12 19:27:37,176 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:37,177 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_04101_00004_nis
2024-11-12 19:27:37,178 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:37,179 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:37,449 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_04101_00004_nis_cal.fits
2024-11-12 19:27:37,449 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:37,450 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:37,516 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:37,525 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:37,538 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:37,539 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:37,540 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:37,541 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:37,542 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:37,543 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:37,691 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00625_asn.json',).
2024-11-12 19:27:37,699 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:37,766 - 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']
2024-11-12 19:27:37,769 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:37,770 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:37,771 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:37,771 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:37,772 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:37,772 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:37,773 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:37,773 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:37,774 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:37,775 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:37,775 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:37,776 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:37,776 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:37,777 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:37,777 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:37,778 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:37,778 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:37,779 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:37,779 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:37,779 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:37,780 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:37,781 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:37,787 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_06101_00001_nis
2024-11-12 19:27:37,788 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_06101_00001_nis_rate.fits ...
2024-11-12 19:27:37,985 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:38,160 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:38,218 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148278266 -27.806888771 53.188153077 -27.794433538 53.173980274 -27.759478487 53.134141485 -27.771912566
2024-11-12 19:27:38,219 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148278266 -27.806888771 53.188153077 -27.794433538 53.173980274 -27.759478487 53.134141485 -27.771912566
2024-11-12 19:27:38,220 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:38,271 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:38,422 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:38,504 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:38,504 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:38,505 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:38,505 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:38,667 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:38,814 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:38,838 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:38,838 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:38,888 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:38,889 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:38,889 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:38,890 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:38,890 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:38,917 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:38,918 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:38,919 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:38,964 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:39,111 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_06101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:39,112 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:39,113 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_06101_00001_nis
2024-11-12 19:27:39,115 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:39,115 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:39,380 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_06101_00001_nis_cal.fits
2024-11-12 19:27:39,381 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:39,381 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:39,447 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:39,456 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:39,468 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:39,469 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:39,471 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:39,472 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:39,473 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:39,474 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:39,623 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00033_asn.json',).
2024-11-12 19:27:39,631 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:39,696 - 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']
2024-11-12 19:27:39,700 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2024-11-12 19:27:39,700 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:39,701 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:39,701 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:39,702 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:39,702 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2024-11-12 19:27:39,703 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:39,703 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:39,703 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2024-11-12 19:27:39,704 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:39,704 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:39,705 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:39,705 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:39,705 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:39,706 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:39,706 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:39,706 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:39,708 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:39,708 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:39,708 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:39,709 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:39,710 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:39,716 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_06101_00001_nis
2024-11-12 19:27:39,717 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_06101_00001_nis_rate.fits ...
2024-11-12 19:27:39,913 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:40,089 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2024-11-12 19:27:40,148 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.149324196 -27.809286598 53.189199147 -27.796829977 53.175026775 -27.761875811 53.135187226 -27.774310339
2024-11-12 19:27:40,148 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.149324196 -27.809286598 53.189199147 -27.796829977 53.175026775 -27.761875811 53.135187226 -27.774310339
2024-11-12 19:27:40,149 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:40,203 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:40,358 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:40,442 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2024-11-12 19:27:40,443 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:40,444 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:40,444 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:40,599 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:40,747 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:40,770 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:40,771 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2024-11-12 19:27:40,815 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:40,815 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:40,816 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:40,816 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:40,817 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2024-11-12 19:27:40,844 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:40,845 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:40,846 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.259995
2024-11-12 19:27:40,892 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:41,040 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:41,041 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:41,043 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_06101_00001_nis
2024-11-12 19:27:41,044 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:41,044 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:41,310 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_06101_00001_nis_cal.fits
2024-11-12 19:27:41,311 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:41,311 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:41,378 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:41,387 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:41,399 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:41,400 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:41,402 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:41,403 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:41,404 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:41,405 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:41,563 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00296_asn.json',).
2024-11-12 19:27:41,571 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:41,638 - 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']
2024-11-12 19:27:41,641 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2024-11-12 19:27:41,642 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:41,642 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:41,643 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:41,643 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:41,644 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2024-11-12 19:27:41,645 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:41,645 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:41,645 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2024-11-12 19:27:41,646 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:41,646 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:41,647 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:41,648 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:41,648 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:41,648 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:41,649 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:41,649 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:41,650 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:41,650 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:41,651 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:41,651 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:41,652 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:41,658 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_08101_00001_nis
2024-11-12 19:27:41,658 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_08101_00001_nis_rate.fits ...
2024-11-12 19:27:41,850 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_08101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:42,026 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0, 0.0
2024-11-12 19:27:42,084 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.146838586 -27.807351923 53.186714491 -27.794896720 53.172542402 -27.759940941 53.132702235 -27.772374598
2024-11-12 19:27:42,085 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.146838586 -27.807351923 53.186714491 -27.794896720 53.172542402 -27.759940941 53.132702235 -27.772374598
2024-11-12 19:27:42,085 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:42,140 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:42,291 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_08101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:42,388 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0282.fits
2024-11-12 19:27:42,388 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:42,389 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:42,390 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:42,561 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:42,706 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_08101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:42,729 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:42,730 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0021.fits
2024-11-12 19:27:42,774 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:42,775 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:42,776 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:42,776 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:42,776 - stpipe.Image2Pipeline.photom - INFO - pupil: F150W
2024-11-12 19:27:42,803 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:42,803 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:42,805 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.256732
2024-11-12 19:27:42,851 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:43,001 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_08101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:43,002 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:43,003 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_08101_00001_nis
2024-11-12 19:27:43,005 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:43,005 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:43,271 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_08101_00001_nis_cal.fits
2024-11-12 19:27:43,272 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:43,272 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:43,338 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:43,348 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:43,360 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:43,361 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:43,363 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:43,363 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:43,364 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:43,366 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:43,520 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00105_asn.json',).
2024-11-12 19:27:43,529 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:43,595 - 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']
2024-11-12 19:27:43,598 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2024-11-12 19:27:43,599 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:43,599 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:43,599 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:43,600 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:43,600 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2024-11-12 19:27:43,601 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:43,601 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:43,602 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2024-11-12 19:27:43,602 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:43,603 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:43,603 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:43,603 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:43,604 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:43,604 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:43,605 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:43,605 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:43,605 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:43,606 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:43,606 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:43,606 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:43,607 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:43,615 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_04101_00003_nis
2024-11-12 19:27:43,615 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_04101_00003_nis_rate.fits ...
2024-11-12 19:27:43,812 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:43,989 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2024-11-12 19:27:44,049 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.145308924 -27.807755459 53.185183791 -27.795300035 53.171012959 -27.760345443 53.131173494 -27.772778776
2024-11-12 19:27:44,049 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.145308924 -27.807755459 53.185183791 -27.795300035 53.171012959 -27.760345443 53.131173494 -27.772778776
2024-11-12 19:27:44,050 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:44,100 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:44,244 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:44,329 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2024-11-12 19:27:44,330 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:44,331 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:44,331 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:44,485 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:44,630 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:44,654 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:44,654 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2024-11-12 19:27:44,697 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:44,697 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:44,698 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:44,698 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:44,699 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2024-11-12 19:27:44,725 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:44,725 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:44,727 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.259995
2024-11-12 19:27:44,772 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:44,917 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:44,918 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:44,920 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_04101_00003_nis
2024-11-12 19:27:44,920 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:44,921 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:45,188 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_04101_00003_nis_cal.fits
2024-11-12 19:27:45,189 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:45,189 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:45,256 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:45,265 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:45,277 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:45,278 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:45,280 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:45,281 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:45,282 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:45,284 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:45,429 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00697_asn.json',).
2024-11-12 19:27:45,438 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:45,504 - 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']
2024-11-12 19:27:45,507 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:45,508 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:45,508 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:45,509 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:45,509 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:45,510 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:45,510 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:45,511 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:45,512 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:45,512 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:45,512 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:45,513 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:45,513 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:45,514 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:45,514 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:45,515 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:45,516 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:45,516 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:45,517 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:45,517 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:45,517 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:45,519 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:45,525 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_04101_00003_nis
2024-11-12 19:27:45,525 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_04101_00003_nis_rate.fits ...
2024-11-12 19:27:45,720 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:45,895 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:45,958 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148290701 -27.806864986 53.188165529 -27.794409818 53.173992802 -27.759454744 53.134153995 -27.771888758
2024-11-12 19:27:45,958 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148290701 -27.806864986 53.188165529 -27.794409818 53.173992802 -27.759454744 53.134153995 -27.771888758
2024-11-12 19:27:45,959 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:46,013 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:46,166 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:46,250 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:46,251 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:46,252 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:46,252 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:46,414 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:46,576 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:46,599 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:46,600 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:46,644 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:46,644 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:46,645 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:46,645 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:46,645 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:46,672 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:46,673 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:46,674 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:46,720 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:46,873 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:46,874 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:46,875 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_04101_00003_nis
2024-11-12 19:27:46,876 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:46,876 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:47,150 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_04101_00003_nis_cal.fits
2024-11-12 19:27:47,150 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:47,151 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:47,217 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:47,226 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:47,238 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:47,239 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:47,241 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:47,242 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:47,243 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:47,244 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:47,402 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00699_asn.json',).
2024-11-12 19:27:47,410 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:47,475 - 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']
2024-11-12 19:27:47,479 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:47,480 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:47,480 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:47,481 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:47,481 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:47,481 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:47,482 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:47,483 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:47,483 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:47,484 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:47,484 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:47,484 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:47,485 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:47,485 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:47,485 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:47,486 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:47,486 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:47,487 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:47,487 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:47,487 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:47,488 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:47,489 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:47,495 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_04101_00001_nis
2024-11-12 19:27:47,496 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_04101_00001_nis_rate.fits ...
2024-11-12 19:27:47,692 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:47,867 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:47,926 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148310985 -27.806724388 53.188185764 -27.794269227 53.174013063 -27.759314151 53.134174305 -27.771748158
2024-11-12 19:27:47,927 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148310985 -27.806724388 53.188185764 -27.794269227 53.174013063 -27.759314151 53.134174305 -27.771748158
2024-11-12 19:27:47,927 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:47,983 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:48,130 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:48,211 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:48,211 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:48,212 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:48,212 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:48,368 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:48,516 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:48,540 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:48,540 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:48,584 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:48,584 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:48,585 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:48,585 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:48,585 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:48,612 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:48,612 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:48,613 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:48,659 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:48,806 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_04101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:48,807 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:48,808 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_04101_00001_nis
2024-11-12 19:27:48,809 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:48,809 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:49,075 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_04101_00001_nis_cal.fits
2024-11-12 19:27:49,076 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:49,076 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:49,142 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:49,151 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:49,163 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:49,164 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:49,166 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:49,167 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:49,168 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:49,169 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:49,324 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00402_asn.json',).
2024-11-12 19:27:49,332 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:49,400 - 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']
2024-11-12 19:27:49,403 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:49,404 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:49,404 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:49,405 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:49,405 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:49,405 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:49,407 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:49,407 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:49,408 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:49,408 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:49,409 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:49,409 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:49,410 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:49,410 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:49,410 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:49,411 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:49,411 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:49,412 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:49,413 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:49,413 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:49,413 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:49,414 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:49,421 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_04101_00002_nis
2024-11-12 19:27:49,421 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_04101_00002_nis_rate.fits ...
2024-11-12 19:27:49,629 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:49,805 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:49,864 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148448704 -27.806902361 53.188323531 -27.794447157 53.174150758 -27.759492096 53.134311953 -27.771926146
2024-11-12 19:27:49,865 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148448704 -27.806902361 53.188323531 -27.794447157 53.174150758 -27.759492096 53.134311953 -27.771926146
2024-11-12 19:27:49,866 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:49,916 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:50,072 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:50,155 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:50,155 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:50,156 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:50,156 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:50,316 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:50,486 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:50,510 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:50,510 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:50,553 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:50,554 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:50,554 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:50,555 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:50,555 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:50,582 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:50,582 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:50,583 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:50,628 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:50,777 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_04101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:50,778 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:50,779 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_04101_00002_nis
2024-11-12 19:27:50,780 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:50,780 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:51,048 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_04101_00002_nis_cal.fits
2024-11-12 19:27:51,049 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:51,049 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:51,115 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:51,124 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:51,136 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:51,137 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:51,138 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:51,139 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:51,140 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:51,141 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:51,291 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00475_asn.json',).
2024-11-12 19:27:51,300 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:51,366 - 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']
2024-11-12 19:27:51,370 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:51,370 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:51,371 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:51,371 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:51,371 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:51,372 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:51,372 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:51,372 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:51,373 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:51,374 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:51,374 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:51,375 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:51,375 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:51,375 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:51,376 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:51,376 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:51,377 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:51,377 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:51,377 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:51,378 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:51,378 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:51,379 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:51,386 - stpipe.Image2Pipeline - INFO - Processing product jw02079004001_12101_00003_nis
2024-11-12 19:27:51,387 - stpipe.Image2Pipeline - INFO - Working on input jw02079004001_12101_00003_nis_rate.fits ...
2024-11-12 19:27:51,581 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:51,756 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:51,815 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148258348 -27.807029069 53.188133252 -27.794573941 53.173960548 -27.759618853 53.134121666 -27.772052827
2024-11-12 19:27:51,815 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148258348 -27.807029069 53.188133252 -27.794573941 53.173960548 -27.759618853 53.134121666 -27.772052827
2024-11-12 19:27:51,816 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:51,867 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:52,013 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:52,096 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:52,096 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:52,097 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:52,097 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:52,251 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:52,406 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:52,430 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:52,430 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:52,473 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:52,474 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:52,475 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:52,475 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:52,476 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:52,503 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:52,503 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:52,505 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:52,551 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:52,709 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004001_12101_00003_nis_image2pipeline.fits>,).
2024-11-12 19:27:52,710 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:52,711 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004001_12101_00003_nis
2024-11-12 19:27:52,712 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:52,712 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:52,986 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004001_12101_00003_nis_cal.fits
2024-11-12 19:27:52,987 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:52,987 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:53,053 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:53,062 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:53,074 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:53,075 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:53,077 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:53,078 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:53,078 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:53,080 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:53,229 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00444_asn.json',).
2024-11-12 19:27:53,238 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:53,304 - 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']
2024-11-12 19:27:53,307 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits'.
2024-11-12 19:27:53,308 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:53,309 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:53,309 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:53,309 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:53,310 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0036.asdf'.
2024-11-12 19:27:53,311 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:53,311 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:53,312 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits'.
2024-11-12 19:27:53,312 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:53,313 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:53,313 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:53,313 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:53,314 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:53,314 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:53,315 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:53,315 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:53,315 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:53,316 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:53,316 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:53,316 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:53,317 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:53,325 - stpipe.Image2Pipeline - INFO - Processing product jw02079004002_02101_00001_nis
2024-11-12 19:27:53,325 - stpipe.Image2Pipeline - INFO - Working on input jw02079004002_02101_00001_nis_rate.fits ...
2024-11-12 19:27:53,522 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004002_02101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:53,696 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 0.0397, -0.0651
2024-11-12 19:27:53,754 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.148026974 -27.806980309 53.187901809 -27.794525053 53.173728968 -27.759570011 53.133890155 -27.772004113
2024-11-12 19:27:53,755 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.148026974 -27.806980309 53.187901809 -27.794525053 53.173728968 -27.759570011 53.133890155 -27.772004113
2024-11-12 19:27:53,756 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:53,806 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:53,949 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004002_02101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:54,031 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0261.fits
2024-11-12 19:27:54,031 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:54,032 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:54,032 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:54,188 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:54,335 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004002_02101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:54,358 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:54,359 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0012.fits
2024-11-12 19:27:54,402 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:54,403 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:54,403 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:54,403 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:54,404 - stpipe.Image2Pipeline.photom - INFO - pupil: F115W
2024-11-12 19:27:54,430 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:54,431 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:54,432 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.230834
2024-11-12 19:27:54,477 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:54,626 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004002_02101_00001_nis_image2pipeline.fits>,).
2024-11-12 19:27:54,626 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:54,628 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004002_02101_00001_nis
2024-11-12 19:27:54,628 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:54,629 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:54,908 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004002_02101_00001_nis_cal.fits
2024-11-12 19:27:54,908 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:54,909 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:54,976 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:54,987 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:54,999 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:55,000 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:55,001 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:55,002 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:55,003 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:55,004 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:55,156 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00032_asn.json',).
2024-11-12 19:27:55,164 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:55,230 - 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']
2024-11-12 19:27:55,234 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2024-11-12 19:27:55,235 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:55,235 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:55,235 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:55,236 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:55,236 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2024-11-12 19:27:55,237 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:55,238 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:55,238 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2024-11-12 19:27:55,239 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:55,239 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:55,239 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:55,240 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:55,240 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:55,240 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:55,241 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:55,241 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:55,242 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:55,242 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:55,242 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:55,243 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:55,244 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:55,251 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_06101_00002_nis
2024-11-12 19:27:55,252 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_06101_00002_nis_rate.fits ...
2024-11-12 19:27:55,454 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:55,630 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2024-11-12 19:27:55,688 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.149462228 -27.809464399 53.189337240 -27.797007769 53.175164834 -27.762053605 53.135325224 -27.774488143
2024-11-12 19:27:55,689 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.149462228 -27.809464399 53.189337240 -27.797007769 53.175164834 -27.762053605 53.135325224 -27.774488143
2024-11-12 19:27:55,690 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:55,740 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:55,884 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:55,968 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2024-11-12 19:27:55,969 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:55,970 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:55,970 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:56,131 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:56,278 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:56,301 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:56,302 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2024-11-12 19:27:56,346 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:56,346 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:56,347 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:56,347 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:56,348 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2024-11-12 19:27:56,374 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:56,375 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:56,376 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.259995
2024-11-12 19:27:56,421 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:56,569 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_06101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:56,570 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:56,572 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_06101_00002_nis
2024-11-12 19:27:56,572 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:56,573 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:56,843 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_06101_00002_nis_cal.fits
2024-11-12 19:27:56,844 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:56,844 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:27:56,913 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:56,922 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2024-11-12 19:27:56,935 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2024-11-12 19:27:56,936 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2024-11-12 19:27:56,937 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2024-11-12 19:27:56,938 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2024-11-12 19:27:56,939 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2024-11-12 19:27:56,940 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:57,087 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('jw02079-o004_20231119t124442_image2_00106_asn.json',).
2024-11-12 19:27:57,095 - 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
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
allowed_memory: None
in_memory: True
2024-11-12 19:27:57,161 - 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']
2024-11-12 19:27:57,165 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits'.
2024-11-12 19:27:57,165 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2024-11-12 19:27:57,166 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2024-11-12 19:27:57,166 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2024-11-12 19:27:57,167 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2024-11-12 19:27:57,167 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_distortion_0037.asdf'.
2024-11-12 19:27:57,168 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2024-11-12 19:27:57,168 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2024-11-12 19:27:57,169 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits'.
2024-11-12 19:27:57,170 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2024-11-12 19:27:57,170 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2024-11-12 19:27:57,170 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2024-11-12 19:27:57,171 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2024-11-12 19:27:57,171 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2024-11-12 19:27:57,171 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2024-11-12 19:27:57,172 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2024-11-12 19:27:57,172 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits'.
2024-11-12 19:27:57,173 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2024-11-12 19:27:57,173 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2024-11-12 19:27:57,174 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2024-11-12 19:27:57,174 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2024-11-12 19:27:57,175 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2024-11-12 19:27:57,181 - stpipe.Image2Pipeline - INFO - Processing product jw02079004003_04101_00002_nis
2024-11-12 19:27:57,182 - stpipe.Image2Pipeline - INFO - Working on input jw02079004003_04101_00002_nis_rate.fits ...
2024-11-12 19:27:57,390 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:57,564 - stpipe.Image2Pipeline.assign_wcs - INFO - Offsets from filteroffset file are 2.119, -1.0476
2024-11-12 19:27:57,623 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 53.145466802 -27.807792870 53.185341655 -27.795337379 53.171170742 -27.760382811 53.131331291 -27.772816212
2024-11-12 19:27:57,624 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 53.145466802 -27.807792870 53.185341655 -27.795337379 53.171170742 -27.760382811 53.131331291 -27.772816212
2024-11-12 19:27:57,624 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2024-11-12 19:27:57,675 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2024-11-12 19:27:57,822 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:57,904 - stpipe.Image2Pipeline.flat_field - INFO - Using FLAT reference file: crds_cache/references/jwst/niriss/jwst_niriss_flat_0268.fits
2024-11-12 19:27:57,905 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type FFLAT
2024-11-12 19:27:57,905 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type SFLAT
2024-11-12 19:27:57,906 - stpipe.Image2Pipeline.flat_field - INFO - No reference found for type DFLAT
2024-11-12 19:27:58,070 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2024-11-12 19:27:58,217 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:58,240 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: crds_cache/references/jwst/niriss/jwst_niriss_photom_0043.fits
2024-11-12 19:27:58,241 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: crds_cache/references/jwst/niriss/jwst_niriss_area_0017.fits
2024-11-12 19:27:58,285 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRISS
2024-11-12 19:27:58,286 - stpipe.Image2Pipeline.photom - INFO - detector: NIS
2024-11-12 19:27:58,286 - stpipe.Image2Pipeline.photom - INFO - exp_type: NIS_IMAGE
2024-11-12 19:27:58,287 - stpipe.Image2Pipeline.photom - INFO - filter: CLEAR
2024-11-12 19:27:58,287 - stpipe.Image2Pipeline.photom - INFO - pupil: F200W
2024-11-12 19:27:58,314 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2024-11-12 19:27:58,314 - stpipe.Image2Pipeline.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2024-11-12 19:27:58,316 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.259995
2024-11-12 19:27:58,361 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2024-11-12 19:27:58,520 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw02079004003_04101_00002_nis_image2pipeline.fits>,).
2024-11-12 19:27:58,521 - stpipe.Image2Pipeline.resample - INFO - Step skipped.
2024-11-12 19:27:58,522 - stpipe.Image2Pipeline - INFO - Finished processing product jw02079004003_04101_00002_nis
2024-11-12 19:27:58,523 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2024-11-12 19:27:58,523 - stpipe.Image2Pipeline - INFO - Results used CRDS context: jwst_1298.pmap
2024-11-12 19:27:58,795 - stpipe.Image2Pipeline - INFO - Saved model in jw02079004003_04101_00002_nis_cal.fits
2024-11-12 19:27:58,795 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
2024-11-12 19:27:58,796 - stpipe - INFO - Results used jwst version: 1.16.0
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)
2024-11-12 19:27:58,970 - 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)
2024-11-12 19:27:59,211 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0075.asdf
2024-11-12 19:27:59,223 - 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)
2024-11-12 19:27:59,454 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0002.asdf
2024-11-12 19:27:59,469 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:27:59,478 - 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)
2024-11-12 19:27:59,706 - stpipe - INFO - PARS-SOURCECATALOGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0002.asdf
2024-11-12 19:27:59,722 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created.
2024-11-12 19:27:59,723 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created.
2024-11-12 19:27:59,725 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created.
2024-11-12 19:27:59,727 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created.
2024-11-12 19:27:59,728 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2024-11-12 19:27:59,729 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:27:59,730 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created.
2024-11-12 19:27:59,889 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('jw02079-o004_20231119t124442_image3_00002_asn.json',).
2024-11-12 19:27:59,903 - 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.2
sharphi: 3.0
roundlo: -1.0
roundhi: 1.0
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: INDEF
nlow: 0
nhigh: 0
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
allowed_memory: None
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
allowed_memory: None
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
2024-11-12 19:28:00,064 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004003_02101_00001_nis_cal.fits' reftypes = ['abvegaoffset', 'apcorr']
2024-11-12 19:28:00,067 - 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)
2024-11-12 19:28:00,308 - 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)
2024-11-12 19:28:00,600 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2024-11-12 19:28:00,600 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2024-11-12 19:28:00,602 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ...
2024-11-12 19:28:00,993 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe978cd96d0>,).
2024-11-12 19:28:02,376 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_02101_00001_nis_cal.fits.
2024-11-12 19:28:03,953 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_04101_00001_nis_cal.fits.
2024-11-12 19:28:05,500 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_04101_00002_nis_cal.fits.
2024-11-12 19:28:07,052 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_04101_00003_nis_cal.fits.
2024-11-12 19:28:08,612 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_04101_00004_nis_cal.fits.
2024-11-12 19:28:10,169 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_06101_00001_nis_cal.fits.
2024-11-12 19:28:11,720 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_06101_00002_nis_cal.fits.
2024-11-12 19:28:13,283 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_06101_00003_nis_cal.fits.
2024-11-12 19:28:13,307 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:28:13,308 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 8.
2024-11-12 19:28:13,308 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:28:13,309 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2024-11-12 19:28:13.308571
2024-11-12 19:28:13,309 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.8.9
2024-11-12 19:28:13,309 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:28:18,716 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw02079004003_06101_3' as reference image
2024-11-12 19:28:18,722 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_06101_1' to the reference catalog.
2024-11-12 19:28:18,769 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_06101_00001_nis_cal' catalog with sources from the reference 'jw02079004003_06101_00003_nis_cal' catalog.
2024-11-12 19:28:18,769 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:28:18,771 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04587, 0.04587 (arcsec) with significance of 26.22 and 42 matches.
2024-11-12 19:28:18,772 - stpipe.Image3Pipeline.tweakreg - INFO - Found 56 matches for 'GROUP ID: jw02079004003_06101_1'...
2024-11-12 19:28:18,772 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:28:18,774 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_06101_1:
2024-11-12 19:28:18,775 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0119013 YSH: -0.124626 ROT: 0.0123402 SCALE: 1
2024-11-12 19:28:18,775 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:28:18,776 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.242016 FIT MAE: 0.206514
2024-11-12 19:28:18,776 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 56 objects.
2024-11-12 19:28:18,993 - stpipe.Image3Pipeline.tweakreg - INFO - Added 44 unmatched sources from 'GROUP ID: jw02079004003_06101_1' to the reference catalog.
2024-11-12 19:28:19,869 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_4' to the reference catalog.
2024-11-12 19:28:19,918 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00004_nis_cal' catalog with sources from the reference 'jw02079004003_06101_00001_nis_cal' catalog.
2024-11-12 19:28:19,918 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:28:19,920 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04778, 0.0842 (arcsec) with significance of 21.23 and 54 matches.
2024-11-12 19:28:19,921 - stpipe.Image3Pipeline.tweakreg - INFO - Found 51 matches for 'GROUP ID: jw02079004003_04101_4'...
2024-11-12 19:28:19,922 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:28:19,925 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_04101_4:
2024-11-12 19:28:19,925 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00187614 YSH: -0.0327208 ROT: 0.0196283 SCALE: 1
2024-11-12 19:28:19,925 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:28:19,926 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0723686 FIT MAE: 0.0574686
2024-11-12 19:28:19,926 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 49 objects.
2024-11-12 19:28:19,971 - stpipe.Image3Pipeline.tweakreg - INFO - Added 49 unmatched sources from 'GROUP ID: jw02079004003_04101_4' to the reference catalog.
2024-11-12 19:28:20,672 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_06101_2' to the reference catalog.
2024-11-12 19:28:20,724 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_06101_00002_nis_cal' catalog with sources from the reference 'jw02079004003_04101_00004_nis_cal' catalog.
2024-11-12 19:28:20,724 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:28:20,726 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04899, 0.07899 (arcsec) with significance of 25.3 and 59 matches.
2024-11-12 19:28:20,727 - stpipe.Image3Pipeline.tweakreg - INFO - Found 54 matches for 'GROUP ID: jw02079004003_06101_2'...
2024-11-12 19:28:20,728 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:28:20,730 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_06101_2:
2024-11-12 19:28:20,731 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0497635 YSH: -0.0184627 ROT: -0.00224609 SCALE: 1
2024-11-12 19:28:20,731 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:28:20,732 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.16472 FIT MAE: 0.110628
2024-11-12 19:28:20,732 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 54 objects.
2024-11-12 19:28:20,783 - stpipe.Image3Pipeline.tweakreg - INFO - Added 46 unmatched sources from 'GROUP ID: jw02079004003_06101_2' to the reference catalog.
2024-11-12 19:28:21,379 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_3' to the reference catalog.
2024-11-12 19:28:21,424 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00003_nis_cal' catalog with sources from the reference 'jw02079004003_06101_00002_nis_cal' catalog.
2024-11-12 19:28:21,425 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:28:21,426 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.0476, 0.08526 (arcsec) with significance of 19.24 and 47 matches.
2024-11-12 19:28:21,427 - stpipe.Image3Pipeline.tweakreg - INFO - Found 44 matches for 'GROUP ID: jw02079004003_04101_3'...
2024-11-12 19:28:21,428 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:28:21,431 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_04101_3:
2024-11-12 19:28:21,431 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.000182055 YSH: -0.0323791 ROT: 0.0153195 SCALE: 1
2024-11-12 19:28:21,431 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:28:21,432 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0756749 FIT MAE: 0.0617787
2024-11-12 19:28:21,432 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 43 objects.
2024-11-12 19:28:21,477 - stpipe.Image3Pipeline.tweakreg - INFO - Added 56 unmatched sources from 'GROUP ID: jw02079004003_04101_3' to the reference catalog.
2024-11-12 19:28:22,102 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_02101_1' to the reference catalog.
2024-11-12 19:28:22,154 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_02101_00001_nis_cal' catalog with sources from the reference 'jw02079004003_04101_00003_nis_cal' catalog.
2024-11-12 19:28:22,155 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:28:22,157 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04684, 0.07586 (arcsec) with significance of 36.72 and 61 matches.
2024-11-12 19:28:22,158 - stpipe.Image3Pipeline.tweakreg - INFO - Found 57 matches for 'GROUP ID: jw02079004003_02101_1'...
2024-11-12 19:28:22,159 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:28:22,161 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_02101_1:
2024-11-12 19:28:22,161 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.102783 YSH: 0.0236645 ROT: -0.0642988 SCALE: 1
2024-11-12 19:28:22,162 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:28:22,162 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.341016 FIT MAE: 0.247353
2024-11-12 19:28:22,162 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 57 objects.
2024-11-12 19:28:22,211 - stpipe.Image3Pipeline.tweakreg - INFO - Added 43 unmatched sources from 'GROUP ID: jw02079004003_02101_1' to the reference catalog.
2024-11-12 19:28:22,667 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_2' to the reference catalog.
2024-11-12 19:28:22,719 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00002_nis_cal' catalog with sources from the reference 'jw02079004003_02101_00001_nis_cal' catalog.
2024-11-12 19:28:22,720 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:28:22,721 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.008881, 0.0397 (arcsec) with significance of 36.08 and 78 matches.
2024-11-12 19:28:22,723 - stpipe.Image3Pipeline.tweakreg - INFO - Found 63 matches for 'GROUP ID: jw02079004003_04101_2'...
2024-11-12 19:28:22,723 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:28:22,725 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_04101_2:
2024-11-12 19:28:22,726 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0835823 YSH: -0.0158866 ROT: 0.0474186 SCALE: 1
2024-11-12 19:28:22,726 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:28:22,727 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.192043 FIT MAE: 0.14412
2024-11-12 19:28:22,727 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 63 objects.
2024-11-12 19:28:22,771 - stpipe.Image3Pipeline.tweakreg - INFO - Added 37 unmatched sources from 'GROUP ID: jw02079004003_04101_2' to the reference catalog.
2024-11-12 19:28:22,944 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_1' to the reference catalog.
2024-11-12 19:28:22,995 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00001_nis_cal' catalog with sources from the reference 'jw02079004003_04101_00002_nis_cal' catalog.
2024-11-12 19:28:22,996 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:28:22,998 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.06603, 0.06267 (arcsec) with significance of 38.52 and 88 matches.
2024-11-12 19:28:22,999 - stpipe.Image3Pipeline.tweakreg - INFO - Found 59 matches for 'GROUP ID: jw02079004003_04101_1'...
2024-11-12 19:28:23,000 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:28:23,002 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004003_04101_1:
2024-11-12 19:28:23,002 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.000201914 YSH: -0.108086 ROT: 0.0200998 SCALE: 1
2024-11-12 19:28:23,002 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:28:23,003 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.240898 FIT MAE: 0.172577
2024-11-12 19:28:23,003 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 59 objects.
2024-11-12 19:28:23,047 - stpipe.Image3Pipeline.tweakreg - INFO - Added 41 unmatched sources from 'GROUP ID: jw02079004003_04101_1' to the reference catalog.
2024-11-12 19:28:23,047 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:28:23,047 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2024-11-12 19:28:23.047513
2024-11-12 19:28:23,048 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:09.738942
2024-11-12 19:28:23,048 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:28:23,745 - 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!
2024-11-12 19:28:23,752 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done
2024-11-12 19:28:23,958 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe978cd96d0>,).
2024-11-12 19:28:24,116 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:28:24,116 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2024-11-12 19:28:24.116319
2024-11-12 19:28:24,117 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:28:24,117 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'match'
2024-11-12 19:28:24,118 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN
2024-11-12 19:28:24,118 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF
2024-11-12 19:28:24,119 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:28:24,119 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions.
2024-11-12 19:28:52,739 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_02101_00001_nis_cal.fits. Sky background: 0.00406967
2024-11-12 19:28:52,740 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00001_nis_cal.fits. Sky background: 0.00697517
2024-11-12 19:28:52,741 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00002_nis_cal.fits. Sky background: 0.00251737
2024-11-12 19:28:52,741 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00003_nis_cal.fits. Sky background: 0.0108182
2024-11-12 19:28:52,741 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00004_nis_cal.fits. Sky background: 0.0090661
2024-11-12 19:28:52,742 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_06101_00001_nis_cal.fits. Sky background: 0.00897341
2024-11-12 19:28:52,742 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_06101_00002_nis_cal.fits. Sky background: 0
2024-11-12 19:28:52,743 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_06101_00003_nis_cal.fits. Sky background: 0.00684062
2024-11-12 19:28:52,743 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:28:52,744 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2024-11-12 19:28:52.743860
2024-11-12 19:28:52,744 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:28.627541
2024-11-12 19:28:52,745 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:28:52,765 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done
2024-11-12 19:28:52,949 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe978cd96d0>,).
2024-11-12 19:28:52,949 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection mode: imaging
2024-11-12 19:28:52,950 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection asn_id: o004
2024-11-12 19:28:52,951 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter kernel: square
2024-11-12 19:28:52,951 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter pixfrac: 1.0
2024-11-12 19:28:52,951 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter fillval: INDEF
2024-11-12 19:28:52,952 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter weight_type: ivm
2024-11-12 19:28:52,952 - stpipe.Image3Pipeline.outlier_detection - INFO - Output pixel scale ratio: 1.0
2024-11-12 19:28:53,027 - stpipe.Image3Pipeline.outlier_detection - INFO - Computed output pixel scale: 0.06556229340666292 arcsec.
2024-11-12 19:28:53,077 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:28:55,470 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:28:56,451 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_02101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:28:56,458 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:28:58,458 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:28:59,435 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_04101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:28:59,442 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:29:01,467 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:29:02,440 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_04101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:29:02,447 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:29:04,483 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:29:05,454 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_04101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:29:05,461 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:29:07,480 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:29:08,451 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_04101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:29:08,458 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:29:10,510 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:29:11,489 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_06101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:29:11,496 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:29:13,537 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:29:14,509 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_06101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:29:14,517 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:29:16,540 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:29:17,510 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_06101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:29:17,516 - stpipe.Image3Pipeline.outlier_detection - WARNING - /opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/site-packages/jwst/associations/association.py:215: UserWarning: Input association file contains path information; note that this can complicate usage and/or sharing of such files.
warnings.warn(err_str, UserWarning)
2024-11-12 19:29:25,150 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004003_02101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:29:25,164 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004003_04101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:29:25,177 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004003_04101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:29:25,191 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004003_04101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:29:25,204 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004003_04101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:29:25,217 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004003_06101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:29:25,231 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004003_06101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:29:25,244 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004003_06101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:29:27,241 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:29:27,492 - stpipe.Image3Pipeline.outlier_detection - INFO - 3766 pixels marked as outliers
2024-11-12 19:29:29,522 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:29:29,772 - stpipe.Image3Pipeline.outlier_detection - INFO - 4524 pixels marked as outliers
2024-11-12 19:29:31,788 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:29:32,036 - stpipe.Image3Pipeline.outlier_detection - INFO - 4133 pixels marked as outliers
2024-11-12 19:29:34,055 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:29:34,304 - stpipe.Image3Pipeline.outlier_detection - INFO - 3554 pixels marked as outliers
2024-11-12 19:29:36,308 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:29:36,559 - stpipe.Image3Pipeline.outlier_detection - INFO - 3756 pixels marked as outliers
2024-11-12 19:29:38,568 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:29:38,819 - stpipe.Image3Pipeline.outlier_detection - INFO - 4099 pixels marked as outliers
2024-11-12 19:29:40,842 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:29:41,096 - stpipe.Image3Pipeline.outlier_detection - INFO - 4428 pixels marked as outliers
2024-11-12 19:29:43,099 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:29:43,350 - stpipe.Image3Pipeline.outlier_detection - INFO - 3905 pixels marked as outliers
2024-11-12 19:29:43,662 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_02101_00001_nis_o004_crf.fits
2024-11-12 19:29:43,929 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_04101_00001_nis_o004_crf.fits
2024-11-12 19:29:44,194 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_04101_00002_nis_o004_crf.fits
2024-11-12 19:29:44,463 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_04101_00003_nis_o004_crf.fits
2024-11-12 19:29:44,732 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_04101_00004_nis_o004_crf.fits
2024-11-12 19:29:44,998 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_06101_00001_nis_o004_crf.fits
2024-11-12 19:29:45,259 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_06101_00002_nis_o004_crf.fits
2024-11-12 19:29:45,521 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004003_06101_00003_nis_o004_crf.fits
2024-11-12 19:29:45,521 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done
2024-11-12 19:29:45,690 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe978cd96d0>,).
2024-11-12 19:29:45,935 - stpipe.Image3Pipeline.resample - INFO - Driz parameter kernel: square
2024-11-12 19:29:45,936 - stpipe.Image3Pipeline.resample - INFO - Driz parameter pixfrac: 1.0
2024-11-12 19:29:45,936 - stpipe.Image3Pipeline.resample - INFO - Driz parameter fillval: NAN
2024-11-12 19:29:45,937 - stpipe.Image3Pipeline.resample - INFO - Driz parameter weight_type: ivm
2024-11-12 19:29:45,937 - stpipe.Image3Pipeline.resample - INFO - Output pixel scale ratio: 1.0
2024-11-12 19:29:46,018 - stpipe.Image3Pipeline.resample - INFO - Computed output pixel scale: 0.06556229340666292 arcsec.
2024-11-12 19:29:46,077 - stpipe.Image3Pipeline.resample - INFO - Resampling science data
2024-11-12 19:29:48,308 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:29:51,175 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:29:54,023 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:29:56,859 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:29:59,696 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:02,585 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:05,438 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:08,270 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:09,549 - stpipe.Image3Pipeline.resample - INFO - Resampling variance components
2024-11-12 19:30:11,947 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:14,857 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:17,761 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:20,655 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:23,539 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:26,405 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:29,248 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:32,129 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:34,987 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:37,856 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:40,733 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:43,655 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:46,550 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:49,440 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:52,339 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:55,218 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:30:58,170 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:31:01,049 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:31:03,940 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:31:06,842 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:31:09,759 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:31:12,629 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:31:15,543 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:31:18,421 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:31:19,358 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.145923829 -27.810578145 53.189335285 -27.797024250 53.174243996 -27.759210077 53.130845755 -27.772759259
2024-11-12 19:31:19,923 - stpipe.Image3Pipeline.resample - INFO - Saved model in default_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_i2d.fits
2024-11-12 19:31:19,924 - stpipe.Image3Pipeline.resample - INFO - Step resample done
2024-11-12 19:31:20,122 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2236, 2202) from jw02079-o004_t001_niriss_clear-f200w_i2d.fits>,).
2024-11-12 19:31:20,136 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file: crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2024-11-12 19:31:20,144 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file: crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2024-11-12 19:31:20,145 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRISS
2024-11-12 19:31:20,145 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NIS
2024-11-12 19:31:20,146 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: CLEAR
2024-11-12 19:31:20,146 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: F200W
2024-11-12 19:31:20,146 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL
2024-11-12 19:31:20,190 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 1.68884
2024-11-12 19:31:23,558 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 1513 sources
2024-11-12 19:31:24,496 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: default_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_cat.ecsv
2024-11-12 19:31:24,641 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in default_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_segm.fits
2024-11-12 19:31:24,642 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw02079-o004_t001_niriss_clear-f200w_segm.fits
2024-11-12 19:31:24,644 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done
2024-11-12 19:31:24,652 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done
2024-11-12 19:31:24,653 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:31:24,793 - 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)
2024-11-12 19:31:25,045 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0079.asdf
2024-11-12 19:31:25,058 - 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)
2024-11-12 19:31:25,287 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0010.asdf
2024-11-12 19:31:25,303 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:31:25,312 - 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)
2024-11-12 19:31:25,551 - stpipe - INFO - PARS-SOURCECATALOGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0011.asdf
2024-11-12 19:31:25,568 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created.
2024-11-12 19:31:25,569 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created.
2024-11-12 19:31:25,571 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created.
2024-11-12 19:31:25,572 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created.
2024-11-12 19:31:25,574 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2024-11-12 19:31:25,576 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:31:25,577 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created.
2024-11-12 19:31:25,760 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('jw02079-o004_20231119t124442_image3_00005_asn.json',).
2024-11-12 19:31:25,774 - 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.2
sharphi: 3.0
roundlo: -1.0
roundhi: 1.0
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: INDEF
nlow: 0
nhigh: 0
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
allowed_memory: None
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
allowed_memory: None
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
2024-11-12 19:31:25,932 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_08101_00001_nis_cal.fits' reftypes = ['abvegaoffset', 'apcorr']
2024-11-12 19:31:25,935 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2024-11-12 19:31:25,936 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2024-11-12 19:31:25,937 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ...
2024-11-12 19:31:26,359 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe9748a9710>,).
2024-11-12 19:31:27,728 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_08101_00001_nis_cal.fits.
2024-11-12 19:31:29,259 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_10101_00001_nis_cal.fits.
2024-11-12 19:31:30,781 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_10101_00002_nis_cal.fits.
2024-11-12 19:31:32,320 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_10101_00003_nis_cal.fits.
2024-11-12 19:31:33,845 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_10101_00004_nis_cal.fits.
2024-11-12 19:31:35,372 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_12101_00001_nis_cal.fits.
2024-11-12 19:31:36,904 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_12101_00002_nis_cal.fits.
2024-11-12 19:31:38,440 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_12101_00003_nis_cal.fits.
2024-11-12 19:31:38,464 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:31:38,465 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 8.
2024-11-12 19:31:38,466 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:31:38,466 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2024-11-12 19:31:38.465993
2024-11-12 19:31:38,466 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.8.9
2024-11-12 19:31:38,467 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:31:43,668 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw02079004002_12101_1' as reference image
2024-11-12 19:31:43,673 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_12101_3' to the reference catalog.
2024-11-12 19:31:43,720 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_12101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_12101_00001_nis_cal' catalog.
2024-11-12 19:31:43,721 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:31:43,723 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04903, 0.04903 (arcsec) with significance of 21.87 and 38 matches.
2024-11-12 19:31:43,724 - stpipe.Image3Pipeline.tweakreg - INFO - Found 53 matches for 'GROUP ID: jw02079004002_12101_3'...
2024-11-12 19:31:43,725 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:31:43,727 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_12101_3:
2024-11-12 19:31:43,727 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.021482 YSH: 0.17101 ROT: -0.0115509 SCALE: 1
2024-11-12 19:31:43,728 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:31:43,728 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.238601 FIT MAE: 0.224365
2024-11-12 19:31:43,729 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 53 objects.
2024-11-12 19:31:43,773 - stpipe.Image3Pipeline.tweakreg - INFO - Added 47 unmatched sources from 'GROUP ID: jw02079004002_12101_3' to the reference catalog.
2024-11-12 19:31:44,987 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_12101_2' to the reference catalog.
2024-11-12 19:31:45,254 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_12101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_12101_00003_nis_cal' catalog.
2024-11-12 19:31:45,255 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:31:45,256 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04575, 0.03755 (arcsec) with significance of 20.69 and 40 matches.
2024-11-12 19:31:45,258 - stpipe.Image3Pipeline.tweakreg - INFO - Found 68 matches for 'GROUP ID: jw02079004002_12101_2'...
2024-11-12 19:31:45,258 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:31:45,260 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_12101_2:
2024-11-12 19:31:45,260 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.150889 YSH: 0.229008 ROT: -0.0201357 SCALE: 1
2024-11-12 19:31:45,261 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:31:45,261 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.366904 FIT MAE: 0.339899
2024-11-12 19:31:45,262 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 68 objects.
2024-11-12 19:31:45,307 - stpipe.Image3Pipeline.tweakreg - INFO - Added 32 unmatched sources from 'GROUP ID: jw02079004002_12101_2' to the reference catalog.
2024-11-12 19:31:46,100 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_3' to the reference catalog.
2024-11-12 19:31:46,154 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_12101_00002_nis_cal' catalog.
2024-11-12 19:31:46,155 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:31:46,156 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04903, 0.04057 (arcsec) with significance of 22.34 and 31 matches.
2024-11-12 19:31:46,158 - stpipe.Image3Pipeline.tweakreg - INFO - Found 43 matches for 'GROUP ID: jw02079004002_10101_3'...
2024-11-12 19:31:46,158 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:31:46,161 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_10101_3:
2024-11-12 19:31:46,161 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0103359 YSH: 0.0407261 ROT: -0.0242175 SCALE: 1
2024-11-12 19:31:46,162 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:31:46,162 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.103883 FIT MAE: 0.0836809
2024-11-12 19:31:46,163 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 41 objects.
2024-11-12 19:31:46,210 - stpipe.Image3Pipeline.tweakreg - INFO - Added 57 unmatched sources from 'GROUP ID: jw02079004002_10101_3' to the reference catalog.
2024-11-12 19:31:47,040 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_1' to the reference catalog.
2024-11-12 19:31:47,093 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00003_nis_cal' catalog.
2024-11-12 19:31:47,094 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:31:47,096 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04747, 0.03185 (arcsec) with significance of 22.78 and 42 matches.
2024-11-12 19:31:47,097 - stpipe.Image3Pipeline.tweakreg - INFO - Found 66 matches for 'GROUP ID: jw02079004002_10101_1'...
2024-11-12 19:31:47,098 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:31:47,100 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_10101_1:
2024-11-12 19:31:47,100 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0185009 YSH: -0.0799427 ROT: -0.00981045 SCALE: 1
2024-11-12 19:31:47,100 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:31:47,101 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.265498 FIT MAE: 0.214234
2024-11-12 19:31:47,101 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 66 objects.
2024-11-12 19:31:47,147 - stpipe.Image3Pipeline.tweakreg - INFO - Added 34 unmatched sources from 'GROUP ID: jw02079004002_10101_1' to the reference catalog.
2024-11-12 19:31:47,770 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_08101_1' to the reference catalog.
2024-11-12 19:31:47,823 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_08101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00001_nis_cal' catalog.
2024-11-12 19:31:47,824 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:31:47,826 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.05321, 0.04345 (arcsec) with significance of 24.56 and 47 matches.
2024-11-12 19:31:47,827 - stpipe.Image3Pipeline.tweakreg - INFO - Found 58 matches for 'GROUP ID: jw02079004002_08101_1'...
2024-11-12 19:31:47,828 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:31:47,830 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_08101_1:
2024-11-12 19:31:47,830 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.093982 YSH: 0.0817247 ROT: 0.0945485 SCALE: 1
2024-11-12 19:31:47,831 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:31:47,831 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.30852 FIT MAE: 0.233519
2024-11-12 19:31:47,831 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 58 objects.
2024-11-12 19:31:47,877 - stpipe.Image3Pipeline.tweakreg - INFO - Added 42 unmatched sources from 'GROUP ID: jw02079004002_08101_1' to the reference catalog.
2024-11-12 19:31:48,295 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_4' to the reference catalog.
2024-11-12 19:31:48,343 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00004_nis_cal' catalog with sources from the reference 'jw02079004002_08101_00001_nis_cal' catalog.
2024-11-12 19:31:48,344 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:31:48,346 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.03921, 0.02249 (arcsec) with significance of 16.05 and 39 matches.
2024-11-12 19:31:48,347 - stpipe.Image3Pipeline.tweakreg - INFO - Found 42 matches for 'GROUP ID: jw02079004002_10101_4'...
2024-11-12 19:31:48,348 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:31:48,350 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_10101_4:
2024-11-12 19:31:48,350 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.000316778 YSH: 0.0503223 ROT: -0.0216842 SCALE: 1
2024-11-12 19:31:48,351 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:31:48,351 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.116337 FIT MAE: 0.0938016
2024-11-12 19:31:48,351 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 41 objects.
2024-11-12 19:31:48,397 - stpipe.Image3Pipeline.tweakreg - INFO - Added 58 unmatched sources from 'GROUP ID: jw02079004002_10101_4' to the reference catalog.
2024-11-12 19:31:48,580 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_2' to the reference catalog.
2024-11-12 19:31:48,629 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00004_nis_cal' catalog.
2024-11-12 19:31:48,630 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:31:48,631 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.02687, 0.01985 (arcsec) with significance of 23.89 and 56 matches.
2024-11-12 19:31:48,633 - stpipe.Image3Pipeline.tweakreg - INFO - Found 65 matches for 'GROUP ID: jw02079004002_10101_2'...
2024-11-12 19:31:48,634 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:31:48,635 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_10101_2:
2024-11-12 19:31:48,636 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.103901 YSH: 0.0786656 ROT: -0.0326664 SCALE: 1
2024-11-12 19:31:48,636 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:31:48,637 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.268875 FIT MAE: 0.218544
2024-11-12 19:31:48,637 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 65 objects.
2024-11-12 19:31:48,684 - stpipe.Image3Pipeline.tweakreg - INFO - Added 35 unmatched sources from 'GROUP ID: jw02079004002_10101_2' to the reference catalog.
2024-11-12 19:31:48,685 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:31:48,686 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2024-11-12 19:31:48.685304
2024-11-12 19:31:48,686 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:10.219311
2024-11-12 19:31:48,686 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:31:49,363 - 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!
2024-11-12 19:31:49,372 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done
2024-11-12 19:31:49,615 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe9748a9710>,).
2024-11-12 19:31:49,777 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:31:49,778 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2024-11-12 19:31:49.777707
2024-11-12 19:31:49,778 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:31:49,779 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'match'
2024-11-12 19:31:49,779 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN
2024-11-12 19:31:49,780 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF
2024-11-12 19:31:49,780 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:31:49,780 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions.
2024-11-12 19:32:19,354 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_08101_00001_nis_cal.fits. Sky background: 0.00700732
2024-11-12 19:32:19,355 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00001_nis_cal.fits. Sky background: 0
2024-11-12 19:32:19,355 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00002_nis_cal.fits. Sky background: 0.00714935
2024-11-12 19:32:19,356 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00003_nis_cal.fits. Sky background: 0.00900399
2024-11-12 19:32:19,356 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00004_nis_cal.fits. Sky background: 0.0122178
2024-11-12 19:32:19,357 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_12101_00001_nis_cal.fits. Sky background: 0.0119847
2024-11-12 19:32:19,357 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_12101_00002_nis_cal.fits. Sky background: 0.00980498
2024-11-12 19:32:19,358 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_12101_00003_nis_cal.fits. Sky background: 0.0091688
2024-11-12 19:32:19,358 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:32:19,359 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2024-11-12 19:32:19.358620
2024-11-12 19:32:19,359 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:29.580913
2024-11-12 19:32:19,360 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:32:19,379 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done
2024-11-12 19:32:19,576 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe9748a9710>,).
2024-11-12 19:32:19,577 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection mode: imaging
2024-11-12 19:32:19,578 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection asn_id: o004
2024-11-12 19:32:19,579 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter kernel: square
2024-11-12 19:32:19,579 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter pixfrac: 1.0
2024-11-12 19:32:19,580 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter fillval: INDEF
2024-11-12 19:32:19,580 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter weight_type: ivm
2024-11-12 19:32:19,581 - stpipe.Image3Pipeline.outlier_detection - INFO - Output pixel scale ratio: 1.0
2024-11-12 19:32:19,660 - stpipe.Image3Pipeline.outlier_detection - INFO - Computed output pixel scale: 0.0655645109798961 arcsec.
2024-11-12 19:32:19,703 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:32:21,751 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:32:22,722 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_08101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:32:22,729 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:32:24,744 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:32:25,722 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_10101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:32:25,729 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:32:27,734 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:32:28,708 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_10101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:32:28,715 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:32:30,739 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:32:31,710 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_10101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:32:31,717 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:32:33,730 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:32:34,703 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_10101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:32:34,710 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:32:36,795 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:32:37,763 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_12101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:32:37,770 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:32:39,793 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:32:40,773 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_12101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:32:40,780 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:32:42,852 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:32:43,827 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_12101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:32:43,832 - stpipe.Image3Pipeline.outlier_detection - WARNING - /opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/site-packages/jwst/associations/association.py:215: UserWarning: Input association file contains path information; note that this can complicate usage and/or sharing of such files.
warnings.warn(err_str, UserWarning)
2024-11-12 19:32:51,225 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_08101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:32:51,235 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_10101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:32:51,245 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_10101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:32:51,255 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_10101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:32:51,265 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_10101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:32:51,275 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_12101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:32:51,286 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_12101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:32:51,296 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_12101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:32:53,262 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:32:53,510 - stpipe.Image3Pipeline.outlier_detection - INFO - 6141 pixels marked as outliers
2024-11-12 19:32:55,500 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:32:55,753 - stpipe.Image3Pipeline.outlier_detection - INFO - 6339 pixels marked as outliers
2024-11-12 19:32:57,755 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:32:58,009 - stpipe.Image3Pipeline.outlier_detection - INFO - 6469 pixels marked as outliers
2024-11-12 19:33:00,003 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:33:00,254 - stpipe.Image3Pipeline.outlier_detection - INFO - 6143 pixels marked as outliers
2024-11-12 19:33:02,248 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:33:02,497 - stpipe.Image3Pipeline.outlier_detection - INFO - 6451 pixels marked as outliers
2024-11-12 19:33:04,489 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:33:04,739 - stpipe.Image3Pipeline.outlier_detection - INFO - 6392 pixels marked as outliers
2024-11-12 19:33:06,739 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:33:06,993 - stpipe.Image3Pipeline.outlier_detection - INFO - 6206 pixels marked as outliers
2024-11-12 19:33:08,996 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:33:09,247 - stpipe.Image3Pipeline.outlier_detection - INFO - 6278 pixels marked as outliers
2024-11-12 19:33:09,556 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_08101_00001_nis_o004_crf.fits
2024-11-12 19:33:09,818 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_10101_00001_nis_o004_crf.fits
2024-11-12 19:33:10,084 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_10101_00002_nis_o004_crf.fits
2024-11-12 19:33:10,347 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_10101_00003_nis_o004_crf.fits
2024-11-12 19:33:10,612 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_10101_00004_nis_o004_crf.fits
2024-11-12 19:33:10,878 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_12101_00001_nis_o004_crf.fits
2024-11-12 19:33:11,152 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_12101_00002_nis_o004_crf.fits
2024-11-12 19:33:11,418 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_12101_00003_nis_o004_crf.fits
2024-11-12 19:33:11,419 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done
2024-11-12 19:33:11,613 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe9748a9710>,).
2024-11-12 19:33:11,865 - stpipe.Image3Pipeline.resample - INFO - Driz parameter kernel: square
2024-11-12 19:33:11,866 - stpipe.Image3Pipeline.resample - INFO - Driz parameter pixfrac: 1.0
2024-11-12 19:33:11,866 - stpipe.Image3Pipeline.resample - INFO - Driz parameter fillval: NAN
2024-11-12 19:33:11,867 - stpipe.Image3Pipeline.resample - INFO - Driz parameter weight_type: ivm
2024-11-12 19:33:11,867 - stpipe.Image3Pipeline.resample - INFO - Output pixel scale ratio: 1.0
2024-11-12 19:33:11,944 - stpipe.Image3Pipeline.resample - INFO - Computed output pixel scale: 0.0655645109798961 arcsec.
2024-11-12 19:33:12,003 - stpipe.Image3Pipeline.resample - INFO - Resampling science data
2024-11-12 19:33:14,249 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:17,083 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:19,932 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:22,783 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:25,656 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:28,499 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:31,360 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:34,203 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:35,429 - stpipe.Image3Pipeline.resample - INFO - Resampling variance components
2024-11-12 19:33:37,486 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:40,364 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:43,272 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:46,169 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:49,062 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:51,943 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:54,824 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:33:57,752 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:00,682 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:03,590 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:06,481 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:09,364 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:12,287 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:15,246 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:18,152 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:21,050 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:23,944 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:26,806 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:29,670 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:32,531 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:35,406 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:38,280 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:41,186 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:44,049 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:34:44,973 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.147101661 -27.808518168 53.188747124 -27.795515512 53.174272521 -27.759245567 53.132639218 -27.772243886
2024-11-12 19:34:45,525 - stpipe.Image3Pipeline.resample - INFO - Saved model in default_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_i2d.fits
2024-11-12 19:34:45,526 - stpipe.Image3Pipeline.resample - INFO - Step resample done
2024-11-12 19:34:45,713 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2145, 2112) from jw02079-o004_t001_niriss_clear-f150w_i2d.fits>,).
2024-11-12 19:34:45,728 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file: crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2024-11-12 19:34:45,736 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file: crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2024-11-12 19:34:45,737 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRISS
2024-11-12 19:34:45,737 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NIS
2024-11-12 19:34:45,737 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: CLEAR
2024-11-12 19:34:45,738 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: F150W
2024-11-12 19:34:45,738 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL
2024-11-12 19:34:45,778 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 1.19753
2024-11-12 19:34:48,863 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 1371 sources
2024-11-12 19:34:49,713 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: default_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_cat.ecsv
2024-11-12 19:34:49,851 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in default_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_segm.fits
2024-11-12 19:34:49,852 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw02079-o004_t001_niriss_clear-f150w_segm.fits
2024-11-12 19:34:49,853 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done
2024-11-12 19:34:49,862 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done
2024-11-12 19:34:49,862 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:34:50,004 - 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)
2024-11-12 19:34:50,258 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0078.asdf
2024-11-12 19:34:50,271 - 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)
2024-11-12 19:34:50,532 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0006.asdf
2024-11-12 19:34:50,547 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:34:50,556 - 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)
2024-11-12 19:34:50,785 - stpipe - INFO - PARS-SOURCECATALOGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0010.asdf
2024-11-12 19:34:50,800 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created.
2024-11-12 19:34:50,801 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created.
2024-11-12 19:34:50,803 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created.
2024-11-12 19:34:50,804 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created.
2024-11-12 19:34:50,806 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2024-11-12 19:34:50,807 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:34:50,808 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created.
2024-11-12 19:34:50,976 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('jw02079-o004_20231119t124442_image3_00009_asn.json',).
2024-11-12 19:34:50,990 - 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.2
sharphi: 3.0
roundlo: -1.0
roundhi: 1.0
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: INDEF
nlow: 0
nhigh: 0
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
allowed_memory: None
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
allowed_memory: None
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
2024-11-12 19:34:51,139 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_02101_00001_nis_cal.fits' reftypes = ['abvegaoffset', 'apcorr']
2024-11-12 19:34:51,142 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2024-11-12 19:34:51,143 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2024-11-12 19:34:51,144 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ...
2024-11-12 19:34:51,760 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe9786104d0>,).
2024-11-12 19:34:53,121 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_02101_00001_nis_cal.fits.
2024-11-12 19:34:54,652 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_04101_00001_nis_cal.fits.
2024-11-12 19:34:56,171 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_04101_00002_nis_cal.fits.
2024-11-12 19:34:57,686 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_04101_00003_nis_cal.fits.
2024-11-12 19:34:59,202 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_04101_00004_nis_cal.fits.
2024-11-12 19:35:00,718 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_06101_00001_nis_cal.fits.
2024-11-12 19:35:02,235 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_06101_00002_nis_cal.fits.
2024-11-12 19:35:03,757 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_06101_00003_nis_cal.fits.
2024-11-12 19:35:05,285 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_08101_00001_nis_cal.fits.
2024-11-12 19:35:07,038 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_10101_00001_nis_cal.fits.
2024-11-12 19:35:08,581 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_10101_00002_nis_cal.fits.
2024-11-12 19:35:10,119 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_10101_00003_nis_cal.fits.
2024-11-12 19:35:11,663 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_10101_00004_nis_cal.fits.
2024-11-12 19:35:13,191 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_12101_00001_nis_cal.fits.
2024-11-12 19:35:14,743 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_12101_00002_nis_cal.fits.
2024-11-12 19:35:16,359 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_12101_00003_nis_cal.fits.
2024-11-12 19:35:17,991 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_02101_00001_nis_cal.fits.
2024-11-12 19:35:19,634 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_04101_00001_nis_cal.fits.
2024-11-12 19:35:21,459 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_04101_00002_nis_cal.fits.
2024-11-12 19:35:23,120 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_04101_00003_nis_cal.fits.
2024-11-12 19:35:24,792 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_04101_00004_nis_cal.fits.
2024-11-12 19:35:26,471 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_06101_00001_nis_cal.fits.
2024-11-12 19:35:28,096 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_06101_00002_nis_cal.fits.
2024-11-12 19:35:29,774 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_06101_00003_nis_cal.fits.
2024-11-12 19:35:29,797 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:35:29,798 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 24.
2024-11-12 19:35:29,798 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:35:29,799 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2024-11-12 19:35:29.798685
2024-11-12 19:35:29,800 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.8.9
2024-11-12 19:35:29,800 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:16,851 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw02079004001_12101_3' as reference image
2024-11-12 19:36:16,857 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_06101_2' to the reference catalog.
2024-11-12 19:36:16,908 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_06101_00002_nis_cal' catalog with sources from the reference 'jw02079004001_12101_00003_nis_cal' catalog.
2024-11-12 19:36:16,909 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:16,910 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.05386, 0.04415 (arcsec) with significance of 13.36 and 27 matches.
2024-11-12 19:36:16,912 - stpipe.Image3Pipeline.tweakreg - INFO - Found 51 matches for 'GROUP ID: jw02079004001_06101_2'...
2024-11-12 19:36:16,913 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:16,914 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_06101_2:
2024-11-12 19:36:16,915 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.190911 YSH: 0.0631206 ROT: -0.0158318 SCALE: 1
2024-11-12 19:36:16,915 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:16,916 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.3246 FIT MAE: 0.288289
2024-11-12 19:36:16,916 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 51 objects.
2024-11-12 19:36:16,959 - stpipe.Image3Pipeline.tweakreg - INFO - Added 49 unmatched sources from 'GROUP ID: jw02079004001_06101_2' to the reference catalog.
2024-11-12 19:36:20,680 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_08101_1' to the reference catalog.
2024-11-12 19:36:20,728 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_08101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_06101_00002_nis_cal' catalog.
2024-11-12 19:36:20,729 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:20,730 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.6722, 0.2457 (arcsec) with significance of 12.79 and 25 matches.
2024-11-12 19:36:20,732 - stpipe.Image3Pipeline.tweakreg - INFO - Found 67 matches for 'GROUP ID: jw02079004001_08101_1'...
2024-11-12 19:36:20,732 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:20,734 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_08101_1:
2024-11-12 19:36:20,735 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.369325 YSH: -0.0743556 ROT: 0.0229241 SCALE: 1
2024-11-12 19:36:20,735 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:20,735 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.452425 FIT MAE: 0.436775
2024-11-12 19:36:20,736 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 67 objects.
2024-11-12 19:36:20,781 - stpipe.Image3Pipeline.tweakreg - INFO - Added 33 unmatched sources from 'GROUP ID: jw02079004001_08101_1' to the reference catalog.
2024-11-12 19:36:24,281 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_06101_1' to the reference catalog.
2024-11-12 19:36:24,329 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_06101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_08101_00001_nis_cal' catalog.
2024-11-12 19:36:24,329 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:24,331 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.1146, 0.5735 (arcsec) with significance of 15.59 and 27 matches.
2024-11-12 19:36:24,332 - stpipe.Image3Pipeline.tweakreg - INFO - Found 77 matches for 'GROUP ID: jw02079004001_06101_1'...
2024-11-12 19:36:24,333 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:24,335 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_06101_1:
2024-11-12 19:36:24,335 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00729572 YSH: -0.259242 ROT: -0.00168369 SCALE: 1
2024-11-12 19:36:24,336 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:24,336 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.322764 FIT MAE: 0.310808
2024-11-12 19:36:24,338 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 77 objects.
2024-11-12 19:36:24,381 - stpipe.Image3Pipeline.tweakreg - INFO - Added 23 unmatched sources from 'GROUP ID: jw02079004001_06101_1' to the reference catalog.
2024-11-12 19:36:28,138 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_3' to the reference catalog.
2024-11-12 19:36:28,185 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_06101_00001_nis_cal' catalog.
2024-11-12 19:36:28,186 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:28,188 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.1801, 0.6391 (arcsec) with significance of 18.57 and 29 matches.
2024-11-12 19:36:28,189 - stpipe.Image3Pipeline.tweakreg - INFO - Found 72 matches for 'GROUP ID: jw02079004001_10101_3'...
2024-11-12 19:36:28,190 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:28,192 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_10101_3:
2024-11-12 19:36:28,192 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0672842 YSH: -0.291031 ROT: 0.0174335 SCALE: 1
2024-11-12 19:36:28,192 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:28,193 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.342975 FIT MAE: 0.335218
2024-11-12 19:36:28,193 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 72 objects.
2024-11-12 19:36:28,238 - stpipe.Image3Pipeline.tweakreg - INFO - Added 28 unmatched sources from 'GROUP ID: jw02079004001_10101_3' to the reference catalog.
2024-11-12 19:36:31,840 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_3' to the reference catalog.
2024-11-12 19:36:31,888 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00003_nis_cal' catalog.
2024-11-12 19:36:31,888 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:31,890 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.06212, 0.03808 (arcsec) with significance of 18.23 and 30 matches.
2024-11-12 19:36:31,891 - stpipe.Image3Pipeline.tweakreg - INFO - Found 74 matches for 'GROUP ID: jw02079004002_04101_3'...
2024-11-12 19:36:31,892 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:31,894 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_04101_3:
2024-11-12 19:36:31,894 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0446709 YSH: -0.323613 ROT: 0.00370146 SCALE: 1
2024-11-12 19:36:31,895 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:31,896 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.34966 FIT MAE: 0.336753
2024-11-12 19:36:31,896 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 74 objects.
2024-11-12 19:36:31,943 - stpipe.Image3Pipeline.tweakreg - INFO - Added 26 unmatched sources from 'GROUP ID: jw02079004002_04101_3' to the reference catalog.
2024-11-12 19:36:35,380 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_06101_2' to the reference catalog.
2024-11-12 19:36:35,431 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_06101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00003_nis_cal' catalog.
2024-11-12 19:36:35,432 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:35,434 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.05775, 0.04463 (arcsec) with significance of 16.68 and 30 matches.
2024-11-12 19:36:35,435 - stpipe.Image3Pipeline.tweakreg - INFO - Found 74 matches for 'GROUP ID: jw02079004002_06101_2'...
2024-11-12 19:36:35,436 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:35,438 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_06101_2:
2024-11-12 19:36:35,438 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.237584 YSH: 0.0779857 ROT: 0.0115733 SCALE: 1
2024-11-12 19:36:35,439 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:35,439 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.263888 FIT MAE: 0.238862
2024-11-12 19:36:35,440 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 73 objects.
2024-11-12 19:36:35,774 - stpipe.Image3Pipeline.tweakreg - INFO - Added 26 unmatched sources from 'GROUP ID: jw02079004002_06101_2' to the reference catalog.
2024-11-12 19:36:39,478 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_12101_2' to the reference catalog.
2024-11-12 19:36:39,529 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_12101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_06101_00002_nis_cal' catalog.
2024-11-12 19:36:39,530 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:39,532 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.06722, 0.0399 (arcsec) with significance of 16.33 and 36 matches.
2024-11-12 19:36:39,533 - stpipe.Image3Pipeline.tweakreg - INFO - Found 79 matches for 'GROUP ID: jw02079004001_12101_2'...
2024-11-12 19:36:39,534 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:39,536 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_12101_2:
2024-11-12 19:36:39,536 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.252781 YSH: 0.0767823 ROT: -0.0176956 SCALE: 1
2024-11-12 19:36:39,537 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:39,537 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.268853 FIT MAE: 0.241569
2024-11-12 19:36:39,537 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 78 objects.
2024-11-12 19:36:39,582 - stpipe.Image3Pipeline.tweakreg - INFO - Added 21 unmatched sources from 'GROUP ID: jw02079004001_12101_2' to the reference catalog.
2024-11-12 19:36:42,960 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_1' to the reference catalog.
2024-11-12 19:36:43,007 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_12101_00002_nis_cal' catalog.
2024-11-12 19:36:43,008 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:43,009 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.05657, 0.049 (arcsec) with significance of 17.93 and 26 matches.
2024-11-12 19:36:43,011 - stpipe.Image3Pipeline.tweakreg - INFO - Found 43 matches for 'GROUP ID: jw02079004002_04101_1'...
2024-11-12 19:36:43,011 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:43,014 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_04101_1:
2024-11-12 19:36:43,014 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0202018 YSH: -0.0474419 ROT: 0.0011824 SCALE: 1
2024-11-12 19:36:43,015 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:43,015 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.250831 FIT MAE: 0.182688
2024-11-12 19:36:43,016 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 42 objects.
2024-11-12 19:36:43,061 - stpipe.Image3Pipeline.tweakreg - INFO - Added 57 unmatched sources from 'GROUP ID: jw02079004002_04101_1' to the reference catalog.
2024-11-12 19:36:45,926 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_2' to the reference catalog.
2024-11-12 19:36:45,974 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00001_nis_cal' catalog.
2024-11-12 19:36:45,974 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:45,976 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.05958, 0.04266 (arcsec) with significance of 15.21 and 31 matches.
2024-11-12 19:36:45,977 - stpipe.Image3Pipeline.tweakreg - INFO - Found 75 matches for 'GROUP ID: jw02079004001_04101_2'...
2024-11-12 19:36:45,978 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:45,980 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_04101_2:
2024-11-12 19:36:45,980 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.222564 YSH: -0.176459 ROT: 0.00287226 SCALE: 1
2024-11-12 19:36:45,981 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:45,981 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.435761 FIT MAE: 0.408284
2024-11-12 19:36:45,982 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 75 objects.
2024-11-12 19:36:46,029 - stpipe.Image3Pipeline.tweakreg - INFO - Added 25 unmatched sources from 'GROUP ID: jw02079004001_04101_2' to the reference catalog.
2024-11-12 19:36:48,340 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_12101_1' to the reference catalog.
2024-11-12 19:36:48,393 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_12101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00002_nis_cal' catalog.
2024-11-12 19:36:48,393 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:48,395 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.08212, -0.4755 (arcsec) with significance of 15.01 and 24 matches.
2024-11-12 19:36:48,396 - stpipe.Image3Pipeline.tweakreg - INFO - Found 64 matches for 'GROUP ID: jw02079004001_12101_1'...
2024-11-12 19:36:48,397 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:48,399 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_12101_1:
2024-11-12 19:36:48,399 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0280932 YSH: -0.18053 ROT: 0.00638917 SCALE: 1
2024-11-12 19:36:48,400 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:48,400 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.319073 FIT MAE: 0.286582
2024-11-12 19:36:48,401 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 64 objects.
2024-11-12 19:36:48,446 - stpipe.Image3Pipeline.tweakreg - INFO - Added 36 unmatched sources from 'GROUP ID: jw02079004001_12101_1' to the reference catalog.
2024-11-12 19:36:50,642 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_3' to the reference catalog.
2024-11-12 19:36:50,695 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_12101_00001_nis_cal' catalog.
2024-11-12 19:36:50,695 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:50,697 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.06961, 0.03964 (arcsec) with significance of 15.67 and 35 matches.
2024-11-12 19:36:50,698 - stpipe.Image3Pipeline.tweakreg - INFO - Found 79 matches for 'GROUP ID: jw02079004001_04101_3'...
2024-11-12 19:36:50,699 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:50,701 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_04101_3:
2024-11-12 19:36:50,702 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0397974 YSH: -0.284126 ROT: 0.000935512 SCALE: 1
2024-11-12 19:36:50,702 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:50,702 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.364452 FIT MAE: 0.339698
2024-11-12 19:36:50,703 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 79 objects.
2024-11-12 19:36:50,754 - stpipe.Image3Pipeline.tweakreg - INFO - Added 22 unmatched sources from 'GROUP ID: jw02079004001_04101_3' to the reference catalog.
2024-11-12 19:36:52,939 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_06101_3' to the reference catalog.
2024-11-12 19:36:52,990 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_06101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00003_nis_cal' catalog.
2024-11-12 19:36:52,991 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:52,993 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.04993, 0.04716 (arcsec) with significance of 54.96 and 71 matches.
2024-11-12 19:36:52,994 - stpipe.Image3Pipeline.tweakreg - INFO - Found 81 matches for 'GROUP ID: jw02079004001_06101_3'...
2024-11-12 19:36:52,995 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:52,997 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_06101_3:
2024-11-12 19:36:52,998 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0199548 YSH: -0.000659987 ROT: 0.00907341 SCALE: 1
2024-11-12 19:36:52,998 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:52,998 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.169843 FIT MAE: 0.0874492
2024-11-12 19:36:52,999 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 78 objects.
2024-11-12 19:36:53,044 - stpipe.Image3Pipeline.tweakreg - INFO - Added 20 unmatched sources from 'GROUP ID: jw02079004001_06101_3' to the reference catalog.
2024-11-12 19:36:55,070 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_1' to the reference catalog.
2024-11-12 19:36:55,123 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_06101_00003_nis_cal' catalog.
2024-11-12 19:36:55,123 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:55,125 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.05245, 0.08696 (arcsec) with significance of 19.49 and 57 matches.
2024-11-12 19:36:55,126 - stpipe.Image3Pipeline.tweakreg - INFO - Found 52 matches for 'GROUP ID: jw02079004001_10101_1'...
2024-11-12 19:36:55,127 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:55,129 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_10101_1:
2024-11-12 19:36:55,129 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0457088 YSH: -0.0792591 ROT: -0.00904794 SCALE: 1
2024-11-12 19:36:55,130 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:55,131 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.355299 FIT MAE: 0.263086
2024-11-12 19:36:55,131 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 52 objects.
2024-11-12 19:36:55,180 - stpipe.Image3Pipeline.tweakreg - INFO - Added 48 unmatched sources from 'GROUP ID: jw02079004001_10101_1' to the reference catalog.
2024-11-12 19:36:56,999 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_2' to the reference catalog.
2024-11-12 19:36:57,048 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00002_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00001_nis_cal' catalog.
2024-11-12 19:36:57,049 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:57,050 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.06357, 0.04718 (arcsec) with significance of 15.08 and 36 matches.
2024-11-12 19:36:57,052 - stpipe.Image3Pipeline.tweakreg - INFO - Found 82 matches for 'GROUP ID: jw02079004001_10101_2'...
2024-11-12 19:36:57,052 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:57,054 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_10101_2:
2024-11-12 19:36:57,055 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.254599 YSH: -0.185668 ROT: -0.000910944 SCALE: 1
2024-11-12 19:36:57,055 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:57,055 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.433851 FIT MAE: 0.407642
2024-11-12 19:36:57,056 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 82 objects.
2024-11-12 19:36:57,102 - stpipe.Image3Pipeline.tweakreg - INFO - Added 18 unmatched sources from 'GROUP ID: jw02079004001_10101_2' to the reference catalog.
2024-11-12 19:36:58,742 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_06101_1' to the reference catalog.
2024-11-12 19:36:58,790 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_06101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00002_nis_cal' catalog.
2024-11-12 19:36:58,791 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:36:58,792 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.1146, 0.5735 (arcsec) with significance of 15.54 and 26 matches.
2024-11-12 19:36:58,794 - stpipe.Image3Pipeline.tweakreg - INFO - Found 74 matches for 'GROUP ID: jw02079004002_06101_1'...
2024-11-12 19:36:58,794 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:36:58,796 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_06101_1:
2024-11-12 19:36:58,797 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0596348 YSH: -0.255377 ROT: 0.0152066 SCALE: 1
2024-11-12 19:36:58,797 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:36:58,797 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.325977 FIT MAE: 0.295941
2024-11-12 19:36:58,798 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 74 objects.
2024-11-12 19:36:58,842 - stpipe.Image3Pipeline.tweakreg - INFO - Added 26 unmatched sources from 'GROUP ID: jw02079004002_06101_1' to the reference catalog.
2024-11-12 19:37:00,311 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_2' to the reference catalog.
2024-11-12 19:37:00,360 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_06101_00001_nis_cal' catalog.
2024-11-12 19:37:00,361 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:37:00,362 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.06996, 0.08491 (arcsec) with significance of 14.75 and 34 matches.
2024-11-12 19:37:00,364 - stpipe.Image3Pipeline.tweakreg - INFO - Found 73 matches for 'GROUP ID: jw02079004002_04101_2'...
2024-11-12 19:37:00,364 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:37:00,366 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_04101_2:
2024-11-12 19:37:00,367 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.22691 YSH: -0.171584 ROT: 0.0427723 SCALE: 1
2024-11-12 19:37:00,367 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:37:00,367 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.449233 FIT MAE: 0.406066
2024-11-12 19:37:00,368 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 73 objects.
2024-11-12 19:37:00,414 - stpipe.Image3Pipeline.tweakreg - INFO - Added 27 unmatched sources from 'GROUP ID: jw02079004002_04101_2' to the reference catalog.
2024-11-12 19:37:01,794 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_02101_1' to the reference catalog.
2024-11-12 19:37:01,842 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_02101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00002_nis_cal' catalog.
2024-11-12 19:37:01,842 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:37:01,844 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.06064, 0.05646 (arcsec) with significance of 14.48 and 34 matches.
2024-11-12 19:37:01,845 - stpipe.Image3Pipeline.tweakreg - INFO - Found 71 matches for 'GROUP ID: jw02079004002_02101_1'...
2024-11-12 19:37:01,846 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:37:01,848 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_02101_1:
2024-11-12 19:37:01,848 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.276375 YSH: -0.0871385 ROT: -0.016724 SCALE: 1
2024-11-12 19:37:01,849 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:37:01,849 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.397901 FIT MAE: 0.364144
2024-11-12 19:37:01,849 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 71 objects.
2024-11-12 19:37:01,896 - stpipe.Image3Pipeline.tweakreg - INFO - Added 29 unmatched sources from 'GROUP ID: jw02079004002_02101_1' to the reference catalog.
2024-11-12 19:37:03,150 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_06101_3' to the reference catalog.
2024-11-12 19:37:03,198 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_06101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_02101_00001_nis_cal' catalog.
2024-11-12 19:37:03,198 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:37:03,200 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.0508, 0.04541 (arcsec) with significance of 47.5 and 73 matches.
2024-11-12 19:37:03,201 - stpipe.Image3Pipeline.tweakreg - INFO - Found 81 matches for 'GROUP ID: jw02079004002_06101_3'...
2024-11-12 19:37:03,202 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:37:03,204 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_06101_3:
2024-11-12 19:37:03,205 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.013285 YSH: 0.00031345 ROT: 0.0149823 SCALE: 1
2024-11-12 19:37:03,205 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:37:03,206 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.189826 FIT MAE: 0.105941
2024-11-12 19:37:03,206 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 78 objects.
2024-11-12 19:37:03,251 - stpipe.Image3Pipeline.tweakreg - INFO - Added 20 unmatched sources from 'GROUP ID: jw02079004002_06101_3' to the reference catalog.
2024-11-12 19:37:04,334 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_02101_1' to the reference catalog.
2024-11-12 19:37:04,386 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_02101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_06101_00003_nis_cal' catalog.
2024-11-12 19:37:04,386 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:37:04,388 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.05698, 0.05924 (arcsec) with significance of 14.22 and 33 matches.
2024-11-12 19:37:04,389 - stpipe.Image3Pipeline.tweakreg - INFO - Found 67 matches for 'GROUP ID: jw02079004001_02101_1'...
2024-11-12 19:37:04,391 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:37:04,392 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_02101_1:
2024-11-12 19:37:04,393 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.260706 YSH: -0.0789058 ROT: 0.0293102 SCALE: 1
2024-11-12 19:37:04,393 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:37:04,394 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.429673 FIT MAE: 0.382249
2024-11-12 19:37:04,394 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 67 objects.
2024-11-12 19:37:04,440 - stpipe.Image3Pipeline.tweakreg - INFO - Added 33 unmatched sources from 'GROUP ID: jw02079004001_02101_1' to the reference catalog.
2024-11-12 19:37:05,374 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_4' to the reference catalog.
2024-11-12 19:37:05,423 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00004_nis_cal' catalog with sources from the reference 'jw02079004001_02101_00001_nis_cal' catalog.
2024-11-12 19:37:05,423 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:37:05,425 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.049, 0.06175 (arcsec) with significance of 17.26 and 36 matches.
2024-11-12 19:37:05,426 - stpipe.Image3Pipeline.tweakreg - INFO - Found 47 matches for 'GROUP ID: jw02079004001_04101_4'...
2024-11-12 19:37:05,427 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:37:05,429 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_04101_4:
2024-11-12 19:37:05,429 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0370422 YSH: -0.0275051 ROT: 0.0168735 SCALE: 1
2024-11-12 19:37:05,430 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:37:05,430 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.285151 FIT MAE: 0.215545
2024-11-12 19:37:05,431 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 47 objects.
2024-11-12 19:37:05,476 - stpipe.Image3Pipeline.tweakreg - INFO - Added 53 unmatched sources from 'GROUP ID: jw02079004001_04101_4' to the reference catalog.
2024-11-12 19:37:06,136 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_4' to the reference catalog.
2024-11-12 19:37:06,516 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00004_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00004_nis_cal' catalog.
2024-11-12 19:37:06,516 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:37:06,518 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.06217, 0.07052 (arcsec) with significance of 21.52 and 62 matches.
2024-11-12 19:37:06,519 - stpipe.Image3Pipeline.tweakreg - INFO - Found 69 matches for 'GROUP ID: jw02079004002_04101_4'...
2024-11-12 19:37:06,520 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:37:06,522 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004002_04101_4:
2024-11-12 19:37:06,522 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0305529 YSH: -0.015147 ROT: 0.000996866 SCALE: 1
2024-11-12 19:37:06,523 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:37:06,523 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.268094 FIT MAE: 0.174013
2024-11-12 19:37:06,524 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 68 objects.
2024-11-12 19:37:06,570 - stpipe.Image3Pipeline.tweakreg - INFO - Added 31 unmatched sources from 'GROUP ID: jw02079004002_04101_4' to the reference catalog.
2024-11-12 19:37:06,971 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_4' to the reference catalog.
2024-11-12 19:37:07,021 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00004_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00004_nis_cal' catalog.
2024-11-12 19:37:07,021 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:37:07,023 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.0564, 0.06019 (arcsec) with significance of 24.15 and 68 matches.
2024-11-12 19:37:07,024 - stpipe.Image3Pipeline.tweakreg - INFO - Found 71 matches for 'GROUP ID: jw02079004001_10101_4'...
2024-11-12 19:37:07,025 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:37:07,028 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_10101_4:
2024-11-12 19:37:07,028 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0150342 YSH: -0.028597 ROT: 0.0119612 SCALE: 1
2024-11-12 19:37:07,029 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:37:07,029 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.289597 FIT MAE: 0.184567
2024-11-12 19:37:07,030 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 70 objects.
2024-11-12 19:37:07,076 - stpipe.Image3Pipeline.tweakreg - INFO - Added 29 unmatched sources from 'GROUP ID: jw02079004001_10101_4' to the reference catalog.
2024-11-12 19:37:07,271 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_1' to the reference catalog.
2024-11-12 19:37:07,323 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00004_nis_cal' catalog.
2024-11-12 19:37:07,324 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:37:07,326 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.06196, 0.09703 (arcsec) with significance of 18.56 and 86 matches.
2024-11-12 19:37:07,327 - stpipe.Image3Pipeline.tweakreg - INFO - Found 66 matches for 'GROUP ID: jw02079004001_04101_1'...
2024-11-12 19:37:07,328 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'rshift' fit
2024-11-12 19:37:07,330 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'rshift' fit for GROUP ID: jw02079004001_04101_1:
2024-11-12 19:37:07,331 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00845586 YSH: -0.0880304 ROT: -0.0215971 SCALE: 1
2024-11-12 19:37:07,331 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:37:07,332 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.250283 FIT MAE: 0.182155
2024-11-12 19:37:07,332 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 64 objects.
2024-11-12 19:37:07,384 - stpipe.Image3Pipeline.tweakreg - INFO - Added 34 unmatched sources from 'GROUP ID: jw02079004001_04101_1' to the reference catalog.
2024-11-12 19:37:07,385 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:37:07,385 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2024-11-12 19:37:07.385335
2024-11-12 19:37:07,386 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:01:37.586650
2024-11-12 19:37:07,386 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:37:08,841 - 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!
2024-11-12 19:37:08,865 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done
2024-11-12 19:37:09,171 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe9786104d0>,).
2024-11-12 19:37:09,661 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:37:09,661 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2024-11-12 19:37:09.660980
2024-11-12 19:37:09,662 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:37:09,662 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'match'
2024-11-12 19:37:09,662 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN
2024-11-12 19:37:09,664 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF
2024-11-12 19:37:09,664 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:37:09,665 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions.
2024-11-12 19:42:06,865 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_02101_00001_nis_cal.fits. Sky background: 0.00351201
2024-11-12 19:42:06,866 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00001_nis_cal.fits. Sky background: 0.00164159
2024-11-12 19:42:06,866 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00002_nis_cal.fits. Sky background: 0.00275517
2024-11-12 19:42:06,866 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00003_nis_cal.fits. Sky background: 0.00245086
2024-11-12 19:42:06,867 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00004_nis_cal.fits. Sky background: 0
2024-11-12 19:42:06,867 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_06101_00001_nis_cal.fits. Sky background: 0.00215923
2024-11-12 19:42:06,868 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_06101_00002_nis_cal.fits. Sky background: 0.0046494
2024-11-12 19:42:06,868 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_06101_00003_nis_cal.fits. Sky background: 0.000655999
2024-11-12 19:42:06,869 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_08101_00001_nis_cal.fits. Sky background: 0.00714736
2024-11-12 19:42:06,869 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00001_nis_cal.fits. Sky background: 0.00503738
2024-11-12 19:42:06,869 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00002_nis_cal.fits. Sky background: 0.0041705
2024-11-12 19:42:06,870 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00003_nis_cal.fits. Sky background: 0.00519724
2024-11-12 19:42:06,870 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00004_nis_cal.fits. Sky background: 0.00269074
2024-11-12 19:42:06,870 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_12101_00001_nis_cal.fits. Sky background: 0.00419169
2024-11-12 19:42:06,871 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_12101_00002_nis_cal.fits. Sky background: 0.00398113
2024-11-12 19:42:06,871 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_12101_00003_nis_cal.fits. Sky background: 0.00228521
2024-11-12 19:42:06,872 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_02101_00001_nis_cal.fits. Sky background: 0.0017984
2024-11-12 19:42:06,872 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00001_nis_cal.fits. Sky background: 0.00281901
2024-11-12 19:42:06,872 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00002_nis_cal.fits. Sky background: 0.006335
2024-11-12 19:42:06,873 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00003_nis_cal.fits. Sky background: 0.00437153
2024-11-12 19:42:06,873 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00004_nis_cal.fits. Sky background: 0.00455866
2024-11-12 19:42:06,873 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_06101_00001_nis_cal.fits. Sky background: 0.00236365
2024-11-12 19:42:06,874 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_06101_00002_nis_cal.fits. Sky background: 0.00982759
2024-11-12 19:42:06,874 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_06101_00003_nis_cal.fits. Sky background: 0.00626839
2024-11-12 19:42:06,875 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:42:06,876 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2024-11-12 19:42:06.875121
2024-11-12 19:42:06,877 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:04:57.214141
2024-11-12 19:42:06,877 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:42:06,931 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done
2024-11-12 19:42:07,213 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe9786104d0>,).
2024-11-12 19:42:07,214 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection mode: imaging
2024-11-12 19:42:07,216 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection asn_id: o004
2024-11-12 19:42:07,216 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter kernel: square
2024-11-12 19:42:07,217 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter pixfrac: 1.0
2024-11-12 19:42:07,217 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter fillval: INDEF
2024-11-12 19:42:07,218 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter weight_type: ivm
2024-11-12 19:42:07,219 - stpipe.Image3Pipeline.outlier_detection - INFO - Output pixel scale ratio: 1.0
2024-11-12 19:42:07,407 - stpipe.Image3Pipeline.outlier_detection - INFO - Computed output pixel scale: 0.06556312845480262 arcsec.
2024-11-12 19:42:07,456 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:10,101 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:11,067 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_02101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:42:11,075 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:13,159 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:14,124 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_04101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:42:14,132 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:16,130 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:17,100 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_04101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:42:17,107 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:19,097 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:20,063 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_04101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:42:20,071 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:22,111 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:23,082 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_04101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:42:23,090 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:25,145 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:26,111 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_06101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:42:26,119 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:28,180 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:29,146 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_06101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:42:29,155 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:31,206 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:32,179 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_06101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:42:32,187 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:34,235 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:35,202 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_08101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:42:35,209 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:37,348 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:38,321 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_10101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:42:38,328 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:40,348 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:41,321 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_10101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:42:41,329 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:43,481 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:44,447 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_10101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:42:44,455 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:46,476 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:47,442 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_10101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:42:47,450 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:49,506 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:50,481 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_12101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:42:50,489 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:52,491 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:53,464 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_12101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:42:53,472 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:55,524 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:56,491 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_12101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:42:56,499 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:42:58,543 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:42:59,515 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_02101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:42:59,523 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:43:01,630 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:43:02,596 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_04101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:43:02,603 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:43:04,624 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:43:05,596 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_04101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:43:05,603 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:43:07,686 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:43:08,653 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_04101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:43:08,661 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:43:10,693 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:43:11,665 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_04101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:43:11,673 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:43:13,753 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:43:14,724 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_06101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:43:14,732 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:43:16,767 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:43:17,734 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_06101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:43:17,742 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:43:19,805 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:43:20,776 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_06101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:43:20,781 - stpipe.Image3Pipeline.outlier_detection - WARNING - /opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/site-packages/jwst/associations/association.py:215: UserWarning: Input association file contains path information; note that this can complicate usage and/or sharing of such files.
warnings.warn(err_str, UserWarning)
2024-11-12 19:43:45,508 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_02101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,519 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_04101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,531 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_04101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,542 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_04101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,553 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_04101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,563 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_06101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,573 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_06101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,582 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_06101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,591 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_08101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,601 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_10101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,611 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_10101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,620 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_10101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,630 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_10101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,640 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_12101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,650 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_12101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,659 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004001_12101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,669 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_02101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,678 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_04101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,688 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_04101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,698 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_04101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,708 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_04101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,719 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_06101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,731 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_06101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:43:45,743 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file default_image3_calibrated/jw02079004002_06101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:43:47,754 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:43:48,014 - stpipe.Image3Pipeline.outlier_detection - INFO - 14252 pixels marked as outliers
2024-11-12 19:43:50,062 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:43:50,338 - stpipe.Image3Pipeline.outlier_detection - INFO - 14370 pixels marked as outliers
2024-11-12 19:43:52,374 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:43:52,635 - stpipe.Image3Pipeline.outlier_detection - INFO - 13691 pixels marked as outliers
2024-11-12 19:43:54,685 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:43:54,963 - stpipe.Image3Pipeline.outlier_detection - INFO - 14230 pixels marked as outliers
2024-11-12 19:43:57,006 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:43:57,267 - stpipe.Image3Pipeline.outlier_detection - INFO - 14763 pixels marked as outliers
2024-11-12 19:43:59,330 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:43:59,606 - stpipe.Image3Pipeline.outlier_detection - INFO - 14144 pixels marked as outliers
2024-11-12 19:44:01,664 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:01,926 - stpipe.Image3Pipeline.outlier_detection - INFO - 13978 pixels marked as outliers
2024-11-12 19:44:03,982 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:04,259 - stpipe.Image3Pipeline.outlier_detection - INFO - 14397 pixels marked as outliers
2024-11-12 19:44:06,320 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:06,581 - stpipe.Image3Pipeline.outlier_detection - INFO - 13668 pixels marked as outliers
2024-11-12 19:44:08,632 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:08,913 - stpipe.Image3Pipeline.outlier_detection - INFO - 14758 pixels marked as outliers
2024-11-12 19:44:10,951 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:11,213 - stpipe.Image3Pipeline.outlier_detection - INFO - 14103 pixels marked as outliers
2024-11-12 19:44:13,257 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:13,536 - stpipe.Image3Pipeline.outlier_detection - INFO - 14570 pixels marked as outliers
2024-11-12 19:44:15,578 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:15,840 - stpipe.Image3Pipeline.outlier_detection - INFO - 14880 pixels marked as outliers
2024-11-12 19:44:17,899 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:18,173 - stpipe.Image3Pipeline.outlier_detection - INFO - 14302 pixels marked as outliers
2024-11-12 19:44:20,215 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:20,475 - stpipe.Image3Pipeline.outlier_detection - INFO - 14122 pixels marked as outliers
2024-11-12 19:44:22,520 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:22,795 - stpipe.Image3Pipeline.outlier_detection - INFO - 14120 pixels marked as outliers
2024-11-12 19:44:24,844 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:25,114 - stpipe.Image3Pipeline.outlier_detection - INFO - 14287 pixels marked as outliers
2024-11-12 19:44:27,167 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:27,440 - stpipe.Image3Pipeline.outlier_detection - INFO - 14499 pixels marked as outliers
2024-11-12 19:44:29,478 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:29,742 - stpipe.Image3Pipeline.outlier_detection - INFO - 13912 pixels marked as outliers
2024-11-12 19:44:31,809 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:32,086 - stpipe.Image3Pipeline.outlier_detection - INFO - 14524 pixels marked as outliers
2024-11-12 19:44:34,126 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:34,388 - stpipe.Image3Pipeline.outlier_detection - INFO - 14709 pixels marked as outliers
2024-11-12 19:44:36,422 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:36,695 - stpipe.Image3Pipeline.outlier_detection - INFO - 14686 pixels marked as outliers
2024-11-12 19:44:38,738 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:38,998 - stpipe.Image3Pipeline.outlier_detection - INFO - 13981 pixels marked as outliers
2024-11-12 19:44:41,051 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 19:44:41,329 - stpipe.Image3Pipeline.outlier_detection - INFO - 13667 pixels marked as outliers
2024-11-12 19:44:41,656 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_02101_00001_nis_o004_crf.fits
2024-11-12 19:44:41,928 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_04101_00001_nis_o004_crf.fits
2024-11-12 19:44:42,198 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_04101_00002_nis_o004_crf.fits
2024-11-12 19:44:42,468 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_04101_00003_nis_o004_crf.fits
2024-11-12 19:44:42,732 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_04101_00004_nis_o004_crf.fits
2024-11-12 19:44:42,997 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_06101_00001_nis_o004_crf.fits
2024-11-12 19:44:43,263 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_06101_00002_nis_o004_crf.fits
2024-11-12 19:44:43,534 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_06101_00003_nis_o004_crf.fits
2024-11-12 19:44:43,799 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_08101_00001_nis_o004_crf.fits
2024-11-12 19:44:44,070 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_10101_00001_nis_o004_crf.fits
2024-11-12 19:44:44,351 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_10101_00002_nis_o004_crf.fits
2024-11-12 19:44:44,639 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_10101_00003_nis_o004_crf.fits
2024-11-12 19:44:44,926 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_10101_00004_nis_o004_crf.fits
2024-11-12 19:44:45,191 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_12101_00001_nis_o004_crf.fits
2024-11-12 19:44:45,455 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_12101_00002_nis_o004_crf.fits
2024-11-12 19:44:45,721 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004001_12101_00003_nis_o004_crf.fits
2024-11-12 19:44:45,996 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_02101_00001_nis_o004_crf.fits
2024-11-12 19:44:46,262 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_04101_00001_nis_o004_crf.fits
2024-11-12 19:44:46,723 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_04101_00002_nis_o004_crf.fits
2024-11-12 19:44:47,001 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_04101_00003_nis_o004_crf.fits
2024-11-12 19:44:47,273 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_04101_00004_nis_o004_crf.fits
2024-11-12 19:44:47,787 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_06101_00001_nis_o004_crf.fits
2024-11-12 19:44:48,055 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_06101_00002_nis_o004_crf.fits
2024-11-12 19:44:48,324 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in default_image3_calibrated/jw02079004002_06101_00003_nis_o004_crf.fits
2024-11-12 19:44:48,325 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done
2024-11-12 19:44:48,539 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe9786104d0>,).
2024-11-12 19:44:49,319 - stpipe.Image3Pipeline.resample - INFO - Driz parameter kernel: square
2024-11-12 19:44:49,319 - stpipe.Image3Pipeline.resample - INFO - Driz parameter pixfrac: 1.0
2024-11-12 19:44:49,320 - stpipe.Image3Pipeline.resample - INFO - Driz parameter fillval: NAN
2024-11-12 19:44:49,320 - stpipe.Image3Pipeline.resample - INFO - Driz parameter weight_type: ivm
2024-11-12 19:44:49,320 - stpipe.Image3Pipeline.resample - INFO - Output pixel scale ratio: 1.0
2024-11-12 19:44:49,515 - stpipe.Image3Pipeline.resample - INFO - Computed output pixel scale: 0.06556312845480262 arcsec.
2024-11-12 19:44:49,576 - stpipe.Image3Pipeline.resample - INFO - Resampling science data
2024-11-12 19:44:51,813 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:44:54,698 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:44:57,556 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:00,413 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:03,334 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:06,229 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:09,122 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:11,991 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:14,866 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:17,723 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:20,591 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:23,479 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:26,348 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:29,232 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:32,106 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:34,970 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:37,873 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:40,753 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:43,661 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:46,545 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:49,458 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:52,379 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:55,273 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:58,175 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:45:59,408 - stpipe.Image3Pipeline.resample - INFO - Resampling variance components
2024-11-12 19:46:01,528 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:04,528 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:07,458 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:10,341 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:13,259 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:16,154 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:19,016 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:21,934 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:24,843 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:27,704 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:30,611 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:33,499 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:36,383 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:39,291 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:42,182 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:45,065 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:47,949 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:50,819 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:53,667 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:56,527 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:46:59,370 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:02,242 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:05,105 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:08,006 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:10,886 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:13,855 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:16,757 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:19,642 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:22,536 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:25,406 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:28,296 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:31,167 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:34,043 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:36,908 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:39,823 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:42,686 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:45,590 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:48,475 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:51,332 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:54,187 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:57,072 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:47:59,959 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:02,848 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:05,732 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:08,632 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:11,535 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:14,460 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:17,351 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:20,211 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:23,094 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:25,944 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:28,811 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:31,678 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:34,558 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:37,404 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:40,305 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:43,158 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:45,997 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:48,867 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:51,715 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:54,582 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:48:57,444 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:49:00,291 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:49:03,158 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:49:06,026 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:49:08,905 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:49:11,760 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:49:14,665 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:49:17,515 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:49:20,361 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:49:23,225 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:49:26,067 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 19:49:26,991 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.147837671 -27.807256739 53.188375067 -27.794599516 53.174263777 -27.759240587 53.133737919 -27.771893695
2024-11-12 19:49:27,527 - stpipe.Image3Pipeline.resample - INFO - Saved model in default_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_i2d.fits
2024-11-12 19:49:27,528 - stpipe.Image3Pipeline.resample - INFO - Step resample done
2024-11-12 19:49:27,740 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2088, 2059) from jw02079-o004_t001_niriss_clear-f115w_i2d.fits>,).
2024-11-12 19:49:27,755 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file: crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2024-11-12 19:49:27,763 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file: crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2024-11-12 19:49:27,763 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRISS
2024-11-12 19:49:27,764 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NIS
2024-11-12 19:49:27,764 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: CLEAR
2024-11-12 19:49:27,765 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: F115W
2024-11-12 19:49:27,765 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL
2024-11-12 19:49:27,804 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 0.76458
2024-11-12 19:49:30,716 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 1584 sources
2024-11-12 19:49:31,684 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: default_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_cat.ecsv
2024-11-12 19:49:31,818 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in default_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_segm.fits
2024-11-12 19:49:31,819 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw02079-o004_t001_niriss_clear-f115w_segm.fits
2024-11-12 19:49:31,821 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done
2024-11-12 19:49:31,858 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done
2024-11-12 19:49:31,858 - stpipe - INFO - Results used jwst version: 1.16.0
# 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
2024-11-12 19:49:41,554 - stpipe - WARNING - /opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/site-packages/jdaviz/core/user_api.py:49: 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)
2024-11-12 19:49:43,520 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0079.asdf
2024-11-12 19:49:43,532 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0010.asdf
2024-11-12 19:49:43,546 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:49:43,555 - stpipe - INFO - PARS-SOURCECATALOGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0011.asdf
2024-11-12 19:49:43,570 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created.
2024-11-12 19:49:43,571 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created.
2024-11-12 19:49:43,573 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created.
2024-11-12 19:49:43,575 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created.
2024-11-12 19:49:43,576 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2024-11-12 19:49:43,577 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:49:43,578 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created.
2024-11-12 19:49:43,843 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('jw02079-o004_20231119t124442_image3_00005_asn.json',).
2024-11-12 19:49:43,856 - 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.2
sharphi: 3.0
roundlo: -1.0
roundhi: 1.0
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: INDEF
nlow: 0
nhigh: 0
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
allowed_memory: None
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
allowed_memory: None
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
2024-11-12 19:49:44,001 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004002_08101_00001_nis_cal.fits' reftypes = ['abvegaoffset', 'apcorr']
2024-11-12 19:49:44,004 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2024-11-12 19:49:44,005 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2024-11-12 19:49:44,006 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ...
2024-11-12 19:49:44,507 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe974331c90>,).
2024-11-12 19:49:45,856 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_08101_00001_nis_cal.fits.
2024-11-12 19:49:45,860 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_08101_00001_nis_cal_cat.ecsv
2024-11-12 19:49:47,461 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_10101_00001_nis_cal.fits.
2024-11-12 19:49:47,464 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_10101_00001_nis_cal_cat.ecsv
2024-11-12 19:49:49,049 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_10101_00002_nis_cal.fits.
2024-11-12 19:49:49,053 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_10101_00002_nis_cal_cat.ecsv
2024-11-12 19:49:50,639 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_10101_00003_nis_cal.fits.
2024-11-12 19:49:50,643 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_10101_00003_nis_cal_cat.ecsv
2024-11-12 19:49:52,226 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_10101_00004_nis_cal.fits.
2024-11-12 19:49:52,230 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_10101_00004_nis_cal_cat.ecsv
2024-11-12 19:49:53,831 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_12101_00001_nis_cal.fits.
2024-11-12 19:49:53,835 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_12101_00001_nis_cal_cat.ecsv
2024-11-12 19:49:55,449 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_12101_00002_nis_cal.fits.
2024-11-12 19:49:55,453 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_12101_00002_nis_cal_cat.ecsv
2024-11-12 19:49:57,060 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_12101_00003_nis_cal.fits.
2024-11-12 19:49:57,064 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_12101_00003_nis_cal_cat.ecsv
2024-11-12 19:49:57,087 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:49:57,087 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 8.
2024-11-12 19:49:57,088 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:49:57,088 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2024-11-12 19:49:57.088167
2024-11-12 19:49:57,089 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.8.9
2024-11-12 19:49:57,089 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:50:02,793 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw02079004002_12101_3' as reference image
2024-11-12 19:50:02,799 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_12101_1' to the reference catalog.
2024-11-12 19:50:02,844 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_12101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_12101_00003_nis_cal' catalog.
2024-11-12 19:50:02,844 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:50:02,846 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01595, 0.01595 (arcsec) with significance of 35.21 and 44 matches.
2024-11-12 19:50:02,847 - stpipe.Image3Pipeline.tweakreg - INFO - Found 50 matches for 'GROUP ID: jw02079004002_12101_1'...
2024-11-12 19:50:02,847 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:50:02,850 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_12101_1:
2024-11-12 19:50:02,850 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0133161 YSH: -0.111306
2024-11-12 19:50:02,850 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:50:02,851 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.208723 FIT MAE: 0.174513
2024-11-12 19:50:02,851 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 49 objects.
2024-11-12 19:50:02,894 - stpipe.Image3Pipeline.tweakreg - INFO - Added 50 unmatched sources from 'GROUP ID: jw02079004002_12101_1' to the reference catalog.
2024-11-12 19:50:04,140 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_12101_2' to the reference catalog.
2024-11-12 19:50:04,187 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_12101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_12101_00001_nis_cal' catalog.
2024-11-12 19:50:04,188 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:50:04,190 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01724, 0.04552 (arcsec) with significance of 31.03 and 51 matches.
2024-11-12 19:50:04,191 - stpipe.Image3Pipeline.tweakreg - INFO - Found 66 matches for 'GROUP ID: jw02079004002_12101_2'...
2024-11-12 19:50:04,192 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:50:04,193 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_12101_2:
2024-11-12 19:50:04,194 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.1287 YSH: 0.03674
2024-11-12 19:50:04,194 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:50:04,195 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.286498 FIT MAE: 0.243796
2024-11-12 19:50:04,195 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 66 objects.
2024-11-12 19:50:04,244 - stpipe.Image3Pipeline.tweakreg - INFO - Added 34 unmatched sources from 'GROUP ID: jw02079004002_12101_2' to the reference catalog.
2024-11-12 19:50:05,234 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_1' to the reference catalog.
2024-11-12 19:50:05,285 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_12101_00002_nis_cal' catalog.
2024-11-12 19:50:05,286 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:50:05,288 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.0209, 0.03822 (arcsec) with significance of 31.18 and 53 matches.
2024-11-12 19:50:05,289 - stpipe.Image3Pipeline.tweakreg - INFO - Found 51 matches for 'GROUP ID: jw02079004002_10101_1'...
2024-11-12 19:50:05,289 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:50:05,292 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_10101_1:
2024-11-12 19:50:05,292 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0096556 YSH: -0.0234557
2024-11-12 19:50:05,293 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:50:05,293 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.065002 FIT MAE: 0.0500273
2024-11-12 19:50:05,294 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 50 objects.
2024-11-12 19:50:05,337 - stpipe.Image3Pipeline.tweakreg - INFO - Added 49 unmatched sources from 'GROUP ID: jw02079004002_10101_1' to the reference catalog.
2024-11-12 19:50:06,056 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_3' to the reference catalog.
2024-11-12 19:50:06,104 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00001_nis_cal' catalog.
2024-11-12 19:50:06,105 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:50:06,106 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.02521, 0.007453 (arcsec) with significance of 35.51 and 59 matches.
2024-11-12 19:50:06,107 - stpipe.Image3Pipeline.tweakreg - INFO - Found 60 matches for 'GROUP ID: jw02079004002_10101_3'...
2024-11-12 19:50:06,108 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:50:06,110 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_10101_3:
2024-11-12 19:50:06,111 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00734845 YSH: 0.0334065
2024-11-12 19:50:06,111 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:50:06,111 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.208559 FIT MAE: 0.134951
2024-11-12 19:50:06,112 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 59 objects.
2024-11-12 19:50:06,156 - stpipe.Image3Pipeline.tweakreg - INFO - Added 40 unmatched sources from 'GROUP ID: jw02079004002_10101_3' to the reference catalog.
2024-11-12 19:50:06,683 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_08101_1' to the reference catalog.
2024-11-12 19:50:06,731 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_08101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00003_nis_cal' catalog.
2024-11-12 19:50:06,731 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:50:06,733 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.02997, 0.04492 (arcsec) with significance of 39.26 and 72 matches.
2024-11-12 19:50:06,734 - stpipe.Image3Pipeline.tweakreg - INFO - Found 59 matches for 'GROUP ID: jw02079004002_08101_1'...
2024-11-12 19:50:06,735 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:50:06,737 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_08101_1:
2024-11-12 19:50:06,738 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.000817138 YSH: -0.018729
2024-11-12 19:50:06,738 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:50:06,739 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0975221 FIT MAE: 0.0531199
2024-11-12 19:50:06,739 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 56 objects.
2024-11-12 19:50:07,089 - stpipe.Image3Pipeline.tweakreg - INFO - Added 41 unmatched sources from 'GROUP ID: jw02079004002_08101_1' to the reference catalog.
2024-11-12 19:50:07,420 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_2' to the reference catalog.
2024-11-12 19:50:07,472 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_08101_00001_nis_cal' catalog.
2024-11-12 19:50:07,473 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:50:07,475 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.05316, 0.02137 (arcsec) with significance of 38.35 and 81 matches.
2024-11-12 19:50:07,476 - stpipe.Image3Pipeline.tweakreg - INFO - Found 65 matches for 'GROUP ID: jw02079004002_10101_2'...
2024-11-12 19:50:07,477 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:50:07,479 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_10101_2:
2024-11-12 19:50:07,479 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0528691 YSH: -0.0159834
2024-11-12 19:50:07,479 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:50:07,480 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.162939 FIT MAE: 0.106055
2024-11-12 19:50:07,480 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 62 objects.
2024-11-12 19:50:07,537 - stpipe.Image3Pipeline.tweakreg - INFO - Added 35 unmatched sources from 'GROUP ID: jw02079004002_10101_2' to the reference catalog.
2024-11-12 19:50:07,711 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_10101_4' to the reference catalog.
2024-11-12 19:50:07,759 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_10101_00004_nis_cal' catalog with sources from the reference 'jw02079004002_10101_00002_nis_cal' catalog.
2024-11-12 19:50:07,759 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:50:07,761 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.005294, 0.04837 (arcsec) with significance of 32.15 and 67 matches.
2024-11-12 19:50:07,762 - stpipe.Image3Pipeline.tweakreg - INFO - Found 64 matches for 'GROUP ID: jw02079004002_10101_4'...
2024-11-12 19:50:07,762 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:50:07,765 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_10101_4:
2024-11-12 19:50:07,765 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.182032 YSH: 0.0694145
2024-11-12 19:50:07,765 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:50:07,766 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.402083 FIT MAE: 0.336413
2024-11-12 19:50:07,766 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 64 objects.
2024-11-12 19:50:07,812 - stpipe.Image3Pipeline.tweakreg - INFO - Added 36 unmatched sources from 'GROUP ID: jw02079004002_10101_4' to the reference catalog.
2024-11-12 19:50:07,812 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:50:07,813 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2024-11-12 19:50:07.812654
2024-11-12 19:50:07,813 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:10.724487
2024-11-12 19:50:07,813 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:50:08,606 - 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!
2024-11-12 19:50:08,613 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done
2024-11-12 19:50:08,926 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe974331c90>,).
2024-11-12 19:50:09,084 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:50:09,085 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2024-11-12 19:50:09.084424
2024-11-12 19:50:09,085 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:50:09,085 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'match'
2024-11-12 19:50:09,086 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN
2024-11-12 19:50:09,086 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF
2024-11-12 19:50:09,087 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:50:09,087 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions.
2024-11-12 19:50:38,669 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_08101_00001_nis_cal.fits. Sky background: 0.00700732
2024-11-12 19:50:38,669 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00001_nis_cal.fits. Sky background: 0
2024-11-12 19:50:38,670 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00002_nis_cal.fits. Sky background: 0.00714935
2024-11-12 19:50:38,670 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00003_nis_cal.fits. Sky background: 0.00900399
2024-11-12 19:50:38,670 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_10101_00004_nis_cal.fits. Sky background: 0.0122178
2024-11-12 19:50:38,671 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_12101_00001_nis_cal.fits. Sky background: 0.0119847
2024-11-12 19:50:38,672 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_12101_00002_nis_cal.fits. Sky background: 0.00980498
2024-11-12 19:50:38,673 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_12101_00003_nis_cal.fits. Sky background: 0.0091688
2024-11-12 19:50:38,673 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:50:38,673 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2024-11-12 19:50:38.673431
2024-11-12 19:50:38,674 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:29.589007
2024-11-12 19:50:38,674 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:50:38,693 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done
2024-11-12 19:50:38,980 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe974331c90>,).
2024-11-12 19:50:38,981 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection mode: imaging
2024-11-12 19:50:38,981 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection asn_id: o004
2024-11-12 19:50:38,982 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter kernel: square
2024-11-12 19:50:38,982 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter pixfrac: 1.0
2024-11-12 19:50:38,983 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter fillval: INDEF
2024-11-12 19:50:38,983 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter weight_type: ivm
2024-11-12 19:50:38,984 - stpipe.Image3Pipeline.outlier_detection - INFO - Output pixel scale ratio: 1.0
2024-11-12 19:50:39,058 - stpipe.Image3Pipeline.outlier_detection - INFO - Computed output pixel scale: 0.0655645109798961 arcsec.
2024-11-12 19:50:39,102 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:50:41,142 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:50:42,113 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_08101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:50:42,120 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:50:44,114 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:50:45,082 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_10101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:50:45,089 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:50:47,076 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:50:48,043 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_10101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:50:48,050 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:50:50,045 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:50:51,018 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_10101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:50:51,025 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:50:53,020 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:50:53,984 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_10101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:50:53,991 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:50:55,974 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:50:56,939 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_12101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:50:56,946 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:50:58,935 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:50:59,908 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_12101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:50:59,915 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:51:01,939 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:51:02,907 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_12101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:51:02,912 - stpipe.Image3Pipeline.outlier_detection - WARNING - /opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/site-packages/jwst/associations/association.py:215: UserWarning: Input association file contains path information; note that this can complicate usage and/or sharing of such files.
warnings.warn(err_str, UserWarning)
2024-11-12 19:51:10,020 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_08101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:51:10,032 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_10101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:51:10,046 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_10101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:51:10,059 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_10101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:51:10,072 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_10101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:51:10,084 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_12101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:51:10,097 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_12101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:51:10,111 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_12101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:51:12,119 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:51:12,388 - stpipe.Image3Pipeline.outlier_detection - INFO - 6141 pixels marked as outliers
2024-11-12 19:51:14,396 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:51:14,664 - stpipe.Image3Pipeline.outlier_detection - INFO - 6339 pixels marked as outliers
2024-11-12 19:51:16,703 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:51:16,972 - stpipe.Image3Pipeline.outlier_detection - INFO - 6469 pixels marked as outliers
2024-11-12 19:51:18,984 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:51:19,256 - stpipe.Image3Pipeline.outlier_detection - INFO - 6143 pixels marked as outliers
2024-11-12 19:51:21,295 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:51:21,562 - stpipe.Image3Pipeline.outlier_detection - INFO - 6451 pixels marked as outliers
2024-11-12 19:51:23,570 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:51:23,838 - stpipe.Image3Pipeline.outlier_detection - INFO - 6392 pixels marked as outliers
2024-11-12 19:51:25,849 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:51:26,123 - stpipe.Image3Pipeline.outlier_detection - INFO - 6206 pixels marked as outliers
2024-11-12 19:51:28,137 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2145, 2112)
2024-11-12 19:51:28,412 - stpipe.Image3Pipeline.outlier_detection - INFO - 6278 pixels marked as outliers
2024-11-12 19:51:28,712 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_08101_00001_nis_o004_crf.fits
2024-11-12 19:51:28,972 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_10101_00001_nis_o004_crf.fits
2024-11-12 19:51:29,233 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_10101_00002_nis_o004_crf.fits
2024-11-12 19:51:29,495 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_10101_00003_nis_o004_crf.fits
2024-11-12 19:51:29,753 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_10101_00004_nis_o004_crf.fits
2024-11-12 19:51:30,316 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_12101_00001_nis_o004_crf.fits
2024-11-12 19:51:30,585 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_12101_00002_nis_o004_crf.fits
2024-11-12 19:51:30,849 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_12101_00003_nis_o004_crf.fits
2024-11-12 19:51:30,850 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done
2024-11-12 19:51:31,118 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe974331c90>,).
2024-11-12 19:51:31,366 - stpipe.Image3Pipeline.resample - INFO - Driz parameter kernel: square
2024-11-12 19:51:31,366 - stpipe.Image3Pipeline.resample - INFO - Driz parameter pixfrac: 1.0
2024-11-12 19:51:31,367 - stpipe.Image3Pipeline.resample - INFO - Driz parameter fillval: NAN
2024-11-12 19:51:31,367 - stpipe.Image3Pipeline.resample - INFO - Driz parameter weight_type: ivm
2024-11-12 19:51:31,367 - stpipe.Image3Pipeline.resample - INFO - Output pixel scale ratio: 1.0
2024-11-12 19:51:31,444 - stpipe.Image3Pipeline.resample - INFO - Computed output pixel scale: 0.0655645109798961 arcsec.
2024-11-12 19:51:31,504 - stpipe.Image3Pipeline.resample - INFO - Resampling science data
2024-11-12 19:51:33,509 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:51:36,327 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:51:39,200 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:51:42,038 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:51:44,886 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:51:47,745 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:51:50,576 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:51:53,401 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:51:54,624 - stpipe.Image3Pipeline.resample - INFO - Resampling variance components
2024-11-12 19:51:56,601 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:51:59,459 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:02,312 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:05,180 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:08,009 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:10,851 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:13,689 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:16,515 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:19,351 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:22,213 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:25,075 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:27,923 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:30,771 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:33,620 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:36,457 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:39,334 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:42,236 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:45,093 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:47,953 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:50,812 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:53,656 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:56,492 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:52:59,329 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:53:02,177 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2145, 2112)
2024-11-12 19:53:03,101 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.147101661 -27.808518168 53.188747124 -27.795515512 53.174272521 -27.759245567 53.132639218 -27.772243886
2024-11-12 19:53:03,644 - stpipe.Image3Pipeline.resample - INFO - Saved model in custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_i2d.fits
2024-11-12 19:53:03,645 - stpipe.Image3Pipeline.resample - INFO - Step resample done
2024-11-12 19:53:03,921 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2145, 2112) from jw02079-o004_t001_niriss_clear-f150w_i2d.fits>,).
2024-11-12 19:53:03,936 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file: crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2024-11-12 19:53:03,944 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file: crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2024-11-12 19:53:03,945 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRISS
2024-11-12 19:53:03,945 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NIS
2024-11-12 19:53:03,946 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: CLEAR
2024-11-12 19:53:03,946 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: F150W
2024-11-12 19:53:03,947 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL
2024-11-12 19:53:03,986 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 1.19753
2024-11-12 19:53:10,492 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 229 sources
2024-11-12 19:53:10,844 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_cat.ecsv
2024-11-12 19:53:10,978 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_segm.fits
2024-11-12 19:53:10,979 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw02079-o004_t001_niriss_clear-f150w_segm.fits
2024-11-12 19:53:10,980 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done
2024-11-12 19:53:10,989 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done
2024-11-12 19:53:10,990 - stpipe - INFO - Results used jwst version: 1.16.0
# 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
2024-11-12 19:53:13,700 - stpipe - WARNING - /opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/site-packages/jdaviz/core/user_api.py:49: 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)
2024-11-12 19:53:14,688 - stpipe - WARNING - /opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/site-packages/jdaviz/core/user_api.py:49: 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)
2024-11-12 19:53:15,443 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0075.asdf
2024-11-12 19:53:15,455 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0002.asdf
2024-11-12 19:53:15,470 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:53:15,479 - stpipe - INFO - PARS-SOURCECATALOGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0002.asdf
2024-11-12 19:53:15,495 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created.
2024-11-12 19:53:15,496 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created.
2024-11-12 19:53:15,498 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created.
2024-11-12 19:53:15,500 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created.
2024-11-12 19:53:15,501 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2024-11-12 19:53:15,502 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:53:15,504 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created.
2024-11-12 19:53:15,800 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('jw02079-o004_20231119t124442_image3_00002_asn.json',).
2024-11-12 19:53:15,814 - 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.2
sharphi: 3.0
roundlo: -1.0
roundhi: 1.0
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: INDEF
nlow: 0
nhigh: 0
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
allowed_memory: None
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
allowed_memory: None
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
2024-11-12 19:53:15,958 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004003_02101_00001_nis_cal.fits' reftypes = ['abvegaoffset', 'apcorr']
2024-11-12 19:53:15,961 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2024-11-12 19:53:15,962 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2024-11-12 19:53:15,963 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ...
2024-11-12 19:53:16,536 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe97454f810>,).
2024-11-12 19:53:17,899 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_02101_00001_nis_cal.fits.
2024-11-12 19:53:17,903 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_02101_00001_nis_cal_cat.ecsv
2024-11-12 19:53:19,501 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_04101_00001_nis_cal.fits.
2024-11-12 19:53:19,504 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_04101_00001_nis_cal_cat.ecsv
2024-11-12 19:53:21,025 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_04101_00002_nis_cal.fits.
2024-11-12 19:53:21,029 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_04101_00002_nis_cal_cat.ecsv
2024-11-12 19:53:22,616 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_04101_00003_nis_cal.fits.
2024-11-12 19:53:22,620 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_04101_00003_nis_cal_cat.ecsv
2024-11-12 19:53:24,217 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_04101_00004_nis_cal.fits.
2024-11-12 19:53:24,221 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_04101_00004_nis_cal_cat.ecsv
2024-11-12 19:53:25,822 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_06101_00001_nis_cal.fits.
2024-11-12 19:53:25,826 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_06101_00001_nis_cal_cat.ecsv
2024-11-12 19:53:27,364 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_06101_00002_nis_cal.fits.
2024-11-12 19:53:27,368 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_06101_00002_nis_cal_cat.ecsv
2024-11-12 19:53:28,977 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004003_06101_00003_nis_cal.fits.
2024-11-12 19:53:28,981 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004003_06101_00003_nis_cal_cat.ecsv
2024-11-12 19:53:29,004 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:53:29,004 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 8.
2024-11-12 19:53:29,005 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:53:29,005 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2024-11-12 19:53:29.005474
2024-11-12 19:53:29,006 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.8.9
2024-11-12 19:53:29,006 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:53:34,463 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw02079004003_06101_3' as reference image
2024-11-12 19:53:34,469 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_06101_1' to the reference catalog.
2024-11-12 19:53:34,519 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_06101_00001_nis_cal' catalog with sources from the reference 'jw02079004003_06101_00003_nis_cal' catalog.
2024-11-12 19:53:34,520 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:53:34,522 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.013, 0.013 (arcsec) with significance of 41.45 and 46 matches.
2024-11-12 19:53:34,523 - stpipe.Image3Pipeline.tweakreg - INFO - Found 51 matches for 'GROUP ID: jw02079004003_06101_1'...
2024-11-12 19:53:34,523 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:53:34,525 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_06101_1:
2024-11-12 19:53:34,526 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0100532 YSH: -0.0557324
2024-11-12 19:53:34,526 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:53:34,527 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.189273 FIT MAE: 0.121599
2024-11-12 19:53:34,527 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 50 objects.
2024-11-12 19:53:34,570 - stpipe.Image3Pipeline.tweakreg - INFO - Added 49 unmatched sources from 'GROUP ID: jw02079004003_06101_1' to the reference catalog.
2024-11-12 19:53:35,454 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_4' to the reference catalog.
2024-11-12 19:53:35,502 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00004_nis_cal' catalog with sources from the reference 'jw02079004003_06101_00001_nis_cal' catalog.
2024-11-12 19:53:35,502 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:53:35,504 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01476, 0.03333 (arcsec) with significance of 32.11 and 60 matches.
2024-11-12 19:53:35,506 - stpipe.Image3Pipeline.tweakreg - INFO - Found 64 matches for 'GROUP ID: jw02079004003_04101_4'...
2024-11-12 19:53:35,506 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:53:35,508 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_04101_4:
2024-11-12 19:53:35,509 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.101712 YSH: 0.0532736
2024-11-12 19:53:35,509 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:53:35,510 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.354198 FIT MAE: 0.245439
2024-11-12 19:53:35,510 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 64 objects.
2024-11-12 19:53:35,554 - stpipe.Image3Pipeline.tweakreg - INFO - Added 36 unmatched sources from 'GROUP ID: jw02079004003_04101_4' to the reference catalog.
2024-11-12 19:53:36,335 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_06101_2' to the reference catalog.
2024-11-12 19:53:36,387 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_06101_00002_nis_cal' catalog with sources from the reference 'jw02079004003_04101_00004_nis_cal' catalog.
2024-11-12 19:53:36,387 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:53:36,389 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.01819, -0.07201 (arcsec) with significance of 37.1 and 71 matches.
2024-11-12 19:53:36,390 - stpipe.Image3Pipeline.tweakreg - INFO - Found 66 matches for 'GROUP ID: jw02079004003_06101_2'...
2024-11-12 19:53:36,391 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:53:36,393 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_06101_2:
2024-11-12 19:53:36,393 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0492076 YSH: 0.00242501
2024-11-12 19:53:36,394 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:53:36,394 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.170709 FIT MAE: 0.109286
2024-11-12 19:53:36,395 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 65 objects.
2024-11-12 19:53:36,439 - stpipe.Image3Pipeline.tweakreg - INFO - Added 34 unmatched sources from 'GROUP ID: jw02079004003_06101_2' to the reference catalog.
2024-11-12 19:53:37,120 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_3' to the reference catalog.
2024-11-12 19:53:37,170 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00003_nis_cal' catalog with sources from the reference 'jw02079004003_06101_00002_nis_cal' catalog.
2024-11-12 19:53:37,171 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:53:37,173 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.008427, 0.02822 (arcsec) with significance of 25.8 and 53 matches.
2024-11-12 19:53:37,174 - stpipe.Image3Pipeline.tweakreg - INFO - Found 49 matches for 'GROUP ID: jw02079004003_04101_3'...
2024-11-12 19:53:37,175 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:53:37,177 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_04101_3:
2024-11-12 19:53:37,177 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.000484031 YSH: -0.00713669
2024-11-12 19:53:37,178 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:53:37,178 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0513374 FIT MAE: 0.0353998
2024-11-12 19:53:37,179 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 48 objects.
2024-11-12 19:53:37,222 - stpipe.Image3Pipeline.tweakreg - INFO - Added 51 unmatched sources from 'GROUP ID: jw02079004003_04101_3' to the reference catalog.
2024-11-12 19:53:37,795 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_02101_1' to the reference catalog.
2024-11-12 19:53:37,843 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_02101_00001_nis_cal' catalog with sources from the reference 'jw02079004003_04101_00003_nis_cal' catalog.
2024-11-12 19:53:37,843 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:53:37,845 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.003483, 0.008098 (arcsec) with significance of 43.91 and 71 matches.
2024-11-12 19:53:37,847 - stpipe.Image3Pipeline.tweakreg - INFO - Found 61 matches for 'GROUP ID: jw02079004003_02101_1'...
2024-11-12 19:53:37,847 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:53:37,849 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_02101_1:
2024-11-12 19:53:37,850 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0677414 YSH: 0.0363887
2024-11-12 19:53:37,850 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:53:37,850 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.299436 FIT MAE: 0.182924
2024-11-12 19:53:37,851 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 61 objects.
2024-11-12 19:53:37,896 - stpipe.Image3Pipeline.tweakreg - INFO - Added 39 unmatched sources from 'GROUP ID: jw02079004003_02101_1' to the reference catalog.
2024-11-12 19:53:38,348 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_2' to the reference catalog.
2024-11-12 19:53:38,399 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00002_nis_cal' catalog with sources from the reference 'jw02079004003_02101_00001_nis_cal' catalog.
2024-11-12 19:53:38,400 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:53:38,402 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.0195, 0.03488 (arcsec) with significance of 43.24 and 89 matches.
2024-11-12 19:53:38,403 - stpipe.Image3Pipeline.tweakreg - INFO - Found 67 matches for 'GROUP ID: jw02079004003_04101_2'...
2024-11-12 19:53:38,404 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:53:38,406 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_04101_2:
2024-11-12 19:53:38,406 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0556434 YSH: 0.00457363
2024-11-12 19:53:38,406 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:53:38,407 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.172654 FIT MAE: 0.112863
2024-11-12 19:53:38,408 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 67 objects.
2024-11-12 19:53:38,451 - stpipe.Image3Pipeline.tweakreg - INFO - Added 33 unmatched sources from 'GROUP ID: jw02079004003_04101_2' to the reference catalog.
2024-11-12 19:53:38,590 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004003_04101_1' to the reference catalog.
2024-11-12 19:53:39,008 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004003_04101_00001_nis_cal' catalog with sources from the reference 'jw02079004003_04101_00002_nis_cal' catalog.
2024-11-12 19:53:39,008 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:53:39,010 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.03723, 0.006278 (arcsec) with significance of 40.7 and 96 matches.
2024-11-12 19:53:39,012 - stpipe.Image3Pipeline.tweakreg - INFO - Found 59 matches for 'GROUP ID: jw02079004003_04101_1'...
2024-11-12 19:53:39,013 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:53:39,015 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004003_04101_1:
2024-11-12 19:53:39,015 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00298966 YSH: -0.0498054
2024-11-12 19:53:39,015 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:53:39,016 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.174233 FIT MAE: 0.104748
2024-11-12 19:53:39,016 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 58 objects.
2024-11-12 19:53:39,061 - stpipe.Image3Pipeline.tweakreg - INFO - Added 41 unmatched sources from 'GROUP ID: jw02079004003_04101_1' to the reference catalog.
2024-11-12 19:53:39,061 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:53:39,062 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2024-11-12 19:53:39.061594
2024-11-12 19:53:39,062 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:10.056120
2024-11-12 19:53:39,062 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:53:39,804 - 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!
2024-11-12 19:53:39,811 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done
2024-11-12 19:53:40,149 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe97454f810>,).
2024-11-12 19:53:40,304 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:53:40,305 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2024-11-12 19:53:40.304400
2024-11-12 19:53:40,305 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:53:40,306 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'match'
2024-11-12 19:53:40,306 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN
2024-11-12 19:53:40,307 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF
2024-11-12 19:53:40,307 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:53:40,308 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions.
2024-11-12 19:54:09,142 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_02101_00001_nis_cal.fits. Sky background: 0.00406967
2024-11-12 19:54:09,143 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00001_nis_cal.fits. Sky background: 0.00697517
2024-11-12 19:54:09,143 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00002_nis_cal.fits. Sky background: 0.00251737
2024-11-12 19:54:09,144 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00003_nis_cal.fits. Sky background: 0.0108182
2024-11-12 19:54:09,144 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_04101_00004_nis_cal.fits. Sky background: 0.0090661
2024-11-12 19:54:09,145 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_06101_00001_nis_cal.fits. Sky background: 0.00897341
2024-11-12 19:54:09,145 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_06101_00002_nis_cal.fits. Sky background: 0
2024-11-12 19:54:09,146 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004003_06101_00003_nis_cal.fits. Sky background: 0.00684062
2024-11-12 19:54:09,146 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:54:09,147 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2024-11-12 19:54:09.146812
2024-11-12 19:54:09,147 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:28.842412
2024-11-12 19:54:09,148 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:54:09,166 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done
2024-11-12 19:54:09,482 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe97454f810>,).
2024-11-12 19:54:09,482 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection mode: imaging
2024-11-12 19:54:09,483 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection asn_id: o004
2024-11-12 19:54:09,485 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter kernel: square
2024-11-12 19:54:09,486 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter pixfrac: 1.0
2024-11-12 19:54:09,486 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter fillval: INDEF
2024-11-12 19:54:09,487 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter weight_type: ivm
2024-11-12 19:54:09,487 - stpipe.Image3Pipeline.outlier_detection - INFO - Output pixel scale ratio: 1.0
2024-11-12 19:54:09,562 - stpipe.Image3Pipeline.outlier_detection - INFO - Computed output pixel scale: 0.06556229340666292 arcsec.
2024-11-12 19:54:09,607 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:54:11,630 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:54:12,609 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_02101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:54:12,616 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:54:14,628 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:54:15,602 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_04101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:54:15,609 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:54:17,616 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:54:18,591 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_04101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:54:18,599 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:54:20,613 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:54:21,590 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_04101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:54:21,597 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:54:23,611 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:54:24,588 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_04101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:54:24,595 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:54:26,586 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:54:27,561 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_06101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:54:27,568 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:54:29,569 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:54:30,554 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_06101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:54:30,561 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 19:54:32,554 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:54:33,529 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_06101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:54:33,534 - stpipe.Image3Pipeline.outlier_detection - WARNING - /opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/site-packages/jwst/associations/association.py:215: UserWarning: Input association file contains path information; note that this can complicate usage and/or sharing of such files.
warnings.warn(err_str, UserWarning)
2024-11-12 19:54:40,899 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004003_02101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:54:40,914 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004003_04101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:54:40,927 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004003_04101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:54:40,940 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004003_04101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:54:40,954 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004003_04101_00004_nis_o004_outlier_i2d.fits
2024-11-12 19:54:40,968 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004003_06101_00001_nis_o004_outlier_i2d.fits
2024-11-12 19:54:40,983 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004003_06101_00002_nis_o004_outlier_i2d.fits
2024-11-12 19:54:40,997 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004003_06101_00003_nis_o004_outlier_i2d.fits
2024-11-12 19:54:43,012 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:54:43,271 - stpipe.Image3Pipeline.outlier_detection - INFO - 3766 pixels marked as outliers
2024-11-12 19:54:45,309 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:54:45,564 - stpipe.Image3Pipeline.outlier_detection - INFO - 4524 pixels marked as outliers
2024-11-12 19:54:47,591 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:54:47,847 - stpipe.Image3Pipeline.outlier_detection - INFO - 4133 pixels marked as outliers
2024-11-12 19:54:49,874 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:54:50,129 - stpipe.Image3Pipeline.outlier_detection - INFO - 3554 pixels marked as outliers
2024-11-12 19:54:52,143 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:54:52,405 - stpipe.Image3Pipeline.outlier_detection - INFO - 3756 pixels marked as outliers
2024-11-12 19:54:54,440 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:54:54,693 - stpipe.Image3Pipeline.outlier_detection - INFO - 4099 pixels marked as outliers
2024-11-12 19:54:56,714 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:54:56,970 - stpipe.Image3Pipeline.outlier_detection - INFO - 4428 pixels marked as outliers
2024-11-12 19:54:58,991 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2236, 2202)
2024-11-12 19:54:59,247 - stpipe.Image3Pipeline.outlier_detection - INFO - 3905 pixels marked as outliers
2024-11-12 19:54:59,556 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_02101_00001_nis_o004_crf.fits
2024-11-12 19:54:59,817 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_04101_00001_nis_o004_crf.fits
2024-11-12 19:55:00,077 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_04101_00002_nis_o004_crf.fits
2024-11-12 19:55:00,338 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_04101_00003_nis_o004_crf.fits
2024-11-12 19:55:00,598 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_04101_00004_nis_o004_crf.fits
2024-11-12 19:55:00,859 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_06101_00001_nis_o004_crf.fits
2024-11-12 19:55:01,474 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_06101_00002_nis_o004_crf.fits
2024-11-12 19:55:01,742 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004003_06101_00003_nis_o004_crf.fits
2024-11-12 19:55:01,743 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done
2024-11-12 19:55:02,062 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe97454f810>,).
2024-11-12 19:55:02,312 - stpipe.Image3Pipeline.resample - INFO - Driz parameter kernel: square
2024-11-12 19:55:02,312 - stpipe.Image3Pipeline.resample - INFO - Driz parameter pixfrac: 1.0
2024-11-12 19:55:02,313 - stpipe.Image3Pipeline.resample - INFO - Driz parameter fillval: NAN
2024-11-12 19:55:02,313 - stpipe.Image3Pipeline.resample - INFO - Driz parameter weight_type: ivm
2024-11-12 19:55:02,314 - stpipe.Image3Pipeline.resample - INFO - Output pixel scale ratio: 1.0
2024-11-12 19:55:02,390 - stpipe.Image3Pipeline.resample - INFO - Computed output pixel scale: 0.06556229340666292 arcsec.
2024-11-12 19:55:02,450 - stpipe.Image3Pipeline.resample - INFO - Resampling science data
2024-11-12 19:55:04,475 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:07,322 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:10,169 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:13,016 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:15,874 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:18,733 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:21,572 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:24,416 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:25,639 - stpipe.Image3Pipeline.resample - INFO - Resampling variance components
2024-11-12 19:55:27,630 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:30,496 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:33,389 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:36,227 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:39,125 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:41,969 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:44,821 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:47,688 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:50,558 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:53,391 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:56,261 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:55:59,103 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:56:01,966 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:56:04,849 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:56:07,705 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:56:10,539 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:56:13,421 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:56:16,281 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:56:19,128 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:56:22,026 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:56:24,885 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:56:27,737 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:56:30,621 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:56:33,482 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2236, 2202)
2024-11-12 19:56:34,410 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.145923829 -27.810578145 53.189335285 -27.797024250 53.174243996 -27.759210077 53.130845755 -27.772759259
2024-11-12 19:56:34,959 - stpipe.Image3Pipeline.resample - INFO - Saved model in custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_i2d.fits
2024-11-12 19:56:34,960 - stpipe.Image3Pipeline.resample - INFO - Step resample done
2024-11-12 19:56:35,279 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2236, 2202) from jw02079-o004_t001_niriss_clear-f200w_i2d.fits>,).
2024-11-12 19:56:35,294 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file: crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2024-11-12 19:56:35,302 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file: crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2024-11-12 19:56:35,303 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRISS
2024-11-12 19:56:35,303 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NIS
2024-11-12 19:56:35,303 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: CLEAR
2024-11-12 19:56:35,304 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: F200W
2024-11-12 19:56:35,304 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL
2024-11-12 19:56:35,344 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 1.68884
2024-11-12 19:56:42,385 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 270 sources
2024-11-12 19:56:42,766 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_cat.ecsv
2024-11-12 19:56:42,903 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f200w_segm.fits
2024-11-12 19:56:42,904 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw02079-o004_t001_niriss_clear-f200w_segm.fits
2024-11-12 19:56:42,905 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done
2024-11-12 19:56:42,917 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done
2024-11-12 19:56:42,918 - stpipe - INFO - Results used jwst version: 1.16.0
2024-11-12 19:56:43,114 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0078.asdf
custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f150w_i2d.fits cal file already exists.
2024-11-12 19:56:43,127 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0006.asdf
2024-11-12 19:56:43,141 - stpipe - INFO - PARS-RESAMPLESTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2024-11-12 19:56:43,150 - stpipe - INFO - PARS-SOURCECATALOGSTEP parameters found: crds_cache/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0010.asdf
2024-11-12 19:56:43,165 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created.
2024-11-12 19:56:43,166 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created.
2024-11-12 19:56:43,168 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created.
2024-11-12 19:56:43,169 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created.
2024-11-12 19:56:43,170 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2024-11-12 19:56:43,172 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created.
2024-11-12 19:56:43,174 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created.
2024-11-12 19:56:43,476 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('jw02079-o004_20231119t124442_image3_00009_asn.json',).
2024-11-12 19:56:43,491 - 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.2
sharphi: 3.0
roundlo: -1.0
roundhi: 1.0
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: INDEF
nlow: 0
nhigh: 0
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
allowed_memory: None
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
allowed_memory: None
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
2024-11-12 19:56:43,635 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw02079004001_02101_00001_nis_cal.fits' reftypes = ['abvegaoffset', 'apcorr']
2024-11-12 19:56:43,638 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2024-11-12 19:56:43,639 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is 'crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2024-11-12 19:56:43,641 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ...
2024-11-12 19:56:44,408 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe973863d90>,).
2024-11-12 19:56:45,769 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_02101_00001_nis_cal.fits.
2024-11-12 19:56:45,773 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_02101_00001_nis_cal_cat.ecsv
2024-11-12 19:56:47,284 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_04101_00001_nis_cal.fits.
2024-11-12 19:56:47,288 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_04101_00001_nis_cal_cat.ecsv
2024-11-12 19:56:48,877 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_04101_00002_nis_cal.fits.
2024-11-12 19:56:48,881 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_04101_00002_nis_cal_cat.ecsv
2024-11-12 19:56:50,401 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_04101_00003_nis_cal.fits.
2024-11-12 19:56:50,405 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_04101_00003_nis_cal_cat.ecsv
2024-11-12 19:56:52,005 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_04101_00004_nis_cal.fits.
2024-11-12 19:56:52,009 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_04101_00004_nis_cal_cat.ecsv
2024-11-12 19:56:53,608 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_06101_00001_nis_cal.fits.
2024-11-12 19:56:53,611 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_06101_00001_nis_cal_cat.ecsv
2024-11-12 19:56:55,229 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_06101_00002_nis_cal.fits.
2024-11-12 19:56:55,233 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_06101_00002_nis_cal_cat.ecsv
2024-11-12 19:56:56,837 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_06101_00003_nis_cal.fits.
2024-11-12 19:56:56,842 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_06101_00003_nis_cal_cat.ecsv
2024-11-12 19:56:58,448 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_08101_00001_nis_cal.fits.
2024-11-12 19:56:58,452 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_08101_00001_nis_cal_cat.ecsv
2024-11-12 19:57:00,059 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_10101_00001_nis_cal.fits.
2024-11-12 19:57:00,063 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_10101_00001_nis_cal_cat.ecsv
2024-11-12 19:57:01,663 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_10101_00002_nis_cal.fits.
2024-11-12 19:57:01,667 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_10101_00002_nis_cal_cat.ecsv
2024-11-12 19:57:03,282 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_10101_00003_nis_cal.fits.
2024-11-12 19:57:03,287 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_10101_00003_nis_cal_cat.ecsv
2024-11-12 19:57:04,893 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_10101_00004_nis_cal.fits.
2024-11-12 19:57:04,897 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_10101_00004_nis_cal_cat.ecsv
2024-11-12 19:57:06,856 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_12101_00001_nis_cal.fits.
2024-11-12 19:57:06,859 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_12101_00001_nis_cal_cat.ecsv
2024-11-12 19:57:08,462 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_12101_00002_nis_cal.fits.
2024-11-12 19:57:08,466 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_12101_00002_nis_cal_cat.ecsv
2024-11-12 19:57:09,998 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004001_12101_00003_nis_cal.fits.
2024-11-12 19:57:10,002 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004001_12101_00003_nis_cal_cat.ecsv
2024-11-12 19:57:11,532 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_02101_00001_nis_cal.fits.
2024-11-12 19:57:11,536 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_02101_00001_nis_cal_cat.ecsv
2024-11-12 19:57:13,138 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_04101_00001_nis_cal.fits.
2024-11-12 19:57:13,142 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_04101_00001_nis_cal_cat.ecsv
2024-11-12 19:57:14,670 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_04101_00002_nis_cal.fits.
2024-11-12 19:57:14,675 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_04101_00002_nis_cal_cat.ecsv
2024-11-12 19:57:16,275 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_04101_00003_nis_cal.fits.
2024-11-12 19:57:16,279 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_04101_00003_nis_cal_cat.ecsv
2024-11-12 19:57:17,875 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_04101_00004_nis_cal.fits.
2024-11-12 19:57:17,878 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_04101_00004_nis_cal_cat.ecsv
2024-11-12 19:57:19,484 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_06101_00001_nis_cal.fits.
2024-11-12 19:57:19,488 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_06101_00001_nis_cal_cat.ecsv
2024-11-12 19:57:21,131 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_06101_00002_nis_cal.fits.
2024-11-12 19:57:21,134 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_06101_00002_nis_cal_cat.ecsv
2024-11-12 19:57:22,739 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw02079004002_06101_00003_nis_cal.fits.
2024-11-12 19:57:22,742 - stpipe.Image3Pipeline.tweakreg - INFO - Wrote source catalog: jw02079004002_06101_00003_nis_cal_cat.ecsv
2024-11-12 19:57:22,767 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:57:22,767 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 24.
2024-11-12 19:57:22,768 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:57:22,768 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2024-11-12 19:57:22.768093
2024-11-12 19:57:22,768 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.8.9
2024-11-12 19:57:22,769 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:14,225 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw02079004001_06101_2' as reference image
2024-11-12 19:58:14,231 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_12101_3' to the reference catalog.
2024-11-12 19:58:14,279 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_12101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_06101_00002_nis_cal' catalog.
2024-11-12 19:58:14,280 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:14,281 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01396, 0.01974 (arcsec) with significance of 27.27 and 34 matches.
2024-11-12 19:58:14,283 - stpipe.Image3Pipeline.tweakreg - INFO - Found 50 matches for 'GROUP ID: jw02079004001_12101_3'...
2024-11-12 19:58:14,283 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:14,285 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_12101_3:
2024-11-12 19:58:14,285 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.132631 YSH: -0.0455503
2024-11-12 19:58:14,286 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:14,286 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.288601 FIT MAE: 0.241548
2024-11-12 19:58:14,287 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 50 objects.
2024-11-12 19:58:14,330 - stpipe.Image3Pipeline.tweakreg - INFO - Added 50 unmatched sources from 'GROUP ID: jw02079004001_12101_3' to the reference catalog.
2024-11-12 19:58:18,328 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_12101_2' to the reference catalog.
2024-11-12 19:58:18,380 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_12101_00002_nis_cal' catalog with sources from the reference 'jw02079004001_12101_00003_nis_cal' catalog.
2024-11-12 19:58:18,380 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:18,382 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01092, 0.01489 (arcsec) with significance of 55.03 and 66 matches.
2024-11-12 19:58:18,383 - stpipe.Image3Pipeline.tweakreg - INFO - Found 72 matches for 'GROUP ID: jw02079004001_12101_2'...
2024-11-12 19:58:18,384 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:18,386 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_12101_2:
2024-11-12 19:58:18,386 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0427421 YSH: 0.0153513
2024-11-12 19:58:18,387 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:18,387 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.132731 FIT MAE: 0.0886104
2024-11-12 19:58:18,388 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 72 objects.
2024-11-12 19:58:18,431 - stpipe.Image3Pipeline.tweakreg - INFO - Added 28 unmatched sources from 'GROUP ID: jw02079004001_12101_2' to the reference catalog.
2024-11-12 19:58:22,029 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_4' to the reference catalog.
2024-11-12 19:58:22,082 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00004_nis_cal' catalog with sources from the reference 'jw02079004001_12101_00002_nis_cal' catalog.
2024-11-12 19:58:22,082 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:22,084 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.004413, 0.02408 (arcsec) with significance of 27.46 and 40 matches.
2024-11-12 19:58:22,085 - stpipe.Image3Pipeline.tweakreg - INFO - Found 40 matches for 'GROUP ID: jw02079004001_04101_4'...
2024-11-12 19:58:22,086 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:22,088 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_04101_4:
2024-11-12 19:58:22,089 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0145802 YSH: -0.00324412
2024-11-12 19:58:22,089 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:22,089 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0450938 FIT MAE: 0.0297363
2024-11-12 19:58:22,090 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 38 objects.
2024-11-12 19:58:22,134 - stpipe.Image3Pipeline.tweakreg - INFO - Added 60 unmatched sources from 'GROUP ID: jw02079004001_04101_4' to the reference catalog.
2024-11-12 19:58:25,589 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_06101_2' to the reference catalog.
2024-11-12 19:58:25,640 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_06101_00002_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00004_nis_cal' catalog.
2024-11-12 19:58:25,640 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:25,642 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.1095, -0.02681 (arcsec) with significance of 49.64 and 67 matches.
2024-11-12 19:58:25,643 - stpipe.Image3Pipeline.tweakreg - INFO - Found 51 matches for 'GROUP ID: jw02079004002_06101_2'...
2024-11-12 19:58:25,644 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:25,646 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_06101_2:
2024-11-12 19:58:25,647 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00214716 YSH: -0.00192854
2024-11-12 19:58:25,647 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:25,648 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0263873 FIT MAE: 0.0108062
2024-11-12 19:58:25,648 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 48 objects.
2024-11-12 19:58:25,692 - stpipe.Image3Pipeline.tweakreg - INFO - Added 49 unmatched sources from 'GROUP ID: jw02079004002_06101_2' to the reference catalog.
2024-11-12 19:58:29,304 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_06101_3' to the reference catalog.
2024-11-12 19:58:29,352 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_06101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_06101_00002_nis_cal' catalog.
2024-11-12 19:58:29,353 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:29,355 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.04552, 0.02362 (arcsec) with significance of 27.55 and 58 matches.
2024-11-12 19:58:29,356 - stpipe.Image3Pipeline.tweakreg - INFO - Found 79 matches for 'GROUP ID: jw02079004001_06101_3'...
2024-11-12 19:58:29,357 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:29,358 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_06101_3:
2024-11-12 19:58:29,359 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.113881 YSH: -0.131962
2024-11-12 19:58:29,359 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:29,360 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.473198 FIT MAE: 0.39873
2024-11-12 19:58:29,360 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 79 objects.
2024-11-12 19:58:29,829 - stpipe.Image3Pipeline.tweakreg - INFO - Added 21 unmatched sources from 'GROUP ID: jw02079004001_06101_3' to the reference catalog.
2024-11-12 19:58:33,172 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_08101_1' to the reference catalog.
2024-11-12 19:58:33,220 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_08101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_06101_00003_nis_cal' catalog.
2024-11-12 19:58:33,221 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:33,222 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.0008252, 0.01974 (arcsec) with significance of 31.45 and 51 matches.
2024-11-12 19:58:33,224 - stpipe.Image3Pipeline.tweakreg - INFO - Found 68 matches for 'GROUP ID: jw02079004001_08101_1'...
2024-11-12 19:58:33,224 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:33,226 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_08101_1:
2024-11-12 19:58:33,227 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0214849 YSH: -0.155049
2024-11-12 19:58:33,227 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:33,227 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.370184 FIT MAE: 0.296236
2024-11-12 19:58:33,228 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 68 objects.
2024-11-12 19:58:33,272 - stpipe.Image3Pipeline.tweakreg - INFO - Added 33 unmatched sources from 'GROUP ID: jw02079004001_08101_1' to the reference catalog.
2024-11-12 19:58:36,309 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_1' to the reference catalog.
2024-11-12 19:58:36,361 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_08101_00001_nis_cal' catalog.
2024-11-12 19:58:36,362 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:36,364 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.01774, 0.05032 (arcsec) with significance of 29.64 and 56 matches.
2024-11-12 19:58:36,365 - stpipe.Image3Pipeline.tweakreg - INFO - Found 53 matches for 'GROUP ID: jw02079004001_10101_1'...
2024-11-12 19:58:36,366 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:36,368 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_10101_1:
2024-11-12 19:58:36,368 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00535847 YSH: -0.00442158
2024-11-12 19:58:36,369 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:36,369 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.160832 FIT MAE: 0.0791594
2024-11-12 19:58:36,370 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 51 objects.
2024-11-12 19:58:36,414 - stpipe.Image3Pipeline.tweakreg - INFO - Added 47 unmatched sources from 'GROUP ID: jw02079004001_10101_1' to the reference catalog.
2024-11-12 19:58:39,594 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_3' to the reference catalog.
2024-11-12 19:58:39,645 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00001_nis_cal' catalog.
2024-11-12 19:58:39,646 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:39,648 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.003026, 0.01693 (arcsec) with significance of 31.67 and 60 matches.
2024-11-12 19:58:39,649 - stpipe.Image3Pipeline.tweakreg - INFO - Found 70 matches for 'GROUP ID: jw02079004001_04101_3'...
2024-11-12 19:58:39,650 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:39,651 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_04101_3:
2024-11-12 19:58:39,652 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0457263 YSH: -0.0409532
2024-11-12 19:58:39,652 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:39,653 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.390522 FIT MAE: 0.26939
2024-11-12 19:58:39,653 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 70 objects.
2024-11-12 19:58:39,699 - stpipe.Image3Pipeline.tweakreg - INFO - Added 30 unmatched sources from 'GROUP ID: jw02079004001_04101_3' to the reference catalog.
2024-11-12 19:58:42,597 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_2' to the reference catalog.
2024-11-12 19:58:42,648 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00002_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00003_nis_cal' catalog.
2024-11-12 19:58:42,649 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:42,651 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01654, -0.01018 (arcsec) with significance of 28.43 and 51 matches.
2024-11-12 19:58:42,652 - stpipe.Image3Pipeline.tweakreg - INFO - Found 71 matches for 'GROUP ID: jw02079004001_04101_2'...
2024-11-12 19:58:42,653 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:42,654 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_04101_2:
2024-11-12 19:58:42,655 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.131993 YSH: -0.00665781
2024-11-12 19:58:42,655 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:42,656 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.434672 FIT MAE: 0.355009
2024-11-12 19:58:42,656 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 71 objects.
2024-11-12 19:58:42,702 - stpipe.Image3Pipeline.tweakreg - INFO - Added 29 unmatched sources from 'GROUP ID: jw02079004001_04101_2' to the reference catalog.
2024-11-12 19:58:45,339 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_02101_1' to the reference catalog.
2024-11-12 19:58:45,388 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_02101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00002_nis_cal' catalog.
2024-11-12 19:58:45,388 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:45,390 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.005643, 0.0374 (arcsec) with significance of 32.22 and 64 matches.
2024-11-12 19:58:45,391 - stpipe.Image3Pipeline.tweakreg - INFO - Found 64 matches for 'GROUP ID: jw02079004002_02101_1'...
2024-11-12 19:58:45,392 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:45,394 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_02101_1:
2024-11-12 19:58:45,394 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.037459 YSH: -0.123381
2024-11-12 19:58:45,395 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:45,395 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.36379 FIT MAE: 0.281086
2024-11-12 19:58:45,396 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 64 objects.
2024-11-12 19:58:45,445 - stpipe.Image3Pipeline.tweakreg - INFO - Added 36 unmatched sources from 'GROUP ID: jw02079004002_02101_1' to the reference catalog.
2024-11-12 19:58:48,066 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_3' to the reference catalog.
2024-11-12 19:58:48,114 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_02101_00001_nis_cal' catalog.
2024-11-12 19:58:48,114 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:48,116 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01048, 0.02166 (arcsec) with significance of 31.73 and 72 matches.
2024-11-12 19:58:48,118 - stpipe.Image3Pipeline.tweakreg - INFO - Found 72 matches for 'GROUP ID: jw02079004001_10101_3'...
2024-11-12 19:58:48,118 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:48,120 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_10101_3:
2024-11-12 19:58:48,120 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0388581 YSH: -0.0692029
2024-11-12 19:58:48,121 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:48,121 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.415814 FIT MAE: 0.297111
2024-11-12 19:58:48,122 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 72 objects.
2024-11-12 19:58:48,168 - stpipe.Image3Pipeline.tweakreg - INFO - Added 29 unmatched sources from 'GROUP ID: jw02079004001_10101_3' to the reference catalog.
2024-11-12 19:58:50,615 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_06101_1' to the reference catalog.
2024-11-12 19:58:50,662 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_06101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00003_nis_cal' catalog.
2024-11-12 19:58:50,663 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:50,665 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.01764, 0.004258 (arcsec) with significance of 29.43 and 66 matches.
2024-11-12 19:58:50,666 - stpipe.Image3Pipeline.tweakreg - INFO - Found 68 matches for 'GROUP ID: jw02079004002_06101_1'...
2024-11-12 19:58:50,666 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:50,668 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_06101_1:
2024-11-12 19:58:50,669 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0947075 YSH: 0.000843653
2024-11-12 19:58:50,669 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:50,669 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.422856 FIT MAE: 0.315659
2024-11-12 19:58:50,670 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 68 objects.
2024-11-12 19:58:50,715 - stpipe.Image3Pipeline.tweakreg - INFO - Added 32 unmatched sources from 'GROUP ID: jw02079004002_06101_1' to the reference catalog.
2024-11-12 19:58:52,984 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_2' to the reference catalog.
2024-11-12 19:58:53,032 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00002_nis_cal' catalog with sources from the reference 'jw02079004002_06101_00001_nis_cal' catalog.
2024-11-12 19:58:53,033 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:53,035 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.03649, -0.02491 (arcsec) with significance of 33.78 and 70 matches.
2024-11-12 19:58:53,036 - stpipe.Image3Pipeline.tweakreg - INFO - Found 73 matches for 'GROUP ID: jw02079004002_04101_2'...
2024-11-12 19:58:53,037 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:53,039 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_04101_2:
2024-11-12 19:58:53,039 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.050824 YSH: 0.0758792
2024-11-12 19:58:53,039 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:53,040 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.431148 FIT MAE: 0.32838
2024-11-12 19:58:53,041 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 73 objects.
2024-11-12 19:58:53,100 - stpipe.Image3Pipeline.tweakreg - INFO - Added 28 unmatched sources from 'GROUP ID: jw02079004002_04101_2' to the reference catalog.
2024-11-12 19:58:54,961 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_06101_1' to the reference catalog.
2024-11-12 19:58:55,009 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_06101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00002_nis_cal' catalog.
2024-11-12 19:58:55,009 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:55,011 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.0108, 0.026 (arcsec) with significance of 32.93 and 90 matches.
2024-11-12 19:58:55,012 - stpipe.Image3Pipeline.tweakreg - INFO - Found 75 matches for 'GROUP ID: jw02079004001_06101_1'...
2024-11-12 19:58:55,013 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:55,015 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_06101_1:
2024-11-12 19:58:55,015 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0602022 YSH: -0.00977768
2024-11-12 19:58:55,016 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:55,016 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.432947 FIT MAE: 0.307813
2024-11-12 19:58:55,017 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 75 objects.
2024-11-12 19:58:55,063 - stpipe.Image3Pipeline.tweakreg - INFO - Added 26 unmatched sources from 'GROUP ID: jw02079004001_06101_1' to the reference catalog.
2024-11-12 19:58:56,765 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_2' to the reference catalog.
2024-11-12 19:58:56,814 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00002_nis_cal' catalog with sources from the reference 'jw02079004001_06101_00001_nis_cal' catalog.
2024-11-12 19:58:56,814 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:56,816 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.0111, 0.02013 (arcsec) with significance of 29.4 and 84 matches.
2024-11-12 19:58:56,818 - stpipe.Image3Pipeline.tweakreg - INFO - Found 71 matches for 'GROUP ID: jw02079004001_10101_2'...
2024-11-12 19:58:56,818 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:56,820 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_10101_2:
2024-11-12 19:58:56,821 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.104 YSH: 0.0161352
2024-11-12 19:58:56,821 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:56,821 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.408864 FIT MAE: 0.319095
2024-11-12 19:58:56,822 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 71 objects.
2024-11-12 19:58:56,871 - stpipe.Image3Pipeline.tweakreg - INFO - Added 29 unmatched sources from 'GROUP ID: jw02079004001_10101_2' to the reference catalog.
2024-11-12 19:58:58,317 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_12101_1' to the reference catalog.
2024-11-12 19:58:58,365 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_12101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00002_nis_cal' catalog.
2024-11-12 19:58:58,366 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:58,367 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.007849, 0.03225 (arcsec) with significance of 29.82 and 92 matches.
2024-11-12 19:58:58,369 - stpipe.Image3Pipeline.tweakreg - INFO - Found 67 matches for 'GROUP ID: jw02079004001_12101_1'...
2024-11-12 19:58:58,369 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:58,371 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_12101_1:
2024-11-12 19:58:58,371 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.107857 YSH: 0.0700622
2024-11-12 19:58:58,372 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:58,373 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.391264 FIT MAE: 0.313559
2024-11-12 19:58:58,373 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 67 objects.
2024-11-12 19:58:58,419 - stpipe.Image3Pipeline.tweakreg - INFO - Added 33 unmatched sources from 'GROUP ID: jw02079004001_12101_1' to the reference catalog.
2024-11-12 19:58:59,753 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_3' to the reference catalog.
2024-11-12 19:58:59,801 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00003_nis_cal' catalog with sources from the reference 'jw02079004001_12101_00001_nis_cal' catalog.
2024-11-12 19:58:59,801 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:58:59,803 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.004624, 0.03455 (arcsec) with significance of 29.25 and 98 matches.
2024-11-12 19:58:59,805 - stpipe.Image3Pipeline.tweakreg - INFO - Found 74 matches for 'GROUP ID: jw02079004002_04101_3'...
2024-11-12 19:58:59,805 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:58:59,807 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_04101_3:
2024-11-12 19:58:59,807 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0445006 YSH: -0.0511758
2024-11-12 19:58:59,808 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:58:59,808 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.418994 FIT MAE: 0.310375
2024-11-12 19:58:59,809 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 74 objects.
2024-11-12 19:58:59,854 - stpipe.Image3Pipeline.tweakreg - INFO - Added 26 unmatched sources from 'GROUP ID: jw02079004002_04101_3' to the reference catalog.
2024-11-12 19:59:01,027 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_06101_3' to the reference catalog.
2024-11-12 19:59:01,075 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_06101_00003_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00003_nis_cal' catalog.
2024-11-12 19:59:01,075 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:59:01,077 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.01019, 0.02971 (arcsec) with significance of 27.97 and 73 matches.
2024-11-12 19:59:01,078 - stpipe.Image3Pipeline.tweakreg - INFO - Found 77 matches for 'GROUP ID: jw02079004002_06101_3'...
2024-11-12 19:59:01,079 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:59:01,081 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_06101_3:
2024-11-12 19:59:01,081 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.132154 YSH: -0.107519
2024-11-12 19:59:01,082 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:59:01,082 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.48608 FIT MAE: 0.407774
2024-11-12 19:59:01,083 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 77 objects.
2024-11-12 19:59:01,129 - stpipe.Image3Pipeline.tweakreg - INFO - Added 25 unmatched sources from 'GROUP ID: jw02079004002_06101_3' to the reference catalog.
2024-11-12 19:59:02,135 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_02101_1' to the reference catalog.
2024-11-12 19:59:02,184 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_02101_00001_nis_cal' catalog with sources from the reference 'jw02079004002_06101_00003_nis_cal' catalog.
2024-11-12 19:59:02,184 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:59:02,186 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.006846, 0.05104 (arcsec) with significance of 29.83 and 95 matches.
2024-11-12 19:59:02,188 - stpipe.Image3Pipeline.tweakreg - INFO - Found 63 matches for 'GROUP ID: jw02079004001_02101_1'...
2024-11-12 19:59:02,188 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:59:02,190 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_02101_1:
2024-11-12 19:59:02,191 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0412246 YSH: -0.107469
2024-11-12 19:59:02,192 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:59:02,192 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.385402 FIT MAE: 0.288524
2024-11-12 19:59:02,192 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 63 objects.
2024-11-12 19:59:02,240 - stpipe.Image3Pipeline.tweakreg - INFO - Added 37 unmatched sources from 'GROUP ID: jw02079004001_02101_1' to the reference catalog.
2024-11-12 19:59:03,085 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_1' to the reference catalog.
2024-11-12 19:59:03,136 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_02101_00001_nis_cal' catalog.
2024-11-12 19:59:03,136 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:59:03,138 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.008325, 0.0318 (arcsec) with significance of 43.7 and 103 matches.
2024-11-12 19:59:03,139 - stpipe.Image3Pipeline.tweakreg - INFO - Found 59 matches for 'GROUP ID: jw02079004002_04101_1'...
2024-11-12 19:59:03,140 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:59:03,143 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_04101_1:
2024-11-12 19:59:03,143 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0232174 YSH: -0.0123962
2024-11-12 19:59:03,144 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:59:03,144 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.124421 FIT MAE: 0.0675566
2024-11-12 19:59:03,144 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 57 objects.
2024-11-12 19:59:03,191 - stpipe.Image3Pipeline.tweakreg - INFO - Added 41 unmatched sources from 'GROUP ID: jw02079004002_04101_1' to the reference catalog.
2024-11-12 19:59:03,809 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_10101_4' to the reference catalog.
2024-11-12 19:59:03,857 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_10101_00004_nis_cal' catalog with sources from the reference 'jw02079004002_04101_00001_nis_cal' catalog.
2024-11-12 19:59:03,858 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:59:03,860 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.003466, 0.01689 (arcsec) with significance of 49 and 102 matches.
2024-11-12 19:59:03,861 - stpipe.Image3Pipeline.tweakreg - INFO - Found 68 matches for 'GROUP ID: jw02079004001_10101_4'...
2024-11-12 19:59:03,862 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:59:03,865 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_10101_4:
2024-11-12 19:59:03,865 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.00395036 YSH: 0.014647
2024-11-12 19:59:03,865 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:59:03,866 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.141274 FIT MAE: 0.0650373
2024-11-12 19:59:03,866 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 66 objects.
2024-11-12 19:59:03,913 - stpipe.Image3Pipeline.tweakreg - INFO - Added 32 unmatched sources from 'GROUP ID: jw02079004001_10101_4' to the reference catalog.
2024-11-12 19:59:04,235 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004001_04101_1' to the reference catalog.
2024-11-12 19:59:04,284 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004001_04101_00001_nis_cal' catalog with sources from the reference 'jw02079004001_10101_00004_nis_cal' catalog.
2024-11-12 19:59:04,284 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:59:04,286 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.006906, 0.02715 (arcsec) with significance of 57.15 and 124 matches.
2024-11-12 19:59:04,288 - stpipe.Image3Pipeline.tweakreg - INFO - Found 66 matches for 'GROUP ID: jw02079004001_04101_1'...
2024-11-12 19:59:04,289 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:59:04,291 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004001_04101_1:
2024-11-12 19:59:04,291 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0308728 YSH: -0.0215017
2024-11-12 19:59:04,292 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:59:04,292 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.137343 FIT MAE: 0.0765627
2024-11-12 19:59:04,292 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 63 objects.
2024-11-12 19:59:04,339 - stpipe.Image3Pipeline.tweakreg - INFO - Added 34 unmatched sources from 'GROUP ID: jw02079004001_04101_1' to the reference catalog.
2024-11-12 19:59:04,500 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw02079004002_04101_4' to the reference catalog.
2024-11-12 19:59:04,548 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw02079004002_04101_00004_nis_cal' catalog with sources from the reference 'jw02079004001_04101_00001_nis_cal' catalog.
2024-11-12 19:59:04,549 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts...
2024-11-12 19:59:04,551 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.007392, 0.02412 (arcsec) with significance of 50.32 and 113 matches.
2024-11-12 19:59:04,552 - stpipe.Image3Pipeline.tweakreg - INFO - Found 72 matches for 'GROUP ID: jw02079004002_04101_4'...
2024-11-12 19:59:04,552 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'shift' fit
2024-11-12 19:59:04,555 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'shift' fit for GROUP ID: jw02079004002_04101_4:
2024-11-12 19:59:04,555 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0216359 YSH: 0.0143472
2024-11-12 19:59:04,556 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:59:04,556 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.165185 FIT MAE: 0.0760397
2024-11-12 19:59:04,557 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 69 objects.
2024-11-12 19:59:04,603 - stpipe.Image3Pipeline.tweakreg - INFO - Added 28 unmatched sources from 'GROUP ID: jw02079004002_04101_4' to the reference catalog.
2024-11-12 19:59:04,604 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:59:04,604 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2024-11-12 19:59:04.604410
2024-11-12 19:59:04,605 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:01:41.836317
2024-11-12 19:59:04,605 - stpipe.Image3Pipeline.tweakreg - INFO -
2024-11-12 19:59:05,799 - 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!
2024-11-12 19:59:05,821 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done
2024-11-12 19:59:06,350 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe973863d90>,).
2024-11-12 19:59:06,824 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:59:06,824 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2024-11-12 19:59:06.824314
2024-11-12 19:59:06,825 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:59:06,825 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'match'
2024-11-12 19:59:06,826 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN
2024-11-12 19:59:06,826 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF
2024-11-12 19:59:06,827 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 19:59:06,827 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions.
2024-11-12 20:04:03,259 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_02101_00001_nis_cal.fits. Sky background: 0.00351201
2024-11-12 20:04:03,260 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00001_nis_cal.fits. Sky background: 0.00164159
2024-11-12 20:04:03,260 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00002_nis_cal.fits. Sky background: 0.00275517
2024-11-12 20:04:03,261 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00003_nis_cal.fits. Sky background: 0.00245086
2024-11-12 20:04:03,261 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_04101_00004_nis_cal.fits. Sky background: 0
2024-11-12 20:04:03,261 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_06101_00001_nis_cal.fits. Sky background: 0.00215923
2024-11-12 20:04:03,262 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_06101_00002_nis_cal.fits. Sky background: 0.0046494
2024-11-12 20:04:03,262 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_06101_00003_nis_cal.fits. Sky background: 0.000655999
2024-11-12 20:04:03,263 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_08101_00001_nis_cal.fits. Sky background: 0.00714736
2024-11-12 20:04:03,263 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00001_nis_cal.fits. Sky background: 0.00503738
2024-11-12 20:04:03,264 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00002_nis_cal.fits. Sky background: 0.0041705
2024-11-12 20:04:03,264 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00003_nis_cal.fits. Sky background: 0.00519724
2024-11-12 20:04:03,265 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_10101_00004_nis_cal.fits. Sky background: 0.00269074
2024-11-12 20:04:03,265 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_12101_00001_nis_cal.fits. Sky background: 0.00419169
2024-11-12 20:04:03,266 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_12101_00002_nis_cal.fits. Sky background: 0.00398113
2024-11-12 20:04:03,266 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004001_12101_00003_nis_cal.fits. Sky background: 0.00228521
2024-11-12 20:04:03,267 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_02101_00001_nis_cal.fits. Sky background: 0.0017984
2024-11-12 20:04:03,267 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00001_nis_cal.fits. Sky background: 0.00281901
2024-11-12 20:04:03,268 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00002_nis_cal.fits. Sky background: 0.006335
2024-11-12 20:04:03,271 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00003_nis_cal.fits. Sky background: 0.00437153
2024-11-12 20:04:03,273 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_04101_00004_nis_cal.fits. Sky background: 0.00455866
2024-11-12 20:04:03,274 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_06101_00001_nis_cal.fits. Sky background: 0.00236365
2024-11-12 20:04:03,274 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_06101_00002_nis_cal.fits. Sky background: 0.00982759
2024-11-12 20:04:03,274 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw02079004002_06101_00003_nis_cal.fits. Sky background: 0.00626839
2024-11-12 20:04:03,275 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 20:04:03,275 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2024-11-12 20:04:03.275411
2024-11-12 20:04:03,276 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:04:56.451097
2024-11-12 20:04:03,276 - stpipe.Image3Pipeline.skymatch - INFO -
2024-11-12 20:04:03,330 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done
2024-11-12 20:04:03,707 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe973863d90>,).
2024-11-12 20:04:03,708 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection mode: imaging
2024-11-12 20:04:03,709 - stpipe.Image3Pipeline.outlier_detection - INFO - Outlier Detection asn_id: o004
2024-11-12 20:04:03,710 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter kernel: square
2024-11-12 20:04:03,710 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter pixfrac: 1.0
2024-11-12 20:04:03,711 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter fillval: INDEF
2024-11-12 20:04:03,711 - stpipe.Image3Pipeline.outlier_detection - INFO - Driz parameter weight_type: ivm
2024-11-12 20:04:03,712 - stpipe.Image3Pipeline.outlier_detection - INFO - Output pixel scale ratio: 1.0
2024-11-12 20:04:03,901 - stpipe.Image3Pipeline.outlier_detection - INFO - Computed output pixel scale: 0.06556312845480262 arcsec.
2024-11-12 20:04:03,951 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:06,370 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:07,336 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_02101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:04:07,344 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:09,437 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:10,407 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_04101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:04:10,415 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:12,514 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:13,483 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_04101_00002_nis_o004_outlier_i2d.fits
2024-11-12 20:04:13,491 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:15,557 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:16,531 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_04101_00003_nis_o004_outlier_i2d.fits
2024-11-12 20:04:16,539 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:18,626 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:19,590 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_04101_00004_nis_o004_outlier_i2d.fits
2024-11-12 20:04:19,598 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:21,711 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:22,680 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_06101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:04:22,687 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:24,795 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:25,765 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_06101_00002_nis_o004_outlier_i2d.fits
2024-11-12 20:04:25,773 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:27,883 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:28,847 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_06101_00003_nis_o004_outlier_i2d.fits
2024-11-12 20:04:28,855 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:30,975 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:31,944 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_08101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:04:31,953 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:34,037 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:35,007 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_10101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:04:35,014 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:37,125 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:38,092 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_10101_00002_nis_o004_outlier_i2d.fits
2024-11-12 20:04:38,100 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:40,190 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:41,155 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_10101_00003_nis_o004_outlier_i2d.fits
2024-11-12 20:04:41,163 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:43,244 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:44,211 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_10101_00004_nis_o004_outlier_i2d.fits
2024-11-12 20:04:44,218 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:46,329 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:47,300 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_12101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:04:47,307 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:49,376 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:50,342 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_12101_00002_nis_o004_outlier_i2d.fits
2024-11-12 20:04:50,349 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:52,432 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:53,397 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_12101_00003_nis_o004_outlier_i2d.fits
2024-11-12 20:04:53,405 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:55,508 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:56,466 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_02101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:04:56,474 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:04:58,570 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:04:59,532 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_04101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:04:59,540 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:05:01,605 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:05:02,592 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_04101_00002_nis_o004_outlier_i2d.fits
2024-11-12 20:05:02,602 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:05:04,670 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:05:05,635 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_04101_00003_nis_o004_outlier_i2d.fits
2024-11-12 20:05:05,644 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:05:07,721 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:05:08,692 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_04101_00004_nis_o004_outlier_i2d.fits
2024-11-12 20:05:08,699 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:05:10,778 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:05:11,744 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_06101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:05:11,752 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:05:13,820 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:05:14,791 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_06101_00002_nis_o004_outlier_i2d.fits
2024-11-12 20:05:14,799 - stpipe.Image3Pipeline.outlier_detection - INFO - 1 exposures to drizzle together
2024-11-12 20:05:16,880 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:05:17,850 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_06101_00003_nis_o004_outlier_i2d.fits
2024-11-12 20:05:17,855 - stpipe.Image3Pipeline.outlier_detection - WARNING - /opt/hostedtoolcache/Python/3.11.10/x64/lib/python3.11/site-packages/jwst/associations/association.py:215: UserWarning: Input association file contains path information; note that this can complicate usage and/or sharing of such files.
warnings.warn(err_str, UserWarning)
2024-11-12 20:05:43,148 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_02101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,160 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_04101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,169 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_04101_00002_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,179 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_04101_00003_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,189 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_04101_00004_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,198 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_06101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,208 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_06101_00002_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,217 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_06101_00003_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,226 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_08101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,236 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_10101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,247 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_10101_00002_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,257 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_10101_00003_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,267 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_10101_00004_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,276 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_12101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,285 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_12101_00002_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,295 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004001_12101_00003_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,304 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_02101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,314 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_04101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,324 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_04101_00002_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,334 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_04101_00003_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,343 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_04101_00004_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,353 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_06101_00001_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,364 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_06101_00002_nis_o004_outlier_i2d.fits
2024-11-12 20:05:43,374 - stpipe.Image3Pipeline.outlier_detection - INFO - Removing file custom_image3_calibrated/jw02079004002_06101_00003_nis_o004_outlier_i2d.fits
2024-11-12 20:05:45,409 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:05:45,678 - stpipe.Image3Pipeline.outlier_detection - INFO - 14252 pixels marked as outliers
2024-11-12 20:05:47,703 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:05:47,971 - stpipe.Image3Pipeline.outlier_detection - INFO - 14370 pixels marked as outliers
2024-11-12 20:05:50,010 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:05:50,287 - stpipe.Image3Pipeline.outlier_detection - INFO - 13691 pixels marked as outliers
2024-11-12 20:05:52,317 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:05:52,588 - stpipe.Image3Pipeline.outlier_detection - INFO - 14230 pixels marked as outliers
2024-11-12 20:05:54,676 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:05:54,945 - stpipe.Image3Pipeline.outlier_detection - INFO - 14763 pixels marked as outliers
2024-11-12 20:05:56,984 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:05:57,255 - stpipe.Image3Pipeline.outlier_detection - INFO - 14144 pixels marked as outliers
2024-11-12 20:05:59,299 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:05:59,576 - stpipe.Image3Pipeline.outlier_detection - INFO - 13978 pixels marked as outliers
2024-11-12 20:06:01,625 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:01,899 - stpipe.Image3Pipeline.outlier_detection - INFO - 14397 pixels marked as outliers
2024-11-12 20:06:03,975 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:04,249 - stpipe.Image3Pipeline.outlier_detection - INFO - 13668 pixels marked as outliers
2024-11-12 20:06:06,312 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:06,592 - stpipe.Image3Pipeline.outlier_detection - INFO - 14758 pixels marked as outliers
2024-11-12 20:06:08,630 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:08,900 - stpipe.Image3Pipeline.outlier_detection - INFO - 14103 pixels marked as outliers
2024-11-12 20:06:10,935 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:11,205 - stpipe.Image3Pipeline.outlier_detection - INFO - 14570 pixels marked as outliers
2024-11-12 20:06:13,233 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:13,504 - stpipe.Image3Pipeline.outlier_detection - INFO - 14880 pixels marked as outliers
2024-11-12 20:06:15,535 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:15,810 - stpipe.Image3Pipeline.outlier_detection - INFO - 14302 pixels marked as outliers
2024-11-12 20:06:17,836 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:18,104 - stpipe.Image3Pipeline.outlier_detection - INFO - 14122 pixels marked as outliers
2024-11-12 20:06:20,131 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:20,403 - stpipe.Image3Pipeline.outlier_detection - INFO - 14120 pixels marked as outliers
2024-11-12 20:06:22,442 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:22,713 - stpipe.Image3Pipeline.outlier_detection - INFO - 14287 pixels marked as outliers
2024-11-12 20:06:24,748 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:25,018 - stpipe.Image3Pipeline.outlier_detection - INFO - 14499 pixels marked as outliers
2024-11-12 20:06:27,056 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:27,326 - stpipe.Image3Pipeline.outlier_detection - INFO - 13912 pixels marked as outliers
2024-11-12 20:06:29,360 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:29,629 - stpipe.Image3Pipeline.outlier_detection - INFO - 14524 pixels marked as outliers
2024-11-12 20:06:31,658 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:31,925 - stpipe.Image3Pipeline.outlier_detection - INFO - 14709 pixels marked as outliers
2024-11-12 20:06:33,991 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:34,264 - stpipe.Image3Pipeline.outlier_detection - INFO - 14686 pixels marked as outliers
2024-11-12 20:06:36,306 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:36,582 - stpipe.Image3Pipeline.outlier_detection - INFO - 13981 pixels marked as outliers
2024-11-12 20:06:38,626 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2088, 2059)
2024-11-12 20:06:38,897 - stpipe.Image3Pipeline.outlier_detection - INFO - 13667 pixels marked as outliers
2024-11-12 20:06:39,227 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_02101_00001_nis_o004_crf.fits
2024-11-12 20:06:39,493 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_04101_00001_nis_o004_crf.fits
2024-11-12 20:06:39,756 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_04101_00002_nis_o004_crf.fits
2024-11-12 20:06:40,022 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_04101_00003_nis_o004_crf.fits
2024-11-12 20:06:40,290 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_04101_00004_nis_o004_crf.fits
2024-11-12 20:06:40,558 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_06101_00001_nis_o004_crf.fits
2024-11-12 20:06:40,823 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_06101_00002_nis_o004_crf.fits
2024-11-12 20:06:41,089 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_06101_00003_nis_o004_crf.fits
2024-11-12 20:06:41,354 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_08101_00001_nis_o004_crf.fits
2024-11-12 20:06:41,619 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_10101_00001_nis_o004_crf.fits
2024-11-12 20:06:41,886 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_10101_00002_nis_o004_crf.fits
2024-11-12 20:06:42,158 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_10101_00003_nis_o004_crf.fits
2024-11-12 20:06:42,424 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_10101_00004_nis_o004_crf.fits
2024-11-12 20:06:42,690 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_12101_00001_nis_o004_crf.fits
2024-11-12 20:06:42,964 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_12101_00002_nis_o004_crf.fits
2024-11-12 20:06:43,242 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004001_12101_00003_nis_o004_crf.fits
2024-11-12 20:06:43,513 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_02101_00001_nis_o004_crf.fits
2024-11-12 20:06:43,779 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_04101_00001_nis_o004_crf.fits
2024-11-12 20:06:44,046 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_04101_00002_nis_o004_crf.fits
2024-11-12 20:06:44,311 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_04101_00003_nis_o004_crf.fits
2024-11-12 20:06:44,575 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_04101_00004_nis_o004_crf.fits
2024-11-12 20:06:44,866 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_06101_00001_nis_o004_crf.fits
2024-11-12 20:06:45,139 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_06101_00002_nis_o004_crf.fits
2024-11-12 20:06:45,625 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in custom_image3_calibrated/jw02079004002_06101_00003_nis_o004_crf.fits
2024-11-12 20:06:45,626 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done
2024-11-12 20:06:45,981 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fe973863d90>,).
2024-11-12 20:06:46,760 - stpipe.Image3Pipeline.resample - INFO - Driz parameter kernel: square
2024-11-12 20:06:46,760 - stpipe.Image3Pipeline.resample - INFO - Driz parameter pixfrac: 1.0
2024-11-12 20:06:46,761 - stpipe.Image3Pipeline.resample - INFO - Driz parameter fillval: NAN
2024-11-12 20:06:46,761 - stpipe.Image3Pipeline.resample - INFO - Driz parameter weight_type: ivm
2024-11-12 20:06:46,762 - stpipe.Image3Pipeline.resample - INFO - Output pixel scale ratio: 1.0
2024-11-12 20:06:46,951 - stpipe.Image3Pipeline.resample - INFO - Computed output pixel scale: 0.06556312845480262 arcsec.
2024-11-12 20:06:47,012 - stpipe.Image3Pipeline.resample - INFO - Resampling science data
2024-11-12 20:06:49,553 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:06:52,424 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:06:55,319 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:06:58,216 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:01,099 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:03,975 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:06,846 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:09,689 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:12,568 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:15,408 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:18,335 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:21,244 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:24,129 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:27,025 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:29,884 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:32,741 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:35,587 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:38,448 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:41,316 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:44,195 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:47,029 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:49,884 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:52,732 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:55,563 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:07:56,788 - stpipe.Image3Pipeline.resample - INFO - Resampling variance components
2024-11-12 20:07:58,912 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:01,893 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:04,812 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:07,673 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:10,582 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:13,462 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:16,334 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:19,169 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:22,033 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:24,884 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:27,778 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:30,638 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:33,491 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:36,378 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:39,273 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:42,178 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:45,032 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:47,890 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:50,760 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:53,667 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:56,522 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:08:59,380 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:02,251 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:05,131 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:07,996 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:10,881 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:13,783 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:16,656 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:19,518 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:22,383 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:25,227 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:28,083 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:30,937 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:33,809 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:36,670 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:39,515 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:42,376 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:45,296 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:48,141 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:50,977 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:53,851 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:56,690 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:09:59,524 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:02,396 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:05,255 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:08,119 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:11,002 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:13,876 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:16,732 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:19,623 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:22,520 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:25,407 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:28,316 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:31,169 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:34,052 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:36,986 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:39,852 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:42,753 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:45,660 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:48,522 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:51,385 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:54,290 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:10:57,150 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:11:00,019 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:11:02,911 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:11:05,779 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:11:08,658 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:11:11,545 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:11:14,438 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:11:17,353 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:11:20,233 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:11:23,122 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2088, 2059)
2024-11-12 20:11:24,040 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.147837671 -27.807256739 53.188375067 -27.794599516 53.174263777 -27.759240587 53.133737919 -27.771893695
2024-11-12 20:11:24,584 - stpipe.Image3Pipeline.resample - INFO - Saved model in custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_i2d.fits
2024-11-12 20:11:24,584 - stpipe.Image3Pipeline.resample - INFO - Step resample done
2024-11-12 20:11:24,940 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2088, 2059) from jw02079-o004_t001_niriss_clear-f115w_i2d.fits>,).
2024-11-12 20:11:24,955 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file: crds_cache/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2024-11-12 20:11:24,963 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file: crds_cache/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2024-11-12 20:11:24,963 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRISS
2024-11-12 20:11:24,964 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NIS
2024-11-12 20:11:24,964 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: CLEAR
2024-11-12 20:11:24,965 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: F115W
2024-11-12 20:11:24,965 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL
2024-11-12 20:11:25,006 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 0.76458
2024-11-12 20:11:31,203 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 279 sources
2024-11-12 20:11:31,579 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_cat.ecsv
2024-11-12 20:11:31,713 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in custom_image3_calibrated/jw02079-o004_t001_niriss_clear-f115w_segm.fits
2024-11-12 20:11:31,714 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw02079-o004_t001_niriss_clear-f115w_segm.fits
2024-11-12 20:11:31,715 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done
2024-11-12 20:11:31,745 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done
2024-11-12 20:11:31,746 - stpipe - INFO - Results used jwst version: 1.16.0
# 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.13568409662942,-27.77560799318494 | 8.464242e-09 | 8.434600e-10 | 6.083467e-08 | 2.075679e-09 | 1.156012e-07 | 3.014036e-09 | 1.801318e-07 | 4.252680e-09 | 2.402762e-07 | 5.672612e-09 | 26.939622 | 0.036427 | 26.242594 | 0.027945 | 25.761024 | 0.025335 | 25.448223 | 0.025335 | 25.250780 | 0.036427 | 24.553752 | 0.027945 | 24.072182 | 0.025335 | 23.759381 | 0.025335 | 1.9003 | 1.5582 | 2.9610 | True | 0.488102 | -0.706803 | 14 | 46.553310 | 1.008611e-06 | 7.625825e-09 | 23.890691 | 0.008178 | 22.201849 | 0.008178 | 101.0 | 3.645722 | 1.881840 | 0.483822 | -2.251545 | 158.310476 | 53.13565677878465,-27.775767219804067 | 53.13583148272155,-27.775712704859547 | 53.13554039688117,-27.775475246060495 | 53.135715100407126,-27.775420731262116 |
2 | 1992.5966 | 213.2687 | 53.13641907323201,-27.7750640154941 | 6.211383e-09 | 1.260585e-09 | 1.727995e-07 | 1.974546e-09 | 3.033605e-07 | 2.756143e-09 | 4.425993e-07 | 3.713262e-09 | 5.903793e-07 | 4.953087e-09 | 25.806144 | 0.012336 | 25.195102 | 0.009820 | 24.784973 | 0.009071 | 24.472172 | 0.009071 | 24.117301 | 0.012336 | 23.506260 | 0.009820 | 23.096131 | 0.009071 | 22.783330 | 0.009071 | 1.7556 | 1.4590 | 2.5613 | True | 0.485963 | -0.711300 | 12 | 46.553310 | 9.376311e-07 | 5.416853e-09 | 23.969920 | 0.006254 | 22.281078 | 0.006254 | 73.0 | 2.551001 | 1.825631 | 0.284347 | -59.404596 | 101.157425 | 53.1363419863336,-27.775186492009862 | 53.136574923177236,-27.775113804218922 | 53.13626667953585,-27.774997568205336 | 53.13649961602495,-27.774924880540492 |
4 | 1651.8684 | 243.3791 | 53.13933636487149,-27.780733565733673 | 1.460539e-08 | 1.827363e-09 | 4.386805e-08 | 1.685754e-09 | 9.630535e-08 | 2.491391e-09 | 1.718535e-07 | 3.609221e-09 | 2.292338e-07 | 4.814308e-09 | 27.294629 | 0.040941 | 26.440874 | 0.027731 | 25.812104 | 0.022566 | 25.499303 | 0.022566 | 25.605787 | 0.040941 | 24.752032 | 0.027731 | 24.123262 | 0.022566 | 23.810461 | 0.022566 | 2.1953 | 1.7845 | 3.9175 | True | 0.371308 | 0.644815 | 35 | 174.023568 | 2.955799e-06 | 1.072874e-08 | 22.723313 | 0.003934 | 21.034471 | 0.003934 | 320.0 | 5.039316 | 4.470232 | 0.112929 | 75.462764 | 236.024785 | 53.13921558128011,-27.7809714844381 | 53.13970088784936,-27.780820041072193 | 53.139058103090775,-27.780576465127403 | 53.13954340811568,-27.78042502231086 |
5 | 275.6719 | 243.6906 | 53.148767151031116,-27.804367180292374 | 7.280690e-09 | 5.631248e-10 | 1.501164e-07 | 1.861618e-09 | 2.831123e-07 | 2.657143e-09 | 4.325900e-07 | 3.631722e-09 | 5.770279e-07 | 4.844321e-09 | 25.958930 | 0.013382 | 25.270103 | 0.010143 | 24.809809 | 0.009077 | 24.497008 | 0.009077 | 24.270088 | 0.013382 | 23.581261 | 0.010143 | 23.120967 | 0.009077 | 22.808166 | 0.009077 | 1.8860 | 1.5280 | 2.8817 | True | 0.410130 | -0.118228 | 18 | 51.184977 | 9.201578e-07 | 5.407308e-09 | 23.990344 | 0.006362 | 22.301502 | 0.006362 | 81.0 | 2.249277 | 2.191749 | 0.025576 | -35.951191 | 124.610830 | 53.148701798077056,-27.80448745295249 | 53.1489153735214,-27.804420803520202 | 53.14862644949871,-27.804298535847437 | 53.14884002461804,-27.804231886530797 |
6 | 1294.2138 | 261.6152 | 53.14213935298679,-27.786765693365805 | 1.310039e-07 | 8.268777e-09 | 8.310758e-07 | 4.402663e-09 | 1.496726e-06 | 6.221065e-09 | 2.283571e-06 | 8.534347e-09 | 3.046035e-06 | 1.138389e-08 | 24.100898 | 0.005737 | 23.462144 | 0.004503 | 23.003464 | 0.004050 | 22.690663 | 0.004050 | 22.412056 | 0.005737 | 21.773302 | 0.004503 | 21.314622 | 0.004050 | 21.001821 | 0.004050 | 1.8010 | 1.5257 | 2.7477 | True | 0.521276 | 0.922413 | 11 | 131.980719 | 3.506689e-05 | 2.481069e-08 | 20.037757 | 0.000768 | 18.348915 | 0.000768 | 869.0 | 7.457952 | 4.230190 | 0.432795 | 52.411497 | 212.973518 | 53.141921542980064,-27.787156432037882 | 53.14265924467938,-27.78692622310095 | 53.141688721761234,-27.786572494903066 | 53.14242641999048,-27.78634228720068 |
7 | 235.5958 | 275.5310 | 53.14965988270087,-27.8048625328099 | 8.837725e-09 | 5.184302e-10 | 3.313520e-08 | 1.496999e-09 | 6.072274e-08 | 2.185624e-09 | 9.277728e-08 | 3.144972e-09 | 1.237548e-07 | 4.195050e-09 | 27.599276 | 0.047976 | 26.941622 | 0.038393 | 26.481396 | 0.036194 | 26.168595 | 0.036194 | 25.910434 | 0.047976 | 25.252780 | 0.038393 | 24.792554 | 0.036194 | 24.479753 | 0.036194 | 1.8326 | 1.5279 | 2.8000 | True | 0.252694 | -0.170277 | 16 | 51.184977 | 1.436242e-06 | 7.755917e-09 | 23.506931 | 0.005847 | 21.818089 | 0.005847 | 186.0 | 4.700859 | 2.761013 | 0.412658 | -71.557148 | 89.004873 | 53.14950687822788,-27.805028002456897 | 53.14991461402676,-27.804900759983703 | 53.149410977825056,-27.804787563054756 | 53.149818712834254,-27.804660320862556 |
8 | 1027.3772 | 289.1676 | 53.144501553226576,-27.791181570916297 | 5.880843e-09 | 1.494733e-09 | 2.924321e-08 | 1.408623e-09 | 6.262550e-08 | 2.086024e-09 | 1.237768e-07 | 3.053567e-09 | 1.651048e-07 | 4.073126e-09 | 27.734937 | 0.051079 | 26.908122 | 0.035576 | 26.168402 | 0.026460 | 25.855601 | 0.026460 | 26.046095 | 0.051079 | 25.219280 | 0.035576 | 24.479560 | 0.026460 | 24.166759 | 0.026460 | 2.1415 | 1.9765 | 4.2327 | True | 0.046141 | -0.788289 | 23 | 56.330664 | 8.105054e-07 | 5.842241e-09 | 24.128110 | 0.007798 | 22.439268 | 0.007798 | 107.0 | 3.825216 | 1.922666 | 0.497371 | -62.893936 | 97.668085 | 53.144392944093546,-27.791328962845775 | 53.144703565437794,-27.79123202772391 | 53.144303915428,-27.791105694393245 | 53.144614536213595,-27.791008759470156 |
9 | 1144.9490 | 283.3296 | 53.14358305550695,-27.789197701529055 | 5.557672e-09 | 1.040130e-09 | 2.280591e-07 | 2.099645e-09 | 3.707462e-07 | 2.846108e-09 | 5.017274e-07 | 3.723249e-09 | 6.692497e-07 | 4.966408e-09 | 25.504881 | 0.009950 | 24.977308 | 0.008303 | 24.648830 | 0.008027 | 24.336030 | 0.008027 | 23.816039 | 0.009950 | 23.288466 | 0.008303 | 22.959988 | 0.008027 | 22.647187 | 0.008027 | 1.6257 | 1.3533 | 2.2000 | True | 0.717305 | -0.824142 | 24 | 36.719943 | 1.008096e-06 | 5.776021e-09 | 23.891245 | 0.006203 | 22.202403 | 0.006203 | 92.0 | 2.721301 | 1.993646 | 0.267392 | -41.463486 | 119.098535 | 53.143507196994044,-27.78932660340524 | 53.14374015935468,-27.789253903612426 | 53.143425019867095,-27.789120508927095 | 53.143657981840974,-27.789047809271892 |
10 | 528.1102 | 288.1443 | 53.14790112412848,-27.79976238477428 | 7.749812e-09 | 8.709945e-10 | 1.586189e-07 | 1.897268e-09 | 2.736881e-07 | 2.655841e-09 | 3.916759e-07 | 3.602650e-09 | 5.224530e-07 | 4.805542e-09 | 25.899113 | 0.012910 | 25.306860 | 0.010485 | 24.917683 | 0.009941 | 24.604882 | 0.009941 | 24.210271 | 0.012910 | 23.618018 | 0.010485 | 23.228841 | 0.009941 | 22.916040 | 0.009941 | 1.7254 | 1.4311 | 2.4693 | True | 0.579425 | -0.631278 | 25 | 52.223110 | 1.027561e-06 | 5.985943e-09 | 23.870481 | 0.006306 | 22.181639 | 0.006306 | 103.0 | 2.810589 | 2.194507 | 0.219200 | -57.198370 | 103.363651 | 53.14782996679236,-27.79989293437722 | 53.148082364071726,-27.79981416840877 | 53.14774777348275,-27.7996868424635 | 53.14800017034313,-27.799608076644134 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
270 | 1580.9733 | 1291.8858 | 53.16017465929453,-27.775598049730228 | 1.002240e-07 | 4.959677e-09 | 3.859994e-06 | 7.186629e-09 | 6.005378e-06 | 9.219351e-09 | 7.564578e-06 | 1.106268e-08 | 1.009032e-05 | 1.475642e-08 | 22.433534 | 0.002020 | 21.953649 | 0.001666 | 21.703038 | 0.001587 | 21.390237 | 0.001587 | 20.744692 | 0.002020 | 20.264807 | 0.001666 | 20.014196 | 0.001587 | 19.701395 | 0.001587 | 1.5558 | 1.2596 | 1.9597 | False | 0.834337 | -0.071714 | 268 | 33.166220 | 2.182067e-05 | 1.985403e-08 | 20.552830 | 0.000987 | 18.863988 | 0.000987 | 595.0 | 4.443323 | 3.932013 | 0.115074 | -9.045529 | 151.516492 | 53.160013978652145,-27.775927736394287 | 53.16057687448865,-27.775751977661137 | 53.15980848351335,-27.7754125245179 | 53.16037137701522,-27.775236766617674 |
271 | 1578.6007 | 1324.9670 | 53.16083302306788,-27.77543830223224 | 5.424842e-08 | 2.423096e-09 | 3.024348e-07 | 2.898067e-09 | 5.413627e-07 | 4.130348e-09 | 7.936335e-07 | 5.711870e-09 | 1.058621e-06 | 7.619012e-09 | 25.198420 | 0.010354 | 24.566279 | 0.008252 | 24.150950 | 0.007786 | 23.838149 | 0.007786 | 23.509578 | 0.010354 | 22.877437 | 0.008252 | 22.462108 | 0.007786 | 22.149307 | 0.007786 | 1.7900 | 1.4660 | 2.6241 | True | 0.689146 | 0.064080 | 267 | 33.166220 | 1.777783e-05 | 2.107388e-08 | 20.775303 | 0.001286 | 19.086461 | 0.001286 | 975.0 | 9.270214 | 4.933045 | 0.467861 | 73.580285 | 234.142306 | 53.16050037342635,-27.775833802155717 | 53.16150970031642,-27.77551864341136 | 53.160301726038206,-27.775335764708974 | 53.16131104888169,-27.775020607408482 |
272 | 581.5101 | 1417.9319 | 53.169468833588226,-27.791998317637123 | 2.053965e-07 | 2.633102e-08 | 5.086509e-06 | 8.568992e-09 | 8.820897e-06 | 1.156052e-08 | 1.200677e-05 | 1.440652e-08 | 1.601572e-05 | 1.921673e-08 | 22.133950 | 0.001828 | 21.536218 | 0.001422 | 21.201434 | 0.001302 | 20.888633 | 0.001302 | 20.445108 | 0.001828 | 19.847376 | 0.001422 | 19.512592 | 0.001302 | 19.199791 | 0.001302 | 1.7342 | 1.3612 | 2.3605 | True | 0.349537 | -0.542832 | 162 | 85.590703 | 4.107285e-05 | 2.662968e-08 | 19.866113 | 0.000704 | 18.177271 | 0.000704 | 925.0 | 5.890557 | 4.136466 | 0.297780 | -47.064833 | 113.497188 | 53.16912937496395,-27.792374897064423 | 53.169925292209356,-27.79212635768073 | 53.1688895441759,-27.791773832248296 | 53.169685457570644,-27.79152529423911 |
273 | 581.5101 | 1417.9319 | 53.169468833588226,-27.791998317637123 | 2.053965e-07 | 2.633102e-08 | 5.086509e-06 | 8.568992e-09 | 8.820897e-06 | 1.156052e-08 | 1.200677e-05 | 1.440652e-08 | 1.601572e-05 | 1.921673e-08 | 22.133950 | 0.001828 | 21.536218 | 0.001422 | 21.201434 | 0.001302 | 20.888633 | 0.001302 | 20.445108 | 0.001828 | 19.847376 | 0.001422 | 19.512592 | 0.001302 | 19.199791 | 0.001302 | 1.7342 | 1.3612 | 2.3605 | True | 0.349537 | -0.542832 | 162 | 85.590703 | 4.107285e-05 | 2.662968e-08 | 19.866113 | 0.000704 | 18.177271 | 0.000704 | 925.0 | 5.890557 | 4.136466 | 0.297780 | -47.064833 | 113.497188 | 53.16912937496395,-27.792374897064423 | 53.169925292209356,-27.79212635768073 | 53.1688895441759,-27.791773832248296 | 53.169685457570644,-27.79152529423911 |
275 | 845.8088 | 2143.6780 | 53.18174535072062,-27.783059485136135 | 1.835654e-08 | 1.294552e-09 | 1.616490e-07 | 2.948457e-09 | 3.051949e-07 | 4.239122e-09 | 4.554969e-07 | 5.855608e-09 | 6.075833e-07 | 7.810744e-09 | 25.878567 | 0.019625 | 25.188557 | 0.014977 | 24.753786 | 0.013869 | 24.440985 | 0.013869 | 24.189725 | 0.019625 | 23.499715 | 0.014977 | 23.064944 | 0.013869 | 22.752143 | 0.013869 | 1.8880 | 1.4925 | 2.8178 | True | 0.487342 | 0.146135 | 230 | 168.104157 | 3.015244e-06 | 1.348350e-08 | 22.701694 | 0.004844 | 21.012852 | 0.004844 | 232.0 | 4.737465 | 2.830359 | 0.402558 | 37.515594 | 198.077615 | 53.18163100297645,-27.783274994147327 | 53.18198038868856,-27.783165848428954 | 53.18148707478016,-27.782914368264645 | 53.181836459478575,-27.78280522290883 |
276 | 171.2371 | 2194.7290 | 53.187360194537945,-27.794334002070652 | 1.590736e-08 | 2.251894e-09 | 3.690315e-08 | 2.329012e-09 | 8.993002e-08 | 3.483083e-09 | 2.186778e-07 | 5.187443e-09 | 2.916924e-07 | 6.919484e-09 | 27.482341 | 0.066447 | 26.515238 | 0.041258 | 25.550488 | 0.025455 | 25.237687 | 0.025455 | 25.793499 | 0.066447 | 24.826396 | 0.041258 | 23.861646 | 0.025455 | 23.548845 | 0.025455 | 2.4369 | 2.4316 | 5.9257 | True | 0.437829 | 1.163967 | 270 | 22.544435 | 4.964015e-06 | 1.696137e-08 | 22.160417 | 0.003703 | 20.471575 | 0.003703 | 365.0 | 7.381711 | 3.089492 | 0.581467 | 46.985064 | 207.547085 | 53.18717815265612,-27.794656190601653 | 53.18772168942883,-27.7944863862642 | 53.18699305928096,-27.794192536154473 | 53.18753659402628,-27.794022732542317 |
277 | 173.0109 | 2217.2036 | 53.187784309214635,-27.794167245173398 | 4.123065e-08 | 2.820603e-09 | 1.980681e-07 | 4.073719e-09 | 3.754688e-07 | 5.872134e-09 | 6.446102e-07 | 8.346553e-09 | 8.598397e-07 | 1.113339e-08 | 25.657964 | 0.022104 | 24.963565 | 0.016849 | 24.376757 | 0.013968 | 24.063956 | 0.013968 | 23.969122 | 0.022104 | 23.274723 | 0.016849 | 22.687915 | 0.013968 | 22.375114 | 0.013968 | 1.8957 | 1.7168 | 3.2545 | True | 0.544037 | 1.466864 | 269 | 22.544435 | 2.098422e-05 | 3.812903e-08 | 20.595268 | 0.001971 | 18.906426 | 0.001971 | 896.0 | 8.795680 | 5.350058 | 0.391740 | 49.523903 | 210.085924 | 53.1874567766332,-27.794588461067388 | 53.18817502026789,-27.794364074872714 | 53.187203129087344,-27.793953083197277 | 53.18792136905083,-27.79372869831605 |
278 | 349.8548 | 2219.5695 | 53.18661793307821,-27.79111606663184 | 1.249205e-07 | 1.113951e-08 | 6.527284e-09 | 5.008677e-09 | 2.336472e-08 | 7.428618e-09 | 9.064168e-08 | 1.104022e-08 | 1.209061e-07 | 1.472644e-08 | 29.363169 | 0.618303 | 27.978598 | 0.299740 | 26.506680 | 0.124789 | 26.193879 | 0.124789 | 27.674327 | 0.618303 | 26.289756 | 0.299740 | 24.817838 | 0.124789 | 24.505037 | 0.124789 | 3.5795 | 3.8794 | 13.8866 | True | 0.465990 | 0.380720 | 246 | 37.050935 | 8.535426e-05 | 7.582709e-08 | 19.071937 | 0.000964 | 17.383095 | 0.000964 | 2032.0 | 10.433552 | 8.159100 | 0.217994 | -40.632093 | 119.929928 | 53.18615897255654,-27.791884348041776 | 53.18705190479082,-27.791605389212645 | 53.18571340188315,-27.790768139170456 | 53.186606326099216,-27.790489183209818 |
279 | 325.2421 | 2191.8750 | 53.186249061098934,-27.7917066742987 | 1.058341e-08 | 8.041901e-10 | 1.024315e-07 | 2.552820e-09 | 1.925124e-07 | 3.660766e-09 | 2.998903e-07 | 5.106543e-09 | 4.000210e-07 | 6.811572e-09 | 26.373916 | 0.026727 | 25.688853 | 0.020452 | 25.207594 | 0.018332 | 24.894793 | 0.018332 | 24.685074 | 0.026727 | 24.000011 | 0.020452 | 23.518752 | 0.018332 | 23.205951 | 0.018332 | 1.8794 | 1.5578 | 2.9277 | True | 0.374760 | 0.316755 | 245 | 37.050935 | 1.112848e-06 | 8.624665e-09 | 23.783910 | 0.008382 | 22.095068 | 0.008382 | 102.0 | 2.711757 | 2.365934 | 0.127527 | 65.474164 | 226.036185 | 53.186184085778656,-27.791837874653297 | 53.18643643653203,-27.791759038998485 | 53.18610182587664,-27.79163180544645 | 53.18635417621168,-27.791552969941307 |
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.15448302568743,-27.77150606244404 | True | 22.876487 | 21.187645 |
# 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.15448302568743,-27.77150606244404 | True | 22.876487 | 21.187645 |
# 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.15448302568743,-27.77150606244404 | True | 22.876487 | 21.187645 |
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()