stsci_logo

NIRISS Imaging Pipeline Notebook#

Authors: S. LaMassa, R. Diaz
Last Updated: April 17, 2026
Pipeline Version: 2.0.0 (Build 12.3)

Purpose:#

This notebook provides a framework for processing generic Near-Infrared Imager and Slitless Spectrograph (NIRISS) Imaging data through all three James Webb Space Telescope (JWST) pipeline stages. Data is assumed to be located in one observation folder according to paths set up below. It should not be necessary to edit any cells other than in the Configuration section unless modifying the standard pipeline processing options.

Data: This example is set up to use an example dataset is from Program ID 1475 (PI: Boyer, CoI: Volk) which is a sky flat calibration program. NIRCam is used as the primary instrument with NIRISS as a coordinated parallel instrument. The NIRISS imaging dataset uses a 17-step dither pattern.

Example input data to use will be downloaded automatically unless disabled (i.e., to use local files instead).

JWST pipeline version and CRDS context This notebook was written for the calibration pipeline version given above. It sets the CRDS context to use the most recent version available in the JWST Calibration Reference Data System (CRDS). If you use different pipeline versions or CRDS context, please read the relevant release notes (here for pipeline, here for CRDS) for possibly relevant changes.

Updates: This notebook is regularly updated as improvements are made to the pipeline. Find the most up to date version of this notebook at: https://github.com/spacetelescope/jwst-pipeline-notebooks/

Recent Changes:
January 24, 2024: original notebook released
Septemer 3, 2024: Updated text to highlight that IRAFStarFinder is the default centroiding algorithm used in the Image3 tweakreg step of the pipeline for NIRISS imaging, as of pipeline version 1.14.0 (build 10.2).
November 22, 2024: Updates to workflow when skipping pipeline modules
January 31, 2025: Update to build 11.2, no significant changes.
May 5, 2025: Updated to jwst 1.18.0 (no significant changes).
July 16, 2025: Updated to jwst 1.19.1 (no significant changes)
December 10 2025: Updated to jwst 1.20.2 (no significant changes)
April 17, 2026: Updated to jwst 2.0.0 (no significant changes)


Table of Contents#

  1. Configuration

  2. Package Imports

  3. Demo Mode Setup (ignore if not using demo data)

  4. Directory Setup

  5. Detector 1 Pipeline

  6. Image2 Pipeline

  7. Image3 Pipeline

  8. Visualize the data


1. Configuration#


Set basic configuration for running notebook.

Install dependencies and parameters#

To make sure that the pipeline version is compatabile with the steps discussed below and the required dependencies and packages are installed, you can create a fresh conda environment and install the provided requirements.txt file:

conda create -n niriss_imaging_pipeline python=3.13
conda activate niriss_imaging_pipeline
pip install -r requirements.txt

Set the basic parameters to use with this notebook. These will affect what data is used, where data is located (if already in disk), and pipeline modules run in this data. The list of parameters are:

  • demo_mode

  • directories with data

  • pipeline modules

# Basic import necessary for configuration
import os
Note that demo_mode must be set appropriately below.

Set demo_mode = True to run in demonstration mode. In this mode this notebook will download example data from the Barbara A. Mikulski Archive for Space Telescopes (MAST) and process it through the pipeline. This will all happen in a local directory unless modified in Section 3 below.

Set demo_mode = False if you want to process your own data that has already been downloaded and provide the location of the data.

# Set parameters for demo_mode, channel, band, data mode directories, and 
# processing steps.

# -----------------------------Demo Mode---------------------------------
demo_mode = True

if demo_mode:
    print('Running in demonstration mode using online example data!')

# --------------------------User Mode Directories------------------------
# If demo_mode = False, look for user data in these paths
if not demo_mode:
    # Set directory paths for processing specific data; these will need
    # to be changed to your local directory setup (below are given as
    # examples)
    user_home_dir = os.path.expanduser('~')

    # Point to where science observation data are
    # Assumes uncalibrated data in sci_dir/uncal/ and results in stage1,
    # stage2, stage3 directories
    sci_dir = os.path.join(user_home_dir, 'FlightData/APT1475/data/Obs006/')

# --------------------------Set Processing Steps--------------------------
# Individual pipeline stages can be turned on/off here.  Note that a later
# stage won't be able to run unless data products have already been
# produced from the prior stage.

# Science processing
dodet1 = True  # calwebb_detector1
doimage2 = True  # calwebb_image2
doimage3 = True  # calwebb_image3
doviz = True # Visualize calwebb_image3 output
Running in demonstration mode using online example data!

Set CRDS context and server#

Before importing CRDS and JWST modules, we need to configure our environment. This includes defining a CRDS cache directory in which to keep the reference files that will be used by the calibration pipeline.

If the root directory for the local CRDS cache directory has not been set already, it will be set to create one in the home directory.

# ------------------------Set CRDS context and paths----------------------

# Set CRDS context (if overriding to use a specific version of reference
# files; leave commented out to use latest reference files by default)
#%env CRDS_CONTEXT  jwst_1254.pmap

# Check whether the local CRDS cache directory has been set.
# If not, set it to the user home directory
if (os.getenv('CRDS_PATH') is None):
    os.environ['CRDS_PATH'] = os.path.join(os.path.expanduser('~'), 'crds')
# Check whether the CRDS server URL has been set.  If not, set it.
if (os.getenv('CRDS_SERVER_URL') is None):
    os.environ['CRDS_SERVER_URL'] = 'https://jwst-crds.stsci.edu'

# Echo CRDS path in use
print(f"CRDS local filepath: {os.environ['CRDS_PATH']}")
print(f"CRDS file server: {os.environ['CRDS_SERVER_URL']}")
CRDS local filepath: /home/runner/crds
CRDS file server: https://jwst-crds.stsci.edu

2. Package Imports#

# Use the entire available screen width for this notebook
from IPython.display import display, HTML
display(HTML("<style>.container { width:95% !important; }</style>"))
# Basic system utilities for interacting with files
# ----------------------General Imports------------------------------------
import glob
import time
from pathlib import Path
#import urllib.request

# Numpy for doing calculations
import numpy as np

# -----------------------Astroquery Imports--------------------------------
# ASCII files, and downloading demo files
from astroquery.mast import Observations

# For visualizing images
from jdaviz import Imviz

# Astropy routines for visualizing detected sources:
from astropy.table import Table
from astropy.coordinates import SkyCoord

# for JWST calibration pipeline
import jwst
import crds

from jwst.pipeline import Detector1Pipeline
from jwst.pipeline import Image2Pipeline
from jwst.pipeline import Image3Pipeline

# JWST pipeline utilities
from jwst import datamodels
from jwst.associations import asn_from_list  # Tools for creating association files
from jwst.associations.lib.rules_level3_base import DMS_Level3_Base  # Definition of a Lvl3 association file

# Echo pipeline version and CRDS context in use
print(f"JWST Calibration Pipeline Version: {jwst.__version__}")
print(f"Using CRDS Context: {crds.get_context_name('jwst')}")
JWST Calibration Pipeline Version: 2.0.0
CRDS - INFO -  Calibration SW Found: jwst 2.0.0 (/home/runner/micromamba/envs/ci-env/lib/python3.13/site-packages/jwst-2.0.0.dist-info)
Using CRDS Context: jwst_1535.pmap
# Start a timer to keep track of runtime
time0 = time.perf_counter()

3. Demo Mode Setup (ignore if not using demo data)#


If running in demonstration mode, set up the program information to retrieve the uncalibrated data automatically from MAST using astroquery. MAST allows for flexibility of searching by the proposal ID and the observation ID instead of just filenames.

For illustrative purposes, we focus on data taken through the NIRISS F150W filter and start with uncalibrated data products. The files are named jw01475006001_02201_000nn_nis_uncal.fits, where nn refers to the dither step number which ranges from 01 - 17.

More information about the JWST file naming conventions can be found at: https://jwst-pipeline.readthedocs.io/en/latest/jwst/data_products/file_naming.html

# Set up the program information and paths for demo program
if demo_mode:
    print('Running in demonstration mode and will download example data from MAST!')
    program = '01475'
    sci_observtn = "006"
    visit = "001"
    data_dir = os.path.join('.', 'nis_im_demo_data')
    download_dir = data_dir
    sci_dir = os.path.join(data_dir, 'Obs' + sci_observtn)
    uncal_dir = os.path.join(sci_dir, 'uncal')

    # Ensure filepaths for input data exist
    if not os.path.exists(uncal_dir):
        os.makedirs(uncal_dir)
        
    # Create directory if it does not exist
    if not os.path.isdir(data_dir):
        os.mkdir(data_dir)
Running in demonstration mode and will download example data from MAST!

Identify list of science (SCI) uncalibrated files associated with visits.

Selects only filter f150w data
# Obtain a list of observation IDs for the specified demo program
if demo_mode:
    # Science data
    sci_obs_id_table = Observations.query_criteria(instrument_name=["NIRISS/IMAGE"],
                                                   provenance_name=["CALJWST"],  # Executed observations
                                                   filters=['F150W'],  # Data for Specific Filter
                                                   obs_id=['jw' + program + '-o' + sci_observtn + '*']
                                                   )
# Turn the list of visits into a list of uncalibrated data files
if demo_mode:
    # Define types of files to select
    file_dict = {'uncal': {'product_type': 'SCIENCE',
                           'productSubGroupDescription': 'UNCAL',
                           'calib_level': [1]}}

    # Science files
    sci_files_to_download = []
    # Loop over visits identifying uncalibrated files that are associated
    # with them
    for exposure in (sci_obs_id_table):
        products = Observations.get_product_list(exposure)
        for filetype, query_dict in file_dict.items():
            filtered_products = Observations.filter_products(products, productType=query_dict['product_type'],
                                                             productSubGroupDescription=query_dict['productSubGroupDescription'],
                                                             calib_level=query_dict['calib_level'])
            sci_files_to_download.extend(filtered_products['dataURI'])
 
    sci_files_to_download = sorted(sci_files_to_download)
    print(f"Science files selected for downloading: {len(sci_files_to_download)}")
Science files selected for downloading: 17

Download all the uncal files and place them into the appropriate directories.

Warning: If this notebook is halted during this step the downloaded file may be incomplete, and cause crashes later on!
if demo_mode:
    for filename in sci_files_to_download:
        sci_manifest = Observations.download_file(filename,
                                                  local_path=os.path.join(uncal_dir, Path(filename).name))
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00001_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00001_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00002_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00002_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00003_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00003_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00004_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00004_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00005_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00005_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00006_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00006_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00007_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00007_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00008_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00008_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00009_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00009_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00010_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00010_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00011_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00011_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00012_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00012_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00013_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00013_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00014_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00014_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00015_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00015_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00016_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00016_nis_uncal.fits ...
 [Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01475006001_02201_00017_nis_uncal.fits to ./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00017_nis_uncal.fits ...
 [Done]

4. Directory Setup#


Set up detailed paths to input/output stages here.

# Define output subdirectories to keep science data products organized
uncal_dir = os.path.join(sci_dir, 'uncal')  # Uncalibrated pipeline inputs should be here
det1_dir = os.path.join(sci_dir, 'stage1')  # calwebb_detector1 pipeline outputs will go here
image2_dir = os.path.join(sci_dir, 'stage2')  # calwebb_spec2 pipeline outputs will go here
image3_dir = os.path.join(sci_dir, 'stage3')  # calwebb_spec3 pipeline outputs will go here

# We need to check that the desired output directories exist, and if not
# create them
if not os.path.exists(det1_dir):
    os.makedirs(det1_dir)
if not os.path.exists(image2_dir):
    os.makedirs(image2_dir)
if not os.path.exists(image3_dir):
    os.makedirs(image3_dir)

Look at the first file to determine exposure parameters and practice using JWST datamodels¶

uncal_files = sorted(glob.glob(os.path.join(uncal_dir, '*_uncal.fits')))

# print file name
print(uncal_files[0])

# Open file as JWST datamodel
examine = datamodels.open(uncal_files[0])

# Print out exposure info
print(f"Instrument: {examine.meta.instrument.name}")
print(f"Filter: {examine.meta.instrument.filter}")
print(f"Pupil: {examine.meta.instrument.pupil}")
print(f"Number of integrations: {examine.meta.exposure.nints}")
print(f"Number of groups: {examine.meta.exposure.ngroups}")
print(f"Readout pattern: {examine.meta.exposure.readpatt}")
print(f"Dither position number: {examine.meta.dither.position_number}")
print("\n")
./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00001_nis_uncal.fits
Instrument: NIRISS
Filter: CLEAR
Pupil: F150W
Number of integrations: 1
Number of groups: 16
Readout pattern: NIS
Dither position number: 1

From the above, we confirm that the data file is for the NIRISS instrument using the F150W filter in the Pupil Wheel crossed with the CLEAR filter in the Filter Wheel. This observation uses the NIS readout pattern, 16 groups per integration, and 1 integration per exposure. This data file is the 1st dither position in this exposure sequence. For more information about how JWST exposures are defined by up-the-ramp sampling, see the Understanding Exposure Times JDox article.

This metadata will be the same for all exposures in this observation other than the dither position number.

# Print out the time benchmark
time1 = time.perf_counter()
print(f"Runtime so far: {time1 - time0:0.0f} seconds")
Runtime so far: 17 seconds

5. Detector1 Pipeline#

Run the datasets through the Detector1 stage of the pipelineto apply detector level calibrations and create a countrate data product where slopes are fitted to the integration ramps. These *_rate.fits products are 2D (nrows x ncols), averaged over all integrations. 3D countrate data products (*_rateints.fits) are also created (nintegrations x nrows x ncols) which have the fitted ramp slopes for each integration.

By default, all steps in the Detector1 stage of the pipeline are run for NIRISS except: the ipc correction step and the gain_scale step. Note that while the persistence step is set to run by default, this step does not automatically correct the science data for persistence. The persistence step creates a *_trapsfilled.fits file which is a model that records the number of traps filled at each pixel at the end of an exposure. This file would be used as an input to the persistence step, via the input_trapsfilled argument, to correct a science exposure for persistence. Since persistence is not well calibrated for NIRISS, we do not perform a persistence correction and thus turn off this step to speed up calibration and to not create files that will not be used in the subsequent analysis. This step can be turned off when running the pipeline in Python by doing:

rate_result = Detector1Pipeline.call(uncal,steps={'persistence': {'skip': True}})

or as indicated in the cell bellow using a dictionary.

The charge_migration step is particularly important for NIRISS images to mitigate apparent flux loss in resampled images due to the spilling of charge from a central pixel into its neighboring pixels (see Goudfrooij et al. 2023 for details). Charge migration occurs when the accumulated charge in a central pixel exceeds a certain signal limit, which is ~25,000 ADU. This step is turned on by default for NIRISS imaging mode when using CRDS contexts of jwst_1159.pmap or later. Different signal limits for each filter are provided by the pars-chargemigrationstep parameter files. Users can specify a different signal limit by running this step with the signal_threshold flag and entering another signal limit in units of ADU.

As of CRDS context jwst_1155.pmap and later, the jump step of the DETECTOR1 stage of the pipeline will remove residuals associated with snowballs for the NIRISS imaging mode. The default parameters for this correction, where expand_large_events set to True turns on the snowball halo removal algorithm, are specified in the pars-jumpstep parameter reference files. Users may wish to alter parameters to optimize removal of snowball residuals. Available parameters are discussed in the Detection and Flagging of Showers and Snowballs in JWST Technical Report (Regan 2023).

# Set up a dictionary to define how the Detector1 pipeline should be configured

# Boilerplate dictionary setup
det1dict = {}
det1dict['group_scale'], det1dict['dq_init'], det1dict['saturation'] = {}, {}, {}
det1dict['ipc'], det1dict['superbias'], det1dict['refpix'] = {}, {}, {}
det1dict['linearity'], det1dict['persistence'], det1dict['dark_current'], = {}, {}, {}
det1dict['charge_migration'], det1dict['jump'], det1dict['ramp_fit'] = {}, {}, {}
det1dict['gain_scale'] = {}

# Overrides for whether or not certain steps should be skipped
# skipping the persistence step
det1dict['persistence']['skip'] = True
#det1dict['jump']['find_showers'] = False # Turn off detection of cosmic ray showers

# Overrides for various reference files
# Files should be in the base local directory or provide full path
#det1dict['dq_init']['override_mask'] = 'myfile.fits' # Bad pixel mask
#det1dict['saturation']['override_saturation'] = 'myfile.fits' # Saturation
#det1dict['reset']['override_reset'] = 'myfile.fits' # Reset
#det1dict['linearity']['override_linearity'] = 'myfile.fits' # Linearity
#det1dict['rscd']['override_rscd'] = 'myfile.fits' # RSCD
#det1dict['dark_current']['override_dark'] = 'myfile.fits' # Dark current subtraction
#det1dict['jump']['override_gain'] = 'myfile.fits' # Gain used by jump step
#det1dict['ramp_fit']['override_gain'] = 'myfile.fits' # Gain used by ramp fitting step
#det1dict['jump']['override_readnoise'] = 'myfile.fits' # Read noise used by jump step
#det1dict['ramp_fit']['override_readnoise'] = 'myfile.fits' # Read noise used by ramp fitting step

# Turn on multi-core processing (off by default).  Choose what fraction of cores to use (quarter, half, or all)
det1dict['jump']['maximum_cores'] = 'half'

# Alter parameters to optimize removal of snowball residuals (example)
#det1dict['jump']['expand_large_events'] = True
#det1dict['charge_migration']['signal_threshold'] = X
# Run Detector1 stage of pipeline, specifying:
# output directory to save *_rate.fits files
# save_results flag set to True so the rate files are saved

if dodet1:
    for uncal in uncal_files:
        rate_result = Detector1Pipeline.call(uncal, output_dir=det1_dir, steps=det1dict, save_results=True,)
else:
    print('Skipping Detector1 processing')
2026-04-15 20:14:10,050 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_system_datalvl_0002.rmap      694 bytes  (1 / 224 files) (0 / 796.2 K bytes)
2026-04-15 20:14:10,097 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_system_calver_0069.rmap    5.8 K bytes  (2 / 224 files) (694 / 796.2 K bytes)
2026-04-15 20:14:10,166 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_system_0064.imap        385 bytes  (3 / 224 files) (6.5 K / 796.2 K bytes)
2026-04-15 20:14:10,239 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_wavelengthrange_0024.rmap    1.4 K bytes  (4 / 224 files) (6.9 K / 796.2 K bytes)
2026-04-15 20:14:10,341 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_wavecorr_0005.rmap      884 bytes  (5 / 224 files) (8.3 K / 796.2 K bytes)
2026-04-15 20:14:10,370 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_superbias_0089.rmap   39.4 K bytes  (6 / 224 files) (9.1 K / 796.2 K bytes)
2026-04-15 20:14:10,560 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_sirskernel_0002.rmap      704 bytes  (7 / 224 files) (48.5 K / 796.2 K bytes)
2026-04-15 20:14:10,594 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_sflat_0027.rmap   20.6 K bytes  (8 / 224 files) (49.2 K / 796.2 K bytes)
2026-04-15 20:14:10,637 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_saturation_0018.rmap    2.0 K bytes  (9 / 224 files) (69.8 K / 796.2 K bytes)
2026-04-15 20:14:10,688 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_refpix_0015.rmap    1.6 K bytes  (10 / 224 files) (71.9 K / 796.2 K bytes)
2026-04-15 20:14:10,755 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_readnoise_0025.rmap    2.6 K bytes  (11 / 224 files) (73.4 K / 796.2 K bytes)
2026-04-15 20:14:10,799 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_psf_0002.rmap      687 bytes  (12 / 224 files) (76.0 K / 796.2 K bytes)
2026-04-15 20:14:10,905 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pictureframe_0002.rmap      886 bytes  (13 / 224 files) (76.7 K / 796.2 K bytes)
2026-04-15 20:14:11,029 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_photom_0013.rmap      958 bytes  (14 / 224 files) (77.6 K / 796.2 K bytes)
2026-04-15 20:14:11,066 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pathloss_0011.rmap    1.2 K bytes  (15 / 224 files) (78.5 K / 796.2 K bytes)
2026-04-15 20:14:11,115 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-whitelightstep_0001.rmap      777 bytes  (16 / 224 files) (79.7 K / 796.2 K bytes)
2026-04-15 20:14:11,147 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-tso3pipeline_0001.rmap      786 bytes  (17 / 224 files) (80.5 K / 796.2 K bytes)
2026-04-15 20:14:11,251 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-spec2pipeline_0013.rmap    2.1 K bytes  (18 / 224 files) (81.3 K / 796.2 K bytes)
2026-04-15 20:14:11,286 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-resamplespecstep_0002.rmap      709 bytes  (19 / 224 files) (83.4 K / 796.2 K bytes)
2026-04-15 20:14:11,326 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-refpixstep_0003.rmap      910 bytes  (20 / 224 files) (84.1 K / 796.2 K bytes)
2026-04-15 20:14:11,359 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-pixelreplacestep_0001.rmap      818 bytes  (21 / 224 files) (85.0 K / 796.2 K bytes)
2026-04-15 20:14:11,399 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-pictureframestep_0001.rmap      818 bytes  (22 / 224 files) (85.8 K / 796.2 K bytes)
2026-04-15 20:14:11,440 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-outlierdetectionstep_0005.rmap    1.1 K bytes  (23 / 224 files) (86.7 K / 796.2 K bytes)
2026-04-15 20:14:11,490 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-jumpstep_0006.rmap      810 bytes  (24 / 224 files) (87.8 K / 796.2 K bytes)
2026-04-15 20:14:11,582 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-image2pipeline_0008.rmap    1.0 K bytes  (25 / 224 files) (88.6 K / 796.2 K bytes)
2026-04-15 20:14:11,704 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-extract1dstep_0001.rmap      794 bytes  (26 / 224 files) (89.6 K / 796.2 K bytes)
2026-04-15 20:14:11,769 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-detector1pipeline_0004.rmap    1.1 K bytes  (27 / 224 files) (90.4 K / 796.2 K bytes)
2026-04-15 20:14:11,805 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-darkpipeline_0003.rmap      872 bytes  (28 / 224 files) (91.5 K / 796.2 K bytes)
2026-04-15 20:14:11,856 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-darkcurrentstep_0003.rmap    1.8 K bytes  (29 / 224 files) (92.4 K / 796.2 K bytes)
2026-04-15 20:14:11,898 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-cubebuildstep_0001.rmap      862 bytes  (30 / 224 files) (94.2 K / 796.2 K bytes)
2026-04-15 20:14:11,941 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-cleanflickernoisestep_0002.rmap      983 bytes  (31 / 224 files) (95.1 K / 796.2 K bytes)
2026-04-15 20:14:11,976 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-adaptivetracemodelstep_0002.rmap      997 bytes  (32 / 224 files) (96.1 K / 796.2 K bytes)
2026-04-15 20:14:12,019 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_ote_0030.rmap    1.3 K bytes  (33 / 224 files) (97.1 K / 796.2 K bytes)
2026-04-15 20:14:12,056 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_msaoper_0018.rmap    1.6 K bytes  (34 / 224 files) (98.3 K / 796.2 K bytes)
2026-04-15 20:14:12,087 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_msa_0027.rmap    1.3 K bytes  (35 / 224 files) (100.0 K / 796.2 K bytes)
2026-04-15 20:14:12,119 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_mask_0045.rmap    4.9 K bytes  (36 / 224 files) (101.2 K / 796.2 K bytes)
2026-04-15 20:14:12,153 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_linearity_0017.rmap    1.6 K bytes  (37 / 224 files) (106.2 K / 796.2 K bytes)
2026-04-15 20:14:12,199 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_ipc_0006.rmap      876 bytes  (38 / 224 files) (107.7 K / 796.2 K bytes)
2026-04-15 20:14:12,334 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_ifuslicer_0018.rmap    1.5 K bytes  (39 / 224 files) (108.6 K / 796.2 K bytes)
2026-04-15 20:14:12,379 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_ifupost_0020.rmap    1.5 K bytes  (40 / 224 files) (110.1 K / 796.2 K bytes)
2026-04-15 20:14:12,457 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_ifufore_0017.rmap    1.5 K bytes  (41 / 224 files) (111.6 K / 796.2 K bytes)
2026-04-15 20:14:12,517 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_gain_0023.rmap    1.8 K bytes  (42 / 224 files) (113.1 K / 796.2 K bytes)
2026-04-15 20:14:12,578 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_fpa_0028.rmap    1.3 K bytes  (43 / 224 files) (114.9 K / 796.2 K bytes)
2026-04-15 20:14:12,617 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_fore_0026.rmap    5.0 K bytes  (44 / 224 files) (116.2 K / 796.2 K bytes)
2026-04-15 20:14:12,658 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_flat_0015.rmap    3.8 K bytes  (45 / 224 files) (121.1 K / 796.2 K bytes)
2026-04-15 20:14:12,763 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_fflat_0030.rmap    7.2 K bytes  (46 / 224 files) (124.9 K / 796.2 K bytes)
2026-04-15 20:14:12,797 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_extract1d_0018.rmap    2.3 K bytes  (47 / 224 files) (132.1 K / 796.2 K bytes)
2026-04-15 20:14:12,845 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_disperser_0028.rmap    5.7 K bytes  (48 / 224 files) (134.4 K / 796.2 K bytes)
2026-04-15 20:14:12,884 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_dflat_0007.rmap    1.1 K bytes  (49 / 224 files) (140.1 K / 796.2 K bytes)
2026-04-15 20:14:12,920 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_dark_0085.rmap   37.4 K bytes  (50 / 224 files) (141.3 K / 796.2 K bytes)
2026-04-15 20:14:13,141 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_cubepar_0015.rmap      966 bytes  (51 / 224 files) (178.7 K / 796.2 K bytes)
2026-04-15 20:14:13,178 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_collimator_0026.rmap    1.3 K bytes  (52 / 224 files) (179.6 K / 796.2 K bytes)
2026-04-15 20:14:13,213 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_camera_0026.rmap    1.3 K bytes  (53 / 224 files) (181.0 K / 796.2 K bytes)
2026-04-15 20:14:13,248 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_barshadow_0007.rmap    1.8 K bytes  (54 / 224 files) (182.3 K / 796.2 K bytes)
2026-04-15 20:14:13,325 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_area_0019.rmap    6.8 K bytes  (55 / 224 files) (184.1 K / 796.2 K bytes)
2026-04-15 20:14:13,375 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_apcorr_0009.rmap    5.6 K bytes  (56 / 224 files) (190.9 K / 796.2 K bytes)
2026-04-15 20:14:13,412 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_0432.imap     6.2 K bytes  (57 / 224 files) (196.5 K / 796.2 K bytes)
2026-04-15 20:14:13,451 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_wavelengthrange_0008.rmap      897 bytes  (58 / 224 files) (202.6 K / 796.2 K bytes)
2026-04-15 20:14:13,485 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_trappars_0004.rmap      753 bytes  (59 / 224 files) (203.5 K / 796.2 K bytes)
2026-04-15 20:14:13,528 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_trapdensity_0005.rmap      705 bytes  (60 / 224 files) (204.3 K / 796.2 K bytes)
2026-04-15 20:14:13,567 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_throughput_0005.rmap    1.3 K bytes  (61 / 224 files) (205.0 K / 796.2 K bytes)
2026-04-15 20:14:13,601 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_superbias_0035.rmap    8.3 K bytes  (62 / 224 files) (206.2 K / 796.2 K bytes)
2026-04-15 20:14:13,636 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_specwcs_0017.rmap    3.1 K bytes  (63 / 224 files) (214.5 K / 796.2 K bytes)
2026-04-15 20:14:13,675 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_specprofile_0010.rmap    2.5 K bytes  (64 / 224 files) (217.7 K / 796.2 K bytes)
2026-04-15 20:14:13,714 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_speckernel_0006.rmap    1.0 K bytes  (65 / 224 files) (220.2 K / 796.2 K bytes)
2026-04-15 20:14:13,758 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_sirskernel_0002.rmap      700 bytes  (66 / 224 files) (221.2 K / 796.2 K bytes)
2026-04-15 20:14:13,798 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_saturation_0015.rmap      829 bytes  (67 / 224 files) (221.9 K / 796.2 K bytes)
2026-04-15 20:14:13,836 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_readnoise_0011.rmap      987 bytes  (68 / 224 files) (222.7 K / 796.2 K bytes)
2026-04-15 20:14:13,879 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_photom_0041.rmap    1.3 K bytes  (69 / 224 files) (223.7 K / 796.2 K bytes)
2026-04-15 20:14:13,910 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_persat_0007.rmap      674 bytes  (70 / 224 files) (225.0 K / 796.2 K bytes)
2026-04-15 20:14:13,951 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pathloss_0003.rmap      758 bytes  (71 / 224 files) (225.6 K / 796.2 K bytes)
2026-04-15 20:14:13,990 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pastasoss_0006.rmap      818 bytes  (72 / 224 files) (226.4 K / 796.2 K bytes)
2026-04-15 20:14:14,025 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-wfsscontamstep_0001.rmap      797 bytes  (73 / 224 files) (227.2 K / 796.2 K bytes)
2026-04-15 20:14:14,066 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-undersamplecorrectionstep_0001.rmap      904 bytes  (74 / 224 files) (228.0 K / 796.2 K bytes)
2026-04-15 20:14:14,103 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-tweakregstep_0012.rmap    3.1 K bytes  (75 / 224 files) (228.9 K / 796.2 K bytes)
2026-04-15 20:14:14,141 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-spec2pipeline_0009.rmap    1.2 K bytes  (76 / 224 files) (232.0 K / 796.2 K bytes)
2026-04-15 20:14:14,176 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-sourcecatalogstep_0002.rmap    2.3 K bytes  (77 / 224 files) (233.3 K / 796.2 K bytes)
2026-04-15 20:14:14,236 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-resamplestep_0002.rmap      687 bytes  (78 / 224 files) (235.6 K / 796.2 K bytes)
2026-04-15 20:14:14,276 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-outlierdetectionstep_0004.rmap    2.7 K bytes  (79 / 224 files) (236.3 K / 796.2 K bytes)
2026-04-15 20:14:14,340 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-jumpstep_0007.rmap    6.4 K bytes  (80 / 224 files) (239.0 K / 796.2 K bytes)
2026-04-15 20:14:14,379 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-image2pipeline_0005.rmap    1.0 K bytes  (81 / 224 files) (245.3 K / 796.2 K bytes)
2026-04-15 20:14:14,419 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-detector1pipeline_0005.rmap    1.5 K bytes  (82 / 224 files) (246.3 K / 796.2 K bytes)
2026-04-15 20:14:14,458 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-darkpipeline_0002.rmap      868 bytes  (83 / 224 files) (247.9 K / 796.2 K bytes)
2026-04-15 20:14:14,501 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-darkcurrentstep_0001.rmap      591 bytes  (84 / 224 files) (248.8 K / 796.2 K bytes)
2026-04-15 20:14:14,532 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-cleanflickernoisestep_0003.rmap    1.2 K bytes  (85 / 224 files) (249.3 K / 796.2 K bytes)
2026-04-15 20:14:14,572 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-chargemigrationstep_0005.rmap    5.7 K bytes  (86 / 224 files) (250.6 K / 796.2 K bytes)
2026-04-15 20:14:14,607 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-backgroundstep_0003.rmap      822 bytes  (87 / 224 files) (256.2 K / 796.2 K bytes)
2026-04-15 20:14:14,643 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_nrm_0005.rmap      663 bytes  (88 / 224 files) (257.0 K / 796.2 K bytes)
2026-04-15 20:14:14,686 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_mask_0025.rmap    1.6 K bytes  (89 / 224 files) (257.7 K / 796.2 K bytes)
2026-04-15 20:14:14,725 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_linearity_0022.rmap      961 bytes  (90 / 224 files) (259.3 K / 796.2 K bytes)
2026-04-15 20:14:14,762 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_ipc_0007.rmap      651 bytes  (91 / 224 files) (260.3 K / 796.2 K bytes)
2026-04-15 20:14:14,804 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_gain_0011.rmap      797 bytes  (92 / 224 files) (260.9 K / 796.2 K bytes)
2026-04-15 20:14:14,836 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_flat_0023.rmap    5.9 K bytes  (93 / 224 files) (261.7 K / 796.2 K bytes)
2026-04-15 20:14:14,874 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_filteroffset_0010.rmap      853 bytes  (94 / 224 files) (267.6 K / 796.2 K bytes)
2026-04-15 20:14:14,915 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_extract1d_0007.rmap      905 bytes  (95 / 224 files) (268.4 K / 796.2 K bytes)
2026-04-15 20:14:14,959 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_drizpars_0004.rmap      519 bytes  (96 / 224 files) (269.3 K / 796.2 K bytes)
2026-04-15 20:14:15,006 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_distortion_0025.rmap    3.4 K bytes  (97 / 224 files) (269.9 K / 796.2 K bytes)
2026-04-15 20:14:15,070 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_dark_0039.rmap    8.3 K bytes  (98 / 224 files) (273.3 K / 796.2 K bytes)
2026-04-15 20:14:15,110 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_bkg_0005.rmap    3.1 K bytes  (99 / 224 files) (281.6 K / 796.2 K bytes)
2026-04-15 20:14:15,150 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_area_0014.rmap    2.7 K bytes  (100 / 224 files) (284.7 K / 796.2 K bytes)
2026-04-15 20:14:15,178 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_apcorr_0010.rmap    4.3 K bytes  (101 / 224 files) (287.4 K / 796.2 K bytes)
2026-04-15 20:14:15,216 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_abvegaoffset_0004.rmap    1.4 K bytes  (102 / 224 files) (291.7 K / 796.2 K bytes)
2026-04-15 20:14:15,258 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_0308.imap      5.9 K bytes  (103 / 224 files) (293.0 K / 796.2 K bytes)
2026-04-15 20:14:15,294 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_wavelengthrange_0012.rmap      996 bytes  (104 / 224 files) (299.0 K / 796.2 K bytes)
2026-04-15 20:14:15,331 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_tsophot_0003.rmap      896 bytes  (105 / 224 files) (300.0 K / 796.2 K bytes)
2026-04-15 20:14:15,374 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_trappars_0003.rmap    1.6 K bytes  (106 / 224 files) (300.9 K / 796.2 K bytes)
2026-04-15 20:14:15,409 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_trapdensity_0003.rmap    1.6 K bytes  (107 / 224 files) (302.5 K / 796.2 K bytes)
2026-04-15 20:14:15,445 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_superbias_0022.rmap   25.5 K bytes  (108 / 224 files) (304.1 K / 796.2 K bytes)
2026-04-15 20:14:15,483 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_specwcs_0027.rmap    8.0 K bytes  (109 / 224 files) (329.6 K / 796.2 K bytes)
2026-04-15 20:14:15,522 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_sirskernel_0003.rmap      671 bytes  (110 / 224 files) (337.6 K / 796.2 K bytes)
2026-04-15 20:14:15,564 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_saturation_0011.rmap    2.8 K bytes  (111 / 224 files) (338.3 K / 796.2 K bytes)
2026-04-15 20:14:15,611 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_regions_0003.rmap    3.4 K bytes  (112 / 224 files) (341.1 K / 796.2 K bytes)
2026-04-15 20:14:15,643 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_readnoise_0028.rmap   27.1 K bytes  (113 / 224 files) (344.5 K / 796.2 K bytes)
2026-04-15 20:14:15,700 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_psfmask_0008.rmap   28.4 K bytes  (114 / 224 files) (371.7 K / 796.2 K bytes)
2026-04-15 20:14:15,758 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_photom_0031.rmap    3.4 K bytes  (115 / 224 files) (400.0 K / 796.2 K bytes)
2026-04-15 20:14:15,794 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_persat_0005.rmap    1.6 K bytes  (116 / 224 files) (403.5 K / 796.2 K bytes)
2026-04-15 20:14:15,831 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-whitelightstep_0004.rmap    2.0 K bytes  (117 / 224 files) (405.0 K / 796.2 K bytes)
2026-04-15 20:14:15,866 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-wfsscontamstep_0001.rmap      797 bytes  (118 / 224 files) (407.0 K / 796.2 K bytes)
2026-04-15 20:14:15,905 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-tweakregstep_0003.rmap    4.5 K bytes  (119 / 224 files) (407.8 K / 796.2 K bytes)
2026-04-15 20:14:15,948 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-tsophotometrystep_0003.rmap    1.1 K bytes  (120 / 224 files) (412.3 K / 796.2 K bytes)
2026-04-15 20:14:15,993 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-spec2pipeline_0009.rmap      984 bytes  (121 / 224 files) (413.4 K / 796.2 K bytes)
2026-04-15 20:14:16,032 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-sourcecatalogstep_0002.rmap    4.6 K bytes  (122 / 224 files) (414.4 K / 796.2 K bytes)
2026-04-15 20:14:16,070 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-resamplestep_0002.rmap      687 bytes  (123 / 224 files) (419.0 K / 796.2 K bytes)
2026-04-15 20:14:16,102 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-outlierdetectionstep_0003.rmap      940 bytes  (124 / 224 files) (419.7 K / 796.2 K bytes)
2026-04-15 20:14:16,133 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-jumpstep_0005.rmap      806 bytes  (125 / 224 files) (420.6 K / 796.2 K bytes)
2026-04-15 20:14:16,179 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-image2pipeline_0004.rmap    1.1 K bytes  (126 / 224 files) (421.4 K / 796.2 K bytes)
2026-04-15 20:14:16,221 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-detector1pipeline_0007.rmap    1.7 K bytes  (127 / 224 files) (422.6 K / 796.2 K bytes)
2026-04-15 20:14:16,253 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-darkpipeline_0002.rmap      868 bytes  (128 / 224 files) (424.3 K / 796.2 K bytes)
2026-04-15 20:14:16,291 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-darkcurrentstep_0001.rmap      618 bytes  (129 / 224 files) (425.2 K / 796.2 K bytes)
2026-04-15 20:14:16,324 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-backgroundstep_0003.rmap      822 bytes  (130 / 224 files) (425.8 K / 796.2 K bytes)
2026-04-15 20:14:16,365 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_mask_0014.rmap    5.4 K bytes  (131 / 224 files) (426.6 K / 796.2 K bytes)
2026-04-15 20:14:16,406 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_linearity_0011.rmap    2.4 K bytes  (132 / 224 files) (432.0 K / 796.2 K bytes)
2026-04-15 20:14:16,457 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_ipc_0003.rmap    2.0 K bytes  (133 / 224 files) (434.4 K / 796.2 K bytes)
2026-04-15 20:14:16,493 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_gain_0016.rmap    2.1 K bytes  (134 / 224 files) (436.4 K / 796.2 K bytes)
2026-04-15 20:14:16,531 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_flat_0028.rmap   51.7 K bytes  (135 / 224 files) (438.5 K / 796.2 K bytes)
2026-04-15 20:14:16,583 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_filteroffset_0004.rmap    1.4 K bytes  (136 / 224 files) (490.2 K / 796.2 K bytes)
2026-04-15 20:14:16,621 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_extract1d_0007.rmap    2.2 K bytes  (137 / 224 files) (491.6 K / 796.2 K bytes)
2026-04-15 20:14:16,660 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_drizpars_0001.rmap      519 bytes  (138 / 224 files) (493.8 K / 796.2 K bytes)
2026-04-15 20:14:16,702 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_distortion_0034.rmap   53.4 K bytes  (139 / 224 files) (494.3 K / 796.2 K bytes)
2026-04-15 20:14:16,754 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_dark_0054.rmap   33.9 K bytes  (140 / 224 files) (547.6 K / 796.2 K bytes)
2026-04-15 20:14:16,800 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_bkg_0002.rmap    7.0 K bytes  (141 / 224 files) (581.5 K / 796.2 K bytes)
2026-04-15 20:14:16,887 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_area_0012.rmap   33.5 K bytes  (142 / 224 files) (588.5 K / 796.2 K bytes)
2026-04-15 20:14:16,931 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_apcorr_0009.rmap    4.3 K bytes  (143 / 224 files) (622.0 K / 796.2 K bytes)
2026-04-15 20:14:16,969 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_abvegaoffset_0004.rmap    1.3 K bytes  (144 / 224 files) (626.2 K / 796.2 K bytes)
2026-04-15 20:14:17,014 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_0354.imap      5.8 K bytes  (145 / 224 files) (627.5 K / 796.2 K bytes)
2026-04-15 20:14:17,051 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_wavelengthrange_0030.rmap    1.0 K bytes  (146 / 224 files) (633.3 K / 796.2 K bytes)
2026-04-15 20:14:17,083 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_tsophot_0004.rmap      882 bytes  (147 / 224 files) (634.3 K / 796.2 K bytes)
2026-04-15 20:14:17,119 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_straymask_0009.rmap      987 bytes  (148 / 224 files) (635.2 K / 796.2 K bytes)
2026-04-15 20:14:17,160 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_specwcs_0048.rmap    5.9 K bytes  (149 / 224 files) (636.2 K / 796.2 K bytes)
2026-04-15 20:14:17,195 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_saturation_0015.rmap    1.2 K bytes  (150 / 224 files) (642.1 K / 796.2 K bytes)
2026-04-15 20:14:17,242 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_rscd_0010.rmap    1.0 K bytes  (151 / 224 files) (643.3 K / 796.2 K bytes)
2026-04-15 20:14:17,282 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_resol_0006.rmap      790 bytes  (152 / 224 files) (644.3 K / 796.2 K bytes)
2026-04-15 20:14:17,324 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_reset_0026.rmap    3.9 K bytes  (153 / 224 files) (645.1 K / 796.2 K bytes)
2026-04-15 20:14:17,364 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_regions_0036.rmap    4.4 K bytes  (154 / 224 files) (649.0 K / 796.2 K bytes)
2026-04-15 20:14:17,400 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_readnoise_0023.rmap    1.6 K bytes  (155 / 224 files) (653.3 K / 796.2 K bytes)
2026-04-15 20:14:17,445 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_psfmask_0009.rmap    2.1 K bytes  (156 / 224 files) (655.0 K / 796.2 K bytes)
2026-04-15 20:14:17,479 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_psf_0008.rmap    2.6 K bytes  (157 / 224 files) (657.1 K / 796.2 K bytes)
2026-04-15 20:14:17,516 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_photom_0063.rmap    3.9 K bytes  (158 / 224 files) (659.7 K / 796.2 K bytes)
2026-04-15 20:14:17,557 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pathloss_0005.rmap      866 bytes  (159 / 224 files) (663.6 K / 796.2 K bytes)
2026-04-15 20:14:17,598 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-whitelightstep_0003.rmap      912 bytes  (160 / 224 files) (664.4 K / 796.2 K bytes)
2026-04-15 20:14:17,638 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-wfsscontamstep_0001.rmap      787 bytes  (161 / 224 files) (665.4 K / 796.2 K bytes)
2026-04-15 20:14:17,677 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-tweakregstep_0003.rmap    1.8 K bytes  (162 / 224 files) (666.1 K / 796.2 K bytes)
2026-04-15 20:14:17,710 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-tsophotometrystep_0003.rmap    2.7 K bytes  (163 / 224 files) (668.0 K / 796.2 K bytes)
2026-04-15 20:14:17,751 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-spec3pipeline_0011.rmap      886 bytes  (164 / 224 files) (670.6 K / 796.2 K bytes)
2026-04-15 20:14:17,791 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-spec2pipeline_0013.rmap    1.4 K bytes  (165 / 224 files) (671.5 K / 796.2 K bytes)
2026-04-15 20:14:17,823 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-sourcecatalogstep_0003.rmap    1.9 K bytes  (166 / 224 files) (672.9 K / 796.2 K bytes)
2026-04-15 20:14:17,863 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-resamplestep_0002.rmap      677 bytes  (167 / 224 files) (674.9 K / 796.2 K bytes)
2026-04-15 20:14:17,897 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-resamplespecstep_0002.rmap      706 bytes  (168 / 224 files) (675.5 K / 796.2 K bytes)
2026-04-15 20:14:17,934 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-outlierdetectionstep_0020.rmap    3.4 K bytes  (169 / 224 files) (676.2 K / 796.2 K bytes)
2026-04-15 20:14:17,973 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-jumpstep_0011.rmap    1.6 K bytes  (170 / 224 files) (679.6 K / 796.2 K bytes)
2026-04-15 20:14:18,011 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-image2pipeline_0010.rmap    1.1 K bytes  (171 / 224 files) (681.2 K / 796.2 K bytes)
2026-04-15 20:14:18,044 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-extract1dstep_0003.rmap      807 bytes  (172 / 224 files) (682.3 K / 796.2 K bytes)
2026-04-15 20:14:18,085 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-emicorrstep_0003.rmap      796 bytes  (173 / 224 files) (683.1 K / 796.2 K bytes)
2026-04-15 20:14:18,128 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-detector1pipeline_0010.rmap    1.6 K bytes  (174 / 224 files) (683.9 K / 796.2 K bytes)
2026-04-15 20:14:18,166 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-darkpipeline_0002.rmap      860 bytes  (175 / 224 files) (685.5 K / 796.2 K bytes)
2026-04-15 20:14:18,201 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-darkcurrentstep_0002.rmap      683 bytes  (176 / 224 files) (686.3 K / 796.2 K bytes)
2026-04-15 20:14:18,239 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-backgroundstep_0003.rmap      814 bytes  (177 / 224 files) (687.0 K / 796.2 K bytes)
2026-04-15 20:14:18,283 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-adaptivetracemodelstep_0002.rmap      979 bytes  (178 / 224 files) (687.8 K / 796.2 K bytes)
2026-04-15 20:14:18,314 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_mrsxartcorr_0002.rmap    2.2 K bytes  (179 / 224 files) (688.8 K / 796.2 K bytes)
2026-04-15 20:14:18,353 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_mrsptcorr_0005.rmap    2.0 K bytes  (180 / 224 files) (691.0 K / 796.2 K bytes)
2026-04-15 20:14:18,390 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_mask_0036.rmap    8.6 K bytes  (181 / 224 files) (692.9 K / 796.2 K bytes)
2026-04-15 20:14:18,423 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_linearity_0018.rmap    2.8 K bytes  (182 / 224 files) (701.6 K / 796.2 K bytes)
2026-04-15 20:14:18,458 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_ipc_0008.rmap      700 bytes  (183 / 224 files) (704.4 K / 796.2 K bytes)
2026-04-15 20:14:18,504 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_gain_0013.rmap    3.9 K bytes  (184 / 224 files) (705.1 K / 796.2 K bytes)
2026-04-15 20:14:18,536 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_fringefreq_0003.rmap    1.4 K bytes  (185 / 224 files) (709.0 K / 796.2 K bytes)
2026-04-15 20:14:18,572 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_fringe_0019.rmap    3.9 K bytes  (186 / 224 files) (710.5 K / 796.2 K bytes)
2026-04-15 20:14:18,609 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_flat_0073.rmap   16.5 K bytes  (187 / 224 files) (714.4 K / 796.2 K bytes)
2026-04-15 20:14:18,650 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_filteroffset_0029.rmap    2.4 K bytes  (188 / 224 files) (730.9 K / 796.2 K bytes)
2026-04-15 20:14:18,691 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_extract1d_0022.rmap    1.0 K bytes  (189 / 224 files) (733.3 K / 796.2 K bytes)
2026-04-15 20:14:18,730 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_emicorr_0004.rmap      663 bytes  (190 / 224 files) (734.3 K / 796.2 K bytes)
2026-04-15 20:14:18,766 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_drizpars_0002.rmap      511 bytes  (191 / 224 files) (735.0 K / 796.2 K bytes)
2026-04-15 20:14:18,807 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_distortion_0043.rmap    4.8 K bytes  (192 / 224 files) (735.5 K / 796.2 K bytes)
2026-04-15 20:14:18,839 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_dark_0039.rmap    4.3 K bytes  (193 / 224 files) (740.3 K / 796.2 K bytes)
2026-04-15 20:14:18,870 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_cubepar_0017.rmap      800 bytes  (194 / 224 files) (744.6 K / 796.2 K bytes)
2026-04-15 20:14:18,908 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_bkg_0004.rmap      712 bytes  (195 / 224 files) (745.4 K / 796.2 K bytes)
2026-04-15 20:14:18,939 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_area_0015.rmap      866 bytes  (196 / 224 files) (746.1 K / 796.2 K bytes)
2026-04-15 20:14:18,980 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_apcorr_0023.rmap    5.0 K bytes  (197 / 224 files) (746.9 K / 796.2 K bytes)
2026-04-15 20:14:19,024 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_abvegaoffset_0003.rmap    1.3 K bytes  (198 / 224 files) (752.0 K / 796.2 K bytes)
2026-04-15 20:14:19,059 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_0487.imap        6.0 K bytes  (199 / 224 files) (753.2 K / 796.2 K bytes)
2026-04-15 20:14:19,097 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_trappars_0004.rmap      903 bytes  (200 / 224 files) (759.3 K / 796.2 K bytes)
2026-04-15 20:14:19,138 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_trapdensity_0006.rmap      930 bytes  (201 / 224 files) (760.2 K / 796.2 K bytes)
2026-04-15 20:14:19,172 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_superbias_0017.rmap    3.8 K bytes  (202 / 224 files) (761.1 K / 796.2 K bytes)
2026-04-15 20:14:19,204 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_saturation_0009.rmap      779 bytes  (203 / 224 files) (764.9 K / 796.2 K bytes)
2026-04-15 20:14:19,235 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_readnoise_0014.rmap    1.3 K bytes  (204 / 224 files) (765.7 K / 796.2 K bytes)
2026-04-15 20:14:19,286 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_photom_0014.rmap    1.1 K bytes  (205 / 224 files) (766.9 K / 796.2 K bytes)
2026-04-15 20:14:19,328 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_persat_0006.rmap      884 bytes  (206 / 224 files) (768.1 K / 796.2 K bytes)
2026-04-15 20:14:19,367 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_pars-tweakregstep_0002.rmap      850 bytes  (207 / 224 files) (769.0 K / 796.2 K bytes)
2026-04-15 20:14:19,404 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_pars-sourcecatalogstep_0001.rmap      636 bytes  (208 / 224 files) (769.8 K / 796.2 K bytes)
2026-04-15 20:14:19,445 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_pars-outlierdetectionstep_0001.rmap      654 bytes  (209 / 224 files) (770.4 K / 796.2 K bytes)
2026-04-15 20:14:19,481 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_pars-image2pipeline_0005.rmap      974 bytes  (210 / 224 files) (771.1 K / 796.2 K bytes)
2026-04-15 20:14:19,520 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_pars-detector1pipeline_0002.rmap    1.0 K bytes  (211 / 224 files) (772.1 K / 796.2 K bytes)
2026-04-15 20:14:19,554 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_pars-darkpipeline_0002.rmap      856 bytes  (212 / 224 files) (773.1 K / 796.2 K bytes)
2026-04-15 20:14:19,588 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_mask_0023.rmap    1.1 K bytes  (213 / 224 files) (774.0 K / 796.2 K bytes)
2026-04-15 20:14:19,621 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_linearity_0015.rmap      925 bytes  (214 / 224 files) (775.0 K / 796.2 K bytes)
2026-04-15 20:14:19,663 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_ipc_0003.rmap       614 bytes  (215 / 224 files) (775.9 K / 796.2 K bytes)
2026-04-15 20:14:19,704 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_gain_0010.rmap      890 bytes  (216 / 224 files) (776.5 K / 796.2 K bytes)
2026-04-15 20:14:19,742 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_flat_0009.rmap    1.1 K bytes  (217 / 224 files) (777.4 K / 796.2 K bytes)
2026-04-15 20:14:19,781 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_distortion_0011.rmap    1.2 K bytes  (218 / 224 files) (778.6 K / 796.2 K bytes)
2026-04-15 20:14:19,817 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_dark_0017.rmap    4.3 K bytes  (219 / 224 files) (779.8 K / 796.2 K bytes)
2026-04-15 20:14:19,868 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_area_0010.rmap    1.2 K bytes  (220 / 224 files) (784.1 K / 796.2 K bytes)
2026-04-15 20:14:19,902 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_apcorr_0004.rmap    4.0 K bytes  (221 / 224 files) (785.2 K / 796.2 K bytes)
2026-04-15 20:14:19,936 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_abvegaoffset_0002.rmap    1.3 K bytes  (222 / 224 files) (789.2 K / 796.2 K bytes)
2026-04-15 20:14:19,980 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_0125.imap         5.1 K bytes  (223 / 224 files) (790.5 K / 796.2 K bytes)
2026-04-15 20:14:20,019 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_1535.pmap               580 bytes  (224 / 224 files) (795.6 K / 796.2 K bytes)
2026-04-15 20:14:20,214 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:14:20,219 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf    1.1 K bytes  (1 / 1 files) (0 / 1.1 K bytes)
2026-04-15 20:14:20,258 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:14:20,271 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf    1.6 K bytes  (1 / 1 files) (0 / 1.6 K bytes)
2026-04-15 20:14:20,306 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:14:20,318 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf    1.5 K bytes  (1 / 1 files) (0 / 1.5 K bytes)
2026-04-15 20:14:20,356 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:14:20,367 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf    1.7 K bytes  (1 / 1 files) (0 / 1.7 K bytes)
2026-04-15 20:14:20,400 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:14:20,417 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:14:20,420 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:14:20,421 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:14:20,422 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:14:20,422 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:14:20,423 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:14:20,424 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:14:20,425 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:14:20,426 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:14:20,426 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:14:20,427 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:14:20,428 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:14:20,429 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:14:20,430 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:14:20,430 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:14:20,431 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:14:20,433 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:14:20,434 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:14:20,435 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:14:20,436 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:14:20,437 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:14:20,693 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00001_nis_uncal.fits',).
2026-04-15 20:14:20,712 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:14:20,736 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00001_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:14:20,739 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits    1.0 G bytes  (1 / 9 files) (0 / 1.4 G bytes)
2026-04-15 20:14:28,007 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits   67.1 M bytes  (2 / 9 files) (1.0 G / 1.4 G bytes)
2026-04-15 20:14:28,586 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits   16.8 M bytes  (3 / 9 files) (1.1 G / 1.4 G bytes)
2026-04-15 20:14:28,748 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits  205.5 M bytes  (4 / 9 files) (1.1 G / 1.4 G bytes)
2026-04-15 20:14:30,446 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits   16.8 M bytes  (5 / 9 files) (1.3 G / 1.4 G bytes)
2026-04-15 20:14:30,656 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits   16.8 M bytes  (6 / 9 files) (1.3 G / 1.4 G bytes)
2026-04-15 20:14:30,866 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits   33.6 M bytes  (7 / 9 files) (1.3 G / 1.4 G bytes)
2026-04-15 20:14:31,197 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf   67.4 K bytes  (8 / 9 files) (1.4 G / 1.4 G bytes)
2026-04-15 20:14:31,258 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits   50.4 M bytes  (9 / 9 files) (1.4 G / 1.4 G bytes)
2026-04-15 20:14:31,737 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:14:31,738 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:14:31,738 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:14:31,739 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:14:31,740 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:14:31,741 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:14:31,741 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:14:31,742 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:14:31,742 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:14:31,743 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:14:31,743 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:14:31,744 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:14:31,745 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:14:31,745 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:14:32,212 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:14:32,214 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:14:32,214 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:14:32,216 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:14:32,476 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:14:32,488 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:14:32,639 - CRDS - INFO -  Calibration SW Found: jwst 2.0.0 (/home/runner/micromamba/envs/ci-env/lib/python3.13/site-packages/jwst-2.0.0.dist-info)
2026-04-15 20:14:33,988 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:14:34,250 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:14:34,256 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:14:34,257 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:14:34,298 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:34,299 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:34,305 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:34,382 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:14:35,367 - stcal.saturation.saturation - INFO - Detected 4223 saturated pixels
2026-04-15 20:14:35,391 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-04-15 20:14:35,407 - stpipe.step - INFO - Step saturation done
2026-04-15 20:14:35,671 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:14:35,671 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:35,938 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:14:35,946 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:14:36,047 - stpipe.step - INFO - Step superbias done
2026-04-15 20:14:36,309 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:14:36,311 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:14:36,312 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:14:36,312 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:14:36,313 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:14:36,313 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:14:36,314 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:14:36,315 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:14:36,315 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:14:40,072 - stpipe.step - INFO - Step refpix done
2026-04-15 20:14:40,340 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:14:40,348 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:14:40,398 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:40,399 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:40,404 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:40,857 - stpipe.step - INFO - Step linearity done
2026-04-15 20:14:41,126 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:14:41,127 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:41,394 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:14:41,401 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:14:41,543 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:14:41,544 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:14:41,677 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:14:41,944 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:14:41,945 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:14:42,458 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:14:42,722 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:14:42,723 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:14:42,724 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:14:42,729 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:14:42,732 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:14:42,865 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:14:42,866 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:14:45,355 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:14:49,913 - stcal.jump.jump - INFO - Total snowballs = 61
2026-04-15 20:14:49,915 - stcal.jump.jump - INFO - Total elapsed time = 7.04862 sec
2026-04-15 20:14:49,936 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.212504
2026-04-15 20:14:49,939 - stpipe.step - INFO - Step jump done
2026-04-15 20:14:50,204 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:14:50,205 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:50,473 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:15:00,636 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:15:00,637 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:15:00,638 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:15:00,638 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:15:00,641 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:15:00,642 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:15:02,080 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:15:07,213 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:15:07,685 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00001_nis_uncal.fits
2026-04-15 20:15:43,829 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:15:44,101 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:15:44,110 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:15:44,111 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:15:44,142 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:15:44,143 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:15:44,311 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:15:48,724 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.406931400299072
2026-04-15 20:15:48,847 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:15:49,116 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:15:49,123 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:15:49,139 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:15:49,139 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:15:49,142 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:15:49,411 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-04-15 20:15:49,415 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:15:49,430 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:15:49,431 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:15:49,434 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:15:49,518 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00001_nis_rateints.fits
2026-04-15 20:15:49,519 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:15:49,522 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:15:49,605 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00001_nis_rate.fits
2026-04-15 20:15:49,606 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:15:49,606 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:15:49,635 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:15:49,638 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:15:49,649 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:15:49,659 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:15:49,670 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:15:49,685 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:15:49,686 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:15:49,686 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:15:49,687 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:15:49,688 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:15:49,689 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:15:49,690 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:15:49,691 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:15:49,692 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:15:49,693 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:15:49,694 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:15:49,694 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:15:49,695 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:15:49,696 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:15:49,697 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:15:49,698 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:15:49,699 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:15:49,700 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:15:49,701 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:15:49,702 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:15:49,703 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:15:49,972 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00002_nis_uncal.fits',).
2026-04-15 20:15:49,990 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:15:50,015 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00002_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:15:50,018 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:15:50,019 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:15:50,020 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:15:50,020 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:15:50,021 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:15:50,021 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:15:50,022 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:15:50,022 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:15:50,023 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:15:50,023 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:15:50,024 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:15:50,024 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:15:50,025 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:15:50,026 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:15:50,484 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:15:50,486 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:15:50,486 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:15:50,488 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:15:50,758 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:15:50,761 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:15:50,890 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:15:51,158 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:15:51,163 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:15:51,163 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:15:51,199 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:15:51,200 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:15:51,206 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:15:51,273 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:15:52,212 - stcal.saturation.saturation - INFO - Detected 4249 saturated pixels
2026-04-15 20:15:52,237 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-04-15 20:15:52,252 - stpipe.step - INFO - Step saturation done
2026-04-15 20:15:52,520 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:15:52,521 - stpipe.step - INFO - Step skipped.
2026-04-15 20:15:52,790 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:15:52,793 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:15:52,894 - stpipe.step - INFO - Step superbias done
2026-04-15 20:15:53,163 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:15:53,165 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:15:53,166 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:15:53,166 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:15:53,167 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:15:53,167 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:15:53,168 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:15:53,169 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:15:53,169 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:15:56,891 - stpipe.step - INFO - Step refpix done
2026-04-15 20:15:57,159 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:15:57,162 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:15:57,212 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:15:57,213 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:15:57,217 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:15:57,634 - stpipe.step - INFO - Step linearity done
2026-04-15 20:15:57,904 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:15:57,905 - stpipe.step - INFO - Step skipped.
2026-04-15 20:15:58,172 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:15:58,175 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:15:58,314 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:15:58,315 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:15:58,451 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:15:58,719 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:15:58,720 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:15:59,214 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:15:59,485 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:15:59,486 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:15:59,487 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:15:59,490 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:15:59,492 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:15:59,619 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:15:59,620 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:16:02,037 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:16:06,623 - stcal.jump.jump - INFO - Total snowballs = 71
2026-04-15 20:16:06,624 - stcal.jump.jump - INFO - Total elapsed time = 7.00442 sec
2026-04-15 20:16:06,642 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.155805
2026-04-15 20:16:06,645 - stpipe.step - INFO - Step jump done
2026-04-15 20:16:06,919 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:16:06,920 - stpipe.step - INFO - Step skipped.
2026-04-15 20:16:07,197 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:16:17,226 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:16:17,227 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:16:17,228 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:16:17,228 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:16:17,231 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:16:17,232 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:16:18,682 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:16:23,813 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:16:24,292 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00002_nis_uncal.fits
2026-04-15 20:17:00,500 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:17:00,771 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:17:00,776 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:17:00,777 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:17:00,807 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:17:00,807 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:17:00,960 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:17:05,386 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.419659614562988
2026-04-15 20:17:05,510 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:17:05,769 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:17:05,773 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:17:05,788 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:17:05,789 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:17:05,792 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:17:06,055 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-04-15 20:17:06,058 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:17:06,074 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:17:06,074 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:17:06,078 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:17:06,155 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00002_nis_rateints.fits
2026-04-15 20:17:06,156 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:17:06,159 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:17:06,235 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00002_nis_rate.fits
2026-04-15 20:17:06,236 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:17:06,236 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:17:06,265 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:17:06,269 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:17:06,279 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:17:06,289 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:17:06,299 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:17:06,315 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:17:06,315 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:17:06,316 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:17:06,318 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:17:06,318 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:17:06,319 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:17:06,320 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:17:06,321 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:17:06,322 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:17:06,322 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:17:06,323 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:17:06,324 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:17:06,325 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:17:06,326 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:17:06,327 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:17:06,328 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:17:06,329 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:17:06,330 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:17:06,331 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:17:06,332 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:17:06,333 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:17:06,595 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00003_nis_uncal.fits',).
2026-04-15 20:17:06,614 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:17:06,638 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00003_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:17:06,641 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:17:06,642 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:17:06,642 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:17:06,643 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:17:06,643 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:17:06,644 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:17:06,644 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:17:06,645 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:17:06,645 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:17:06,646 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:17:06,646 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:17:06,647 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:17:06,647 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:17:06,648 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:17:07,089 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:17:07,090 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:17:07,091 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:17:07,093 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:17:07,347 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:17:07,351 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:17:07,473 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:17:07,737 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:17:07,741 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:17:07,742 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:17:07,778 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:17:07,778 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:17:07,782 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:17:07,848 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:17:08,777 - stcal.saturation.saturation - INFO - Detected 4591 saturated pixels
2026-04-15 20:17:08,803 - stcal.saturation.saturation - INFO - Detected 2 A/D floor pixels
2026-04-15 20:17:08,818 - stpipe.step - INFO - Step saturation done
2026-04-15 20:17:09,078 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:17:09,079 - stpipe.step - INFO - Step skipped.
2026-04-15 20:17:09,340 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:17:09,344 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:17:09,441 - stpipe.step - INFO - Step superbias done
2026-04-15 20:17:09,704 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:17:09,706 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:17:09,707 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:17:09,707 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:17:09,708 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:17:09,708 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:17:09,709 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:17:09,709 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:17:09,710 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:17:13,391 - stpipe.step - INFO - Step refpix done
2026-04-15 20:17:13,647 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:17:13,650 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:17:13,700 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:17:13,701 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:17:13,705 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:17:14,143 - stpipe.step - INFO - Step linearity done
2026-04-15 20:17:14,398 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:17:14,399 - stpipe.step - INFO - Step skipped.
2026-04-15 20:17:14,662 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:17:14,666 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:17:14,811 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:17:14,812 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:17:14,946 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:17:15,215 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:17:15,216 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:17:15,716 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:17:15,978 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:17:15,979 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:17:15,979 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:17:15,982 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:17:15,985 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:17:16,109 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:17:16,110 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:17:18,576 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:17:23,030 - stcal.jump.jump - INFO - Total snowballs = 73
2026-04-15 20:17:23,030 - stcal.jump.jump - INFO - Total elapsed time = 6.91994 sec
2026-04-15 20:17:23,049 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.069860
2026-04-15 20:17:23,052 - stpipe.step - INFO - Step jump done
2026-04-15 20:17:23,304 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:17:23,305 - stpipe.step - INFO - Step skipped.
2026-04-15 20:17:23,562 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:17:33,250 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:17:33,251 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:17:33,252 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:17:33,252 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:17:33,255 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:17:33,256 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:17:34,668 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:17:39,691 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:17:40,163 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00003_nis_uncal.fits
2026-04-15 20:18:16,178 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:18:16,440 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:18:16,446 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:18:16,446 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:18:16,476 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:18:16,477 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:18:16,630 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:18:21,064 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.427908658981323
2026-04-15 20:18:21,189 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:18:21,450 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:18:21,453 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:18:21,469 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:18:21,469 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:18:21,472 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:18:21,725 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-04-15 20:18:21,728 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:18:21,744 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:18:21,745 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:18:21,748 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:18:21,827 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00003_nis_rateints.fits
2026-04-15 20:18:21,827 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:18:21,831 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:18:21,906 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00003_nis_rate.fits
2026-04-15 20:18:21,907 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:18:21,907 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:18:21,937 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:18:21,941 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:18:21,951 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:18:21,961 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:18:21,971 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:18:21,986 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:18:21,987 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:18:21,988 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:18:21,989 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:18:21,990 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:18:21,990 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:18:21,991 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:18:21,992 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:18:21,993 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:18:21,993 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:18:21,994 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:18:21,995 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:18:21,996 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:18:21,997 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:18:21,997 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:18:21,998 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:18:22,000 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:18:22,001 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:18:22,002 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:18:22,003 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:18:22,003 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:18:22,258 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00004_nis_uncal.fits',).
2026-04-15 20:18:22,275 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:18:22,300 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00004_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:18:22,303 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:18:22,304 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:18:22,304 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:18:22,305 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:18:22,306 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:18:22,306 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:18:22,306 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:18:22,307 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:18:22,307 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:18:22,308 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:18:22,308 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:18:22,309 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:18:22,311 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:18:22,311 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:18:22,757 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:18:22,759 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:18:22,759 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:18:22,761 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:18:23,019 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:18:23,022 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:18:23,157 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:18:23,411 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:18:23,416 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:18:23,416 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:18:23,451 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:18:23,452 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:18:23,458 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:18:23,526 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:18:24,460 - stcal.saturation.saturation - INFO - Detected 5018 saturated pixels
2026-04-15 20:18:24,483 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-04-15 20:18:24,499 - stpipe.step - INFO - Step saturation done
2026-04-15 20:18:24,751 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:18:24,752 - stpipe.step - INFO - Step skipped.
2026-04-15 20:18:25,004 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:18:25,008 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:18:25,104 - stpipe.step - INFO - Step superbias done
2026-04-15 20:18:25,363 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:18:25,365 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:18:25,366 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:18:25,367 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:18:25,367 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:18:25,368 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:18:25,368 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:18:25,369 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:18:25,370 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:18:29,005 - stpipe.step - INFO - Step refpix done
2026-04-15 20:18:29,262 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:18:29,264 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:18:29,311 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:18:29,312 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:18:29,317 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:18:29,758 - stpipe.step - INFO - Step linearity done
2026-04-15 20:18:30,009 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:18:30,010 - stpipe.step - INFO - Step skipped.
2026-04-15 20:18:30,261 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:18:30,264 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:18:30,404 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:18:30,405 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:18:30,537 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:18:30,789 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:18:30,790 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:18:31,327 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:18:31,577 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:18:31,578 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:18:31,579 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:18:31,582 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:18:31,584 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:18:31,708 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:18:31,709 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:18:34,154 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:18:38,609 - stcal.jump.jump - INFO - Total snowballs = 79
2026-04-15 20:18:38,610 - stcal.jump.jump - INFO - Total elapsed time = 6.9004 sec
2026-04-15 20:18:38,627 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.048861
2026-04-15 20:18:38,630 - stpipe.step - INFO - Step jump done
2026-04-15 20:18:38,885 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:18:38,886 - stpipe.step - INFO - Step skipped.
2026-04-15 20:18:39,141 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:18:48,965 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:18:48,966 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:18:48,967 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:18:48,967 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:18:48,971 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:18:48,971 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:18:50,386 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:18:55,437 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:18:55,935 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00004_nis_uncal.fits
2026-04-15 20:19:31,251 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:19:31,515 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:19:31,520 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:19:31,521 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:19:31,551 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:19:31,551 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:19:31,705 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:19:36,100 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.388776063919067
2026-04-15 20:19:36,224 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:19:36,477 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:19:36,481 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:19:36,498 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:19:36,499 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:19:36,502 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:19:36,758 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-04-15 20:19:36,761 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:19:36,777 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:19:36,778 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:19:36,781 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:19:36,860 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00004_nis_rateints.fits
2026-04-15 20:19:36,860 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:19:36,864 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:19:36,939 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00004_nis_rate.fits
2026-04-15 20:19:36,940 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:19:36,941 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:19:36,969 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:19:36,973 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:19:36,983 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:19:36,993 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:19:37,003 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:19:37,018 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:19:37,019 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:19:37,020 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:19:37,021 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:19:37,022 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:19:37,022 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:19:37,023 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:19:37,024 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:19:37,025 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:19:37,026 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:19:37,027 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:19:37,028 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:19:37,028 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:19:37,029 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:19:37,030 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:19:37,032 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:19:37,033 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:19:37,034 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:19:37,035 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:19:37,036 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:19:37,037 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:19:37,287 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00005_nis_uncal.fits',).
2026-04-15 20:19:37,305 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:19:37,328 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00005_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:19:37,331 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:19:37,332 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:19:37,332 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:19:37,333 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:19:37,334 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:19:37,334 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:19:37,335 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:19:37,335 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:19:37,336 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:19:37,336 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:19:37,337 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:19:37,337 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:19:37,338 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:19:37,339 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:19:37,778 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:19:37,779 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:19:37,780 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:19:37,781 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:19:38,036 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:19:38,039 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:19:38,162 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:19:38,419 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:19:38,424 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:19:38,425 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:19:38,460 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:19:38,461 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:19:38,465 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:19:38,526 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:19:39,443 - stcal.saturation.saturation - INFO - Detected 4873 saturated pixels
2026-04-15 20:19:39,467 - stcal.saturation.saturation - INFO - Detected 3 A/D floor pixels
2026-04-15 20:19:39,483 - stpipe.step - INFO - Step saturation done
2026-04-15 20:19:39,736 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:19:39,737 - stpipe.step - INFO - Step skipped.
2026-04-15 20:19:39,994 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:19:39,997 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:19:40,094 - stpipe.step - INFO - Step superbias done
2026-04-15 20:19:40,352 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:19:40,354 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:19:40,355 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:19:40,356 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:19:40,356 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:19:40,357 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:19:40,357 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:19:40,358 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:19:40,358 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:19:43,998 - stpipe.step - INFO - Step refpix done
2026-04-15 20:19:44,258 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:19:44,262 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:19:44,311 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:19:44,312 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:19:44,316 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:19:44,725 - stpipe.step - INFO - Step linearity done
2026-04-15 20:19:44,985 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:19:44,986 - stpipe.step - INFO - Step skipped.
2026-04-15 20:19:45,244 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:19:45,248 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:19:45,388 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:19:45,389 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:19:45,525 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:19:45,779 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:19:45,780 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:19:46,304 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:19:46,563 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:19:46,564 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:19:46,564 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:19:46,567 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:19:46,570 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:19:46,695 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:19:46,696 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:19:49,106 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:19:53,558 - stcal.jump.jump - INFO - Total snowballs = 67
2026-04-15 20:19:53,559 - stcal.jump.jump - INFO - Total elapsed time = 6.86318 sec
2026-04-15 20:19:53,577 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.013176
2026-04-15 20:19:53,580 - stpipe.step - INFO - Step jump done
2026-04-15 20:19:53,830 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:19:53,831 - stpipe.step - INFO - Step skipped.
2026-04-15 20:19:54,083 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:20:03,966 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:20:03,966 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:20:03,967 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:20:03,968 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:20:03,971 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:20:03,972 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:20:05,389 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:20:10,437 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:20:10,950 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00005_nis_uncal.fits
2026-04-15 20:20:46,522 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:20:46,783 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:20:46,788 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:20:46,789 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:20:46,819 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:20:46,819 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:20:46,971 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:20:51,389 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.411897420883179
2026-04-15 20:20:51,514 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:20:51,773 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:20:51,776 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:20:51,791 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:20:51,792 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:20:51,795 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:20:52,045 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-04-15 20:20:52,048 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:20:52,064 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:20:52,064 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:20:52,067 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:20:52,146 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00005_nis_rateints.fits
2026-04-15 20:20:52,147 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:20:52,150 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:20:52,226 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00005_nis_rate.fits
2026-04-15 20:20:52,227 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:20:52,227 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:20:52,256 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:20:52,259 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:20:52,269 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:20:52,279 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:20:52,289 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:20:52,304 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:20:52,305 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:20:52,306 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:20:52,306 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:20:52,307 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:20:52,308 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:20:52,309 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:20:52,310 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:20:52,310 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:20:52,311 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:20:52,312 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:20:52,313 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:20:52,314 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:20:52,314 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:20:52,316 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:20:52,316 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:20:52,318 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:20:52,319 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:20:52,320 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:20:52,321 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:20:52,323 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:20:52,573 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00006_nis_uncal.fits',).
2026-04-15 20:20:52,591 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:20:52,615 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00006_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:20:52,618 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:20:52,618 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:20:52,619 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:20:52,619 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:20:52,620 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:20:52,620 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:20:52,621 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:20:52,621 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:20:52,622 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:20:52,622 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:20:52,623 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:20:52,624 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:20:52,625 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:20:52,625 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:20:53,065 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:20:53,066 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:20:53,066 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:20:53,069 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:20:53,319 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:20:53,323 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:20:53,445 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:20:53,701 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:20:53,705 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:20:53,706 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:20:53,741 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:20:53,742 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:20:53,746 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:20:53,806 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:20:54,567 - stcal.saturation.saturation - INFO - Detected 4452 saturated pixels
2026-04-15 20:20:54,590 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-04-15 20:20:54,606 - stpipe.step - INFO - Step saturation done
2026-04-15 20:20:54,857 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:20:54,858 - stpipe.step - INFO - Step skipped.
2026-04-15 20:20:55,110 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:20:55,113 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:20:55,211 - stpipe.step - INFO - Step superbias done
2026-04-15 20:20:55,469 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:20:55,471 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:20:55,472 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:20:55,472 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:20:55,473 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:20:55,474 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:20:55,474 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:20:55,475 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:20:55,475 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:20:59,176 - stpipe.step - INFO - Step refpix done
2026-04-15 20:20:59,433 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:20:59,436 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:20:59,484 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:20:59,485 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:20:59,489 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:20:59,929 - stpipe.step - INFO - Step linearity done
2026-04-15 20:21:00,186 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:21:00,187 - stpipe.step - INFO - Step skipped.
2026-04-15 20:21:00,443 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:21:00,446 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:21:00,587 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:21:00,588 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:21:00,721 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:21:00,988 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:21:00,989 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:21:01,498 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:21:01,758 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:21:01,759 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:21:01,759 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:21:01,762 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:21:01,764 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:21:01,890 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:21:01,891 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:21:04,285 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:21:08,565 - stcal.jump.jump - INFO - Total snowballs = 68
2026-04-15 20:21:08,566 - stcal.jump.jump - INFO - Total elapsed time = 6.67505 sec
2026-04-15 20:21:08,583 - jwst.jump.jump_step - INFO - The execution time in seconds: 6.824649
2026-04-15 20:21:08,586 - stpipe.step - INFO - Step jump done
2026-04-15 20:21:08,844 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:21:08,845 - stpipe.step - INFO - Step skipped.
2026-04-15 20:21:09,103 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:21:18,898 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:21:18,899 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:21:18,900 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:21:18,900 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:21:18,903 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:21:18,904 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:21:20,309 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:21:25,346 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:21:25,839 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00006_nis_uncal.fits
2026-04-15 20:22:02,357 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:22:02,614 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:22:02,620 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:22:02,620 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:22:02,651 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:22:02,652 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:22:02,805 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:22:07,218 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.406689882278442
2026-04-15 20:22:07,342 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:22:07,595 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:22:07,599 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:22:07,614 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:22:07,615 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:22:07,618 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:22:07,876 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-04-15 20:22:07,879 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:22:07,895 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:22:07,895 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:22:07,898 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:22:07,976 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00006_nis_rateints.fits
2026-04-15 20:22:07,977 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:22:07,979 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:22:08,055 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00006_nis_rate.fits
2026-04-15 20:22:08,055 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:22:08,056 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:22:08,090 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:22:08,093 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:22:08,103 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:22:08,113 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:22:08,123 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:22:08,138 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:22:08,139 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:22:08,140 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:22:08,141 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:22:08,141 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:22:08,142 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:22:08,143 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:22:08,144 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:22:08,145 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:22:08,145 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:22:08,146 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:22:08,147 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:22:08,148 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:22:08,149 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:22:08,149 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:22:08,150 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:22:08,152 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:22:08,152 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:22:08,153 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:22:08,154 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:22:08,155 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:22:08,408 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00007_nis_uncal.fits',).
2026-04-15 20:22:08,427 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:22:08,451 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00007_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:22:08,454 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:22:08,455 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:22:08,456 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:22:08,456 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:22:08,457 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:22:08,457 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:22:08,458 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:22:08,459 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:22:08,459 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:22:08,460 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:22:08,460 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:22:08,461 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:22:08,462 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:22:08,462 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:22:08,914 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:22:08,915 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:22:08,916 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:22:08,918 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:22:09,176 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:22:09,179 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:22:09,318 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:22:09,585 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:22:09,591 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:22:09,591 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:22:09,629 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:22:09,630 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:22:09,637 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:22:09,705 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:22:10,643 - stcal.saturation.saturation - INFO - Detected 4322 saturated pixels
2026-04-15 20:22:10,666 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-04-15 20:22:10,682 - stpipe.step - INFO - Step saturation done
2026-04-15 20:22:10,935 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:22:10,936 - stpipe.step - INFO - Step skipped.
2026-04-15 20:22:11,190 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:22:11,194 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:22:11,291 - stpipe.step - INFO - Step superbias done
2026-04-15 20:22:11,543 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:22:11,545 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:22:11,546 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:22:11,547 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:22:11,547 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:22:11,548 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:22:11,549 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:22:11,549 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:22:11,550 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:22:15,225 - stpipe.step - INFO - Step refpix done
2026-04-15 20:22:15,480 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:22:15,483 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:22:15,530 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:22:15,530 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:22:15,536 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:22:15,976 - stpipe.step - INFO - Step linearity done
2026-04-15 20:22:16,229 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:22:16,230 - stpipe.step - INFO - Step skipped.
2026-04-15 20:22:16,481 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:22:16,484 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:22:16,624 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:22:16,625 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:22:16,757 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:22:17,009 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:22:17,010 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:22:17,505 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:22:17,759 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:22:17,760 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:22:17,761 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:22:17,764 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:22:17,766 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:22:17,898 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:22:17,899 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:22:20,352 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:22:24,808 - stcal.jump.jump - INFO - Total snowballs = 84
2026-04-15 20:22:24,809 - stcal.jump.jump - INFO - Total elapsed time = 6.91032 sec
2026-04-15 20:22:24,831 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.070943
2026-04-15 20:22:24,835 - stpipe.step - INFO - Step jump done
2026-04-15 20:22:25,092 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:22:25,093 - stpipe.step - INFO - Step skipped.
2026-04-15 20:22:25,350 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:22:35,268 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:22:35,269 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:22:35,270 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:22:35,271 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:22:35,274 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:22:35,275 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:22:36,710 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:22:41,769 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:22:42,244 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00007_nis_uncal.fits
2026-04-15 20:23:17,880 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:23:18,136 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:23:18,141 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:23:18,142 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:23:18,172 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:23:18,173 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:23:18,339 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:23:22,808 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.4635303020477295
2026-04-15 20:23:22,939 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:23:23,194 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:23:23,197 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:23:23,213 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:23:23,213 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:23:23,216 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:23:23,469 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-04-15 20:23:23,472 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:23:23,488 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:23:23,489 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:23:23,492 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:23:23,571 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00007_nis_rateints.fits
2026-04-15 20:23:23,572 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:23:23,575 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:23:23,651 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00007_nis_rate.fits
2026-04-15 20:23:23,652 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:23:23,652 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:23:23,680 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:23:23,684 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:23:23,694 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:23:23,704 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:23:23,714 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:23:23,729 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:23:23,730 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:23:23,731 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:23:23,732 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:23:23,733 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:23:23,733 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:23:23,734 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:23:23,735 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:23:23,736 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:23:23,736 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:23:23,737 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:23:23,738 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:23:23,739 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:23:23,740 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:23:23,741 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:23:23,742 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:23:23,744 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:23:23,744 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:23:23,746 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:23:23,747 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:23:23,747 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:23:24,003 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00008_nis_uncal.fits',).
2026-04-15 20:23:24,022 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:23:24,046 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00008_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:23:24,049 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:23:24,049 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:23:24,050 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:23:24,051 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:23:24,051 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:23:24,052 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:23:24,053 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:23:24,053 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:23:24,054 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:23:24,054 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:23:24,054 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:23:24,055 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:23:24,056 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:23:24,056 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:23:24,496 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:23:24,497 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:23:24,497 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:23:24,499 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:23:24,747 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:23:24,750 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:23:24,872 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:23:25,123 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:23:25,127 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:23:25,128 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:23:25,163 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:23:25,164 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:23:25,168 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:23:25,229 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:23:26,130 - stcal.saturation.saturation - INFO - Detected 4334 saturated pixels
2026-04-15 20:23:26,153 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-04-15 20:23:26,169 - stpipe.step - INFO - Step saturation done
2026-04-15 20:23:26,423 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:23:26,424 - stpipe.step - INFO - Step skipped.
2026-04-15 20:23:26,674 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:23:26,677 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:23:26,774 - stpipe.step - INFO - Step superbias done
2026-04-15 20:23:27,025 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:23:27,027 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:23:27,028 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:23:27,029 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:23:27,029 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:23:27,030 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:23:27,030 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:23:27,031 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:23:27,031 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:23:30,657 - stpipe.step - INFO - Step refpix done
2026-04-15 20:23:30,909 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:23:30,912 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:23:30,959 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:23:30,960 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:23:30,966 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:23:31,410 - stpipe.step - INFO - Step linearity done
2026-04-15 20:23:31,666 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:23:31,667 - stpipe.step - INFO - Step skipped.
2026-04-15 20:23:31,930 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:23:31,933 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:23:32,075 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:23:32,076 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:23:32,280 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:23:32,529 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:23:32,530 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:23:33,044 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:23:33,299 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:23:33,300 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:23:33,301 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:23:33,304 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:23:33,306 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:23:33,438 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:23:33,439 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:23:35,831 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:23:40,355 - stcal.jump.jump - INFO - Total snowballs = 88
2026-04-15 20:23:40,356 - stcal.jump.jump - INFO - Total elapsed time = 6.91697 sec
2026-04-15 20:23:40,374 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.073437
2026-04-15 20:23:40,377 - stpipe.step - INFO - Step jump done
2026-04-15 20:23:40,625 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:23:40,626 - stpipe.step - INFO - Step skipped.
2026-04-15 20:23:40,877 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:23:50,568 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:23:50,569 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:23:50,570 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:23:50,571 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:23:50,574 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:23:50,574 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:23:51,989 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:23:57,032 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:23:57,518 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00008_nis_uncal.fits
2026-04-15 20:24:32,894 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:24:33,150 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:24:33,155 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:24:33,156 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:24:33,186 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:24:33,187 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:24:33,340 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:24:37,720 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.373685121536255
2026-04-15 20:24:37,844 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:24:38,099 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:24:38,102 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:24:38,118 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:24:38,118 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:24:38,121 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:24:38,378 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-04-15 20:24:38,381 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:24:38,397 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:24:38,397 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:24:38,400 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:24:38,478 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00008_nis_rateints.fits
2026-04-15 20:24:38,479 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:24:38,482 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:24:38,559 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00008_nis_rate.fits
2026-04-15 20:24:38,560 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:24:38,560 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:24:38,589 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:24:38,592 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:24:38,602 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:24:38,613 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:24:38,623 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:24:38,638 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:24:38,639 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:24:38,640 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:24:38,641 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:24:38,642 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:24:38,643 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:24:38,644 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:24:38,645 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:24:38,646 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:24:38,646 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:24:38,647 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:24:38,648 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:24:38,649 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:24:38,650 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:24:38,651 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:24:38,652 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:24:38,653 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:24:38,654 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:24:38,655 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:24:38,656 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:24:38,658 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:24:38,916 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00009_nis_uncal.fits',).
2026-04-15 20:24:38,933 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:24:38,957 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00009_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:24:38,960 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:24:38,961 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:24:38,962 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:24:38,962 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:24:38,963 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:24:38,963 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:24:38,964 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:24:38,965 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:24:38,965 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:24:38,965 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:24:38,966 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:24:38,967 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:24:38,967 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:24:38,968 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:24:39,407 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:24:39,408 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:24:39,409 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:24:39,411 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:24:39,662 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:24:39,666 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:24:39,788 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:24:40,048 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:24:40,052 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:24:40,053 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:24:40,088 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:24:40,089 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:24:40,093 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:24:40,155 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:24:40,979 - stcal.saturation.saturation - INFO - Detected 5184 saturated pixels
2026-04-15 20:24:41,003 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-04-15 20:24:41,019 - stpipe.step - INFO - Step saturation done
2026-04-15 20:24:41,274 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:24:41,275 - stpipe.step - INFO - Step skipped.
2026-04-15 20:24:41,529 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:24:41,532 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:24:41,633 - stpipe.step - INFO - Step superbias done
2026-04-15 20:24:41,898 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:24:41,901 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:24:41,901 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:24:41,902 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:24:41,903 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:24:41,903 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:24:41,904 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:24:41,904 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:24:41,905 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:24:45,418 - stpipe.step - INFO - Step refpix done
2026-04-15 20:24:45,675 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:24:45,678 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:24:45,725 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:24:45,726 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:24:45,730 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:24:46,167 - stpipe.step - INFO - Step linearity done
2026-04-15 20:24:46,420 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:24:46,421 - stpipe.step - INFO - Step skipped.
2026-04-15 20:24:46,671 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:24:46,675 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:24:46,819 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:24:46,820 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:24:46,956 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:24:47,209 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:24:47,210 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:24:47,767 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:24:48,014 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:24:48,015 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:24:48,016 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:24:48,018 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:24:48,021 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:24:48,146 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:24:48,147 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:24:50,550 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:24:54,875 - stcal.jump.jump - INFO - Total snowballs = 73
2026-04-15 20:24:54,876 - stcal.jump.jump - INFO - Total elapsed time = 6.72898 sec
2026-04-15 20:24:54,894 - jwst.jump.jump_step - INFO - The execution time in seconds: 6.878753
2026-04-15 20:24:54,897 - stpipe.step - INFO - Step jump done
2026-04-15 20:24:55,150 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:24:55,151 - stpipe.step - INFO - Step skipped.
2026-04-15 20:24:55,415 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:25:05,016 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:25:05,017 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:25:05,018 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:25:05,019 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:25:05,022 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:25:05,023 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:25:06,428 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:25:11,469 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:25:11,932 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00009_nis_uncal.fits
2026-04-15 20:25:47,909 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:25:48,168 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:25:48,173 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:25:48,173 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:25:48,203 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:25:48,204 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:25:48,358 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:25:52,760 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.395546197891235
2026-04-15 20:25:52,885 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:25:53,136 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:25:53,139 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:25:53,155 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:25:53,156 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:25:53,158 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:25:53,412 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-04-15 20:25:53,415 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:25:53,430 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:25:53,431 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:25:53,433 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:25:53,511 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00009_nis_rateints.fits
2026-04-15 20:25:53,512 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:25:53,515 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:25:53,592 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00009_nis_rate.fits
2026-04-15 20:25:53,592 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:25:53,593 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:25:53,622 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:25:53,625 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:25:53,635 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:25:53,645 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:25:53,655 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:25:53,670 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:25:53,671 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:25:53,671 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:25:53,672 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:25:53,673 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:25:53,674 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:25:53,675 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:25:53,676 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:25:53,677 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:25:53,677 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:25:53,678 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:25:53,679 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:25:53,680 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:25:53,680 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:25:53,681 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:25:53,682 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:25:53,683 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:25:53,684 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:25:53,685 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:25:53,687 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:25:53,688 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:25:53,942 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00010_nis_uncal.fits',).
2026-04-15 20:25:53,960 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:25:53,984 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00010_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:25:53,987 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:25:53,987 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:25:53,988 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:25:53,989 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:25:53,989 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:25:53,990 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:25:53,990 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:25:53,991 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:25:53,991 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:25:53,992 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:25:53,992 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:25:53,993 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:25:53,993 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:25:53,994 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:25:54,442 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:25:54,443 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:25:54,443 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:25:54,445 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:25:54,694 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:25:54,697 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:25:54,821 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:25:55,071 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:25:55,075 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:25:55,076 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:25:55,111 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:25:55,112 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:25:55,116 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:25:55,180 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:25:56,000 - stcal.saturation.saturation - INFO - Detected 4877 saturated pixels
2026-04-15 20:25:56,024 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-04-15 20:25:56,040 - stpipe.step - INFO - Step saturation done
2026-04-15 20:25:56,299 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:25:56,300 - stpipe.step - INFO - Step skipped.
2026-04-15 20:25:56,557 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:25:56,561 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:25:56,657 - stpipe.step - INFO - Step superbias done
2026-04-15 20:25:56,907 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:25:56,909 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:25:56,910 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:25:56,910 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:25:56,911 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:25:56,911 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:25:56,912 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:25:56,913 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:25:56,913 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:26:00,506 - stpipe.step - INFO - Step refpix done
2026-04-15 20:26:00,763 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:26:00,766 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:26:00,817 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:26:00,818 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:26:00,822 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:26:01,258 - stpipe.step - INFO - Step linearity done
2026-04-15 20:26:01,510 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:26:01,511 - stpipe.step - INFO - Step skipped.
2026-04-15 20:26:01,761 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:26:01,765 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:26:01,905 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:26:01,905 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:26:02,038 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:26:02,298 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:26:02,299 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:26:02,827 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:26:03,080 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:26:03,081 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:26:03,082 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:26:03,085 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:26:03,087 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:26:03,212 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:26:03,213 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:26:05,648 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:26:10,021 - stcal.jump.jump - INFO - Total snowballs = 78
2026-04-15 20:26:10,022 - stcal.jump.jump - INFO - Total elapsed time = 6.80885 sec
2026-04-15 20:26:10,039 - jwst.jump.jump_step - INFO - The execution time in seconds: 6.958292
2026-04-15 20:26:10,042 - stpipe.step - INFO - Step jump done
2026-04-15 20:26:10,292 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:26:10,293 - stpipe.step - INFO - Step skipped.
2026-04-15 20:26:10,545 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:26:20,251 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:26:20,252 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:26:20,253 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:26:20,253 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:26:20,257 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:26:20,257 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:26:21,680 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:26:26,711 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:26:27,227 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00010_nis_uncal.fits
2026-04-15 20:27:02,413 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:27:02,670 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:27:02,675 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:27:02,676 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:27:02,706 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:27:02,706 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:27:02,861 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:27:07,357 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.490025758743286
2026-04-15 20:27:07,482 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:27:07,735 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:27:07,738 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:27:07,753 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:27:07,754 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:27:07,757 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:27:08,008 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-04-15 20:27:08,011 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:27:08,027 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:27:08,028 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:27:08,031 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:27:08,110 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00010_nis_rateints.fits
2026-04-15 20:27:08,110 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:27:08,112 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:27:08,188 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00010_nis_rate.fits
2026-04-15 20:27:08,188 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:27:08,189 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:27:08,219 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:27:08,222 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:27:08,232 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:27:08,243 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:27:08,252 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:27:08,268 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:27:08,268 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:27:08,269 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:27:08,270 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:27:08,271 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:27:08,272 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:27:08,273 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:27:08,274 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:27:08,274 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:27:08,275 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:27:08,276 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:27:08,277 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:27:08,278 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:27:08,279 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:27:08,280 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:27:08,280 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:27:08,282 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:27:08,283 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:27:08,284 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:27:08,285 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:27:08,286 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:27:08,536 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00011_nis_uncal.fits',).
2026-04-15 20:27:08,554 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:27:08,577 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00011_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:27:08,580 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:27:08,581 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:27:08,582 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:27:08,582 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:27:08,583 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:27:08,583 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:27:08,584 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:27:08,584 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:27:08,585 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:27:08,586 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:27:08,586 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:27:08,586 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:27:08,587 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:27:08,588 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:27:09,048 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:27:09,049 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:27:09,049 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:27:09,051 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:27:09,302 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:27:09,305 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:27:09,427 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:27:09,687 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:27:09,691 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:27:09,692 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:27:09,727 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:27:09,728 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:27:09,732 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:27:09,795 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:27:10,561 - stcal.saturation.saturation - INFO - Detected 4341 saturated pixels
2026-04-15 20:27:10,584 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-04-15 20:27:10,600 - stpipe.step - INFO - Step saturation done
2026-04-15 20:27:10,857 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:27:10,858 - stpipe.step - INFO - Step skipped.
2026-04-15 20:27:11,112 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:27:11,115 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:27:11,213 - stpipe.step - INFO - Step superbias done
2026-04-15 20:27:11,467 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:27:11,470 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:27:11,470 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:27:11,471 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:27:11,471 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:27:11,472 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:27:11,473 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:27:11,473 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:27:11,474 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:27:15,045 - stpipe.step - INFO - Step refpix done
2026-04-15 20:27:15,297 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:27:15,300 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:27:15,348 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:27:15,349 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:27:15,353 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:27:15,790 - stpipe.step - INFO - Step linearity done
2026-04-15 20:27:16,045 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:27:16,046 - stpipe.step - INFO - Step skipped.
2026-04-15 20:27:16,299 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:27:16,303 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:27:16,443 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:27:16,444 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:27:16,578 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:27:16,830 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:27:16,831 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:27:17,325 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:27:17,580 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:27:17,581 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:27:17,582 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:27:17,585 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:27:17,587 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:27:17,713 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:27:17,714 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:27:20,210 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:27:24,507 - stcal.jump.jump - INFO - Total snowballs = 78
2026-04-15 20:27:24,508 - stcal.jump.jump - INFO - Total elapsed time = 6.79406 sec
2026-04-15 20:27:24,525 - jwst.jump.jump_step - INFO - The execution time in seconds: 6.944084
2026-04-15 20:27:24,529 - stpipe.step - INFO - Step jump done
2026-04-15 20:27:24,784 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:27:24,785 - stpipe.step - INFO - Step skipped.
2026-04-15 20:27:25,035 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:27:34,825 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:27:34,826 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:27:34,827 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: median
2026-04-15 20:27:34,827 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:27:34,830 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:27:34,831 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:27:36,246 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:27:41,290 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:27:41,788 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00011_nis_uncal.fits
2026-04-15 20:28:02,534 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:28:02,792 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:28:02,797 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:28:02,798 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:28:02,828 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:28:02,829 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:28:02,981 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:28:07,376 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.388408422470093
2026-04-15 20:28:07,500 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:28:07,752 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:28:07,755 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:28:07,770 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:28:07,771 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:28:07,774 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:28:08,025 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-04-15 20:28:08,028 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:28:08,044 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:28:08,044 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:28:08,047 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:28:08,125 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00011_nis_rateints.fits
2026-04-15 20:28:08,126 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:28:08,129 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:28:08,204 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00011_nis_rate.fits
2026-04-15 20:28:08,205 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:28:08,206 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:28:08,237 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:28:08,241 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:28:08,250 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:28:08,261 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:28:08,271 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:28:08,286 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:28:08,287 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:28:08,287 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:28:08,288 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:28:08,289 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:28:08,290 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:28:08,291 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:28:08,292 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:28:08,292 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:28:08,293 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:28:08,294 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:28:08,295 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:28:08,296 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:28:08,296 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:28:08,297 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:28:08,298 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:28:08,299 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:28:08,300 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:28:08,301 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:28:08,302 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:28:08,303 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:28:08,553 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00012_nis_uncal.fits',).
2026-04-15 20:28:08,573 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:28:08,597 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00012_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:28:08,600 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:28:08,600 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:28:08,601 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:28:08,602 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:28:08,602 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:28:08,603 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:28:08,603 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:28:08,604 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:28:08,605 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:28:08,605 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:28:08,605 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:28:08,606 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:28:08,607 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:28:08,607 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:28:09,054 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:28:09,055 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:28:09,055 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:28:09,057 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:28:09,308 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:28:09,311 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:28:09,440 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:28:09,693 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:28:09,697 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:28:09,698 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:28:09,733 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:28:09,734 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:28:09,739 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:28:09,805 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:28:10,740 - stcal.saturation.saturation - INFO - Detected 4024 saturated pixels
2026-04-15 20:28:10,763 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-04-15 20:28:10,778 - stpipe.step - INFO - Step saturation done
2026-04-15 20:28:11,037 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:28:11,038 - stpipe.step - INFO - Step skipped.
2026-04-15 20:28:11,292 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:28:11,295 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:28:11,392 - stpipe.step - INFO - Step superbias done
2026-04-15 20:28:11,647 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:28:11,649 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:28:11,649 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:28:11,650 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:28:11,650 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:28:11,651 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:28:11,652 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:28:11,652 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:28:11,653 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:28:15,243 - stpipe.step - INFO - Step refpix done
2026-04-15 20:28:15,497 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:28:15,500 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:28:15,550 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:28:15,551 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:28:15,555 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:28:15,991 - stpipe.step - INFO - Step linearity done
2026-04-15 20:28:16,243 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:28:16,244 - stpipe.step - INFO - Step skipped.
2026-04-15 20:28:16,496 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:28:16,500 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:28:16,643 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:28:16,644 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:28:16,778 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:28:17,030 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:28:17,031 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:28:17,524 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:28:17,776 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:28:17,777 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:28:17,777 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:28:17,780 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:28:17,783 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:28:17,911 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:28:17,912 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:28:20,342 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:28:24,819 - stcal.jump.jump - INFO - Total snowballs = 75
2026-04-15 20:28:24,820 - stcal.jump.jump - INFO - Total elapsed time = 6.90825 sec
2026-04-15 20:28:24,838 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.061154
2026-04-15 20:28:24,841 - stpipe.step - INFO - Step jump done
2026-04-15 20:28:25,091 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:28:25,092 - stpipe.step - INFO - Step skipped.
2026-04-15 20:28:25,348 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:28:35,380 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:28:35,381 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:28:35,382 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:28:35,382 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:28:35,385 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:28:35,386 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:28:36,802 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:28:41,877 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:28:42,363 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00012_nis_uncal.fits
2026-04-15 20:29:18,559 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:29:18,815 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:29:18,821 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:29:18,821 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:29:18,851 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:29:18,852 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:29:19,010 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:29:23,430 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.4140625
2026-04-15 20:29:23,555 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:29:23,806 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:29:23,810 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:29:23,825 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:29:23,826 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:29:23,829 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:29:24,078 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-04-15 20:29:24,081 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:29:24,097 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:29:24,097 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:29:24,100 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:29:24,179 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00012_nis_rateints.fits
2026-04-15 20:29:24,180 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:29:24,183 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:29:24,259 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00012_nis_rate.fits
2026-04-15 20:29:24,259 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:29:24,260 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:29:24,289 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:29:24,292 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:29:24,302 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:29:24,312 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:29:24,322 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:29:24,337 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:29:24,338 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:29:24,339 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:29:24,340 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:29:24,341 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:29:24,341 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:29:24,342 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:29:24,343 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:29:24,344 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:29:24,344 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:29:24,345 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:29:24,346 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:29:24,347 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:29:24,348 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:29:24,348 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:29:24,349 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:29:24,351 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:29:24,351 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:29:24,352 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:29:24,353 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:29:24,354 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:29:24,610 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00013_nis_uncal.fits',).
2026-04-15 20:29:24,629 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:29:24,654 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00013_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:29:24,657 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:29:24,658 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:29:24,658 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:29:24,659 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:29:24,659 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:29:24,660 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:29:24,660 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:29:24,661 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:29:24,662 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:29:24,662 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:29:24,663 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:29:24,663 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:29:24,664 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:29:24,664 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:29:25,100 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:29:25,101 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:29:25,102 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:29:25,103 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:29:25,361 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:29:25,364 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:29:25,490 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:29:25,751 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:29:25,755 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:29:25,756 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:29:25,791 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:29:25,792 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:29:25,797 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:29:25,864 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:29:26,790 - stcal.saturation.saturation - INFO - Detected 4397 saturated pixels
2026-04-15 20:29:26,813 - stcal.saturation.saturation - INFO - Detected 2 A/D floor pixels
2026-04-15 20:29:26,829 - stpipe.step - INFO - Step saturation done
2026-04-15 20:29:27,083 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:29:27,084 - stpipe.step - INFO - Step skipped.
2026-04-15 20:29:27,338 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:29:27,341 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:29:27,438 - stpipe.step - INFO - Step superbias done
2026-04-15 20:29:27,692 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:29:27,694 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:29:27,694 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:29:27,695 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:29:27,696 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:29:27,696 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:29:27,697 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:29:27,697 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:29:27,698 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:29:31,272 - stpipe.step - INFO - Step refpix done
2026-04-15 20:29:31,525 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:29:31,528 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:29:31,578 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:29:31,579 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:29:31,583 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:29:32,020 - stpipe.step - INFO - Step linearity done
2026-04-15 20:29:32,279 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:29:32,280 - stpipe.step - INFO - Step skipped.
2026-04-15 20:29:32,535 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:29:32,538 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:29:32,679 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:29:32,680 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:29:32,858 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:29:33,112 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:29:33,113 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:29:33,639 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:29:33,898 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:29:33,899 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:29:33,900 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:29:33,903 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:29:33,905 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:29:34,030 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:29:34,031 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:29:36,465 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:29:40,862 - stcal.jump.jump - INFO - Total snowballs = 77
2026-04-15 20:29:40,863 - stcal.jump.jump - INFO - Total elapsed time = 6.83217 sec
2026-04-15 20:29:40,881 - jwst.jump.jump_step - INFO - The execution time in seconds: 6.981867
2026-04-15 20:29:40,884 - stpipe.step - INFO - Step jump done
2026-04-15 20:29:41,139 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:29:41,140 - stpipe.step - INFO - Step skipped.
2026-04-15 20:29:41,399 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:29:50,849 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:29:50,850 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:29:50,851 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:29:50,852 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:29:50,855 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:29:50,856 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:29:52,275 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:29:57,313 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:29:57,821 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00013_nis_uncal.fits
2026-04-15 20:30:33,542 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:30:33,798 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:30:33,803 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:30:33,803 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:30:33,834 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:30:33,834 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:30:33,991 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:30:38,386 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.389584064483643
2026-04-15 20:30:38,511 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:30:38,769 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:30:38,773 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:30:38,788 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:30:38,789 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:30:38,792 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:30:39,041 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-04-15 20:30:39,045 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:30:39,061 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:30:39,061 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:30:39,064 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:30:39,145 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00013_nis_rateints.fits
2026-04-15 20:30:39,146 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:30:39,149 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:30:39,224 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00013_nis_rate.fits
2026-04-15 20:30:39,225 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:30:39,225 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:30:39,254 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:30:39,257 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:30:39,267 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:30:39,277 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:30:39,287 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:30:39,302 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:30:39,303 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:30:39,304 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:30:39,304 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:30:39,305 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:30:39,306 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:30:39,307 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:30:39,308 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:30:39,308 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:30:39,309 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:30:39,311 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:30:39,312 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:30:39,313 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:30:39,313 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:30:39,314 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:30:39,315 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:30:39,317 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:30:39,318 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:30:39,319 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:30:39,320 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:30:39,320 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:30:39,570 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00014_nis_uncal.fits',).
2026-04-15 20:30:39,589 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:30:39,613 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00014_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:30:39,616 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:30:39,616 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:30:39,617 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:30:39,617 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:30:39,618 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:30:39,619 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:30:39,619 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:30:39,620 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:30:39,620 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:30:39,621 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:30:39,621 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:30:39,622 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:30:39,622 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:30:39,623 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:30:40,066 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:30:40,067 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:30:40,067 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:30:40,069 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:30:40,320 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:30:40,323 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:30:40,447 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:30:40,697 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:30:40,702 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:30:40,702 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:30:40,738 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:30:40,738 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:30:40,742 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:30:40,807 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:30:41,742 - stcal.saturation.saturation - INFO - Detected 4581 saturated pixels
2026-04-15 20:30:41,765 - stcal.saturation.saturation - INFO - Detected 2 A/D floor pixels
2026-04-15 20:30:41,781 - stpipe.step - INFO - Step saturation done
2026-04-15 20:30:42,033 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:30:42,034 - stpipe.step - INFO - Step skipped.
2026-04-15 20:30:42,282 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:30:42,285 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:30:42,383 - stpipe.step - INFO - Step superbias done
2026-04-15 20:30:42,638 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:30:42,640 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:30:42,640 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:30:42,641 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:30:42,642 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:30:42,642 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:30:42,643 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:30:42,643 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:30:42,644 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:30:46,140 - stpipe.step - INFO - Step refpix done
2026-04-15 20:30:46,392 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:30:46,395 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:30:46,445 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:30:46,446 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:30:46,449 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:30:46,889 - stpipe.step - INFO - Step linearity done
2026-04-15 20:30:47,146 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:30:47,147 - stpipe.step - INFO - Step skipped.
2026-04-15 20:30:47,396 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:30:47,400 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:30:47,541 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:30:47,542 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:30:47,685 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:30:47,942 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:30:47,944 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:30:48,450 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:30:48,701 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:30:48,702 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:30:48,702 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:30:48,705 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:30:48,708 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:30:48,832 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:30:48,833 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:30:51,310 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:30:55,672 - stcal.jump.jump - INFO - Total snowballs = 70
2026-04-15 20:30:55,673 - stcal.jump.jump - INFO - Total elapsed time = 6.84005 sec
2026-04-15 20:30:55,691 - jwst.jump.jump_step - INFO - The execution time in seconds: 6.989302
2026-04-15 20:30:55,694 - stpipe.step - INFO - Step jump done
2026-04-15 20:30:55,956 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:30:55,957 - stpipe.step - INFO - Step skipped.
2026-04-15 20:30:56,218 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:31:06,140 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:31:06,141 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:31:06,141 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:31:06,142 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:31:06,145 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:31:06,146 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:31:07,554 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:31:12,618 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:31:13,118 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00014_nis_uncal.fits
2026-04-15 20:31:48,960 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:31:49,228 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:31:49,233 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:31:49,234 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:31:49,263 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:31:49,264 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:31:49,417 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:31:53,850 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.426705360412598
2026-04-15 20:31:53,975 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:31:54,231 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:31:54,235 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:31:54,250 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:31:54,251 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:31:54,254 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:31:54,511 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-04-15 20:31:54,515 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:31:54,530 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:31:54,531 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:31:54,534 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:31:54,613 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00014_nis_rateints.fits
2026-04-15 20:31:54,614 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:31:54,617 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:31:54,694 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00014_nis_rate.fits
2026-04-15 20:31:54,694 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:31:54,695 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:31:54,726 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:31:54,729 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:31:54,739 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:31:54,750 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:31:54,760 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:31:54,775 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:31:54,775 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:31:54,777 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:31:54,778 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:31:54,778 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:31:54,779 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:31:54,780 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:31:54,781 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:31:54,782 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:31:54,782 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:31:54,783 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:31:54,784 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:31:54,785 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:31:54,785 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:31:54,786 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:31:54,787 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:31:54,788 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:31:54,789 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:31:54,790 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:31:54,791 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:31:54,792 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:31:55,053 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00015_nis_uncal.fits',).
2026-04-15 20:31:55,072 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:31:55,096 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00015_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:31:55,100 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:31:55,100 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:31:55,101 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:31:55,101 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:31:55,102 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:31:55,103 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:31:55,103 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:31:55,104 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:31:55,104 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:31:55,105 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:31:55,105 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:31:55,106 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:31:55,107 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:31:55,108 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:31:55,561 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:31:55,562 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:31:55,563 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:31:55,565 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:31:55,826 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:31:55,829 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:31:55,954 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:31:56,214 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:31:56,218 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:31:56,219 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:31:56,254 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:31:56,255 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:31:56,261 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:31:56,329 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:31:57,265 - stcal.saturation.saturation - INFO - Detected 4781 saturated pixels
2026-04-15 20:31:57,289 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-04-15 20:31:57,305 - stpipe.step - INFO - Step saturation done
2026-04-15 20:31:57,564 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:31:57,565 - stpipe.step - INFO - Step skipped.
2026-04-15 20:31:57,823 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:31:57,827 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:31:57,927 - stpipe.step - INFO - Step superbias done
2026-04-15 20:31:58,192 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:31:58,194 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:31:58,195 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:31:58,195 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:31:58,196 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:31:58,196 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:31:58,197 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:31:58,198 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:31:58,198 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:32:01,874 - stpipe.step - INFO - Step refpix done
2026-04-15 20:32:02,138 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:32:02,141 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:32:02,191 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:32:02,192 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:32:02,197 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:32:02,614 - stpipe.step - INFO - Step linearity done
2026-04-15 20:32:02,876 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:32:02,877 - stpipe.step - INFO - Step skipped.
2026-04-15 20:32:03,131 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:32:03,134 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:32:03,277 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:32:03,278 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:32:03,415 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:32:03,681 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:32:03,682 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:32:04,212 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:32:04,476 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:32:04,476 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:32:04,477 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:32:04,480 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:32:04,482 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:32:04,610 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:32:04,612 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:32:07,064 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:32:11,689 - stcal.jump.jump - INFO - Total snowballs = 75
2026-04-15 20:32:11,690 - stcal.jump.jump - INFO - Total elapsed time = 7.07827 sec
2026-04-15 20:32:11,708 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.231134
2026-04-15 20:32:11,711 - stpipe.step - INFO - Step jump done
2026-04-15 20:32:11,971 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:32:11,972 - stpipe.step - INFO - Step skipped.
2026-04-15 20:32:12,229 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:32:22,045 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:32:22,046 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:32:22,047 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: median
2026-04-15 20:32:22,047 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:32:22,050 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:32:22,051 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:32:23,469 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:32:28,523 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:32:28,983 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00015_nis_uncal.fits
2026-04-15 20:32:49,991 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:32:50,242 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:32:50,247 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:32:50,248 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:32:50,278 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:32:50,278 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:32:50,438 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:32:54,893 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.448864936828613
2026-04-15 20:32:55,017 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:32:55,268 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:32:55,272 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:32:55,287 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:32:55,288 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:32:55,291 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:32:55,548 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-04-15 20:32:55,551 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:32:55,566 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:32:55,567 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:32:55,570 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:32:55,648 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00015_nis_rateints.fits
2026-04-15 20:32:55,649 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:32:55,653 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:32:55,728 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00015_nis_rate.fits
2026-04-15 20:32:55,729 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:32:55,730 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:32:55,758 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:32:55,761 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:32:55,771 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:32:55,782 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:32:55,792 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:32:55,807 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:32:55,808 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:32:55,808 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:32:55,809 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:32:55,810 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:32:55,811 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:32:55,812 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:32:55,813 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:32:55,814 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:32:55,815 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:32:55,815 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:32:55,816 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:32:55,818 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:32:55,818 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:32:55,819 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:32:55,820 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:32:55,822 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:32:55,823 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:32:55,824 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:32:55,825 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:32:55,826 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:32:56,084 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00016_nis_uncal.fits',).
2026-04-15 20:32:56,103 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:32:56,127 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00016_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:32:56,130 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:32:56,130 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:32:56,131 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:32:56,131 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:32:56,132 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:32:56,133 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:32:56,133 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:32:56,134 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:32:56,134 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:32:56,135 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:32:56,135 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:32:56,136 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:32:56,136 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:32:56,137 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:32:56,580 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:32:56,581 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:32:56,581 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:32:56,584 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:32:56,834 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:32:56,836 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:32:56,958 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:32:57,214 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:32:57,218 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:32:57,219 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:32:57,254 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:32:57,255 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:32:57,260 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:32:57,326 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:32:58,256 - stcal.saturation.saturation - INFO - Detected 4883 saturated pixels
2026-04-15 20:32:58,279 - stcal.saturation.saturation - INFO - Detected 2 A/D floor pixels
2026-04-15 20:32:58,295 - stpipe.step - INFO - Step saturation done
2026-04-15 20:32:58,547 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:32:58,548 - stpipe.step - INFO - Step skipped.
2026-04-15 20:32:58,796 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:32:58,800 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:32:58,896 - stpipe.step - INFO - Step superbias done
2026-04-15 20:32:59,153 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:32:59,155 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:32:59,156 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:32:59,156 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:32:59,157 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:32:59,158 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:32:59,158 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:32:59,159 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:32:59,159 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:33:02,798 - stpipe.step - INFO - Step refpix done
2026-04-15 20:33:03,055 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:33:03,058 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:33:03,108 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:33:03,109 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:33:03,113 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:33:03,543 - stpipe.step - INFO - Step linearity done
2026-04-15 20:33:03,799 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:33:03,800 - stpipe.step - INFO - Step skipped.
2026-04-15 20:33:04,056 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:33:04,059 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:33:04,199 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:33:04,200 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:33:04,352 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:33:04,605 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:33:04,606 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:33:05,129 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:33:05,385 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:33:05,386 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:33:05,386 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:33:05,389 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:33:05,391 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:33:05,517 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:33:05,517 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:33:07,996 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:33:12,403 - stcal.jump.jump - INFO - Total snowballs = 94
2026-04-15 20:33:12,404 - stcal.jump.jump - INFO - Total elapsed time = 6.88655 sec
2026-04-15 20:33:12,422 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.035951
2026-04-15 20:33:12,425 - stpipe.step - INFO - Step jump done
2026-04-15 20:33:12,683 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:33:12,684 - stpipe.step - INFO - Step skipped.
2026-04-15 20:33:12,941 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:33:22,696 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:33:22,697 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:33:22,697 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:33:22,698 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:33:22,701 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:33:22,702 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:33:24,120 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:33:29,157 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:33:29,648 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00016_nis_uncal.fits
2026-04-15 20:34:06,137 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:34:06,400 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:34:06,405 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:34:06,406 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:34:06,436 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:34:06,437 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:34:06,591 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:34:11,000 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.4031431674957275
2026-04-15 20:34:11,125 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:34:11,381 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:34:11,384 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:34:11,400 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:34:11,400 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:34:11,403 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:34:11,666 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-04-15 20:34:11,669 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:34:11,684 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:34:11,685 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:34:11,688 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:34:11,766 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00016_nis_rateints.fits
2026-04-15 20:34:11,767 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:34:11,771 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:34:11,848 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00016_nis_rate.fits
2026-04-15 20:34:11,849 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:34:11,849 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:34:11,878 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-04-15 20:34:11,881 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-04-15 20:34:11,891 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-04-15 20:34:11,902 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-04-15 20:34:11,912 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-04-15 20:34:11,927 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:34:11,928 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:34:11,929 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:34:11,930 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:34:11,930 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:34:11,931 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:34:11,932 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:34:11,933 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:34:11,934 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:34:11,934 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:34:11,935 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:34:11,936 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:34:11,937 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:34:11,938 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:34:11,939 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:34:11,940 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:34:11,941 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:34:11,942 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:34:11,943 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:34:11,944 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:34:11,945 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:34:12,207 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00017_nis_uncal.fits',).
2026-04-15 20:34:12,225 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage1
  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_calibrated_ramp: False
  steps:
    group_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dq_init:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      user_supplied_dq: None
    emicorr:
      pre_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: ''
      algorithm: joint
      nints_to_phase: None
      nbins: None
      scale_reference: True
      onthefly_corr_freq: None
      use_n_cycles: 3
      fit_ints_separately: False
      user_supplied_reffile: None
      save_intermediate_results: False
    saturation:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      n_pix_grow_sat: 1
      use_readpatt: True
    ipc:
      pre_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: ''
    superbias:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    refpix:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      odd_even_columns: True
      use_side_ref_pixels: True
      side_smoothing_length: 11
      side_gain: 1.0
      odd_even_rows: True
      ovr_corr_mitigation_ftr: 3.0
      preserve_irs2_refpix: False
      irs2_mean_subtraction: False
      refpix_algorithm: median
      sigreject: 4.0
      gaussmooth: 1.0
      halfwidth: 30
    rscd:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    firstframe:
      pre_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: ''
      bright_use_group1: True
    lastframe:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    linearity:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    dark_current:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      dark_output: None
      average_dark_current: None
    reset:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
    persistence:
      pre_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: ''
      input_trapsfilled: ''
      flag_pers_cutoff: 40.0
      save_persistence: False
      save_trapsfilled: True
      modify_input: False
    charge_migration:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      signal_threshold: 21864.0
    jump:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      rejection_threshold: 8.0
      three_group_rejection_threshold: 6.0
      four_group_rejection_threshold: 5.0
      maximum_cores: half
      flag_4_neighbors: False
      max_jump_to_flag_neighbors: 200.0
      min_jump_to_flag_neighbors: 10.0
      after_jump_flag_dn1: 1000
      after_jump_flag_time1: 90
      after_jump_flag_dn2: 0
      after_jump_flag_time2: 0
      expand_large_events: True
      min_sat_area: 5
      min_jump_area: 15.0
      expand_factor: 1.75
      use_ellipses: False
      sat_required_snowball: True
      min_sat_radius_extend: 5.0
      sat_expand: 0
      edge_size: 20
      mask_snowball_core_next_int: True
      snowball_time_masked_next_int: 4000
      find_showers: False
      max_shower_amplitude: 4.0
      extend_snr_threshold: 1.2
      extend_min_area: 90
      extend_inner_radius: 1.0
      extend_outer_radius: 2.6
      extend_ellipse_expand_ratio: 1.1
      time_masked_after_shower: 15.0
      min_diffs_single_pass: 10
      max_extended_radius: 100
      minimum_groups: 3
      minimum_sigclip_groups: 100
      only_use_ints: True
    picture_frame:
      pre_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: ''
      mask_science_regions: True
      n_sigma: 2.0
      save_mask: False
      save_correction: False
    clean_flicker_noise:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      autoparam: True
      fit_method: median
      fit_by_channel: False
      background_method: median
      background_box_size: None
      mask_science_regions: False
      apply_flat_field: True
      n_sigma: 2.0
      fit_histogram: False
      single_mask: True
      user_mask: None
      save_mask: False
      save_background: False
      save_noise: False
    ramp_fit:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      algorithm: OLS_C
      int_name: ''
      save_opt: False
      opt_name: ''
      suppress_one_group: True
      firstgroup: None
      lastgroup: None
      maximum_cores: '1'
    gain_scale:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
2026-04-15 20:34:12,250 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00017_nis_uncal.fits' reftypes = ['dark', 'flat', 'gain', 'linearity', 'mask', 'pastasoss', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:34:12,252 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-04-15 20:34:12,253 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:34:12,254 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-04-15 20:34:12,254 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-04-15 20:34:12,255 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-04-15 20:34:12,256 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-04-15 20:34:12,256 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-04-15 20:34:12,257 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:34:12,257 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:34:12,258 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:34:12,258 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-04-15 20:34:12,259 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-04-15 20:34:12,260 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-04-15 20:34:12,260 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:34:12,708 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:34:12,709 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:34:12,709 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:34:12,711 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:34:12,976 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:34:12,979 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-04-15 20:34:13,107 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:34:13,367 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:34:13,372 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-04-15 20:34:13,372 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:34:13,407 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:34:13,408 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:34:13,412 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:34:13,477 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-04-15 20:34:14,407 - stcal.saturation.saturation - INFO - Detected 4739 saturated pixels
2026-04-15 20:34:14,430 - stcal.saturation.saturation - INFO - Detected 2 A/D floor pixels
2026-04-15 20:34:14,445 - stpipe.step - INFO - Step saturation done
2026-04-15 20:34:14,702 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:34:14,703 - stpipe.step - INFO - Step skipped.
2026-04-15 20:34:14,960 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:34:14,964 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-04-15 20:34:15,065 - stpipe.step - INFO - Step superbias done
2026-04-15 20:34:15,318 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:34:15,320 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-04-15 20:34:15,321 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-04-15 20:34:15,322 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-04-15 20:34:15,322 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-04-15 20:34:15,323 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-04-15 20:34:15,324 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-04-15 20:34:15,324 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-04-15 20:34:15,325 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-04-15 20:34:18,997 - stpipe.step - INFO - Step refpix done
2026-04-15 20:34:19,245 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:34:19,248 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-04-15 20:34:19,298 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:34:19,299 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:34:19,302 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:34:19,729 - stpipe.step - INFO - Step linearity done
2026-04-15 20:34:19,982 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:34:19,983 - stpipe.step - INFO - Step skipped.
2026-04-15 20:34:20,232 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:34:20,236 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-04-15 20:34:20,377 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-04-15 20:34:20,378 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-04-15 20:34:20,554 - stpipe.step - INFO - Step dark_current done
2026-04-15 20:34:20,811 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:34:20,812 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-04-15 20:34:21,334 - stpipe.step - INFO - Step charge_migration done
2026-04-15 20:34:21,587 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:34:21,588 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-04-15 20:34:21,589 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:34:21,592 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:34:21,594 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:34:21,718 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:34:21,719 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-04-15 20:34:24,154 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:34:28,435 - stcal.jump.jump - INFO - Total snowballs = 66
2026-04-15 20:34:28,436 - stcal.jump.jump - INFO - Total elapsed time = 6.71675 sec
2026-04-15 20:34:28,453 - jwst.jump.jump_step - INFO - The execution time in seconds: 6.865350
2026-04-15 20:34:28,456 - stpipe.step - INFO - Step jump done
2026-04-15 20:34:28,709 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:34:28,710 - stpipe.step - INFO - Step skipped.
2026-04-15 20:34:28,967 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:34:38,886 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-04-15 20:34:38,887 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-04-15 20:34:38,888 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-04-15 20:34:38,889 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-04-15 20:34:38,892 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:34:38,892 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-04-15 20:34:40,304 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-04-15 20:34:45,345 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-04-15 20:34:45,850 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00017_nis_uncal.fits
2026-04-15 20:35:21,799 - stpipe.step - INFO - Step clean_flicker_noise done
2026-04-15 20:35:22,063 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:35:22,068 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-04-15 20:35:22,068 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:35:22,098 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:35:22,099 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:35:22,253 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:35:26,679 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.419816970825195
2026-04-15 20:35:26,804 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:35:27,060 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:35:27,063 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:35:27,078 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:35:27,079 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:35:27,082 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:35:27,334 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-04-15 20:35:27,337 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-04-15 20:35:27,353 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:35:27,354 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:35:27,357 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:35:27,434 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00017_nis_rateints.fits
2026-04-15 20:35:27,435 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:35:27,437 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:27,513 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00017_nis_rate.fits
2026-04-15 20:35:27,513 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:35:27,514 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
# Print out the time benchmark
time1 = time.perf_counter()
print(f"Runtime for Detector1: {time1 - time0:0.0f} seconds")
Runtime for Detector1: 1295 seconds

Exploring the data#

Identify *_rate.fits files and verify which pipeline steps were run and which calibration reference files were applied.

The header contains information about which calibration steps were completed and skipped and which reference files were used to process the data.

if dodet1:
    # find rate files
    rate_files = sorted(glob.glob(os.path.join(det1_dir, '*_rate.fits')))

    # Read in file as datamodel
    rate_f = datamodels.open(rate_files[0])

    # Check which steps were run
    rate_f.meta.cal_step.instance

Check which reference files were used to calibrate the dataset:

if dodet1:
    rate_f.meta.ref_file.instance

6. Image2 Pipeline#

In the Image2 stage of the pipeline, calibrated unrectified data products are created (*_cal.fits or *_calints.fits files, depending on whether the input files are *_rate.fits or *_rateints.fits).

In this pipeline processing stage, the world coordinate system (WCS) is assigned, the data are flat fielded, and a photometric calibration is applied to convert from units of countrate (ADU/s) to surface brightness (MJy/sr).

By default, the background subtraction step and the resampling step are turned off for NIRISS at this stage of the pipeline. The background subtraction is turned off since there is no background template for the imaging mode and the local background is removed during the background correction for photometric measurements around individual sources. The resampling step occurs during the Image3 stage by default. While the resampling step can be turned on during the Image2 stage to, e.g., generate a source catalog for each image, the data quality from the Image3 stage will be better since the bad pixels, which adversely affect both the centroids and photometry in individual images, will be mostly removed.

time_image2 = time.perf_counter()
# Set up a dictionary to define how the Image2 pipeline should be configured.

# Boilerplate dictionary setup
image2dict = {}
image2dict['assign_wcs'], image2dict['flat_field'] = {}, {}
image2dict['photom'], image2dict['resample'] = {}, {}

# Overrides for whether or not certain steps should be skipped (example)
#image2dict['resample']['skip'] = False

# Overrides for various reference files
# Files should be in the base local directory or provide full path
#image2dict['assign_wcs']['override_distortion'] = 'myfile.asdf'  # Spatial distortion (ASDF file)
#image2dict['assign_wcs']['override_filteroffset'] = 'myfile.asdf'  # Imager filter offsets (ASDF file)
#image2dict['assign_wcs']['override_specwcs'] = 'myfile.asdf'  # Spectral distortion (ASDF file)
#image2dict['assign_wcs']['override_wavelengthrange'] = 'myfile.asdf'  # Wavelength channel mapping (ASDF file)
#image2dict['flat_field']['override_flat'] = 'myfile.fits'  # Pixel flatfield
#image2dict['photom']['override_photom'] = 'myfile.fits'  # Photometric calibration array

Find and sort all of the input files, ensuring use of absolute paths

sstring = os.path.join(det1_dir, 'jw*rate.fits')  # Use files from the detector1 output folder
rate_files = sorted(glob.glob(sstring))
for ii in range(0, len(rate_files)):
    rate_files[ii] = os.path.abspath(rate_files[ii])
rate_files = np.array(rate_files)
print(f"Found  {str(len(rate_files))} science files")
Found  17 science files
# Run Image2 stage of pipeline, specifying:
# output directory to save *_cal.fits files
# save_results flag set to True so the rate files are saved

if doimage2:
    for rate in rate_files:
        cal_result = Image2Pipeline.call(rate, output_dir=image2_dir, steps=image2dict, save_results=True)
else:
    print("Skipping Image2 processing.")
2026-04-15 20:35:27,615 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf    1.2 K bytes  (1 / 1 files) (0 / 1.2 K bytes)
2026-04-15 20:35:27,693 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:27,703 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf    1.3 K bytes  (1 / 1 files) (0 / 1.3 K bytes)
2026-04-15 20:35:27,741 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:27,752 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:27,753 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:27,754 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:27,755 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:27,756 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:27,757 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:28,010 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00001_nis_rate.fits'),).
2026-04-15 20:35:28,017 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:28,036 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_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']
2026-04-15 20:35:28,039 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits   16.8 M bytes  (1 / 4 files) (0 / 16.8 M bytes)
2026-04-15 20:35:28,306 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf    9.9 K bytes  (2 / 4 files) (16.8 M / 16.8 M bytes)
2026-04-15 20:35:28,343 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf    5.4 K bytes  (3 / 4 files) (16.8 M / 16.8 M bytes)
2026-04-15 20:35:28,398 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits   14.4 K bytes  (4 / 4 files) (16.8 M / 16.8 M bytes)
2026-04-15 20:35:28,429 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:28,430 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:28,430 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:28,431 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:28,431 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:28,432 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:28,433 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:28,433 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:28,434 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:28,434 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:28,435 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:28,435 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:28,436 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:28,436 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:28,437 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:28,437 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:28,438 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:28,438 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:28,439 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:28,439 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:28,440 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:28,440 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:28,441 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00001_nis
2026-04-15 20:35:28,442 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00001_nis_rate.fits ...
2026-04-15 20:35:28,749 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00001_nis_image2pipeline.fits>,).
2026-04-15 20:35:28,830 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:28,865 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.741801417 -26.792492010 303.782450102 -26.783405986 303.772146372 -26.747427859 303.731535770 -26.756495597
2026-04-15 20:35:28,866 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.741801417 -26.792492010 303.782450102 -26.783405986 303.772146372 -26.747427859 303.731535770 -26.756495597
2026-04-15 20:35:28,867 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:28,912 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:29,182 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00001_nis_image2pipeline.fits>,).
2026-04-15 20:35:29,282 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:29,282 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:29,283 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:29,284 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:29,410 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:29,679 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00001_nis_image2pipeline.fits>,).
2026-04-15 20:35:29,688 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:29,688 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:29,689 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:29,690 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:29,690 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:29,691 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:29,692 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:29,740 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:29,741 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:29,742 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:29,794 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:30,057 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00001_nis_image2pipeline.fits>,).
2026-04-15 20:35:30,058 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:30,060 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00001_nis
2026-04-15 20:35:30,061 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:30,062 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:30,169 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00001_nis_cal.fits
2026-04-15 20:35:30,170 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:30,171 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:30,192 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:30,201 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:30,212 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:30,213 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:30,214 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:30,215 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:30,215 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:30,217 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:30,470 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00002_nis_rate.fits'),).
2026-04-15 20:35:30,477 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:30,496 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_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']
2026-04-15 20:35:30,499 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:30,500 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:30,500 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:30,501 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:30,501 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:30,501 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:30,502 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:30,502 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:30,503 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:30,504 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:30,504 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:30,505 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:30,505 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:30,506 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:30,506 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:30,507 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:30,507 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:30,508 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:30,508 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:30,509 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:30,509 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:30,509 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:30,510 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00002_nis
2026-04-15 20:35:30,511 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00002_nis_rate.fits ...
2026-04-15 20:35:30,799 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00002_nis_image2pipeline.fits>,).
2026-04-15 20:35:30,868 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:30,896 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.738161312 -26.798046265 303.778812243 -26.788961155 303.768509024 -26.752982798 303.727896181 -26.762049621
2026-04-15 20:35:30,898 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.738161312 -26.798046265 303.778812243 -26.788961155 303.768509024 -26.752982798 303.727896181 -26.762049621
2026-04-15 20:35:30,898 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:30,941 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:31,208 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00002_nis_image2pipeline.fits>,).
2026-04-15 20:35:31,290 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:31,290 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:31,291 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:31,292 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:31,414 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:31,670 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00002_nis_image2pipeline.fits>,).
2026-04-15 20:35:31,677 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:31,678 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:31,679 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:31,679 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:31,680 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:31,680 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:31,681 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:31,726 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:31,727 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:31,728 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:31,780 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:32,041 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00002_nis_image2pipeline.fits>,).
2026-04-15 20:35:32,042 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:32,044 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00002_nis
2026-04-15 20:35:32,045 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:32,045 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:32,153 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00002_nis_cal.fits
2026-04-15 20:35:32,154 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:32,155 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:32,177 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:32,186 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:32,196 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:32,197 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:32,198 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:32,199 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:32,199 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:32,201 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:32,466 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00003_nis_rate.fits'),).
2026-04-15 20:35:32,473 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:32,492 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_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']
2026-04-15 20:35:32,494 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:32,495 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:32,495 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:32,496 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:32,496 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:32,497 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:32,497 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:32,498 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:32,499 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:32,499 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:32,500 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:32,500 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:32,501 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:32,501 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:32,501 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:32,502 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:32,502 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:32,503 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:32,503 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:32,504 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:32,504 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:32,505 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:32,505 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00003_nis
2026-04-15 20:35:32,506 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00003_nis_rate.fits ...
2026-04-15 20:35:32,796 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00003_nis_image2pipeline.fits>,).
2026-04-15 20:35:32,863 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:32,892 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.748023413 -26.795741097 303.788672699 -26.786653071 303.778366453 -26.750675452 303.737755249 -26.759745189
2026-04-15 20:35:32,893 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.748023413 -26.795741097 303.788672699 -26.786653071 303.778366453 -26.750675452 303.737755249 -26.759745189
2026-04-15 20:35:32,894 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:32,937 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:33,206 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00003_nis_image2pipeline.fits>,).
2026-04-15 20:35:33,279 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:33,280 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:33,281 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:33,282 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:33,401 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:33,667 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00003_nis_image2pipeline.fits>,).
2026-04-15 20:35:33,673 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:33,674 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:33,674 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:33,675 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:33,676 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:33,676 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:33,677 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:33,723 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:33,724 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:33,725 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:33,777 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:34,037 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00003_nis_image2pipeline.fits>,).
2026-04-15 20:35:34,038 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:34,040 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00003_nis
2026-04-15 20:35:34,041 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:34,042 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:34,149 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00003_nis_cal.fits
2026-04-15 20:35:34,150 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:34,150 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:34,173 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:34,182 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:34,192 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:34,194 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:34,195 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:34,196 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:34,196 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:34,198 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:34,455 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00004_nis_rate.fits'),).
2026-04-15 20:35:34,462 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:34,481 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_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']
2026-04-15 20:35:34,484 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:34,484 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:34,485 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:34,485 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:34,486 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:34,486 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:34,487 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:34,487 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:34,488 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:34,489 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:34,489 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:34,490 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:34,490 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:34,491 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:34,491 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:34,491 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:34,492 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:34,493 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:34,493 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:34,494 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:34,494 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:34,495 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:34,495 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00004_nis
2026-04-15 20:35:34,496 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00004_nis_rate.fits ...
2026-04-15 20:35:34,789 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00004_nis_image2pipeline.fits>,).
2026-04-15 20:35:34,857 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:34,885 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.745440687 -26.786937957 303.786087038 -26.777850709 303.775782455 -26.741872893 303.735174180 -26.750941854
2026-04-15 20:35:34,886 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.745440687 -26.786937957 303.786087038 -26.777850709 303.775782455 -26.741872893 303.735174180 -26.750941854
2026-04-15 20:35:34,887 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:34,930 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:35,195 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00004_nis_image2pipeline.fits>,).
2026-04-15 20:35:35,267 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:35,268 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:35,269 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:35,269 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:35,392 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:35,663 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00004_nis_image2pipeline.fits>,).
2026-04-15 20:35:35,669 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:35,670 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:35,671 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:35,671 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:35,672 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:35,672 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:35,673 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:35,718 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:35,718 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:35,720 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:35,772 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:36,039 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00004_nis_image2pipeline.fits>,).
2026-04-15 20:35:36,040 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:36,042 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00004_nis
2026-04-15 20:35:36,043 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:36,043 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:36,152 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00004_nis_cal.fits
2026-04-15 20:35:36,152 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:36,153 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:36,175 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:36,184 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:36,194 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:36,195 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:36,196 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:36,197 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:36,198 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:36,199 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:36,465 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00005_nis_rate.fits'),).
2026-04-15 20:35:36,472 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:36,491 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00005_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']
2026-04-15 20:35:36,494 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:36,494 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:36,495 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:36,495 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:36,496 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:36,496 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:36,497 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:36,497 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:36,498 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:36,499 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:36,499 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:36,499 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:36,500 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:36,500 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:36,501 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:36,501 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:36,502 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:36,503 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:36,503 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:36,504 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:36,504 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:36,504 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:36,505 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00005_nis
2026-04-15 20:35:36,506 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00005_nis_rate.fits ...
2026-04-15 20:35:36,796 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00005_nis_image2pipeline.fits>,).
2026-04-15 20:35:36,864 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:36,893 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.735579108 -26.789243079 303.776227074 -26.780158645 303.765925405 -26.744180116 303.725315519 -26.753246266
2026-04-15 20:35:36,894 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.735579108 -26.789243079 303.776227074 -26.780158645 303.765925405 -26.744180116 303.725315519 -26.753246266
2026-04-15 20:35:36,895 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:36,938 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:37,202 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00005_nis_image2pipeline.fits>,).
2026-04-15 20:35:37,275 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:37,276 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:37,276 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:37,277 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:37,392 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:37,657 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00005_nis_image2pipeline.fits>,).
2026-04-15 20:35:37,664 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:37,665 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:37,665 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:37,666 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:37,666 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:37,667 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:37,667 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:37,718 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:37,719 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:37,720 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:37,788 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:38,063 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00005_nis_image2pipeline.fits>,).
2026-04-15 20:35:38,064 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:38,066 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00005_nis
2026-04-15 20:35:38,067 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:38,067 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:38,175 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00005_nis_cal.fits
2026-04-15 20:35:38,175 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:38,176 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:38,199 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:38,208 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:38,218 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:38,219 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:38,221 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:38,221 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:38,222 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:38,223 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:38,482 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00006_nis_rate.fits'),).
2026-04-15 20:35:38,489 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:38,509 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00006_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']
2026-04-15 20:35:38,511 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:38,512 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:38,513 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:38,513 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:38,513 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:38,514 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:38,514 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:38,515 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:38,516 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:38,517 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:38,517 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:38,517 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:38,518 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:38,518 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:38,519 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:38,519 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:38,520 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:38,521 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:38,521 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:38,522 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:38,522 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:38,523 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:38,523 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00006_nis
2026-04-15 20:35:38,524 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00006_nis_rate.fits ...
2026-04-15 20:35:38,815 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00006_nis_image2pipeline.fits>,).
2026-04-15 20:35:38,888 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:38,917 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.736869971 -26.793644806 303.777519392 -26.784559937 303.767216841 -26.748581519 303.726605504 -26.757648102
2026-04-15 20:35:38,918 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.736869971 -26.793644806 303.777519392 -26.784559937 303.767216841 -26.748581519 303.726605504 -26.757648102
2026-04-15 20:35:38,919 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:38,962 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:39,228 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00006_nis_image2pipeline.fits>,).
2026-04-15 20:35:39,301 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:39,302 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:39,303 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:39,303 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:39,424 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:39,682 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00006_nis_image2pipeline.fits>,).
2026-04-15 20:35:39,688 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:39,689 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:39,690 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:39,690 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:39,691 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:39,691 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:39,692 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:39,737 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:39,737 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:39,739 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:39,791 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:40,055 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00006_nis_image2pipeline.fits>,).
2026-04-15 20:35:40,056 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:40,058 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00006_nis
2026-04-15 20:35:40,059 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:40,060 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:40,167 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00006_nis_cal.fits
2026-04-15 20:35:40,168 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:40,168 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:40,190 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:40,199 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:40,209 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:40,210 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:40,211 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:40,212 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:40,213 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:40,214 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:40,474 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00007_nis_rate.fits'),).
2026-04-15 20:35:40,481 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:40,500 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00007_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']
2026-04-15 20:35:40,503 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:40,504 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:40,504 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:40,505 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:40,505 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:40,506 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:40,506 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:40,507 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:40,507 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:40,508 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:40,509 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:40,509 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:40,510 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:40,510 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:40,511 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:40,511 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:40,511 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:40,512 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:40,513 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:40,513 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:40,514 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:40,514 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:40,515 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00007_nis
2026-04-15 20:35:40,516 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00007_nis_rate.fits ...
2026-04-15 20:35:40,811 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00007_nis_image2pipeline.fits>,).
2026-04-15 20:35:40,879 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:40,908 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.743091914 -26.796894290 303.783742050 -26.787807820 303.773437425 -26.751829807 303.732825375 -26.760897990
2026-04-15 20:35:40,909 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.743091914 -26.796894290 303.783742050 -26.787807820 303.773437425 -26.751829807 303.732825375 -26.760897990
2026-04-15 20:35:40,910 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:40,952 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:41,214 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00007_nis_image2pipeline.fits>,).
2026-04-15 20:35:41,287 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:41,288 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:41,289 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:41,289 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:41,405 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:41,665 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00007_nis_image2pipeline.fits>,).
2026-04-15 20:35:41,672 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:41,673 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:41,673 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:41,674 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:41,675 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:41,675 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:41,676 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:41,721 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:41,722 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:41,723 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:41,775 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:42,032 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00007_nis_image2pipeline.fits>,).
2026-04-15 20:35:42,033 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:42,035 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00007_nis
2026-04-15 20:35:42,036 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:42,036 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:42,143 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00007_nis_cal.fits
2026-04-15 20:35:42,144 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:42,145 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:42,167 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:42,177 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:42,187 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:42,188 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:42,189 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:42,190 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:42,190 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:42,191 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:42,448 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00008_nis_rate.fits'),).
2026-04-15 20:35:42,455 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:42,474 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00008_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']
2026-04-15 20:35:42,477 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:42,478 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:42,478 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:42,478 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:42,479 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:42,480 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:42,481 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:42,481 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:42,482 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:42,482 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:42,483 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:42,483 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:42,484 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:42,484 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:42,484 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:42,485 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:42,485 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:42,487 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:42,487 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:42,487 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:42,488 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:42,488 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:42,489 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00008_nis
2026-04-15 20:35:42,489 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00008_nis_rate.fits ...
2026-04-15 20:35:42,785 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00008_nis_image2pipeline.fits>,).
2026-04-15 20:35:42,853 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:42,882 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.746732052 -26.791339516 303.787379875 -26.782251897 303.777074481 -26.746274176 303.736464737 -26.755343507
2026-04-15 20:35:42,883 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.746732052 -26.791339516 303.787379875 -26.782251897 303.777074481 -26.746274176 303.736464737 -26.755343507
2026-04-15 20:35:42,885 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:42,927 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:43,183 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00008_nis_image2pipeline.fits>,).
2026-04-15 20:35:43,257 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:43,258 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:43,258 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:43,259 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:43,379 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:43,634 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00008_nis_image2pipeline.fits>,).
2026-04-15 20:35:43,641 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:43,642 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:43,642 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:43,643 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:43,643 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:43,644 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:43,644 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:43,689 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:43,690 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:43,692 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:43,744 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:44,002 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00008_nis_image2pipeline.fits>,).
2026-04-15 20:35:44,003 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:44,005 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00008_nis
2026-04-15 20:35:44,006 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:44,006 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:44,114 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00008_nis_cal.fits
2026-04-15 20:35:44,115 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:44,115 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:44,140 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:44,150 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:44,160 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:44,161 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:44,162 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:44,163 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:44,164 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:44,165 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:44,432 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00009_nis_rate.fits'),).
2026-04-15 20:35:44,440 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:44,459 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00009_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']
2026-04-15 20:35:44,462 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:44,463 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:44,463 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:44,463 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:44,464 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:44,464 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:44,465 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:44,465 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:44,466 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:44,467 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:44,468 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:44,468 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:44,469 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:44,469 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:44,469 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:44,470 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:44,471 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:44,471 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:44,472 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:44,472 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:44,473 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:44,473 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:44,474 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00009_nis
2026-04-15 20:35:44,474 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00009_nis_rate.fits ...
2026-04-15 20:35:44,772 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00009_nis_image2pipeline.fits>,).
2026-04-15 20:35:44,840 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:44,869 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.740509792 -26.788090693 303.781156927 -26.779004769 303.770853710 -26.743026618 303.730244653 -26.752094256
2026-04-15 20:35:44,870 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.740509792 -26.788090693 303.781156927 -26.779004769 303.770853710 -26.743026618 303.730244653 -26.752094256
2026-04-15 20:35:44,871 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:44,914 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:45,171 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00009_nis_image2pipeline.fits>,).
2026-04-15 20:35:45,244 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:45,245 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:45,245 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:45,246 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:45,363 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:45,625 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00009_nis_image2pipeline.fits>,).
2026-04-15 20:35:45,631 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:45,632 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:45,633 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:45,633 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:45,634 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:45,634 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:45,635 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:45,680 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:45,681 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:45,682 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:45,734 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:45,991 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00009_nis_image2pipeline.fits>,).
2026-04-15 20:35:45,992 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:45,994 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00009_nis
2026-04-15 20:35:45,995 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:45,995 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:46,103 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00009_nis_cal.fits
2026-04-15 20:35:46,104 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:46,104 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:46,126 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:46,135 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:46,145 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:46,147 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:46,148 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:46,149 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:46,149 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:46,150 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:46,407 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00010_nis_rate.fits'),).
2026-04-15 20:35:46,414 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:46,433 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00010_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']
2026-04-15 20:35:46,436 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:46,436 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:46,437 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:46,437 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:46,438 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:46,438 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:46,439 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:46,439 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:46,440 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:46,441 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:46,441 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:46,442 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:46,442 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:46,443 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:46,443 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:46,444 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:46,444 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:46,445 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:46,446 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:46,446 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:46,447 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:46,447 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:46,448 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00010_nis
2026-04-15 20:35:46,448 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00010_nis_rate.fits ...
2026-04-15 20:35:46,744 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00010_nis_image2pipeline.fits>,).
2026-04-15 20:35:46,812 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:46,841 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.738690092 -26.790867684 303.779338389 -26.781782359 303.769035585 -26.745804057 303.728425368 -26.754871096
2026-04-15 20:35:46,842 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.738690092 -26.790867684 303.779338389 -26.781782359 303.769035585 -26.745804057 303.728425368 -26.754871096
2026-04-15 20:35:46,843 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:46,886 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:47,148 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00010_nis_image2pipeline.fits>,).
2026-04-15 20:35:47,222 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:47,223 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:47,223 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:47,224 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:47,340 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:47,601 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00010_nis_image2pipeline.fits>,).
2026-04-15 20:35:47,607 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:47,608 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:47,609 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:47,609 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:47,610 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:47,610 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:47,611 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:47,656 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:47,657 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:47,658 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:47,710 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:47,971 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00010_nis_image2pipeline.fits>,).
2026-04-15 20:35:47,972 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:47,974 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00010_nis
2026-04-15 20:35:47,975 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:47,976 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:48,086 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00010_nis_cal.fits
2026-04-15 20:35:48,087 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:48,087 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:48,109 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:48,118 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:48,128 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:48,129 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:48,130 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:48,131 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:48,132 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:48,133 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:48,400 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00011_nis_rate.fits'),).
2026-04-15 20:35:48,407 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:48,427 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00011_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']
2026-04-15 20:35:48,429 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:48,430 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:48,430 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:48,431 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:48,431 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:48,432 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:48,433 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:48,433 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:48,434 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:48,434 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:48,435 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:48,435 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:48,436 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:48,436 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:48,437 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:48,437 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:48,438 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:48,439 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:48,439 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:48,440 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:48,440 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:48,440 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:48,441 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00011_nis
2026-04-15 20:35:48,442 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00011_nis_rate.fits ...
2026-04-15 20:35:48,731 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00011_nis_image2pipeline.fits>,).
2026-04-15 20:35:48,800 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:48,829 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.739981375 -26.795269201 303.780631171 -26.786183599 303.770327658 -26.750205367 303.729715946 -26.759272683
2026-04-15 20:35:48,830 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.739981375 -26.795269201 303.780631171 -26.786183599 303.770327658 -26.750205367 303.729715946 -26.759272683
2026-04-15 20:35:48,831 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:48,874 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:49,133 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00011_nis_image2pipeline.fits>,).
2026-04-15 20:35:49,206 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:49,207 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:49,208 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:49,209 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:49,324 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:49,583 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00011_nis_image2pipeline.fits>,).
2026-04-15 20:35:49,590 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:49,591 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:49,592 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:49,592 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:49,593 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:49,594 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:49,594 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:49,648 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:49,649 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:49,650 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:49,702 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:49,959 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00011_nis_image2pipeline.fits>,).
2026-04-15 20:35:49,960 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:49,962 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00011_nis
2026-04-15 20:35:49,963 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:49,963 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:50,071 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00011_nis_cal.fits
2026-04-15 20:35:50,071 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:50,072 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:50,094 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:50,103 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:50,113 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:50,114 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:50,115 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:50,116 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:50,117 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:50,118 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:50,384 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00012_nis_rate.fits'),).
2026-04-15 20:35:50,391 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:50,410 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00012_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']
2026-04-15 20:35:50,413 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:50,413 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:50,414 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:50,414 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:50,415 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:50,415 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:50,416 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:50,417 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:50,417 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:50,418 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:50,418 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:50,419 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:50,419 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:50,420 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:50,420 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:50,421 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:50,421 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:50,422 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:50,422 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:50,423 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:50,423 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:50,424 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:50,424 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00012_nis
2026-04-15 20:35:50,425 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00012_nis_rate.fits ...
2026-04-15 20:35:50,719 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00012_nis_image2pipeline.fits>,).
2026-04-15 20:35:50,787 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:50,816 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.744912311 -26.794116664 303.785561280 -26.785029588 303.775256236 -26.749051730 303.734645349 -26.758120518
2026-04-15 20:35:50,817 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.744912311 -26.794116664 303.785561280 -26.785029588 303.775256236 -26.749051730 303.734645349 -26.758120518
2026-04-15 20:35:50,818 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:50,861 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:51,123 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00012_nis_image2pipeline.fits>,).
2026-04-15 20:35:51,197 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:51,198 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:51,198 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:51,199 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:51,317 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:51,574 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00012_nis_image2pipeline.fits>,).
2026-04-15 20:35:51,581 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:51,582 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:51,582 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:51,583 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:51,584 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:51,584 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:51,585 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:51,630 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:51,631 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:51,632 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:51,684 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:51,943 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00012_nis_image2pipeline.fits>,).
2026-04-15 20:35:51,944 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:51,946 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00012_nis
2026-04-15 20:35:51,947 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:51,948 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:52,058 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00012_nis_cal.fits
2026-04-15 20:35:52,058 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:52,059 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:52,082 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:52,091 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:52,101 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:52,102 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:52,103 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:52,104 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:52,105 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:52,106 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:52,373 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00013_nis_rate.fits'),).
2026-04-15 20:35:52,380 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:52,399 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00013_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']
2026-04-15 20:35:52,402 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:52,403 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:52,403 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:52,404 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:52,404 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:52,405 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:52,406 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:52,406 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:52,407 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:52,407 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:52,408 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:52,408 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:52,409 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:52,409 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:52,410 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:52,410 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:52,411 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:52,411 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:52,412 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:52,412 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:52,413 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:52,413 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:52,414 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00013_nis
2026-04-15 20:35:52,414 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00013_nis_rate.fits ...
2026-04-15 20:35:52,712 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00013_nis_image2pipeline.fits>,).
2026-04-15 20:35:52,780 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:52,808 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.743620923 -26.789715132 303.784268407 -26.780628381 303.773964124 -26.744650441 303.733354719 -26.753718904
2026-04-15 20:35:52,810 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.743620923 -26.789715132 303.784268407 -26.780628381 303.773964124 -26.744650441 303.733354719 -26.753718904
2026-04-15 20:35:52,810 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:52,853 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:53,109 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00013_nis_image2pipeline.fits>,).
2026-04-15 20:35:53,183 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:53,184 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:53,184 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:53,185 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:53,301 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:53,555 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00013_nis_image2pipeline.fits>,).
2026-04-15 20:35:53,561 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:53,562 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:53,563 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:53,563 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:53,564 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:53,564 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:53,565 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:53,610 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:53,611 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:53,613 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:53,665 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:53,927 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00013_nis_image2pipeline.fits>,).
2026-04-15 20:35:53,928 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:53,930 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00013_nis
2026-04-15 20:35:53,931 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:53,932 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:54,041 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00013_nis_cal.fits
2026-04-15 20:35:54,042 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:54,042 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:54,064 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:54,073 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:54,084 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:54,085 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:54,086 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:54,087 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:54,087 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:54,089 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:54,350 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00014_nis_rate.fits'),).
2026-04-15 20:35:54,358 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:54,376 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00014_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']
2026-04-15 20:35:54,379 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:54,379 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:54,379 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:54,380 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:54,381 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:54,381 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:54,381 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:54,382 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:54,383 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:54,384 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:54,384 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:54,385 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:54,385 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:54,386 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:54,386 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:54,387 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:54,387 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:54,388 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:54,388 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:54,388 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:54,389 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:54,389 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:54,390 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00014_nis
2026-04-15 20:35:54,390 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00014_nis_rate.fits ...
2026-04-15 20:35:54,688 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00014_nis_image2pipeline.fits>,).
2026-04-15 20:35:54,757 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:54,785 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.741155475 -26.790291476 303.781803358 -26.781205412 303.771499785 -26.745227297 303.730889982 -26.754295075
2026-04-15 20:35:54,787 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.741155475 -26.790291476 303.781803358 -26.781205412 303.771499785 -26.745227297 303.730889982 -26.754295075
2026-04-15 20:35:54,787 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:54,830 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:55,096 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00014_nis_image2pipeline.fits>,).
2026-04-15 20:35:55,170 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:55,170 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:55,171 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:55,172 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:55,286 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:55,550 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00014_nis_image2pipeline.fits>,).
2026-04-15 20:35:55,557 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:55,557 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:55,558 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:55,559 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:55,559 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:55,560 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:55,560 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:55,605 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:55,606 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:55,607 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:55,659 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:55,922 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00014_nis_image2pipeline.fits>,).
2026-04-15 20:35:55,923 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:55,925 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00014_nis
2026-04-15 20:35:55,926 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:55,926 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:56,034 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00014_nis_cal.fits
2026-04-15 20:35:56,035 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:56,036 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:56,058 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:56,067 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:56,077 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:56,078 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:56,080 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:56,080 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:56,081 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:56,083 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:56,346 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00015_nis_rate.fits'),).
2026-04-15 20:35:56,353 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:56,372 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00015_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']
2026-04-15 20:35:56,375 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:56,375 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:56,376 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:56,376 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:56,377 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:56,377 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:56,377 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:56,379 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:56,379 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:56,380 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:56,380 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:56,381 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:56,381 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:56,382 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:56,382 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:56,382 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:56,383 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:56,383 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:56,384 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:56,384 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:56,385 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:56,385 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:56,386 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00015_nis
2026-04-15 20:35:56,386 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00015_nis_rate.fits ...
2026-04-15 20:35:56,685 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00015_nis_image2pipeline.fits>,).
2026-04-15 20:35:56,753 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:56,782 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.739335715 -26.793068487 303.779984756 -26.783983007 303.769681579 -26.748004745 303.729070620 -26.757071939
2026-04-15 20:35:56,783 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.739335715 -26.793068487 303.779984756 -26.783983007 303.769681579 -26.748004745 303.729070620 -26.757071939
2026-04-15 20:35:56,784 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:56,827 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:57,086 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00015_nis_image2pipeline.fits>,).
2026-04-15 20:35:57,159 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:57,159 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:57,160 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:57,161 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:57,276 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:57,533 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00015_nis_image2pipeline.fits>,).
2026-04-15 20:35:57,540 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:57,540 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:57,541 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:57,541 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:57,542 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:57,543 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:57,543 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:57,588 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:57,589 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:57,590 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:57,642 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:57,904 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00015_nis_image2pipeline.fits>,).
2026-04-15 20:35:57,905 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:57,907 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00015_nis
2026-04-15 20:35:57,908 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:57,909 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:35:58,027 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00015_nis_cal.fits
2026-04-15 20:35:58,028 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:35:58,028 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:35:58,050 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:35:58,060 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:35:58,070 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:35:58,071 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:35:58,072 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:35:58,073 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:35:58,073 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:35:58,075 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:35:58,331 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00016_nis_rate.fits'),).
2026-04-15 20:35:58,338 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:35:58,357 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00016_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']
2026-04-15 20:35:58,359 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:35:58,360 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:35:58,361 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:35:58,361 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:35:58,361 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:35:58,362 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:35:58,363 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:35:58,363 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:35:58,364 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:35:58,365 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:35:58,365 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:35:58,365 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:35:58,366 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:35:58,366 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:35:58,367 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:35:58,367 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:35:58,368 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:35:58,368 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:35:58,369 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:35:58,369 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:35:58,369 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:35:58,370 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:35:58,371 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00016_nis
2026-04-15 20:35:58,371 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00016_nis_rate.fits ...
2026-04-15 20:35:58,662 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00016_nis_image2pipeline.fits>,).
2026-04-15 20:35:58,730 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:35:58,759 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.742446842 -26.794692986 303.783096219 -26.785606626 303.772791916 -26.749628587 303.732180624 -26.758696660
2026-04-15 20:35:58,760 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.742446842 -26.794692986 303.783096219 -26.785606626 303.772791916 -26.749628587 303.732180624 -26.758696660
2026-04-15 20:35:58,761 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:35:58,804 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:35:59,070 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00016_nis_image2pipeline.fits>,).
2026-04-15 20:35:59,144 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:35:59,145 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:35:59,145 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:35:59,146 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:35:59,264 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:35:59,528 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00016_nis_image2pipeline.fits>,).
2026-04-15 20:35:59,535 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:35:59,535 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:35:59,536 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:35:59,536 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:35:59,537 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:35:59,537 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:35:59,538 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:35:59,583 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:35:59,584 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:35:59,586 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:35:59,639 - stpipe.step - INFO - Step photom done
2026-04-15 20:35:59,906 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00016_nis_image2pipeline.fits>,).
2026-04-15 20:35:59,907 - stpipe.step - INFO - Step skipped.
2026-04-15 20:35:59,910 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00016_nis
2026-04-15 20:35:59,911 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:35:59,912 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:36:00,026 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00016_nis_cal.fits
2026-04-15 20:36:00,026 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:36:00,027 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:36:00,049 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:36:00,058 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-04-15 20:36:00,068 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:36:00,069 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:36:00,070 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:36:00,071 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:36:00,072 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:36:00,073 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:36:00,339 - stpipe.step - INFO - Step Image2Pipeline running with args (np.str_('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00017_nis_rate.fits'),).
2026-04-15 20:36:00,345 - stpipe.step - INFO - Step Image2Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage2
  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: ''
      bkg_list: None
      save_combined_background: False
      sigma: 3.0
      maxiters: None
      soss_source_percentile: 35.0
      soss_bkg_percentile: None
      wfss_mmag_extract: None
      wfss_mask: None
      wfss_maxiter: 5
      wfss_rms_stop: 0.0
      wfss_outlier_percent: 1.0
    assign_wcs:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      sip_approx: True
      sip_max_pix_error: 0.01
      sip_degree: None
      sip_max_inv_pix_error: 0.01
      sip_inv_degree: None
      sip_npoints: 12
      slit_y_low: -0.55
      slit_y_high: 0.55
      nrs_ifu_slice_wcs: False
    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
      apply_time_correction: True
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: True
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
2026-04-15 20:36:00,364 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00017_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']
2026-04-15 20:36:00,367 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-04-15 20:36:00,368 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:36:00,368 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:36:00,369 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:36:00,369 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:36:00,370 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-04-15 20:36:00,371 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:36:00,371 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-04-15 20:36:00,372 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-04-15 20:36:00,372 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:36:00,373 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:36:00,373 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:36:00,374 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:36:00,374 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:36:00,375 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:36:00,375 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:36:00,376 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-04-15 20:36:00,376 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:36:00,377 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:36:00,377 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:36:00,377 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:36:00,378 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:36:00,379 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00017_nis
2026-04-15 20:36:00,379 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00017_nis_rate.fits ...
2026-04-15 20:36:00,684 - stpipe.step - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00017_nis_image2pipeline.fits>,).
2026-04-15 20:36:00,752 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-04-15 20:36:00,781 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS  303.744266550 -26.791915934 303.784914766 -26.782828984 303.774610061 -26.746851095 303.733999926 -26.755919758
2026-04-15 20:36:00,782 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  303.744266550 -26.791915934 303.784914766 -26.782828984 303.774610061 -26.746851095 303.733999926 -26.755919758
2026-04-15 20:36:00,783 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:36:00,826 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:36:01,091 - stpipe.step - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00017_nis_image2pipeline.fits>,).
2026-04-15 20:36:01,165 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-04-15 20:36:01,166 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:36:01,167 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:36:01,167 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:36:01,283 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:36:01,542 - stpipe.step - INFO - Step photom running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00017_nis_image2pipeline.fits>,).
2026-04-15 20:36:01,549 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-04-15 20:36:01,550 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-04-15 20:36:01,550 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-04-15 20:36:01,551 - jwst.photom.photom - INFO -  detector: NIS
2026-04-15 20:36:01,552 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-04-15 20:36:01,552 - jwst.photom.photom - INFO -  filter: CLEAR
2026-04-15 20:36:01,553 - jwst.photom.photom - INFO -  pupil: F150W
2026-04-15 20:36:01,598 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:36:01,599 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:36:01,600 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-04-15 20:36:01,653 - stpipe.step - INFO - Step photom done
2026-04-15 20:36:01,920 - stpipe.step - INFO - Step resample running with args (<ImageModel(2048, 2048) from ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00017_nis_image2pipeline.fits>,).
2026-04-15 20:36:01,921 - stpipe.step - INFO - Step skipped.
2026-04-15 20:36:01,923 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRISS/Imaging/nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00017_nis
2026-04-15 20:36:01,924 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:36:01,924 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:36:02,039 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00017_nis_cal.fits
2026-04-15 20:36:02,040 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:36:02,040 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
# Print out the time benchmark
time1 = time.perf_counter()
print(f"Runtime so far: {time1 - time0:0.0f} seconds")
print(f"Runtime for Image2: {time1 - time_image2:0.0f} seconds")
Runtime so far: 1330 seconds
Runtime for Image2: 34 seconds

Verify which pipeline steps were run#

if doimage2:
    # Identify *_cal.fits files
    cal_files = sorted(glob.glob(os.path.join(image2_dir, '*_cal.fits')))

    cal_f = datamodels.open(cal_files[0])

    # Check which steps were run:
    cal_f.meta.cal_step.instance

Check which reference files were used to calibrate the dataset:

if doimage2:
    cal_f.meta.ref_file.instance

7. Image3 Pipeline#

In the Image3 stage of the pipeline, the individual *_cal.fits files for each of the dither positions are combined to one single distortion corrected image. First, an Association needs to be created to inform the pipeline that these individual exposures are linked together.

By default, the Image3 stage of the pipeline performs the following steps on NIRISS data:

  • tweakreg - creates source catalogs of pointlike sources for each input image. The source catalog for each input image is compared to each other to derive coordinate transforms to align the images relative to each other.

  • As of CRDS context jwst_1156.pmap and later, the pars-tweakreg parameter reference file for NIRISS performs an absolute astrometric correction to GAIA data release 3 by default (i.e., the abs_refcat parameter is set to GAIADR3). Though this default correction generally improves results compared with not doing this alignment, it could potentially result in poor performance in crowded or sparse fields, so users are encouraged to check astrometric accuracy and revisit this step if necessary.

  • As of pipeline version 1.14.0, the default source finding algorithm for NIRISS is IRAFStarFinder which testing shows returns good accuracy for undersampled NIRISS PSFs at short wavelengths (Goudfrooij 2022).

  • skymatch - measures the background level from the sky to use as input into the subsequent outlier detection and resample steps.

  • outlier detection - flags any remaining cosmic rays, bad pixels, or other artifacts not already flagged during the DETECTOR1 stage of the pipeline, using all input images to create a median image so that outliers in individual images can be identified.

  • resample - resamples each input image based on its WCS and distortion information and creates a single undistorted image.

  • source catalog - creates a catalog of detected sources along with measured photometries and morphologies (i.e., point-like vs extended). Useful for quicklooks, but optimization is likely needed for specific science cases, which is an on-going investigation for the NIRISS team. Users may wish to experiment with changing the snr_threshold and deblend options. Modifications to the following parameters will not significantly improve data quality and it is advised to keep them at their default values: aperture_ee1, aperture_ee2, aperture_ee3, ci1_star_threshold, ci2_star_threshold.

time_image3 = time.perf_counter()
# Set up a dictionary to define how the Image3 pipeline should be configured
# Boilerplate dictionary setup
image3dict = {}
image3dict['assign_mtwcs'], image3dict['tweakreg'], image3dict['skymatch'] = {}, {}, {}
image3dict['outlier_detection'], image3dict['resample'], image3dict['source_catalog'] = {}, {}, {}

# Overrides for whether or not certain steps should be skipped (example)
#image3dict['outlier_detection']['skip'] = True

# Overrides for various reference files
# Files should be in the base local directory or provide full path
#image3dict['source_catalog']['override_apcorr'] = 'myfile.fits'  # Aperture correction parameters
#image3dict['source_catalog']['override_abvegaoffset'] = 'myfile.asdf'  # Data to convert from AB to Vega magnitudes (ASDF file)

Find and sort all of the input files, ensuring use of absolute paths

# Science Files need the cal.fits files
sstring = os.path.join(image2_dir, 'jw*cal.fits')
cal_files = sorted(glob.glob(sstring))
for ii in range(0, len(cal_files)):
    cal_files[ii] = os.path.abspath(cal_files[ii])
calfiles = np.array(cal_files)

print(f'Found {str(len(cal_files))} science files to process')
Found 17 science files to process

Create Association File#

An association file lists the exposures to calibrated together in Stage 3 of the pipeline. Note that an association file is available for download from MAST, with a filename of *_asn.json. Here we show how to create an association file to point to the data products created when processing data through the pipeline. Note that the output products will have a rootname that is specified by the product_name in the association file. For this tutorial, the rootname of the output products will be image3_association.

# Create a Level 3 Association
if doimage3:
    associations = asn_from_list.asn_from_list(cal_files,
                                               rule=DMS_Level3_Base,
                                               product_name='image3_association')
    
    associations.data['asn_type'] = 'image3'
    program = datamodels.open(cal_files[0]).meta.observation.program_number
    associations.data['program'] = program
    
    # Format association as .json file
    asn_filename, serialized = associations.dump(format="json")

    # Write out association file
    association_im3 = os.path.join(sci_dir, asn_filename)
    with open(association_im3, "w") as fd:
        fd.write(serialized)
/home/runner/micromamba/envs/ci-env/lib/python3.13/site-packages/jwst/associations/association.py:232: UserWarning: Input association file contains path information; note that this can complicate usage and/or sharing of such files.
  warnings.warn(err_str, UserWarning, stacklevel=1)

Run Image3 stage of the pipeline#

Given the grouped exposures in the association file, the Image3 stage of the pipeline will produce:

  • a *_cr.fits file produced by the outlier_detection step, where the DQ array marks the pixels flagged as outliers.

  • a final combined, rectified image with name *_i2d.fits,

  • a source catalog with name *_cat.ecsv,

  • a segmentation map file (*_segm.fits) which has integer values at the pixel locations where a source is detected where the pixel values match the source ID number in the catalog.

# Run Stage 3
if doimage3:
    i2d_result = Image3Pipeline.call(association_im3, output_dir=image3_dir, steps=image3dict, save_results=True)
else:
    print('Skipping Spec3 processing')
2026-04-15 20:36:02,347 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0079.asdf    1.7 K bytes  (1 / 1 files) (0 / 1.7 K bytes)
2026-04-15 20:36:02,459 - stpipe.step - INFO - PARS-TWEAKREGSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0079.asdf
2026-04-15 20:36:02,471 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0010.asdf    5.3 K bytes  (1 / 1 files) (0 / 5.3 K bytes)
2026-04-15 20:36:02,538 - stpipe.step - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0010.asdf
2026-04-15 20:36:02,550 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-04-15 20:36:02,560 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0011.asdf    1.3 K bytes  (1 / 1 files) (0 / 1.3 K bytes)
2026-04-15 20:36:02,653 - stpipe.step - INFO - PARS-SOURCECATALOGSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0011.asdf
2026-04-15 20:36:02,668 - stpipe.step - INFO - Image3Pipeline instance created.
2026-04-15 20:36:02,669 - stpipe.step - INFO - AssignMTWcsStep instance created.
2026-04-15 20:36:02,671 - stpipe.step - INFO - TweakRegStep instance created.
2026-04-15 20:36:02,673 - stpipe.step - INFO - SkyMatchStep instance created.
2026-04-15 20:36:02,674 - stpipe.step - INFO - OutlierDetectionStep instance created.
2026-04-15 20:36:02,675 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:36:02,676 - stpipe.step - INFO - SourceCatalogStep instance created.
2026-04-15 20:36:02,944 - stpipe.step - INFO - Step Image3Pipeline running with args ('./nis_im_demo_data/Obs006/jw01475-a3001_image3_00019_asn.json',).
2026-04-15 20:36:02,955 - stpipe.step - INFO - Step Image3Pipeline parameters are:
  pre_hooks: []
  post_hooks: []
  output_file: None
  output_dir: ./nis_im_demo_data/Obs006/stage3
  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
      kernel_fwhm: 2.0
      bkg_boxsize: 400
      minsep_fwhm: 0.0
      sigma_radius: 1.5
      sharplo: 0.5
      sharphi: 3.0
      roundlo: 0.0
      roundhi: 0.2
      brightest: 100
      peakmax: None
      npixels: 10
      connectivity: '8'
      nlevels: 32
      contrast: 0.001
      multithresh_mode: exponential
      localbkg_width: 0
      apermask_method: correct
      kron_params: None
      deblend: True
      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
      skylist: None
      stepsize: None
      skystat: mode
      dqbits: ~DO_NOT_USE+NON_SCIENCE
      lower: None
      upper: None
      nclip: 5
      lsigma: 4.0
      usigma: 4.0
      binwidth: 0.1
      in_memory: True
    outlier_detection:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: False
      input_dir: ''
      weight_type: ivm
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      maskpt: 0.7
      snr: 5.0 4.0
      scale: 2.1 0.7
      backg: 0.0
      kernel_size: 7 7
      threshold_percent: 99.8
      rolling_window_width: 25
      ifu_second_check: False
      save_intermediate_results: False
      resample_data: True
      good_bits: ~DO_NOT_USE
      in_memory: True
      pixmap_stepsize: 1.0
      pixmap_order: 1
    resample:
      pre_hooks: []
      post_hooks: []
      output_file: None
      output_dir: None
      output_ext: .fits
      output_use_model: False
      output_use_index: True
      save_results: False
      skip: False
      suffix: None
      search_output_file: True
      input_dir: ''
      pixfrac: 1.0
      kernel: square
      fillval: NAN
      weight_type: ivm
      output_shape: None
      crpix: None
      crval: None
      rotation: None
      pixel_scale_ratio: 1.0
      pixel_scale: None
      output_wcs: ''
      single: False
      blendheaders: True
      in_memory: True
      enable_ctx: True
      enable_err: True
      report_var: True
      propagate_dq: False
      pixmap_stepsize: 1.0
      pixmap_order: 1
    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: ''
      aperture_ee1: 50
      aperture_ee2: 70
      aperture_ee3: 80
      ci1_star_threshold: 1.4
      ci2_star_threshold: 1.4
      starfinder: segmentation
      snr_threshold: 3.0
      bkg_boxsize: 100
      kernel_fwhm: 3.0
      minsep_fwhm: 0.0
      sigma_radius: 1.5
      sharplo: 0.5
      sharphi: 2.0
      roundlo: 0.0
      roundhi: 0.2
      brightest: 200
      peakmax: None
      npixels: 5
      connectivity: '8'
      nlevels: 32
      contrast: 0.001
      multithresh_mode: exponential
      localbkg_width: 0
      apermask_method: correct
      kron_params: None
      deblend: False
2026-04-15 20:36:03,012 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475-a3001_image3_00019_asn.json' reftypes = ['abvegaoffset', 'apcorr']
2026-04-15 20:36:03,014 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf    2.1 K bytes  (1 / 2 files) (0 / 16.5 K bytes)
2026-04-15 20:36:03,080 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_apcorr_0008.fits   14.4 K bytes  (2 / 2 files) (2.1 K / 16.5 K bytes)
2026-04-15 20:36:03,123 - stpipe.pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2026-04-15 20:36:03,124 - stpipe.pipeline - INFO - Prefetch for APCORR reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2026-04-15 20:36:03,124 - jwst.pipeline.calwebb_image3 - INFO - Starting calwebb_image3 ...
2026-04-15 20:36:03,774 - stpipe.step - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fa79e2db4d0>,).
2026-04-15 20:36:05,368 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00001_nis_cal.fits.
2026-04-15 20:36:07,002 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00002_nis_cal.fits.
2026-04-15 20:36:08,615 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00003_nis_cal.fits.
2026-04-15 20:36:10,217 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00004_nis_cal.fits.
2026-04-15 20:36:11,820 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00005_nis_cal.fits.
2026-04-15 20:36:13,417 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00006_nis_cal.fits.
2026-04-15 20:36:15,003 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00007_nis_cal.fits.
2026-04-15 20:36:16,617 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00008_nis_cal.fits.
2026-04-15 20:36:18,220 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00009_nis_cal.fits.
2026-04-15 20:36:19,821 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00010_nis_cal.fits.
2026-04-15 20:36:21,469 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00011_nis_cal.fits.
2026-04-15 20:36:23,075 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00012_nis_cal.fits.
2026-04-15 20:36:24,696 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00013_nis_cal.fits.
2026-04-15 20:36:26,306 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00014_nis_cal.fits.
2026-04-15 20:36:27,919 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00015_nis_cal.fits.
2026-04-15 20:36:29,520 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00016_nis_cal.fits.
2026-04-15 20:36:31,128 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00017_nis_cal.fits.
2026-04-15 20:36:31,150 - jwst.tweakreg.tweakreg_step - INFO - 
2026-04-15 20:36:31,150 - jwst.tweakreg.tweakreg_step - INFO - Number of image groups to be aligned: 17.
2026-04-15 20:36:31,151 - tweakwcs.imalign - INFO -  
2026-04-15 20:36:31,152 - tweakwcs.imalign - INFO - ***** tweakwcs.imalign.align_wcs() started on 2026-04-15 20:36:31.151459
2026-04-15 20:36:31,152 - tweakwcs.imalign - INFO -       Version 0.8.12
2026-04-15 20:36:31,153 - tweakwcs.imalign - INFO -  
2026-04-15 20:36:53,121 - tweakwcs.imalign - INFO - Selected image 'GROUP ID: jw01475006001_02201_17' as reference image
2026-04-15 20:36:53,125 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_12' to the reference catalog.
2026-04-15 20:36:53,484 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00012_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00017_nis_cal' catalog.
2026-04-15 20:36:53,485 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:36:53,487 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 77 and 77 matches.
2026-04-15 20:36:53,488 - tweakwcs.wcsimage - INFO - Found 77 matches for 'GROUP ID: jw01475006001_02201_12'...
2026-04-15 20:36:53,489 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:36:53,491 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_12:
2026-04-15 20:36:53,492 - tweakwcs.wcsimage - INFO - XSH: -0.00242242  YSH: -0.00135237    ROT: 7.40149e-05    SCALE: 1
2026-04-15 20:36:53,492 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:36:53,493 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00547136   FIT MAE: 0.00496695
2026-04-15 20:36:53,493 - tweakwcs.wcsimage - INFO - Final solution based on 76 objects.
2026-04-15 20:36:53,529 - tweakwcs.imalign - INFO - Added 23 unmatched sources from 'GROUP ID: jw01475006001_02201_12' to the reference catalog.
2026-04-15 20:36:56,088 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_8' to the reference catalog.
2026-04-15 20:36:56,126 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00008_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00012_nis_cal' catalog.
2026-04-15 20:36:56,127 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:36:56,128 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 65.32 and 80 matches.
2026-04-15 20:36:56,129 - tweakwcs.wcsimage - INFO - Found 80 matches for 'GROUP ID: jw01475006001_02201_8'...
2026-04-15 20:36:56,130 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:36:56,132 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_8:
2026-04-15 20:36:56,133 - tweakwcs.wcsimage - INFO - XSH: -0.000812071  YSH: -0.00478849    ROT: -0.000204751    SCALE: 1
2026-04-15 20:36:56,133 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:36:56,134 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00493855   FIT MAE: 0.00443085
2026-04-15 20:36:56,135 - tweakwcs.wcsimage - INFO - Final solution based on 78 objects.
2026-04-15 20:36:56,172 - tweakwcs.imalign - INFO - Added 20 unmatched sources from 'GROUP ID: jw01475006001_02201_8' to the reference catalog.
2026-04-15 20:36:58,366 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_13' to the reference catalog.
2026-04-15 20:36:58,404 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00013_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00008_nis_cal' catalog.
2026-04-15 20:36:58,405 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:36:58,406 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 64.29 and 83 matches.
2026-04-15 20:36:58,407 - tweakwcs.wcsimage - INFO - Found 81 matches for 'GROUP ID: jw01475006001_02201_13'...
2026-04-15 20:36:58,408 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:36:58,410 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_13:
2026-04-15 20:36:58,411 - tweakwcs.wcsimage - INFO - XSH: 0.00256445  YSH: -0.00109327    ROT: 0.000367922    SCALE: 1
2026-04-15 20:36:58,412 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:36:58,412 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00526792   FIT MAE: 0.00466995
2026-04-15 20:36:58,413 - tweakwcs.wcsimage - INFO - Final solution based on 80 objects.
2026-04-15 20:36:58,448 - tweakwcs.imalign - INFO - Added 19 unmatched sources from 'GROUP ID: jw01475006001_02201_13' to the reference catalog.
2026-04-15 20:37:00,484 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_4' to the reference catalog.
2026-04-15 20:37:00,525 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00004_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00013_nis_cal' catalog.
2026-04-15 20:37:00,526 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:37:00,527 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 77.57 and 95 matches.
2026-04-15 20:37:00,529 - tweakwcs.wcsimage - INFO - Found 93 matches for 'GROUP ID: jw01475006001_02201_4'...
2026-04-15 20:37:00,529 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:37:00,531 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_4:
2026-04-15 20:37:00,532 - tweakwcs.wcsimage - INFO - XSH: 0.00366049  YSH: -0.00653835    ROT: -0.000219511    SCALE: 1
2026-04-15 20:37:00,532 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:37:00,533 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00512755   FIT MAE: 0.00444097
2026-04-15 20:37:00,534 - tweakwcs.wcsimage - INFO - Final solution based on 91 objects.
2026-04-15 20:37:00,569 - tweakwcs.imalign - INFO - Added 7 unmatched sources from 'GROUP ID: jw01475006001_02201_4' to the reference catalog.
2026-04-15 20:37:02,432 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_14' to the reference catalog.
2026-04-15 20:37:02,470 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00014_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00004_nis_cal' catalog.
2026-04-15 20:37:02,470 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:37:02,472 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.0497, 0.049 (arcsec) with significance of 92 and 93 matches.
2026-04-15 20:37:02,473 - tweakwcs.wcsimage - INFO - Found 88 matches for 'GROUP ID: jw01475006001_02201_14'...
2026-04-15 20:37:02,474 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:37:02,476 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_14:
2026-04-15 20:37:02,476 - tweakwcs.wcsimage - INFO - XSH: 0.00379828  YSH: 0.0016777    ROT: 0.000885287    SCALE: 1
2026-04-15 20:37:02,477 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:37:02,478 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.0046273   FIT MAE: 0.00402152
2026-04-15 20:37:02,478 - tweakwcs.wcsimage - INFO - Final solution based on 86 objects.
2026-04-15 20:37:02,516 - tweakwcs.imalign - INFO - Added 12 unmatched sources from 'GROUP ID: jw01475006001_02201_14' to the reference catalog.
2026-04-15 20:37:04,508 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_9' to the reference catalog.
2026-04-15 20:37:04,546 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00009_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00014_nis_cal' catalog.
2026-04-15 20:37:04,547 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:37:04,548 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 70.9 and 96 matches.
2026-04-15 20:37:04,550 - tweakwcs.wcsimage - INFO - Found 92 matches for 'GROUP ID: jw01475006001_02201_9'...
2026-04-15 20:37:04,551 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:37:04,553 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_9:
2026-04-15 20:37:04,554 - tweakwcs.wcsimage - INFO - XSH: 0.00578513  YSH: 2.22449e-06    ROT: 0.000304789    SCALE: 1
2026-04-15 20:37:04,554 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:37:04,555 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00691392   FIT MAE: 0.00571707
2026-04-15 20:37:04,555 - tweakwcs.wcsimage - INFO - Final solution based on 91 objects.
2026-04-15 20:37:04,591 - tweakwcs.imalign - INFO - Added 8 unmatched sources from 'GROUP ID: jw01475006001_02201_9' to the reference catalog.
2026-04-15 20:37:06,418 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_1' to the reference catalog.
2026-04-15 20:37:06,457 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00001_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00009_nis_cal' catalog.
2026-04-15 20:37:06,458 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:37:06,460 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 75.14 and 97 matches.
2026-04-15 20:37:06,461 - tweakwcs.wcsimage - INFO - Found 91 matches for 'GROUP ID: jw01475006001_02201_1'...
2026-04-15 20:37:06,462 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:37:06,464 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_1:
2026-04-15 20:37:06,464 - tweakwcs.wcsimage - INFO - XSH: 0.00231299  YSH: 0.000693613    ROT: 0.000613244    SCALE: 1
2026-04-15 20:37:06,465 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:37:06,465 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00601197   FIT MAE: 0.00529177
2026-04-15 20:37:06,466 - tweakwcs.wcsimage - INFO - Final solution based on 89 objects.
2026-04-15 20:37:06,504 - tweakwcs.imalign - INFO - Added 9 unmatched sources from 'GROUP ID: jw01475006001_02201_1' to the reference catalog.
2026-04-15 20:37:08,141 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_16' to the reference catalog.
2026-04-15 20:37:08,179 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00016_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00001_nis_cal' catalog.
2026-04-15 20:37:08,180 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:37:08,182 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 72.81 and 94 matches.
2026-04-15 20:37:08,183 - tweakwcs.wcsimage - INFO - Found 87 matches for 'GROUP ID: jw01475006001_02201_16'...
2026-04-15 20:37:08,184 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:37:08,186 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_16:
2026-04-15 20:37:08,186 - tweakwcs.wcsimage - INFO - XSH: -0.00412012  YSH: 0.000449607    ROT: -6.63249e-05    SCALE: 1
2026-04-15 20:37:08,187 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:37:08,188 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00505982   FIT MAE: 0.00428833
2026-04-15 20:37:08,189 - tweakwcs.wcsimage - INFO - Final solution based on 85 objects.
2026-04-15 20:37:08,223 - tweakwcs.imalign - INFO - Added 13 unmatched sources from 'GROUP ID: jw01475006001_02201_16' to the reference catalog.
2026-04-15 20:37:09,733 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_10' to the reference catalog.
2026-04-15 20:37:09,774 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00010_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00016_nis_cal' catalog.
2026-04-15 20:37:09,774 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:37:09,776 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 80.54 and 93 matches.
2026-04-15 20:37:09,777 - tweakwcs.wcsimage - INFO - Found 86 matches for 'GROUP ID: jw01475006001_02201_10'...
2026-04-15 20:37:09,778 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:37:09,780 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_10:
2026-04-15 20:37:09,781 - tweakwcs.wcsimage - INFO - XSH: 0.00570423  YSH: 0.00256457    ROT: 0.000970254    SCALE: 1
2026-04-15 20:37:09,781 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:37:09,782 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00627525   FIT MAE: 0.00546948
2026-04-15 20:37:09,783 - tweakwcs.wcsimage - INFO - Final solution based on 85 objects.
2026-04-15 20:37:09,818 - tweakwcs.imalign - INFO - Added 14 unmatched sources from 'GROUP ID: jw01475006001_02201_10' to the reference catalog.
2026-04-15 20:37:11,360 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_11' to the reference catalog.
2026-04-15 20:37:11,397 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00011_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00010_nis_cal' catalog.
2026-04-15 20:37:11,398 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:37:11,400 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 99.94 and 106 matches.
2026-04-15 20:37:11,401 - tweakwcs.wcsimage - INFO - Found 97 matches for 'GROUP ID: jw01475006001_02201_11'...
2026-04-15 20:37:11,402 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:37:11,405 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_11:
2026-04-15 20:37:11,406 - tweakwcs.wcsimage - INFO - XSH: -0.000505336  YSH: 0.00510322    ROT: 0.000592447    SCALE: 1
2026-04-15 20:37:11,406 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:37:11,407 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00507938   FIT MAE: 0.00409642
2026-04-15 20:37:11,407 - tweakwcs.wcsimage - INFO - Final solution based on 96 objects.
2026-04-15 20:37:11,445 - tweakwcs.imalign - INFO - Added 3 unmatched sources from 'GROUP ID: jw01475006001_02201_11' to the reference catalog.
2026-04-15 20:37:12,774 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_15' to the reference catalog.
2026-04-15 20:37:12,811 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00015_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00011_nis_cal' catalog.
2026-04-15 20:37:12,812 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:37:12,813 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 78.37 and 103 matches.
2026-04-15 20:37:12,815 - tweakwcs.wcsimage - INFO - Found 93 matches for 'GROUP ID: jw01475006001_02201_15'...
2026-04-15 20:37:12,816 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:37:12,818 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_15:
2026-04-15 20:37:12,819 - tweakwcs.wcsimage - INFO - XSH: 0.00185466  YSH: 0.00475205    ROT: 0.000792487    SCALE: 1
2026-04-15 20:37:12,819 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:37:12,820 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00548649   FIT MAE: 0.00459943
2026-04-15 20:37:12,820 - tweakwcs.wcsimage - INFO - Final solution based on 90 objects.
2026-04-15 20:37:12,856 - tweakwcs.imalign - INFO - Added 7 unmatched sources from 'GROUP ID: jw01475006001_02201_15' to the reference catalog.
2026-04-15 20:37:13,972 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_5' to the reference catalog.
2026-04-15 20:37:14,009 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00005_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00015_nis_cal' catalog.
2026-04-15 20:37:14,010 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:37:14,012 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 67.08 and 100 matches.
2026-04-15 20:37:14,013 - tweakwcs.wcsimage - INFO - Found 87 matches for 'GROUP ID: jw01475006001_02201_5'...
2026-04-15 20:37:14,014 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:37:14,016 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_5:
2026-04-15 20:37:14,016 - tweakwcs.wcsimage - INFO - XSH: 0.00456462  YSH: 0.00390122    ROT: -0.000998661    SCALE: 1
2026-04-15 20:37:14,017 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:37:14,017 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00696675   FIT MAE: 0.00589575
2026-04-15 20:37:14,018 - tweakwcs.wcsimage - INFO - Final solution based on 86 objects.
2026-04-15 20:37:14,056 - tweakwcs.imalign - INFO - Added 13 unmatched sources from 'GROUP ID: jw01475006001_02201_5' to the reference catalog.
2026-04-15 20:37:14,925 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_6' to the reference catalog.
2026-04-15 20:37:14,964 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00006_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00005_nis_cal' catalog.
2026-04-15 20:37:14,964 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:37:14,966 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 63.32 and 99 matches.
2026-04-15 20:37:14,967 - tweakwcs.wcsimage - INFO - Found 91 matches for 'GROUP ID: jw01475006001_02201_6'...
2026-04-15 20:37:14,968 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:37:14,971 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_6:
2026-04-15 20:37:14,971 - tweakwcs.wcsimage - INFO - XSH: -0.00113579  YSH: 0.0086042    ROT: -0.000130161    SCALE: 1
2026-04-15 20:37:14,972 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:37:14,972 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.0247983   FIT MAE: 0.00739617
2026-04-15 20:37:14,973 - tweakwcs.wcsimage - INFO - Final solution based on 88 objects.
2026-04-15 20:37:15,009 - tweakwcs.imalign - INFO - Added 9 unmatched sources from 'GROUP ID: jw01475006001_02201_6' to the reference catalog.
2026-04-15 20:37:15,650 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_3' to the reference catalog.
2026-04-15 20:37:15,690 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00003_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00006_nis_cal' catalog.
2026-04-15 20:37:15,691 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:37:15,692 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 58.57 and 98 matches.
2026-04-15 20:37:15,694 - tweakwcs.wcsimage - INFO - Found 86 matches for 'GROUP ID: jw01475006001_02201_3'...
2026-04-15 20:37:15,694 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:37:15,697 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_3:
2026-04-15 20:37:15,698 - tweakwcs.wcsimage - INFO - XSH: -0.00677009  YSH: -0.00545554    ROT: -4.46551e-06    SCALE: 1
2026-04-15 20:37:15,698 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:37:15,699 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00615394   FIT MAE: 0.00510784
2026-04-15 20:37:15,699 - tweakwcs.wcsimage - INFO - Final solution based on 84 objects.
2026-04-15 20:37:15,735 - tweakwcs.imalign - INFO - Added 14 unmatched sources from 'GROUP ID: jw01475006001_02201_3' to the reference catalog.
2026-04-15 20:37:16,161 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_2' to the reference catalog.
2026-04-15 20:37:16,199 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00002_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00003_nis_cal' catalog.
2026-04-15 20:37:16,200 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:37:16,201 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 60.72 and 96 matches.
2026-04-15 20:37:16,203 - tweakwcs.wcsimage - INFO - Found 91 matches for 'GROUP ID: jw01475006001_02201_2'...
2026-04-15 20:37:16,204 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:37:16,206 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_2:
2026-04-15 20:37:16,206 - tweakwcs.wcsimage - INFO - XSH: -0.00247723  YSH: 0.00530559    ROT: -0.000493737    SCALE: 1
2026-04-15 20:37:16,207 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:37:16,207 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00515078   FIT MAE: 0.00444754
2026-04-15 20:37:16,208 - tweakwcs.wcsimage - INFO - Final solution based on 88 objects.
2026-04-15 20:37:16,243 - tweakwcs.imalign - INFO - Added 9 unmatched sources from 'GROUP ID: jw01475006001_02201_2' to the reference catalog.
2026-04-15 20:37:16,464 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_7' to the reference catalog.
2026-04-15 20:37:16,501 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00007_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00002_nis_cal' catalog.
2026-04-15 20:37:16,502 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:37:16,504 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 73.54 and 104 matches.
2026-04-15 20:37:16,505 - tweakwcs.wcsimage - INFO - Found 92 matches for 'GROUP ID: jw01475006001_02201_7'...
2026-04-15 20:37:16,506 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-04-15 20:37:16,508 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for GROUP ID: jw01475006001_02201_7:
2026-04-15 20:37:16,508 - tweakwcs.wcsimage - INFO - XSH: -0.00868624  YSH: 0.0029037    ROT: -0.000162506    SCALE: 1
2026-04-15 20:37:16,509 - tweakwcs.wcsimage - INFO - 
2026-04-15 20:37:16,509 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00624705   FIT MAE: 0.00536062
2026-04-15 20:37:16,510 - tweakwcs.wcsimage - INFO - Final solution based on 90 objects.
2026-04-15 20:37:16,545 - tweakwcs.imalign - INFO - Added 8 unmatched sources from 'GROUP ID: jw01475006001_02201_7' to the reference catalog.
2026-04-15 20:37:16,546 - tweakwcs.imalign - INFO -  
2026-04-15 20:37:16,547 - tweakwcs.imalign - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2026-04-15 20:37:16.546640
2026-04-15 20:37:16,548 - tweakwcs.imalign - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:45.395181
2026-04-15 20:37:16,548 - tweakwcs.imalign - INFO -  
2026-04-15 20:37:16,608 - jwst.tweakreg.tweakreg_step - INFO - Aligning to absolute reference catalog: GAIADR3
2026-04-15 20:37:16,969 - tweakwcs.imalign - INFO -  
2026-04-15 20:37:16,970 - tweakwcs.imalign - INFO - ***** tweakwcs.imalign.align_wcs() started on 2026-04-15 20:37:16.969951
2026-04-15 20:37:16,971 - tweakwcs.imalign - INFO -       Version 0.8.12
2026-04-15 20:37:16,971 - tweakwcs.imalign - INFO -  
2026-04-15 20:39:11,409 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: 987654' to the reference catalog.
2026-04-15 20:39:11,456 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_000' catalog with sources from the reference 'GAIADR3' catalog.
2026-04-15 20:39:11,457 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-04-15 20:39:11,460 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of -3.968, 5.211 (arcsec) with significance of 7.597 and 15 matches.
2026-04-15 20:39:11,462 - tweakwcs.wcsimage - INFO - Found 1 matches for 'GROUP ID: 987654'...
2026-04-15 20:39:11,462 - tweakwcs.wcsimage - WARNING - Not enough matches (1) found for image catalog 'GROUP ID: 987654'. Min requred: 15.
2026-04-15 20:39:11,463 - tweakwcs.imalign - INFO -  
2026-04-15 20:39:11,464 - tweakwcs.imalign - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2026-04-15 20:39:11.463609
2026-04-15 20:39:11,464 - tweakwcs.imalign - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:01:54.493658
2026-04-15 20:39:11,465 - tweakwcs.imalign - INFO -  
2026-04-15 20:39:11,895 - stpipe.step - INFO - Step tweakreg done
2026-04-15 20:39:12,227 - stpipe.step - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fa79e2db4d0>,).
2026-04-15 20:39:12,520 - stcal.skymatch.skymatch - INFO -  
2026-04-15 20:39:12,521 - stcal.skymatch.skymatch - INFO - ***** stcal.skymatch.skymatch.skymatch() started on 2026-04-15 20:39:12.520355
2026-04-15 20:39:12,521 - stcal.skymatch.skymatch - INFO -  
2026-04-15 20:39:12,522 - stcal.skymatch.skymatch - INFO - Sky computation method: 'match'
2026-04-15 20:39:12,523 - stcal.skymatch.skymatch - INFO - Sky matching direction: DOWN
2026-04-15 20:39:12,523 - stcal.skymatch.skymatch - INFO - Sky subtraction from image data: OFF
2026-04-15 20:39:12,524 - stcal.skymatch.skymatch - INFO -  
2026-04-15 20:39:12,524 - stcal.skymatch.skymatch - INFO - ----  Computing differences in sky values in overlapping regions.
2026-04-15 20:39:51,538 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00001_nis_cal.fits. Sky background: 0.000675227
2026-04-15 20:39:51,539 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00002_nis_cal.fits. Sky background: 0
2026-04-15 20:39:51,540 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00003_nis_cal.fits. Sky background: 0.00219531
2026-04-15 20:39:51,541 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00004_nis_cal.fits. Sky background: 0.00261509
2026-04-15 20:39:51,541 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00005_nis_cal.fits. Sky background: 0.00215365
2026-04-15 20:39:51,542 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00006_nis_cal.fits. Sky background: 0.000759067
2026-04-15 20:39:51,543 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00007_nis_cal.fits. Sky background: 0.000610698
2026-04-15 20:39:51,543 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00008_nis_cal.fits. Sky background: 0.00119218
2026-04-15 20:39:51,544 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00009_nis_cal.fits. Sky background: 0.00107968
2026-04-15 20:39:51,545 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00010_nis_cal.fits. Sky background: 0.00215685
2026-04-15 20:39:51,546 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00011_nis_cal.fits. Sky background: 0.00143581
2026-04-15 20:39:51,546 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00012_nis_cal.fits. Sky background: 0.00146049
2026-04-15 20:39:51,547 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00013_nis_cal.fits. Sky background: 0.00143147
2026-04-15 20:39:51,548 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00014_nis_cal.fits. Sky background: 0.00279962
2026-04-15 20:39:51,555 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00015_nis_cal.fits. Sky background: 0.00147539
2026-04-15 20:39:51,555 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00016_nis_cal.fits. Sky background: 0.00198134
2026-04-15 20:39:51,556 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00017_nis_cal.fits. Sky background: 0.00217553
2026-04-15 20:39:51,557 - stcal.skymatch.skymatch - INFO -  
2026-04-15 20:39:51,557 - stcal.skymatch.skymatch - INFO - ***** stcal.skymatch.skymatch.skymatch() ended on 2026-04-15 20:39:51.557213
2026-04-15 20:39:51,558 - stcal.skymatch.skymatch - INFO - ***** stcal.skymatch.skymatch.skymatch() TOTAL RUN TIME: 0:00:39.036858
2026-04-15 20:39:51,559 - stcal.skymatch.skymatch - INFO -  
2026-04-15 20:39:51,646 - stpipe.step - INFO - Step skymatch done
2026-04-15 20:39:51,960 - stpipe.step - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fa79e2db4d0>,).
2026-04-15 20:39:51,961 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: imaging
2026-04-15 20:39:51,962 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:39:52,004 - jwst.resample.resample_utils - INFO - Pixel scale ratio (pscale_out/pscale_in): 1.0
2026-04-15 20:39:52,004 - jwst.resample.resample_utils - INFO - Computed output pixel scale: 0.06556287117462305 arcsec.
2026-04-15 20:39:52,027 - stcal.resample.resample - INFO - Output pixel scale: 0.06556287117462305 arcsec.
2026-04-15 20:39:52,028 - stcal.resample.resample - INFO - Driz parameter kernel: square
2026-04-15 20:39:52,029 - stcal.resample.resample - INFO - Driz parameter pixfrac: 1.0
2026-04-15 20:39:52,029 - stcal.resample.resample - INFO - Driz parameter fillval: NAN
2026-04-15 20:39:52,030 - stcal.resample.resample - INFO - Driz parameter weight_type: ivm
2026-04-15 20:39:52,033 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:39:53,767 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:39:54,444 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:39:54,783 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:39:56,448 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:39:57,128 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:39:57,502 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:39:59,173 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:39:59,851 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:00,181 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:01,849 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:02,526 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:02,860 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:04,554 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:05,230 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:05,596 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:07,274 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:07,947 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:08,291 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:09,966 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:10,640 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:10,988 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:12,650 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:13,323 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:13,669 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:15,350 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:16,026 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:16,381 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:18,053 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:18,755 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:19,075 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:20,756 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:21,435 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:21,780 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:23,448 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:24,125 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:24,462 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:26,139 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:26,813 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:27,162 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:28,831 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:29,503 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:29,837 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:31,525 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:32,201 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:32,569 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:34,238 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:34,916 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:35,248 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-04-15 20:40:36,939 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:40:37,614 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:40:42,855 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:40:43,078 - jwst.outlier_detection.utils - INFO - 3371 pixels marked as outliers
2026-04-15 20:40:44,781 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:40:45,009 - jwst.outlier_detection.utils - INFO - 3182 pixels marked as outliers
2026-04-15 20:40:46,705 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:40:46,932 - jwst.outlier_detection.utils - INFO - 3024 pixels marked as outliers
2026-04-15 20:40:48,639 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:40:48,868 - jwst.outlier_detection.utils - INFO - 3678 pixels marked as outliers
2026-04-15 20:40:50,588 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:40:50,819 - jwst.outlier_detection.utils - INFO - 3405 pixels marked as outliers
2026-04-15 20:40:52,536 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:40:52,764 - jwst.outlier_detection.utils - INFO - 3327 pixels marked as outliers
2026-04-15 20:40:54,465 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:40:54,697 - jwst.outlier_detection.utils - INFO - 2981 pixels marked as outliers
2026-04-15 20:40:56,395 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:40:56,625 - jwst.outlier_detection.utils - INFO - 3494 pixels marked as outliers
2026-04-15 20:40:58,324 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:40:58,552 - jwst.outlier_detection.utils - INFO - 3257 pixels marked as outliers
2026-04-15 20:41:00,262 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:41:00,491 - jwst.outlier_detection.utils - INFO - 3307 pixels marked as outliers
2026-04-15 20:41:02,192 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:41:02,422 - jwst.outlier_detection.utils - INFO - 3417 pixels marked as outliers
2026-04-15 20:41:04,123 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:41:04,353 - jwst.outlier_detection.utils - INFO - 3045 pixels marked as outliers
2026-04-15 20:41:06,058 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:41:06,288 - jwst.outlier_detection.utils - INFO - 3198 pixels marked as outliers
2026-04-15 20:41:07,993 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:41:08,221 - jwst.outlier_detection.utils - INFO - 3314 pixels marked as outliers
2026-04-15 20:41:09,927 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:41:10,156 - jwst.outlier_detection.utils - INFO - 3429 pixels marked as outliers
2026-04-15 20:41:11,859 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:41:12,086 - jwst.outlier_detection.utils - INFO - 3241 pixels marked as outliers
2026-04-15 20:41:13,779 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-04-15 20:41:14,006 - jwst.outlier_detection.utils - INFO - 3153 pixels marked as outliers
2026-04-15 20:41:14,228 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00001_nis_a3001_crf.fits
2026-04-15 20:41:14,338 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00002_nis_a3001_crf.fits
2026-04-15 20:41:14,447 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00003_nis_a3001_crf.fits
2026-04-15 20:41:14,556 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00004_nis_a3001_crf.fits
2026-04-15 20:41:14,666 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00005_nis_a3001_crf.fits
2026-04-15 20:41:14,776 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00006_nis_a3001_crf.fits
2026-04-15 20:41:14,885 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00007_nis_a3001_crf.fits
2026-04-15 20:41:14,996 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00008_nis_a3001_crf.fits
2026-04-15 20:41:15,107 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00009_nis_a3001_crf.fits
2026-04-15 20:41:15,221 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00010_nis_a3001_crf.fits
2026-04-15 20:41:15,333 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00011_nis_a3001_crf.fits
2026-04-15 20:41:15,444 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00012_nis_a3001_crf.fits
2026-04-15 20:41:15,559 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00013_nis_a3001_crf.fits
2026-04-15 20:41:15,672 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00014_nis_a3001_crf.fits
2026-04-15 20:41:15,897 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00015_nis_a3001_crf.fits
2026-04-15 20:41:16,192 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00016_nis_a3001_crf.fits
2026-04-15 20:41:16,455 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00017_nis_a3001_crf.fits
2026-04-15 20:41:16,455 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:41:16,760 - stpipe.step - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fa79e2db4d0>,).
2026-04-15 20:41:17,132 - jwst.resample.resample_utils - INFO - Pixel scale ratio (pscale_out/pscale_in): 1.0
2026-04-15 20:41:17,132 - jwst.resample.resample_utils - INFO - Computed output pixel scale: 0.06556287117462305 arcsec.
2026-04-15 20:41:17,156 - stcal.resample.resample - INFO - Output pixel scale: 0.06556287117462305 arcsec.
2026-04-15 20:41:17,157 - stcal.resample.resample - INFO - Driz parameter kernel: square
2026-04-15 20:41:17,157 - stcal.resample.resample - INFO - Driz parameter pixfrac: 1.0
2026-04-15 20:41:17,158 - stcal.resample.resample - INFO - Driz parameter fillval: NAN
2026-04-15 20:41:17,159 - stcal.resample.resample - INFO - Driz parameter weight_type: ivm
2026-04-15 20:41:17,195 - jwst.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:41:18,956 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:41:19,547 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:20,107 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:20,664 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:23,166 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:41:23,759 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:24,319 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:24,876 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:27,265 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:41:27,860 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:28,417 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:28,970 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:31,358 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:41:31,956 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:32,513 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:33,067 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:35,495 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:41:36,090 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:36,649 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:37,206 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:39,600 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:41:40,191 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:40,749 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:41,302 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:43,737 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:41:44,327 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:44,884 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:45,435 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:47,859 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:41:48,450 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:49,003 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:49,561 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:51,995 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:41:52,593 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:53,151 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:53,709 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:56,111 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:41:56,702 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:57,261 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:41:57,826 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:00,217 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:42:00,807 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:01,366 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:01,925 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:04,331 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:42:04,922 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:05,473 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:06,031 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:08,437 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:42:09,032 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:09,584 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:10,135 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:12,547 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:42:13,137 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:13,703 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:14,263 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:16,663 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:42:17,254 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:17,813 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:18,370 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:20,763 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:42:21,353 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:21,910 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:22,470 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:24,884 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:42:25,475 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:26,031 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:26,589 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-04-15 20:42:27,654 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS  303.783742050 -26.787807820 303.783728130 -26.787759234 303.788665427 -26.786654698 303.788301029 -26.785356034 303.778366453 -26.750675452 303.778336716 -26.750682098 303.777074481 -26.746274176 303.777044599 -26.746280854 303.775782455 -26.741872893 303.773884740 -26.742296996 303.735175332 -26.750945895 303.735188220 -26.750991098 303.730244653 -26.752094256 303.730258664 -26.752143405 303.725315519 -26.753246266 303.735579108 -26.789243079 303.735612340 -26.789235657 303.736869971 -26.793644806 303.736903646 -26.793637285 303.738161312 -26.798046265 303.778812243 -26.788961155 303.778798597 -26.788913521
2026-04-15 20:42:27,910 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/image3_association_i2d.fits
2026-04-15 20:42:27,911 - stpipe.step - INFO - Step resample done
2026-04-15 20:42:28,199 - stpipe.step - INFO - Step source_catalog running with args (<ImageModel(2568, 2545) from image3_association_i2d.fits>,).
2026-04-15 20:42:28,398 - jwst.source_catalog.source_catalog_step - INFO - Using APCORR reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2026-04-15 20:42:28,404 - jwst.source_catalog.source_catalog_step - INFO - Using ABVEGAOFFSET reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2026-04-15 20:42:28,405 - jwst.source_catalog.reference_data - INFO - Instrument: NIRISS
2026-04-15 20:42:28,405 - jwst.source_catalog.reference_data - INFO - Detector: NIS
2026-04-15 20:42:28,406 - jwst.source_catalog.reference_data - INFO - Filter: CLEAR
2026-04-15 20:42:28,406 - jwst.source_catalog.reference_data - INFO - Pupil: F150W
2026-04-15 20:42:28,407 - jwst.source_catalog.reference_data - INFO - Subarray: FULL
2026-04-15 20:42:28,447 - jwst.source_catalog.reference_data - INFO - AB to Vega magnitude offset 1.19753
2026-04-15 20:42:33,094 - jwst.source_catalog.source_catalog_step - INFO - Wrote source catalog: ./nis_im_demo_data/Obs006/stage3/image3_association_cat.ecsv
2026-04-15 20:42:33,216 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/image3_association_segm.fits
2026-04-15 20:42:33,217 - jwst.source_catalog.source_catalog_step - INFO - Wrote segmentation map: image3_association_segm.fits
2026-04-15 20:42:33,219 - stpipe.step - INFO - Step source_catalog done
2026-04-15 20:42:33,226 - stpipe.step - INFO - Step Image3Pipeline done
2026-04-15 20:42:33,227 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
# Print out the time benchmark
time1 = time.perf_counter()
print(f"Runtime so far: {time1 - time0:0.0f} seconds")
print(f"Runtime for Image3: {time1 - time_image3:0.0f} seconds")
Runtime so far: 1721 seconds
Runtime for Image3: 391 seconds

Verify which pipeline steps were run#

if doimage3:
    # Identify *_i2d file and open as datamodel
    i2d = glob.glob(os.path.join(image3_dir, "*_i2d.fits"))[0]
    i2d_f = datamodels.open(i2d)

    # Check which steps were run
    i2d_f.meta.cal_step.instance

Check which reference files were used to calibrate the dataset

if doimage3:
    i2d_f.meta.ref_file.instance

8. Visualize the drizzle-combined image#

We are using the Imviz tool within the jdaviz package to visualize the NIRISS image.

if doviz:
    # Identify *_i2d file and open as datamodel
    i2d = glob.glob(os.path.join(image3_dir, "*_i2d.fits"))[0]
    i2d_f = datamodels.open(i2d)
    
    # Create an Imviz instance and set up default viewer
    imviz_i2d = Imviz()
    viewer_i2d = imviz_i2d.default_viewer

    # Read in the science array for our visualization dataset:
    i2d_science = i2d_f.data

    # Load the dataset into Imviz
    imviz_i2d.load_data(i2d_science)

    # Visualize the dataset:
    imviz_i2d.show()
    
    viewer_i2d.stretch = 'sqrt'
    viewer_i2d.set_colormap('Viridis')
    viewer_i2d.cuts = '95%'
WARNING: AstropyDeprecationWarning: The load_data function is deprecated and may be removed in a future version.
        Use load instead. [warnings]

Visualize Detected Sources#

Using the source catalog created by the IMAGE3 stage of the pipeline, mark the detected sources, using different markers for point sources and extended sources. The source catalog is saved in image3/image3_association_cat.ecsv file. We will need to read in the i2d file again to make sure the world coordinate system (WCS) info is read in.

Read in catalog file and identify point/extended sources#

if doviz:
    catalog_file = glob.glob(os.path.join(image3_dir, "*_cat.ecsv"))[0]
    catalog = Table.read(catalog_file)

    # To identify point/extended sources, use the 'is_extended' column in the source catalog
    pt_src, = np.where(~catalog['is_extended'])
    ext_src, = np.where(catalog['is_extended'])

    # Define coordinates of point and extended sources
    pt_coord = Table({'coord': [SkyCoord(ra=catalog['sky_centroid'][pt_src].ra,
                                         dec=catalog['sky_centroid'][pt_src].dec)]})
    ext_coord = Table({'coord': [SkyCoord(ra=catalog['sky_centroid'][ext_src].ra,
                                          dec=catalog['sky_centroid'][ext_src].dec)]})

Mark the extended and point sources on the image#

Display combined image; point sources will be marked by small pink circles and extended sources will be marked by larger white circles.

if doviz:
    # Read in i2d file to Imviz
    imviz_cat = Imviz()
    viewer_cat = imviz_cat.default_viewer
    imviz_cat.load_data(i2d)

    # Adjust settings for viewer
    viewer_cat.stretch = 'sqrt'
    viewer_cat.set_colormap('Viridis')
    viewer_cat.cuts = '95%'

    # Show the plot
    imviz_cat.show()
    
    # Add marker for point sources:
    viewer_cat.marker = {'color': 'pink', 'markersize': 50, 'fill': False}
    viewer_cat.add_markers(pt_coord, use_skycoord=True, marker_name='point_sources')

    # Add marker for extended sources:
    viewer_cat.marker = {'color': 'white', 'markersize': 100, 'fill': False}
    viewer_cat.add_markers(ext_coord, use_skycoord=True, marker_name='extended_sources')
WARNING: AstropyDeprecationWarning: The load_data function is deprecated and may be removed in a future version.
        Use load instead. [warnings]
WARNING: hdu= was not specified but multiple tables are present, reading in first available table (hdu=8) [astropy.io.fits.connect]
WARNING: hdu= was not specified but multiple tables are present, reading in first available table (hdu=8) [astropy.io.fits.connect]
WARNING: hdu= was not specified but multiple tables are present, reading in first available table (hdu=8) [astropy.io.fits.connect]

stsci_logo