stsci_logo

NIRISS Imaging Pipeline Notebook#

Authors: S. LaMassa, R. Diaz
Last Updated: July 27, 2026
Pipeline Version: 3.0.0 (Build 13.0)

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)
July 27, 2026: Updated to jwst 3.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: 3.0.0
CRDS - INFO -  Calibration SW Found: jwst 3.0.0 (/home/runner/micromamba/envs/ci-env/lib/python3.13/site-packages/jwst-3.0.0.dist-info)
Using CRDS Context: jwst_1584.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: 26 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-07-28 16:34:50,742 - CRDS - INFO -  Syncing 225 files
2026-07-28 16:34:50,764 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_system_datalvl_0002.rmap      694 bytes  (1 / 225 files) (0 / 804.1 K bytes)
2026-07-28 16:34:50,895 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_system_calver_0075.rmap    6.0 K bytes  (2 / 225 files) (694 / 804.1 K bytes)
2026-07-28 16:34:51,034 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_system_0068.imap        385 bytes  (3 / 225 files) (6.7 K / 804.1 K bytes)
2026-07-28 16:34:51,181 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_wavelengthrange_0024.rmap    1.4 K bytes  (4 / 225 files) (7.1 K / 804.1 K bytes)
2026-07-28 16:34:51,256 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_wavecorr_0005.rmap      884 bytes  (5 / 225 files) (8.5 K / 804.1 K bytes)
2026-07-28 16:34:51,349 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_superbias_0090.rmap   39.5 K bytes  (6 / 225 files) (9.3 K / 804.1 K bytes)
2026-07-28 16:34:51,478 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_sirskernel_0002.rmap      704 bytes  (7 / 225 files) (48.9 K / 804.1 K bytes)
2026-07-28 16:34:51,561 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_sflat_0027.rmap   20.6 K bytes  (8 / 225 files) (49.6 K / 804.1 K bytes)
2026-07-28 16:34:51,662 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_saturation_0018.rmap    2.0 K bytes  (9 / 225 files) (70.2 K / 804.1 K bytes)
2026-07-28 16:34:51,752 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_refpix_0015.rmap    1.6 K bytes  (10 / 225 files) (72.2 K / 804.1 K bytes)
2026-07-28 16:34:51,927 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_readnoise_0025.rmap    2.6 K bytes  (11 / 225 files) (73.8 K / 804.1 K bytes)
2026-07-28 16:34:52,009 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_psf_0002.rmap      687 bytes  (12 / 225 files) (76.3 K / 804.1 K bytes)
2026-07-28 16:34:52,088 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pictureframe_0002.rmap      886 bytes  (13 / 225 files) (77.0 K / 804.1 K bytes)
2026-07-28 16:34:52,167 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_photom_0013.rmap      958 bytes  (14 / 225 files) (77.9 K / 804.1 K bytes)
2026-07-28 16:34:52,252 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pathloss_0011.rmap    1.2 K bytes  (15 / 225 files) (78.9 K / 804.1 K bytes)
2026-07-28 16:34:52,344 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-whitelightstep_0001.rmap      777 bytes  (16 / 225 files) (80.0 K / 804.1 K bytes)
2026-07-28 16:34:52,426 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-tso3pipeline_0001.rmap      786 bytes  (17 / 225 files) (80.8 K / 804.1 K bytes)
2026-07-28 16:34:52,574 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-spec2pipeline_0016.rmap    2.4 K bytes  (18 / 225 files) (81.6 K / 804.1 K bytes)
2026-07-28 16:34:52,655 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-resamplespecstep_0002.rmap      709 bytes  (19 / 225 files) (84.0 K / 804.1 K bytes)
2026-07-28 16:34:52,732 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-refpixstep_0003.rmap      910 bytes  (20 / 225 files) (84.7 K / 804.1 K bytes)
2026-07-28 16:34:52,816 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-pixelreplacestep_0001.rmap      818 bytes  (21 / 225 files) (85.6 K / 804.1 K bytes)
2026-07-28 16:34:52,905 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-pictureframestep_0001.rmap      818 bytes  (22 / 225 files) (86.4 K / 804.1 K bytes)
2026-07-28 16:34:52,985 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-outlierdetectionstep_0005.rmap    1.1 K bytes  (23 / 225 files) (87.3 K / 804.1 K bytes)
2026-07-28 16:34:53,069 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-jumpstep_0006.rmap      810 bytes  (24 / 225 files) (88.4 K / 804.1 K bytes)
2026-07-28 16:34:53,185 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-image2pipeline_0008.rmap    1.0 K bytes  (25 / 225 files) (89.2 K / 804.1 K bytes)
2026-07-28 16:34:53,275 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-extract1dstep_0002.rmap      916 bytes  (26 / 225 files) (90.2 K / 804.1 K bytes)
2026-07-28 16:34:53,359 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-detector1pipeline_0008.rmap    1.7 K bytes  (27 / 225 files) (91.1 K / 804.1 K bytes)
2026-07-28 16:34:53,455 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-darkpipeline_0003.rmap      872 bytes  (28 / 225 files) (92.8 K / 804.1 K bytes)
2026-07-28 16:34:53,541 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-darkcurrentstep_0003.rmap    1.8 K bytes  (29 / 225 files) (93.7 K / 804.1 K bytes)
2026-07-28 16:34:53,617 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-cubebuildstep_0001.rmap      862 bytes  (30 / 225 files) (95.5 K / 804.1 K bytes)
2026-07-28 16:34:53,694 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-cleanflickernoisestep_0003.rmap    1.1 K bytes  (31 / 225 files) (96.4 K / 804.1 K bytes)
2026-07-28 16:34:53,788 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_pars-adaptivetracemodelstep_0002.rmap      997 bytes  (32 / 225 files) (97.5 K / 804.1 K bytes)
2026-07-28 16:34:53,871 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_ote_0030.rmap    1.3 K bytes  (33 / 225 files) (98.5 K / 804.1 K bytes)
2026-07-28 16:34:53,955 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_msaoper_0019.rmap    1.7 K bytes  (34 / 225 files) (99.8 K / 804.1 K bytes)
2026-07-28 16:34:54,044 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_msa_0027.rmap    1.3 K bytes  (35 / 225 files) (101.4 K / 804.1 K bytes)
2026-07-28 16:34:54,128 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_mask_0045.rmap    4.9 K bytes  (36 / 225 files) (102.7 K / 804.1 K bytes)
2026-07-28 16:34:54,205 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_linearity_0017.rmap    1.6 K bytes  (37 / 225 files) (107.6 K / 804.1 K bytes)
2026-07-28 16:34:54,292 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_ipc_0006.rmap      876 bytes  (38 / 225 files) (109.2 K / 804.1 K bytes)
2026-07-28 16:34:54,375 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_ifuslicer_0018.rmap    1.5 K bytes  (39 / 225 files) (110.1 K / 804.1 K bytes)
2026-07-28 16:34:54,492 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_ifupost_0020.rmap    1.5 K bytes  (40 / 225 files) (111.6 K / 804.1 K bytes)
2026-07-28 16:34:54,568 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_ifufore_0017.rmap    1.5 K bytes  (41 / 225 files) (113.1 K / 804.1 K bytes)
2026-07-28 16:34:54,654 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_gain_0023.rmap    1.8 K bytes  (42 / 225 files) (114.6 K / 804.1 K bytes)
2026-07-28 16:34:54,751 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_fpa_0028.rmap    1.3 K bytes  (43 / 225 files) (116.4 K / 804.1 K bytes)
2026-07-28 16:34:54,844 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_fore_0026.rmap    5.0 K bytes  (44 / 225 files) (117.6 K / 804.1 K bytes)
2026-07-28 16:34:54,927 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_flat_0015.rmap    3.8 K bytes  (45 / 225 files) (122.6 K / 804.1 K bytes)
2026-07-28 16:34:55,008 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_fflat_0030.rmap    7.2 K bytes  (46 / 225 files) (126.4 K / 804.1 K bytes)
2026-07-28 16:34:55,097 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_extract1d_0018.rmap    2.3 K bytes  (47 / 225 files) (133.6 K / 804.1 K bytes)
2026-07-28 16:34:55,187 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_disperser_0028.rmap    5.7 K bytes  (48 / 225 files) (135.9 K / 804.1 K bytes)
2026-07-28 16:34:55,266 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_dflat_0007.rmap    1.1 K bytes  (49 / 225 files) (141.6 K / 804.1 K bytes)
2026-07-28 16:34:55,363 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_dark_0086.rmap   37.5 K bytes  (50 / 225 files) (142.8 K / 804.1 K bytes)
2026-07-28 16:34:55,481 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_cubepar_0015.rmap      966 bytes  (51 / 225 files) (180.3 K / 804.1 K bytes)
2026-07-28 16:34:55,579 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_collimator_0026.rmap    1.3 K bytes  (52 / 225 files) (181.2 K / 804.1 K bytes)
2026-07-28 16:34:55,663 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_chromcorr_0002.rmap    1.4 K bytes  (53 / 225 files) (182.6 K / 804.1 K bytes)
2026-07-28 16:34:55,740 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_camera_0026.rmap    1.3 K bytes  (54 / 225 files) (183.9 K / 804.1 K bytes)
2026-07-28 16:34:55,816 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_barshadow_0007.rmap    1.8 K bytes  (55 / 225 files) (185.2 K / 804.1 K bytes)
2026-07-28 16:34:55,910 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_area_0019.rmap    6.8 K bytes  (56 / 225 files) (187.0 K / 804.1 K bytes)
2026-07-28 16:34:55,993 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_apcorr_0009.rmap    5.6 K bytes  (57 / 225 files) (193.8 K / 804.1 K bytes)
2026-07-28 16:34:56,100 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nirspec_0441.imap     6.2 K bytes  (58 / 225 files) (199.4 K / 804.1 K bytes)
2026-07-28 16:34:56,195 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_wavelengthrange_0008.rmap      897 bytes  (59 / 225 files) (205.7 K / 804.1 K bytes)
2026-07-28 16:34:56,271 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_trappars_0004.rmap      753 bytes  (60 / 225 files) (206.6 K / 804.1 K bytes)
2026-07-28 16:34:56,356 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_trapdensity_0005.rmap      705 bytes  (61 / 225 files) (207.3 K / 804.1 K bytes)
2026-07-28 16:34:56,449 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_throughput_0005.rmap    1.3 K bytes  (62 / 225 files) (208.0 K / 804.1 K bytes)
2026-07-28 16:34:56,529 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_superbias_0037.rmap    8.6 K bytes  (63 / 225 files) (209.3 K / 804.1 K bytes)
2026-07-28 16:34:56,605 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_specwcs_0017.rmap    3.1 K bytes  (64 / 225 files) (217.9 K / 804.1 K bytes)
2026-07-28 16:34:56,689 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_specprofile_0010.rmap    2.5 K bytes  (65 / 225 files) (221.0 K / 804.1 K bytes)
2026-07-28 16:34:56,775 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_speckernel_0006.rmap    1.0 K bytes  (66 / 225 files) (223.5 K / 804.1 K bytes)
2026-07-28 16:34:56,853 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_sirskernel_0002.rmap      700 bytes  (67 / 225 files) (224.5 K / 804.1 K bytes)
2026-07-28 16:34:56,930 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_saturation_0015.rmap      829 bytes  (68 / 225 files) (225.2 K / 804.1 K bytes)
2026-07-28 16:34:57,019 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_readnoise_0011.rmap      987 bytes  (69 / 225 files) (226.1 K / 804.1 K bytes)
2026-07-28 16:34:57,106 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_photom_0042.rmap    1.3 K bytes  (70 / 225 files) (227.1 K / 804.1 K bytes)
2026-07-28 16:34:57,183 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_persat_0007.rmap      674 bytes  (71 / 225 files) (228.3 K / 804.1 K bytes)
2026-07-28 16:34:57,279 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pathloss_0003.rmap      758 bytes  (72 / 225 files) (229.0 K / 804.1 K bytes)
2026-07-28 16:34:57,361 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pastasoss_0006.rmap      818 bytes  (73 / 225 files) (229.7 K / 804.1 K bytes)
2026-07-28 16:34:57,437 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-wfsscontamstep_0001.rmap      797 bytes  (74 / 225 files) (230.6 K / 804.1 K bytes)
2026-07-28 16:34:57,514 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-undersamplecorrectionstep_0001.rmap      904 bytes  (75 / 225 files) (231.4 K / 804.1 K bytes)
2026-07-28 16:34:57,597 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-tweakregstep_0012.rmap    3.1 K bytes  (76 / 225 files) (232.3 K / 804.1 K bytes)
2026-07-28 16:34:57,681 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-spec2pipeline_0009.rmap    1.2 K bytes  (77 / 225 files) (235.4 K / 804.1 K bytes)
2026-07-28 16:34:57,764 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-sourcecatalogstep_0004.rmap    2.3 K bytes  (78 / 225 files) (236.6 K / 804.1 K bytes)
2026-07-28 16:34:57,850 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-resamplestep_0002.rmap      687 bytes  (79 / 225 files) (239.0 K / 804.1 K bytes)
2026-07-28 16:34:57,937 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-outlierdetectionstep_0004.rmap    2.7 K bytes  (80 / 225 files) (239.6 K / 804.1 K bytes)
2026-07-28 16:34:58,024 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-jumpstep_0007.rmap    6.4 K bytes  (81 / 225 files) (242.3 K / 804.1 K bytes)
2026-07-28 16:34:58,100 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-image2pipeline_0005.rmap    1.0 K bytes  (82 / 225 files) (248.7 K / 804.1 K bytes)
2026-07-28 16:34:58,202 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-detector1pipeline_0005.rmap    1.5 K bytes  (83 / 225 files) (249.7 K / 804.1 K bytes)
2026-07-28 16:34:58,279 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-darkpipeline_0002.rmap      868 bytes  (84 / 225 files) (251.2 K / 804.1 K bytes)
2026-07-28 16:34:58,361 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-darkcurrentstep_0001.rmap      591 bytes  (85 / 225 files) (252.1 K / 804.1 K bytes)
2026-07-28 16:34:58,452 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-cleanflickernoisestep_0003.rmap    1.2 K bytes  (86 / 225 files) (252.7 K / 804.1 K bytes)
2026-07-28 16:34:58,547 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-chargemigrationstep_0005.rmap    5.7 K bytes  (87 / 225 files) (253.9 K / 804.1 K bytes)
2026-07-28 16:34:58,638 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_pars-backgroundstep_0003.rmap      822 bytes  (88 / 225 files) (259.6 K / 804.1 K bytes)
2026-07-28 16:34:58,723 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_nrm_0005.rmap      663 bytes  (89 / 225 files) (260.4 K / 804.1 K bytes)
2026-07-28 16:34:58,806 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_mask_0025.rmap    1.6 K bytes  (90 / 225 files) (261.1 K / 804.1 K bytes)
2026-07-28 16:34:58,890 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_linearity_0022.rmap      961 bytes  (91 / 225 files) (262.7 K / 804.1 K bytes)
2026-07-28 16:34:58,972 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_ipc_0007.rmap      651 bytes  (92 / 225 files) (263.6 K / 804.1 K bytes)
2026-07-28 16:34:59,076 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_gain_0011.rmap      797 bytes  (93 / 225 files) (264.3 K / 804.1 K bytes)
2026-07-28 16:34:59,162 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_flat_0023.rmap    5.9 K bytes  (94 / 225 files) (265.1 K / 804.1 K bytes)
2026-07-28 16:34:59,245 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_filteroffset_0010.rmap      853 bytes  (95 / 225 files) (270.9 K / 804.1 K bytes)
2026-07-28 16:34:59,329 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_extract1d_0007.rmap      905 bytes  (96 / 225 files) (271.8 K / 804.1 K bytes)
2026-07-28 16:34:59,404 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_drizpars_0004.rmap      519 bytes  (97 / 225 files) (272.7 K / 804.1 K bytes)
2026-07-28 16:34:59,487 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_distortion_0025.rmap    3.4 K bytes  (98 / 225 files) (273.2 K / 804.1 K bytes)
2026-07-28 16:34:59,562 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_dark_0041.rmap    8.7 K bytes  (99 / 225 files) (276.6 K / 804.1 K bytes)
2026-07-28 16:34:59,657 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_bkg_0005.rmap    3.1 K bytes  (100 / 225 files) (285.3 K / 804.1 K bytes)
2026-07-28 16:34:59,740 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_area_0014.rmap    2.7 K bytes  (101 / 225 files) (288.4 K / 804.1 K bytes)
2026-07-28 16:34:59,828 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_apcorr_0010.rmap    4.3 K bytes  (102 / 225 files) (291.1 K / 804.1 K bytes)
2026-07-28 16:34:59,917 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_abvegaoffset_0004.rmap    1.4 K bytes  (103 / 225 files) (295.4 K / 804.1 K bytes)
2026-07-28 16:34:59,999 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_niriss_0313.imap      6.0 K bytes  (104 / 225 files) (296.7 K / 804.1 K bytes)
2026-07-28 16:35:00,090 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_wavelengthrange_0014.rmap      996 bytes  (105 / 225 files) (302.7 K / 804.1 K bytes)
2026-07-28 16:35:00,167 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_tsophot_0003.rmap      896 bytes  (106 / 225 files) (303.7 K / 804.1 K bytes)
2026-07-28 16:35:00,257 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_trappars_0003.rmap    1.6 K bytes  (107 / 225 files) (304.6 K / 804.1 K bytes)
2026-07-28 16:35:00,342 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_trapdensity_0003.rmap    1.6 K bytes  (108 / 225 files) (306.2 K / 804.1 K bytes)
2026-07-28 16:35:00,423 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_superbias_0022.rmap   25.5 K bytes  (109 / 225 files) (307.8 K / 804.1 K bytes)
2026-07-28 16:35:00,524 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_specwcs_0027.rmap    8.0 K bytes  (110 / 225 files) (333.3 K / 804.1 K bytes)
2026-07-28 16:35:00,605 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_sirskernel_0003.rmap      671 bytes  (111 / 225 files) (341.3 K / 804.1 K bytes)
2026-07-28 16:35:00,689 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_saturation_0011.rmap    2.8 K bytes  (112 / 225 files) (342.0 K / 804.1 K bytes)
2026-07-28 16:35:00,777 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_regions_0003.rmap    3.4 K bytes  (113 / 225 files) (344.8 K / 804.1 K bytes)
2026-07-28 16:35:00,852 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_readnoise_0028.rmap   27.1 K bytes  (114 / 225 files) (348.2 K / 804.1 K bytes)
2026-07-28 16:35:00,958 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_psfmask_0008.rmap   28.4 K bytes  (115 / 225 files) (375.4 K / 804.1 K bytes)
2026-07-28 16:35:01,074 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_photom_0031.rmap    3.4 K bytes  (116 / 225 files) (403.7 K / 804.1 K bytes)
2026-07-28 16:35:01,153 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_persat_0005.rmap    1.6 K bytes  (117 / 225 files) (407.2 K / 804.1 K bytes)
2026-07-28 16:35:01,248 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-whitelightstep_0004.rmap    2.0 K bytes  (118 / 225 files) (408.7 K / 804.1 K bytes)
2026-07-28 16:35:01,332 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-wfsscontamstep_0001.rmap      797 bytes  (119 / 225 files) (410.7 K / 804.1 K bytes)
2026-07-28 16:35:01,427 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-tweakregstep_0003.rmap    4.5 K bytes  (120 / 225 files) (411.5 K / 804.1 K bytes)
2026-07-28 16:35:01,517 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-tsophotometrystep_0003.rmap    1.1 K bytes  (121 / 225 files) (416.0 K / 804.1 K bytes)
2026-07-28 16:35:01,592 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-spec2pipeline_0009.rmap      984 bytes  (122 / 225 files) (417.1 K / 804.1 K bytes)
2026-07-28 16:35:01,678 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-sourcecatalogstep_0002.rmap    4.6 K bytes  (123 / 225 files) (418.1 K / 804.1 K bytes)
2026-07-28 16:35:01,763 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-resamplestep_0002.rmap      687 bytes  (124 / 225 files) (422.7 K / 804.1 K bytes)
2026-07-28 16:35:01,848 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-outlierdetectionstep_0003.rmap      940 bytes  (125 / 225 files) (423.4 K / 804.1 K bytes)
2026-07-28 16:35:01,936 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-jumpstep_0005.rmap      806 bytes  (126 / 225 files) (424.3 K / 804.1 K bytes)
2026-07-28 16:35:02,024 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-image2pipeline_0004.rmap    1.1 K bytes  (127 / 225 files) (425.1 K / 804.1 K bytes)
2026-07-28 16:35:02,113 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-detector1pipeline_0008.rmap    1.9 K bytes  (128 / 225 files) (426.3 K / 804.1 K bytes)
2026-07-28 16:35:02,213 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-darkpipeline_0002.rmap      868 bytes  (129 / 225 files) (428.1 K / 804.1 K bytes)
2026-07-28 16:35:02,302 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-darkcurrentstep_0001.rmap      618 bytes  (130 / 225 files) (429.0 K / 804.1 K bytes)
2026-07-28 16:35:02,385 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_pars-backgroundstep_0003.rmap      822 bytes  (131 / 225 files) (429.6 K / 804.1 K bytes)
2026-07-28 16:35:02,470 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_mask_0015.rmap    6.0 K bytes  (132 / 225 files) (430.4 K / 804.1 K bytes)
2026-07-28 16:35:02,561 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_linearity_0011.rmap    2.4 K bytes  (133 / 225 files) (436.4 K / 804.1 K bytes)
2026-07-28 16:35:02,635 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_ipc_0003.rmap    2.0 K bytes  (134 / 225 files) (438.8 K / 804.1 K bytes)
2026-07-28 16:35:02,719 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_gain_0016.rmap    2.1 K bytes  (135 / 225 files) (440.8 K / 804.1 K bytes)
2026-07-28 16:35:02,805 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_flat_0028.rmap   51.7 K bytes  (136 / 225 files) (442.9 K / 804.1 K bytes)
2026-07-28 16:35:02,921 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_filteroffset_0004.rmap    1.4 K bytes  (137 / 225 files) (494.6 K / 804.1 K bytes)
2026-07-28 16:35:02,996 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_extract1d_0007.rmap    2.2 K bytes  (138 / 225 files) (496.0 K / 804.1 K bytes)
2026-07-28 16:35:03,072 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_drizpars_0001.rmap      519 bytes  (139 / 225 files) (498.2 K / 804.1 K bytes)
2026-07-28 16:35:03,153 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_distortion_0034.rmap   53.4 K bytes  (140 / 225 files) (498.7 K / 804.1 K bytes)
2026-07-28 16:35:03,289 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_dark_0054.rmap   33.9 K bytes  (141 / 225 files) (552.1 K / 804.1 K bytes)
2026-07-28 16:35:03,400 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_bkg_0002.rmap    7.0 K bytes  (142 / 225 files) (585.9 K / 804.1 K bytes)
2026-07-28 16:35:03,494 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_area_0012.rmap   33.5 K bytes  (143 / 225 files) (592.9 K / 804.1 K bytes)
2026-07-28 16:35:03,595 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_apcorr_0009.rmap    4.3 K bytes  (144 / 225 files) (626.4 K / 804.1 K bytes)
2026-07-28 16:35:03,671 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_abvegaoffset_0004.rmap    1.3 K bytes  (145 / 225 files) (630.7 K / 804.1 K bytes)
2026-07-28 16:35:03,761 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_nircam_0358.imap      5.8 K bytes  (146 / 225 files) (632.0 K / 804.1 K bytes)
2026-07-28 16:35:03,835 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_wavelengthrange_0031.rmap    1.0 K bytes  (147 / 225 files) (637.8 K / 804.1 K bytes)
2026-07-28 16:35:03,912 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_tsophot_0004.rmap      882 bytes  (148 / 225 files) (638.8 K / 804.1 K bytes)
2026-07-28 16:35:03,997 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_straymask_0009.rmap      987 bytes  (149 / 225 files) (639.7 K / 804.1 K bytes)
2026-07-28 16:35:04,089 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_specwcs_0051.rmap    6.4 K bytes  (150 / 225 files) (640.7 K / 804.1 K bytes)
2026-07-28 16:35:04,183 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_saturation_0015.rmap    1.2 K bytes  (151 / 225 files) (647.1 K / 804.1 K bytes)
2026-07-28 16:35:04,273 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_rscd_0012.rmap    1.0 K bytes  (152 / 225 files) (648.2 K / 804.1 K bytes)
2026-07-28 16:35:04,369 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_resol_0006.rmap      790 bytes  (153 / 225 files) (649.2 K / 804.1 K bytes)
2026-07-28 16:35:04,458 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_reset_0027.rmap    3.8 K bytes  (154 / 225 files) (650.0 K / 804.1 K bytes)
2026-07-28 16:35:04,532 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_regions_0036.rmap    4.4 K bytes  (155 / 225 files) (653.8 K / 804.1 K bytes)
2026-07-28 16:35:04,622 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_readnoise_0026.rmap    1.9 K bytes  (156 / 225 files) (658.2 K / 804.1 K bytes)
2026-07-28 16:35:04,721 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_psfmask_0009.rmap    2.1 K bytes  (157 / 225 files) (660.1 K / 804.1 K bytes)
2026-07-28 16:35:04,809 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_psf_0008.rmap    2.6 K bytes  (158 / 225 files) (662.2 K / 804.1 K bytes)
2026-07-28 16:35:04,890 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_photom_0068.rmap    4.0 K bytes  (159 / 225 files) (664.9 K / 804.1 K bytes)
2026-07-28 16:35:04,979 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pathloss_0006.rmap      866 bytes  (160 / 225 files) (668.8 K / 804.1 K bytes)
2026-07-28 16:35:05,059 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-whitelightstep_0003.rmap      912 bytes  (161 / 225 files) (669.7 K / 804.1 K bytes)
2026-07-28 16:35:05,151 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-wfsscontamstep_0001.rmap      787 bytes  (162 / 225 files) (670.6 K / 804.1 K bytes)
2026-07-28 16:35:05,242 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-tweakregstep_0003.rmap    1.8 K bytes  (163 / 225 files) (671.4 K / 804.1 K bytes)
2026-07-28 16:35:05,321 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-tsophotometrystep_0003.rmap    2.7 K bytes  (164 / 225 files) (673.2 K / 804.1 K bytes)
2026-07-28 16:35:05,407 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-spec3pipeline_0011.rmap      886 bytes  (165 / 225 files) (675.9 K / 804.1 K bytes)
2026-07-28 16:35:05,490 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-spec2pipeline_0015.rmap    1.5 K bytes  (166 / 225 files) (676.8 K / 804.1 K bytes)
2026-07-28 16:35:05,573 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-sourcecatalogstep_0004.rmap    1.9 K bytes  (167 / 225 files) (678.3 K / 804.1 K bytes)
2026-07-28 16:35:05,653 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-resamplestep_0002.rmap      677 bytes  (168 / 225 files) (680.2 K / 804.1 K bytes)
2026-07-28 16:35:05,730 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-resamplespecstep_0002.rmap      706 bytes  (169 / 225 files) (680.9 K / 804.1 K bytes)
2026-07-28 16:35:05,820 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-outlierdetectionstep_0020.rmap    3.4 K bytes  (170 / 225 files) (681.6 K / 804.1 K bytes)
2026-07-28 16:35:05,897 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-jumpstep_0011.rmap    1.6 K bytes  (171 / 225 files) (685.0 K / 804.1 K bytes)
2026-07-28 16:35:05,980 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-image2pipeline_0010.rmap    1.1 K bytes  (172 / 225 files) (686.5 K / 804.1 K bytes)
2026-07-28 16:35:06,067 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-extract1dstep_0003.rmap      807 bytes  (173 / 225 files) (687.6 K / 804.1 K bytes)
2026-07-28 16:35:06,153 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-emicorrstep_0003.rmap      796 bytes  (174 / 225 files) (688.4 K / 804.1 K bytes)
2026-07-28 16:35:06,238 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-detector1pipeline_0012.rmap    1.6 K bytes  (175 / 225 files) (689.2 K / 804.1 K bytes)
2026-07-28 16:35:06,313 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-darkpipeline_0002.rmap      860 bytes  (176 / 225 files) (690.8 K / 804.1 K bytes)
2026-07-28 16:35:06,397 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-darkcurrentstep_0002.rmap      683 bytes  (177 / 225 files) (691.7 K / 804.1 K bytes)
2026-07-28 16:35:06,495 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-backgroundstep_0003.rmap      814 bytes  (178 / 225 files) (692.3 K / 804.1 K bytes)
2026-07-28 16:35:06,572 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_pars-adaptivetracemodelstep_0002.rmap      979 bytes  (179 / 225 files) (693.2 K / 804.1 K bytes)
2026-07-28 16:35:06,651 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_mrsxartcorr_0002.rmap    2.2 K bytes  (180 / 225 files) (694.1 K / 804.1 K bytes)
2026-07-28 16:35:06,736 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_mrsptcorr_0005.rmap    2.0 K bytes  (181 / 225 files) (696.3 K / 804.1 K bytes)
2026-07-28 16:35:06,826 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_mask_0037.rmap    9.3 K bytes  (182 / 225 files) (698.3 K / 804.1 K bytes)
2026-07-28 16:35:06,906 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_linearity_0018.rmap    2.8 K bytes  (183 / 225 files) (707.6 K / 804.1 K bytes)
2026-07-28 16:35:06,984 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_ipc_0008.rmap      700 bytes  (184 / 225 files) (710.4 K / 804.1 K bytes)
2026-07-28 16:35:07,066 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_gain_0013.rmap    3.9 K bytes  (185 / 225 files) (711.1 K / 804.1 K bytes)
2026-07-28 16:35:07,151 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_fringefreq_0003.rmap    1.4 K bytes  (186 / 225 files) (715.0 K / 804.1 K bytes)
2026-07-28 16:35:07,231 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_fringe_0019.rmap    3.9 K bytes  (187 / 225 files) (716.5 K / 804.1 K bytes)
2026-07-28 16:35:07,309 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_flat_0079.rmap   17.1 K bytes  (188 / 225 files) (720.4 K / 804.1 K bytes)
2026-07-28 16:35:07,405 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_filteroffset_0029.rmap    2.4 K bytes  (189 / 225 files) (737.5 K / 804.1 K bytes)
2026-07-28 16:35:07,488 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_extract1d_0022.rmap    1.0 K bytes  (190 / 225 files) (739.9 K / 804.1 K bytes)
2026-07-28 16:35:07,569 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_emicorr_0007.rmap      663 bytes  (191 / 225 files) (740.9 K / 804.1 K bytes)
2026-07-28 16:35:07,663 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_drizpars_0002.rmap      511 bytes  (192 / 225 files) (741.6 K / 804.1 K bytes)
2026-07-28 16:35:07,746 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_distortion_0043.rmap    4.8 K bytes  (193 / 225 files) (742.1 K / 804.1 K bytes)
2026-07-28 16:35:07,830 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_dark_0043.rmap    5.6 K bytes  (194 / 225 files) (746.9 K / 804.1 K bytes)
2026-07-28 16:35:07,907 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_cubepar_0017.rmap      800 bytes  (195 / 225 files) (752.4 K / 804.1 K bytes)
2026-07-28 16:35:07,991 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_bkg_0006.rmap      712 bytes  (196 / 225 files) (753.2 K / 804.1 K bytes)
2026-07-28 16:35:08,076 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_area_0015.rmap      866 bytes  (197 / 225 files) (753.9 K / 804.1 K bytes)
2026-07-28 16:35:08,152 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_apcorr_0024.rmap    5.0 K bytes  (198 / 225 files) (754.8 K / 804.1 K bytes)
2026-07-28 16:35:08,248 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_abvegaoffset_0003.rmap    1.3 K bytes  (199 / 225 files) (759.8 K / 804.1 K bytes)
2026-07-28 16:35:08,325 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_miri_0517.imap        6.1 K bytes  (200 / 225 files) (761.1 K / 804.1 K bytes)
2026-07-28 16:35:08,413 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_trappars_0004.rmap      903 bytes  (201 / 225 files) (767.2 K / 804.1 K bytes)
2026-07-28 16:35:08,489 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_trapdensity_0006.rmap      930 bytes  (202 / 225 files) (768.1 K / 804.1 K bytes)
2026-07-28 16:35:08,582 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_superbias_0017.rmap    3.8 K bytes  (203 / 225 files) (769.0 K / 804.1 K bytes)
2026-07-28 16:35:08,670 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_saturation_0009.rmap      779 bytes  (204 / 225 files) (772.8 K / 804.1 K bytes)
2026-07-28 16:35:08,755 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_readnoise_0014.rmap    1.3 K bytes  (205 / 225 files) (773.6 K / 804.1 K bytes)
2026-07-28 16:35:08,846 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_photom_0014.rmap    1.1 K bytes  (206 / 225 files) (774.8 K / 804.1 K bytes)
2026-07-28 16:35:08,943 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_persat_0006.rmap      884 bytes  (207 / 225 files) (776.0 K / 804.1 K bytes)
2026-07-28 16:35:09,023 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_pars-tweakregstep_0002.rmap      850 bytes  (208 / 225 files) (776.8 K / 804.1 K bytes)
2026-07-28 16:35:09,103 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_pars-sourcecatalogstep_0001.rmap      636 bytes  (209 / 225 files) (777.7 K / 804.1 K bytes)
2026-07-28 16:35:09,180 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_pars-outlierdetectionstep_0001.rmap      654 bytes  (210 / 225 files) (778.3 K / 804.1 K bytes)
2026-07-28 16:35:09,264 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_pars-image2pipeline_0005.rmap      974 bytes  (211 / 225 files) (779.0 K / 804.1 K bytes)
2026-07-28 16:35:09,356 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_pars-detector1pipeline_0002.rmap    1.0 K bytes  (212 / 225 files) (779.9 K / 804.1 K bytes)
2026-07-28 16:35:09,435 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_pars-darkpipeline_0002.rmap      856 bytes  (213 / 225 files) (781.0 K / 804.1 K bytes)
2026-07-28 16:35:09,524 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_mask_0023.rmap    1.1 K bytes  (214 / 225 files) (781.8 K / 804.1 K bytes)
2026-07-28 16:35:09,612 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_linearity_0015.rmap      925 bytes  (215 / 225 files) (782.9 K / 804.1 K bytes)
2026-07-28 16:35:09,688 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_ipc_0003.rmap       614 bytes  (216 / 225 files) (783.8 K / 804.1 K bytes)
2026-07-28 16:35:09,764 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_gain_0010.rmap      890 bytes  (217 / 225 files) (784.4 K / 804.1 K bytes)
2026-07-28 16:35:09,842 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_flat_0009.rmap    1.1 K bytes  (218 / 225 files) (785.3 K / 804.1 K bytes)
2026-07-28 16:35:09,920 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_distortion_0011.rmap    1.2 K bytes  (219 / 225 files) (786.4 K / 804.1 K bytes)
2026-07-28 16:35:10,011 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_dark_0017.rmap    4.3 K bytes  (220 / 225 files) (787.7 K / 804.1 K bytes)
2026-07-28 16:35:10,096 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_area_0010.rmap    1.2 K bytes  (221 / 225 files) (792.0 K / 804.1 K bytes)
2026-07-28 16:35:10,186 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_apcorr_0004.rmap    4.0 K bytes  (222 / 225 files) (793.1 K / 804.1 K bytes)
2026-07-28 16:35:10,313 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_abvegaoffset_0002.rmap    1.3 K bytes  (223 / 225 files) (797.1 K / 804.1 K bytes)
2026-07-28 16:35:10,392 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_fgs_0126.imap         5.2 K bytes  (224 / 225 files) (798.4 K / 804.1 K bytes)
2026-07-28 16:35:10,482 - CRDS - INFO -  Fetching  /home/runner/crds/mappings/jwst/jwst_1584.pmap               580 bytes  (225 / 225 files) (803.5 K / 804.1 K bytes)
2026-07-28 16:35:10,734 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:35:10,739 - CRDS - INFO -  Syncing 1 files
2026-07-28 16:35:10,740 - 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-07-28 16:35:10,834 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:35:10,848 - CRDS - INFO -  Syncing 1 files
2026-07-28 16:35:10,848 - 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-07-28 16:35:10,928 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:35:10,941 - CRDS - INFO -  Syncing 1 files
2026-07-28 16:35:10,941 - 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-07-28 16:35:11,022 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:35:11,033 - CRDS - INFO -  Syncing 1 files
2026-07-28 16:35:11,034 - 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-07-28 16:35:11,122 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:35:11,142 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:35:11,143 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:35:11,144 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:35:11,145 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:35:11,146 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:35:11,147 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:35:11,148 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:35:11,149 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:35:11,150 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:35:11,151 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:35:11,152 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:35:11,153 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:35:11,154 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:35:11,155 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:35:11,156 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:35:11,157 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:35:11,158 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:35:11,160 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:35:11,161 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:35:11,162 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:35:11,162 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:35:11,412 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00001_nis_uncal.fits',).
2026-07-28 16:35:11,431 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:35:11,457 - 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-07-28 16:35:11,461 - CRDS - INFO -  Syncing 9 files
2026-07-28 16:35:11,461 - 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-07-28 16:35:20,308 - 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-07-28 16:35:21,260 - 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-07-28 16:35:21,688 - 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-07-28 16:35:23,504 - 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-07-28 16:35:23,958 - 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-07-28 16:35:24,493 - 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-07-28 16:35:25,192 - 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-07-28 16:35:25,313 - 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-07-28 16:35:26,043 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:35:26,044 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:35:26,044 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:35:26,045 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:35:26,046 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:35:26,046 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:35:26,047 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:35:26,047 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:35:26,048 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:35:26,048 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:35:26,049 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:35:26,049 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:35:26,050 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:35:26,051 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:35:26,504 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:35:26,505 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:35:26,505 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:35:26,512 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:35:26,753 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:35:26,879 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:35:27,015 - CRDS - INFO -  Calibration SW Found: jwst 3.0.0 (/home/runner/micromamba/envs/ci-env/lib/python3.13/site-packages/jwst-3.0.0.dist-info)
2026-07-28 16:35:28,302 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:35:28,556 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:35:28,565 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:35:28,566 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:35:28,605 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:35:28,605 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:35:28,611 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:35:28,682 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:35:29,640 - stcal.saturation.saturation - INFO - Detected 4223 saturated pixels
2026-07-28 16:35:29,664 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-07-28 16:35:29,684 - stpipe.step - INFO - Step saturation done
2026-07-28 16:35:29,933 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:35:29,934 - stpipe.step - INFO - Step skipped.
2026-07-28 16:35:30,182 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:35:30,193 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:35:30,292 - stpipe.step - INFO - Step superbias done
2026-07-28 16:35:30,546 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:35:30,548 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:35:30,548 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:35:30,549 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:35:30,550 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:35:30,550 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:35:30,550 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:35:30,551 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:35:30,551 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:35:34,244 - stpipe.step - INFO - Step refpix done
2026-07-28 16:35:34,497 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:35:34,507 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:35:34,555 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:35:34,556 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:35:34,563 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:35:34,992 - stpipe.step - INFO - Step linearity done
2026-07-28 16:35:35,248 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:35:35,256 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:35:35,396 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:35:35,397 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:35:35,535 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:35:35,794 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:35:35,795 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:35:36,314 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:35:36,567 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:35:36,568 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:35:36,568 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:35:36,576 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:35:36,580 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:35:36,731 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:35:36,733 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:35:39,172 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:35:43,679 - stcal.jump.jump - INFO - Total snowballs = 61
2026-07-28 16:35:43,680 - stcal.jump.jump - INFO - Total elapsed time = 6.94795 sec
2026-07-28 16:35:43,701 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.133183
2026-07-28 16:35:43,708 - stpipe.step - INFO - Step jump done
2026-07-28 16:35:43,968 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:35:43,969 - stpipe.step - INFO - Step skipped.
2026-07-28 16:35:44,239 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:35:54,204 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:35:54,205 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:35:54,205 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:35:54,206 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:35:54,210 - 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-07-28 16:35:54,211 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:35:55,598 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:36:00,786 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:36:01,276 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00001_nis_uncal.fits
2026-07-28 16:36:37,840 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:36:38,120 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:36:38,121 - stpipe.step - INFO - Step skipped.
2026-07-28 16:36:38,402 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:36:38,416 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:36:38,416 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:36:38,444 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:36:38,445 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:36:38,555 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:36:43,080 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.519080877304077
2026-07-28 16:36:43,237 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:36:43,521 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:36:43,529 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:36:43,543 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:36:43,543 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:36:43,551 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:36:43,827 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00001_nis_uncal.fits>,).
2026-07-28 16:36:43,831 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:36:43,845 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:36:43,846 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:36:43,854 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:36:43,949 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00001_nis_rateints.fits
2026-07-28 16:36:43,949 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:36:43,952 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:36:44,047 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00001_nis_rate.fits
2026-07-28 16:36:44,048 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:36:44,048 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:36:44,080 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:36:44,084 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:36:44,095 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:36:44,106 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:36:44,117 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:36:44,132 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:36:44,133 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:36:44,134 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:36:44,135 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:36:44,136 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:36:44,137 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:36:44,138 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:36:44,139 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:36:44,140 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:36:44,141 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:36:44,141 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:36:44,142 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:36:44,143 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:36:44,145 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:36:44,146 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:36:44,147 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:36:44,148 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:36:44,149 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:36:44,150 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:36:44,151 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:36:44,152 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:36:44,434 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00002_nis_uncal.fits',).
2026-07-28 16:36:44,453 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:36:44,481 - 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-07-28 16:36:44,485 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:36:44,485 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:36:44,486 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:36:44,487 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:36:44,487 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:36:44,488 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:36:44,488 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:36:44,489 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:36:44,490 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:36:44,490 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:36:44,490 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:36:44,491 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:36:44,491 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:36:44,492 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:36:44,965 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:36:44,966 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:36:44,967 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:36:44,969 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:36:45,245 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:36:45,248 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:36:45,379 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:36:45,659 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:36:45,664 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:36:45,665 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:36:45,700 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:36:45,700 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:36:45,707 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:36:45,775 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:36:46,724 - stcal.saturation.saturation - INFO - Detected 4249 saturated pixels
2026-07-28 16:36:46,748 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-07-28 16:36:46,765 - stpipe.step - INFO - Step saturation done
2026-07-28 16:36:47,041 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:36:47,042 - stpipe.step - INFO - Step skipped.
2026-07-28 16:36:47,322 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:36:47,325 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:36:47,425 - stpipe.step - INFO - Step superbias done
2026-07-28 16:36:47,704 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:36:47,707 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:36:47,707 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:36:47,708 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:36:47,708 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:36:47,709 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:36:47,709 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:36:47,710 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:36:47,710 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:36:51,415 - stpipe.step - INFO - Step refpix done
2026-07-28 16:36:51,690 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:36:51,693 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:36:51,742 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:36:51,743 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:36:51,747 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:36:52,187 - stpipe.step - INFO - Step linearity done
2026-07-28 16:36:52,468 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:36:52,471 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:36:52,609 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:36:52,609 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:36:52,747 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:36:53,025 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:36:53,026 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:36:53,536 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:36:53,815 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:36:53,816 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:36:53,817 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:36:53,820 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:36:53,822 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:36:53,946 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:36:53,947 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:36:56,310 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:37:00,924 - stcal.jump.jump - INFO - Total snowballs = 71
2026-07-28 16:37:00,924 - stcal.jump.jump - INFO - Total elapsed time = 6.97758 sec
2026-07-28 16:37:00,942 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.125741
2026-07-28 16:37:00,945 - stpipe.step - INFO - Step jump done
2026-07-28 16:37:01,216 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:37:01,217 - stpipe.step - INFO - Step skipped.
2026-07-28 16:37:01,491 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:37:11,443 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:37:11,444 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:37:11,444 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:37:11,445 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:37:11,448 - 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-07-28 16:37:11,449 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:37:12,834 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:37:17,991 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:37:18,497 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00002_nis_uncal.fits
2026-07-28 16:37:54,466 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:37:54,744 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:37:54,745 - stpipe.step - INFO - Step skipped.
2026-07-28 16:37:55,019 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:37:55,025 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:37:55,025 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:37:55,053 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:37:55,054 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:37:55,150 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:37:59,771 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.614579916000366
2026-07-28 16:37:59,914 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:38:00,184 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:38:00,187 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:38:00,202 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:38:00,202 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:38:00,206 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:38:00,479 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00002_nis_uncal.fits>,).
2026-07-28 16:38:00,482 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:38:00,497 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:38:00,497 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:38:00,500 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:38:00,585 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00002_nis_rateints.fits
2026-07-28 16:38:00,586 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:38:00,586 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:38:00,671 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00002_nis_rate.fits
2026-07-28 16:38:00,672 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:38:00,672 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:38:00,704 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:38:00,708 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:38:00,718 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:38:00,730 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:38:00,740 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:38:00,756 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:38:00,757 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:38:00,758 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:38:00,759 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:38:00,760 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:38:00,761 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:38:00,762 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:38:00,763 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:38:00,764 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:38:00,765 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:38:00,766 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:38:00,767 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:38:00,768 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:38:00,769 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:38:00,770 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:38:00,771 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:38:00,773 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:38:00,774 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:38:00,775 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:38:00,776 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:38:00,777 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:38:01,043 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00003_nis_uncal.fits',).
2026-07-28 16:38:01,061 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:38:01,087 - 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-07-28 16:38:01,091 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:38:01,091 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:38:01,092 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:38:01,092 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:38:01,093 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:38:01,094 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:38:01,094 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:38:01,095 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:38:01,096 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:38:01,096 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:38:01,096 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:38:01,097 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:38:01,098 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:38:01,099 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:38:01,571 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:38:01,572 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:38:01,573 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:38:01,576 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:38:01,900 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:38:01,903 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:38:02,034 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:38:02,314 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:38:02,318 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:38:02,319 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:38:02,354 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:38:02,355 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:38:02,359 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:38:02,424 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:38:03,372 - stcal.saturation.saturation - INFO - Detected 4591 saturated pixels
2026-07-28 16:38:03,395 - stcal.saturation.saturation - INFO - Detected 2 A/D floor pixels
2026-07-28 16:38:03,411 - stpipe.step - INFO - Step saturation done
2026-07-28 16:38:03,687 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:38:03,688 - stpipe.step - INFO - Step skipped.
2026-07-28 16:38:03,965 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:38:03,968 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:38:04,069 - stpipe.step - INFO - Step superbias done
2026-07-28 16:38:04,346 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:38:04,348 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:38:04,349 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:38:04,349 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:38:04,350 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:38:04,351 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:38:04,351 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:38:04,352 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:38:04,352 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:38:07,923 - stpipe.step - INFO - Step refpix done
2026-07-28 16:38:08,195 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:38:08,198 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:38:08,247 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:38:08,248 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:38:08,252 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:38:08,692 - stpipe.step - INFO - Step linearity done
2026-07-28 16:38:08,971 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:38:08,974 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:38:09,112 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:38:09,112 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:38:09,249 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:38:09,528 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:38:09,529 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:38:10,056 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:38:10,319 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:38:10,320 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:38:10,321 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:38:10,324 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:38:10,327 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:38:10,450 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:38:10,450 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:38:12,963 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:38:17,474 - stcal.jump.jump - INFO - Total snowballs = 73
2026-07-28 16:38:17,475 - stcal.jump.jump - INFO - Total elapsed time = 7.02429 sec
2026-07-28 16:38:17,493 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.172620
2026-07-28 16:38:17,496 - stpipe.step - INFO - Step jump done
2026-07-28 16:38:17,771 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:38:17,772 - stpipe.step - INFO - Step skipped.
2026-07-28 16:38:18,033 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:38:27,681 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:38:27,681 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:38:27,682 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:38:27,682 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:38:27,686 - 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-07-28 16:38:27,686 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:38:29,086 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:38:34,262 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:38:34,744 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00003_nis_uncal.fits
2026-07-28 16:39:11,221 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:39:11,524 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:39:11,525 - stpipe.step - INFO - Step skipped.
2026-07-28 16:39:11,822 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:39:11,827 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:39:11,828 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:39:11,858 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:39:11,859 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:39:11,962 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:39:16,570 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.601670503616333
2026-07-28 16:39:16,732 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:39:17,084 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:39:17,088 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:39:17,103 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:39:17,104 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:39:17,107 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:39:17,408 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00003_nis_uncal.fits>,).
2026-07-28 16:39:17,412 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:39:17,427 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:39:17,428 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:39:17,431 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:39:17,521 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00003_nis_rateints.fits
2026-07-28 16:39:17,521 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:39:17,522 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:39:17,612 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00003_nis_rate.fits
2026-07-28 16:39:17,613 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:39:17,613 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:39:17,649 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:39:17,653 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:39:17,665 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:39:17,677 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:39:17,689 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:39:17,706 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:39:17,707 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:39:17,708 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:39:17,709 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:39:17,710 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:39:17,711 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:39:17,712 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:39:17,713 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:39:17,714 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:39:17,715 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:39:17,716 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:39:17,717 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:39:17,718 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:39:17,719 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:39:17,720 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:39:17,721 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:39:17,723 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:39:17,724 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:39:17,725 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:39:17,726 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:39:17,727 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:39:18,029 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00004_nis_uncal.fits',).
2026-07-28 16:39:18,049 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:39:18,077 - 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-07-28 16:39:18,081 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:39:18,082 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:39:18,082 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:39:18,083 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:39:18,083 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:39:18,084 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:39:18,084 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:39:18,085 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:39:18,085 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:39:18,086 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:39:18,086 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:39:18,087 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:39:18,087 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:39:18,088 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:39:18,594 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:39:18,595 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:39:18,596 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:39:18,598 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:39:18,898 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:39:18,902 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:39:19,051 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:39:19,357 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:39:19,362 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:39:19,363 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:39:19,400 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:39:19,401 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:39:19,407 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:39:19,481 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:39:20,504 - stcal.saturation.saturation - INFO - Detected 5018 saturated pixels
2026-07-28 16:39:20,529 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-07-28 16:39:20,546 - stpipe.step - INFO - Step saturation done
2026-07-28 16:39:20,853 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:39:20,854 - stpipe.step - INFO - Step skipped.
2026-07-28 16:39:21,161 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:39:21,165 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:39:21,272 - stpipe.step - INFO - Step superbias done
2026-07-28 16:39:21,580 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:39:21,583 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:39:21,583 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:39:21,584 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:39:21,584 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:39:21,585 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:39:21,585 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:39:21,586 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:39:21,587 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:39:25,336 - stpipe.step - INFO - Step refpix done
2026-07-28 16:39:25,642 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:39:25,645 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:39:25,696 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:39:25,696 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:39:25,703 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:39:26,171 - stpipe.step - INFO - Step linearity done
2026-07-28 16:39:26,475 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:39:26,479 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:39:26,625 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:39:26,626 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:39:26,770 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:39:27,074 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:39:27,075 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:39:27,639 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:39:27,945 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:39:27,946 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:39:27,946 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:39:27,950 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:39:27,953 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:39:28,083 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:39:28,084 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:39:30,683 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:39:35,481 - stcal.jump.jump - INFO - Total snowballs = 79
2026-07-28 16:39:35,482 - stcal.jump.jump - INFO - Total elapsed time = 7.39773 sec
2026-07-28 16:39:35,500 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.554408
2026-07-28 16:39:35,504 - stpipe.step - INFO - Step jump done
2026-07-28 16:39:35,803 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:39:35,804 - stpipe.step - INFO - Step skipped.
2026-07-28 16:39:36,107 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:39:46,416 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:39:46,417 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:39:46,418 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:39:46,418 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:39:46,422 - 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-07-28 16:39:46,422 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:39:47,841 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:39:52,989 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:39:53,486 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00004_nis_uncal.fits
2026-07-28 16:40:29,765 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:40:30,071 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:40:30,072 - stpipe.step - INFO - Step skipped.
2026-07-28 16:40:30,375 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:40:30,381 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:40:30,382 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:40:30,412 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:40:30,413 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:40:30,514 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:40:35,002 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.481629371643066
2026-07-28 16:40:35,153 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:40:35,448 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:40:35,451 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:40:35,466 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:40:35,467 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:40:35,470 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:40:35,760 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00004_nis_uncal.fits>,).
2026-07-28 16:40:35,764 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:40:35,779 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:40:35,779 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:40:35,783 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:40:35,871 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00004_nis_rateints.fits
2026-07-28 16:40:35,871 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:40:35,872 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:40:35,960 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00004_nis_rate.fits
2026-07-28 16:40:35,960 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:40:35,961 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:40:35,995 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:40:35,999 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:40:36,010 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:40:36,022 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:40:36,034 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:40:36,051 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:40:36,052 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:40:36,053 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:40:36,054 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:40:36,055 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:40:36,056 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:40:36,057 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:40:36,058 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:40:36,059 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:40:36,060 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:40:36,061 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:40:36,062 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:40:36,063 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:40:36,064 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:40:36,065 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:40:36,065 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:40:36,067 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:40:36,068 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:40:36,069 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:40:36,072 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:40:36,072 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:40:36,370 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00005_nis_uncal.fits',).
2026-07-28 16:40:36,389 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:40:36,416 - 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-07-28 16:40:36,419 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:40:36,420 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:40:36,421 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:40:36,421 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:40:36,422 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:40:36,423 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:40:36,423 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:40:36,424 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:40:36,424 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:40:36,425 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:40:36,425 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:40:36,426 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:40:36,427 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:40:36,427 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:40:36,917 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:40:36,918 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:40:36,919 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:40:36,921 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:40:37,208 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:40:37,211 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:40:37,345 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:40:37,631 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:40:37,636 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:40:37,636 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:40:37,672 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:40:37,673 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:40:37,677 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:40:37,741 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:40:38,693 - stcal.saturation.saturation - INFO - Detected 4873 saturated pixels
2026-07-28 16:40:38,717 - stcal.saturation.saturation - INFO - Detected 3 A/D floor pixels
2026-07-28 16:40:38,734 - stpipe.step - INFO - Step saturation done
2026-07-28 16:40:39,022 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:40:39,023 - stpipe.step - INFO - Step skipped.
2026-07-28 16:40:39,320 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:40:39,323 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:40:39,428 - stpipe.step - INFO - Step superbias done
2026-07-28 16:40:39,726 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:40:39,729 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:40:39,729 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:40:39,730 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:40:39,730 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:40:39,730 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:40:39,731 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:40:39,731 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:40:39,732 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:40:43,440 - stpipe.step - INFO - Step refpix done
2026-07-28 16:40:43,735 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:40:43,738 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:40:43,790 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:40:43,791 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:40:43,795 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:40:44,264 - stpipe.step - INFO - Step linearity done
2026-07-28 16:40:44,567 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:40:44,571 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:40:44,720 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:40:44,720 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:40:44,859 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:40:45,163 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:40:45,164 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:40:45,709 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:40:46,005 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:40:46,006 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:40:46,006 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:40:46,009 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:40:46,012 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:40:46,140 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:40:46,140 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:40:48,632 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:40:53,358 - stcal.jump.jump - INFO - Total snowballs = 67
2026-07-28 16:40:53,359 - stcal.jump.jump - INFO - Total elapsed time = 7.21863 sec
2026-07-28 16:40:53,377 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.371676
2026-07-28 16:40:53,381 - stpipe.step - INFO - Step jump done
2026-07-28 16:40:53,679 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:40:53,679 - stpipe.step - INFO - Step skipped.
2026-07-28 16:40:53,978 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:41:04,128 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:41:04,129 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:41:04,129 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:41:04,130 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:41:04,134 - 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-07-28 16:41:04,134 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:41:05,554 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:41:10,698 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:41:11,239 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00005_nis_uncal.fits
2026-07-28 16:41:49,207 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:41:49,507 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:41:49,508 - stpipe.step - INFO - Step skipped.
2026-07-28 16:41:49,806 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:41:49,812 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:41:49,813 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:41:49,842 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:41:49,843 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:41:49,947 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:41:54,445 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.491590261459351
2026-07-28 16:41:54,596 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:41:54,892 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:41:54,896 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:41:54,910 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:41:54,911 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:41:54,914 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:41:55,208 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00005_nis_uncal.fits>,).
2026-07-28 16:41:55,211 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:41:55,226 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:41:55,227 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:41:55,230 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:41:55,318 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00005_nis_rateints.fits
2026-07-28 16:41:55,319 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:41:55,320 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:41:55,406 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00005_nis_rate.fits
2026-07-28 16:41:55,407 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:41:55,408 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:41:55,441 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:41:55,445 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:41:55,456 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:41:55,469 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:41:55,481 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:41:55,498 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:41:55,499 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:41:55,500 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:41:55,501 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:41:55,502 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:41:55,503 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:41:55,503 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:41:55,505 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:41:55,505 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:41:55,506 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:41:55,508 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:41:55,508 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:41:55,509 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:41:55,510 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:41:55,511 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:41:55,512 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:41:55,514 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:41:55,514 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:41:55,516 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:41:55,517 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:41:55,517 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:41:55,811 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00006_nis_uncal.fits',).
2026-07-28 16:41:55,830 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:41:55,860 - 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-07-28 16:41:55,863 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:41:55,864 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:41:55,865 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:41:55,865 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:41:55,866 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:41:55,867 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:41:55,867 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:41:55,868 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:41:55,868 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:41:55,869 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:41:55,869 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:41:55,870 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:41:55,871 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:41:55,871 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:41:56,373 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:41:56,374 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:41:56,374 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:41:56,377 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:41:56,670 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:41:56,674 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:41:56,812 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:41:57,106 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:41:57,110 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:41:57,111 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:41:57,146 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:41:57,147 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:41:57,151 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:41:57,214 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:41:58,067 - stcal.saturation.saturation - INFO - Detected 4452 saturated pixels
2026-07-28 16:41:58,090 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-07-28 16:41:58,106 - stpipe.step - INFO - Step saturation done
2026-07-28 16:41:58,401 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:41:58,401 - stpipe.step - INFO - Step skipped.
2026-07-28 16:41:58,700 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:41:58,704 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:41:58,806 - stpipe.step - INFO - Step superbias done
2026-07-28 16:41:59,157 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:41:59,159 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:41:59,160 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:41:59,160 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:41:59,160 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:41:59,161 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:41:59,161 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:41:59,162 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:41:59,162 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:42:02,870 - stpipe.step - INFO - Step refpix done
2026-07-28 16:42:03,156 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:42:03,159 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:42:03,207 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:42:03,207 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:42:03,211 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:42:03,661 - stpipe.step - INFO - Step linearity done
2026-07-28 16:42:03,961 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:42:03,965 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:42:04,107 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:42:04,108 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:42:04,245 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:42:04,536 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:42:04,537 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:42:05,069 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:42:05,359 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:42:05,360 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:42:05,361 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:42:05,364 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:42:05,366 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:42:05,492 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:42:05,493 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:42:08,010 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:42:12,545 - stcal.jump.jump - INFO - Total snowballs = 68
2026-07-28 16:42:12,546 - stcal.jump.jump - INFO - Total elapsed time = 7.05331 sec
2026-07-28 16:42:12,564 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.204101
2026-07-28 16:42:12,568 - stpipe.step - INFO - Step jump done
2026-07-28 16:42:12,858 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:42:12,859 - stpipe.step - INFO - Step skipped.
2026-07-28 16:42:13,147 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:42:23,182 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:42:23,183 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:42:23,183 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:42:23,184 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:42:23,187 - 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-07-28 16:42:23,187 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:42:24,598 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:42:29,775 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:42:30,256 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00006_nis_uncal.fits
2026-07-28 16:43:08,022 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:43:08,328 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:43:08,329 - stpipe.step - INFO - Step skipped.
2026-07-28 16:43:08,630 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:43:08,636 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:43:08,637 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:43:08,667 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:43:08,668 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:43:08,769 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:43:13,245 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.470544815063477
2026-07-28 16:43:13,394 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:43:13,683 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:43:13,687 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:43:13,701 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:43:13,702 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:43:13,705 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:43:13,994 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00006_nis_uncal.fits>,).
2026-07-28 16:43:13,997 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:43:14,012 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:43:14,012 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:43:14,016 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:43:14,103 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00006_nis_rateints.fits
2026-07-28 16:43:14,104 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:43:14,105 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:43:14,192 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00006_nis_rate.fits
2026-07-28 16:43:14,192 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:43:14,193 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:43:14,228 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:43:14,232 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:43:14,243 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:43:14,255 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:43:14,266 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:43:14,283 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:43:14,284 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:43:14,285 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:43:14,286 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:43:14,287 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:43:14,288 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:43:14,289 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:43:14,290 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:43:14,291 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:43:14,292 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:43:14,293 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:43:14,294 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:43:14,295 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:43:14,295 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:43:14,296 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:43:14,297 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:43:14,299 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:43:14,300 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:43:14,302 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:43:14,303 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:43:14,304 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:43:14,596 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00007_nis_uncal.fits',).
2026-07-28 16:43:14,615 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:43:14,642 - 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-07-28 16:43:14,646 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:43:14,647 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:43:14,647 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:43:14,648 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:43:14,648 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:43:14,649 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:43:14,649 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:43:14,650 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:43:14,650 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:43:14,651 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:43:14,652 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:43:14,652 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:43:14,653 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:43:14,654 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:43:15,157 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:43:15,158 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:43:15,159 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:43:15,161 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:43:15,450 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:43:15,454 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:43:15,591 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:43:15,883 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:43:15,888 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:43:15,888 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:43:15,924 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:43:15,925 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:43:15,931 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:43:16,001 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:43:16,984 - stcal.saturation.saturation - INFO - Detected 4322 saturated pixels
2026-07-28 16:43:17,008 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-07-28 16:43:17,025 - stpipe.step - INFO - Step saturation done
2026-07-28 16:43:17,320 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:43:17,320 - stpipe.step - INFO - Step skipped.
2026-07-28 16:43:17,610 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:43:17,613 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:43:17,714 - stpipe.step - INFO - Step superbias done
2026-07-28 16:43:18,007 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:43:18,010 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:43:18,010 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:43:18,011 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:43:18,011 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:43:18,012 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:43:18,012 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:43:18,013 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:43:18,013 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:43:21,655 - stpipe.step - INFO - Step refpix done
2026-07-28 16:43:21,927 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:43:21,931 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:43:21,977 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:43:21,978 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:43:21,984 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:43:22,406 - stpipe.step - INFO - Step linearity done
2026-07-28 16:43:22,683 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:43:22,686 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:43:22,827 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:43:22,828 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:43:22,961 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:43:23,236 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:43:23,237 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:43:23,746 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:43:24,037 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:43:24,038 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:43:24,038 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:43:24,041 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:43:24,044 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:43:24,177 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:43:24,178 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:43:26,597 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:43:31,259 - stcal.jump.jump - INFO - Total snowballs = 84
2026-07-28 16:43:31,259 - stcal.jump.jump - INFO - Total elapsed time = 7.08166 sec
2026-07-28 16:43:31,279 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.241834
2026-07-28 16:43:31,283 - stpipe.step - INFO - Step jump done
2026-07-28 16:43:31,580 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:43:31,581 - stpipe.step - INFO - Step skipped.
2026-07-28 16:43:31,872 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:43:41,997 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:43:41,997 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:43:41,998 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:43:41,998 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:43:42,002 - 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-07-28 16:43:42,002 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:43:43,411 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:43:48,569 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:43:49,093 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00007_nis_uncal.fits
2026-07-28 16:44:26,497 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:44:26,780 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:44:26,781 - stpipe.step - INFO - Step skipped.
2026-07-28 16:44:27,058 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:44:27,064 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:44:27,065 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:44:27,092 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:44:27,093 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:44:27,200 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:44:31,714 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.507370710372925
2026-07-28 16:44:31,860 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:44:32,141 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:44:32,145 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:44:32,159 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:44:32,159 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:44:32,163 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:44:32,436 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00007_nis_uncal.fits>,).
2026-07-28 16:44:32,439 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:44:32,453 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:44:32,453 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:44:32,457 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:44:32,541 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00007_nis_rateints.fits
2026-07-28 16:44:32,542 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:44:32,543 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:44:32,628 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00007_nis_rate.fits
2026-07-28 16:44:32,629 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:44:32,629 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:44:32,661 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:44:32,666 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:44:32,676 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:44:32,688 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:44:32,699 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:44:32,715 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:44:32,716 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:44:32,717 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:44:32,718 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:44:32,719 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:44:32,720 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:44:32,721 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:44:32,722 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:44:32,723 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:44:32,724 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:44:32,726 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:44:32,726 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:44:32,727 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:44:32,728 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:44:32,729 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:44:32,730 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:44:32,731 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:44:32,732 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:44:32,734 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:44:32,735 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:44:32,735 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:44:33,018 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00008_nis_uncal.fits',).
2026-07-28 16:44:33,037 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:44:33,064 - 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-07-28 16:44:33,067 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:44:33,068 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:44:33,069 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:44:33,069 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:44:33,070 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:44:33,071 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:44:33,071 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:44:33,072 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:44:33,072 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:44:33,073 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:44:33,073 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:44:33,074 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:44:33,075 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:44:33,075 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:44:33,544 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:44:33,545 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:44:33,545 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:44:33,547 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:44:33,820 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:44:33,823 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:44:33,950 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:44:34,227 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:44:34,232 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:44:34,233 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:44:34,267 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:44:34,268 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:44:34,272 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:44:34,336 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:44:35,283 - stcal.saturation.saturation - INFO - Detected 4334 saturated pixels
2026-07-28 16:44:35,308 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-07-28 16:44:35,324 - stpipe.step - INFO - Step saturation done
2026-07-28 16:44:35,616 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:44:35,617 - stpipe.step - INFO - Step skipped.
2026-07-28 16:44:35,910 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:44:35,913 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:44:36,016 - stpipe.step - INFO - Step superbias done
2026-07-28 16:44:36,312 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:44:36,314 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:44:36,315 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:44:36,315 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:44:36,315 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:44:36,316 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:44:36,316 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:44:36,317 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:44:36,317 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:44:40,057 - stpipe.step - INFO - Step refpix done
2026-07-28 16:44:40,373 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:44:40,376 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:44:40,423 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:44:40,424 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:44:40,430 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:44:40,867 - stpipe.step - INFO - Step linearity done
2026-07-28 16:44:41,165 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:44:41,168 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:44:41,311 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:44:41,312 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:44:41,453 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:44:41,749 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:44:41,750 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:44:42,270 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:44:42,563 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:44:42,564 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:44:42,565 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:44:42,568 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:44:42,571 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:44:42,699 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:44:42,700 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:44:45,201 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:44:50,056 - stcal.jump.jump - INFO - Total snowballs = 88
2026-07-28 16:44:50,057 - stcal.jump.jump - INFO - Total elapsed time = 7.35683 sec
2026-07-28 16:44:50,075 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.511224
2026-07-28 16:44:50,079 - stpipe.step - INFO - Step jump done
2026-07-28 16:44:50,382 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:44:50,383 - stpipe.step - INFO - Step skipped.
2026-07-28 16:44:50,686 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:45:00,844 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:45:00,845 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:45:00,846 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:45:00,846 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:45:00,850 - 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-07-28 16:45:00,850 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:45:02,262 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:45:07,380 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:45:07,884 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00008_nis_uncal.fits
2026-07-28 16:45:44,564 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:45:44,855 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:45:44,856 - stpipe.step - INFO - Step skipped.
2026-07-28 16:45:45,139 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:45:45,145 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:45:45,145 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:45:45,173 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:45:45,174 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:45:45,272 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:45:49,750 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.472156286239624
2026-07-28 16:45:49,899 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:45:50,187 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:45:50,191 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:45:50,205 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:45:50,206 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:45:50,209 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:45:50,487 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00008_nis_uncal.fits>,).
2026-07-28 16:45:50,491 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:45:50,505 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:45:50,506 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:45:50,509 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:45:50,594 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00008_nis_rateints.fits
2026-07-28 16:45:50,595 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:45:50,596 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:45:50,682 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00008_nis_rate.fits
2026-07-28 16:45:50,683 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:45:50,684 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:45:50,716 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:45:50,720 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:45:50,731 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:45:50,743 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:45:50,754 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:45:50,771 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:45:50,772 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:45:50,773 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:45:50,774 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:45:50,775 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:45:50,776 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:45:50,777 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:45:50,778 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:45:50,779 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:45:50,779 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:45:50,781 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:45:50,782 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:45:50,783 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:45:50,784 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:45:50,785 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:45:50,785 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:45:50,787 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:45:50,788 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:45:50,789 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:45:50,790 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:45:50,791 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:45:51,071 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00009_nis_uncal.fits',).
2026-07-28 16:45:51,090 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:45:51,118 - 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-07-28 16:45:51,121 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:45:51,122 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:45:51,123 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:45:51,123 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:45:51,124 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:45:51,124 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:45:51,125 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:45:51,126 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:45:51,126 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:45:51,127 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:45:51,127 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:45:51,128 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:45:51,128 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:45:51,129 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:45:51,601 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:45:51,602 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:45:51,602 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:45:51,604 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:45:51,877 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:45:51,881 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:45:52,007 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:45:52,279 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:45:52,284 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:45:52,284 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:45:52,320 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:45:52,321 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:45:52,325 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:45:52,385 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:45:53,187 - stcal.saturation.saturation - INFO - Detected 5184 saturated pixels
2026-07-28 16:45:53,210 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-07-28 16:45:53,227 - stpipe.step - INFO - Step saturation done
2026-07-28 16:45:53,507 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:45:53,508 - stpipe.step - INFO - Step skipped.
2026-07-28 16:45:53,789 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:45:53,792 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:45:53,891 - stpipe.step - INFO - Step superbias done
2026-07-28 16:45:54,166 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:45:54,168 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:45:54,169 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:45:54,169 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:45:54,170 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:45:54,170 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:45:54,171 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:45:54,171 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:45:54,172 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:45:57,685 - stpipe.step - INFO - Step refpix done
2026-07-28 16:45:57,961 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:45:57,964 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:45:58,010 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:45:58,011 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:45:58,015 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:45:58,457 - stpipe.step - INFO - Step linearity done
2026-07-28 16:45:58,730 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:45:58,733 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:45:58,871 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:45:58,872 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:45:59,003 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:45:59,283 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:45:59,284 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:45:59,849 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:46:00,121 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:46:00,122 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:46:00,123 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:46:00,126 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:46:00,129 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:46:00,283 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:46:00,284 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:46:02,751 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:46:07,194 - stcal.jump.jump - INFO - Total snowballs = 73
2026-07-28 16:46:07,194 - stcal.jump.jump - INFO - Total elapsed time = 6.91077 sec
2026-07-28 16:46:07,213 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.090667
2026-07-28 16:46:07,216 - stpipe.step - INFO - Step jump done
2026-07-28 16:46:07,498 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:46:07,499 - stpipe.step - INFO - Step skipped.
2026-07-28 16:46:07,778 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:46:17,447 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:46:17,448 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:46:17,448 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:46:17,448 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:46:17,452 - 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-07-28 16:46:17,452 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:46:18,832 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:46:23,983 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:46:24,454 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00009_nis_uncal.fits
2026-07-28 16:47:00,357 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:47:00,635 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:47:00,636 - stpipe.step - INFO - Step skipped.
2026-07-28 16:47:00,913 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:47:00,919 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:47:00,919 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:47:00,947 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:47:00,947 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:47:01,046 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:47:05,553 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.501049757003784
2026-07-28 16:47:05,699 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:47:05,969 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:47:05,972 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:47:05,986 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:47:05,986 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:47:05,990 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:47:06,256 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00009_nis_uncal.fits>,).
2026-07-28 16:47:06,260 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:47:06,274 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:47:06,274 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:47:06,277 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:47:06,362 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00009_nis_rateints.fits
2026-07-28 16:47:06,363 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:47:06,363 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:47:06,448 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00009_nis_rate.fits
2026-07-28 16:47:06,449 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:47:06,450 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:47:06,481 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:47:06,485 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:47:06,496 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:47:06,507 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:47:06,518 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:47:06,534 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:47:06,535 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:47:06,536 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:47:06,537 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:47:06,538 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:47:06,538 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:47:06,540 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:47:06,541 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:47:06,542 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:47:06,542 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:47:06,543 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:47:06,544 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:47:06,545 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:47:06,546 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:47:06,547 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:47:06,548 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:47:06,550 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:47:06,551 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:47:06,552 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:47:06,553 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:47:06,554 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:47:06,824 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00010_nis_uncal.fits',).
2026-07-28 16:47:06,843 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:47:06,869 - 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-07-28 16:47:06,872 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:47:06,873 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:47:06,874 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:47:06,874 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:47:06,875 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:47:06,875 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:47:06,876 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:47:06,877 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:47:06,877 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:47:06,878 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:47:06,878 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:47:06,879 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:47:06,880 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:47:06,880 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:47:07,339 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:47:07,340 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:47:07,340 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:47:07,343 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:47:07,611 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:47:07,614 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:47:07,737 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:47:08,004 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:47:08,009 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:47:08,009 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:47:08,044 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:47:08,045 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:47:08,048 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:47:08,109 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:47:08,929 - stcal.saturation.saturation - INFO - Detected 4877 saturated pixels
2026-07-28 16:47:08,953 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-07-28 16:47:08,971 - stpipe.step - INFO - Step saturation done
2026-07-28 16:47:09,238 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:47:09,239 - stpipe.step - INFO - Step skipped.
2026-07-28 16:47:09,505 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:47:09,508 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:47:09,606 - stpipe.step - INFO - Step superbias done
2026-07-28 16:47:09,874 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:47:09,876 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:47:09,877 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:47:09,877 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:47:09,877 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:47:09,878 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:47:09,878 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:47:09,879 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:47:09,879 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:47:13,476 - stpipe.step - INFO - Step refpix done
2026-07-28 16:47:13,745 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:47:13,748 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:47:13,797 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:47:13,798 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:47:13,801 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:47:14,247 - stpipe.step - INFO - Step linearity done
2026-07-28 16:47:14,511 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:47:14,515 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:47:14,653 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:47:14,653 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:47:14,788 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:47:15,048 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:47:15,049 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:47:15,588 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:47:15,856 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:47:15,857 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:47:15,857 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:47:15,861 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:47:15,863 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:47:15,984 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:47:15,985 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:47:18,404 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:47:22,869 - stcal.jump.jump - INFO - Total snowballs = 78
2026-07-28 16:47:22,869 - stcal.jump.jump - INFO - Total elapsed time = 6.88431 sec
2026-07-28 16:47:22,888 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.030554
2026-07-28 16:47:22,891 - stpipe.step - INFO - Step jump done
2026-07-28 16:47:23,161 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:47:23,162 - stpipe.step - INFO - Step skipped.
2026-07-28 16:47:23,438 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:47:33,162 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:47:33,162 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:47:33,163 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:47:33,163 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:47:33,167 - 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-07-28 16:47:33,167 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:47:34,563 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:47:40,016 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:47:40,548 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00010_nis_uncal.fits
2026-07-28 16:48:16,080 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:48:16,365 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:48:16,366 - stpipe.step - INFO - Step skipped.
2026-07-28 16:48:16,648 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:48:16,654 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:48:16,655 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:48:16,683 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:48:16,684 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:48:16,783 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:48:21,289 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.499198913574219
2026-07-28 16:48:21,434 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:48:21,709 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:48:21,712 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:48:21,726 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:48:21,727 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:48:21,730 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:48:21,999 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00010_nis_uncal.fits>,).
2026-07-28 16:48:22,002 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:48:22,016 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:48:22,017 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:48:22,020 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:48:22,104 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00010_nis_rateints.fits
2026-07-28 16:48:22,105 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:48:22,106 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:48:22,190 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00010_nis_rate.fits
2026-07-28 16:48:22,191 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:48:22,191 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:48:22,223 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:48:22,227 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:48:22,238 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:48:22,249 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:48:22,260 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:48:22,276 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:48:22,277 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:48:22,278 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:48:22,279 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:48:22,280 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:48:22,281 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:48:22,281 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:48:22,283 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:48:22,283 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:48:22,285 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:48:22,286 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:48:22,287 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:48:22,288 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:48:22,289 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:48:22,290 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:48:22,291 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:48:22,293 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:48:22,294 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:48:22,295 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:48:22,296 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:48:22,298 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:48:22,576 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00011_nis_uncal.fits',).
2026-07-28 16:48:22,598 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:48:22,625 - 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-07-28 16:48:22,629 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:48:22,629 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:48:22,630 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:48:22,631 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:48:22,631 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:48:22,632 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:48:22,632 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:48:22,633 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:48:22,633 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:48:22,634 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:48:22,634 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:48:22,635 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:48:22,636 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:48:22,636 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:48:23,103 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:48:23,104 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:48:23,105 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:48:23,107 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:48:23,378 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:48:23,381 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:48:23,510 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:48:23,781 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:48:23,786 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:48:23,786 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:48:23,821 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:48:23,822 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:48:23,826 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:48:23,886 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:48:24,659 - stcal.saturation.saturation - INFO - Detected 4341 saturated pixels
2026-07-28 16:48:24,682 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-07-28 16:48:24,698 - stpipe.step - INFO - Step saturation done
2026-07-28 16:48:24,968 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:48:24,969 - stpipe.step - INFO - Step skipped.
2026-07-28 16:48:25,235 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:48:25,239 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:48:25,339 - stpipe.step - INFO - Step superbias done
2026-07-28 16:48:25,607 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:48:25,609 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:48:25,609 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:48:25,610 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:48:25,610 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:48:25,611 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:48:25,611 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:48:25,612 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:48:25,612 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:48:29,235 - stpipe.step - INFO - Step refpix done
2026-07-28 16:48:29,549 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:48:29,553 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:48:29,600 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:48:29,601 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:48:29,605 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:48:30,058 - stpipe.step - INFO - Step linearity done
2026-07-28 16:48:30,334 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:48:30,337 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:48:30,475 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:48:30,476 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:48:30,609 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:48:30,872 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:48:30,873 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:48:31,381 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:48:31,651 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:48:31,651 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:48:31,652 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:48:31,655 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:48:31,657 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:48:31,781 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:48:31,782 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:48:34,226 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:48:38,647 - stcal.jump.jump - INFO - Total snowballs = 78
2026-07-28 16:48:38,647 - stcal.jump.jump - INFO - Total elapsed time = 6.86602 sec
2026-07-28 16:48:38,666 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.014827
2026-07-28 16:48:38,669 - stpipe.step - INFO - Step jump done
2026-07-28 16:48:38,943 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:48:38,944 - stpipe.step - INFO - Step skipped.
2026-07-28 16:48:39,267 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:48:49,119 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:48:49,120 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:48:49,120 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: median
2026-07-28 16:48:49,121 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:48:49,124 - 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-07-28 16:48:49,125 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:48:50,506 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:48:55,653 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:48:56,130 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00011_nis_uncal.fits
2026-07-28 16:49:17,164 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:49:17,430 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:49:17,431 - stpipe.step - INFO - Step skipped.
2026-07-28 16:49:17,701 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:49:17,707 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:49:17,707 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:49:17,735 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:49:17,735 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:49:17,831 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:49:22,312 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.474329233169556
2026-07-28 16:49:22,455 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:49:22,724 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:49:22,728 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:49:22,742 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:49:22,742 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:49:22,746 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:49:23,058 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00011_nis_uncal.fits>,).
2026-07-28 16:49:23,061 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:49:23,075 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:49:23,075 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:49:23,079 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:49:23,162 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00011_nis_rateints.fits
2026-07-28 16:49:23,163 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:49:23,164 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:49:23,247 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00011_nis_rate.fits
2026-07-28 16:49:23,248 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:49:23,248 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:49:23,283 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:49:23,287 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:49:23,297 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:49:23,308 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:49:23,319 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:49:23,334 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:49:23,335 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:49:23,336 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:49:23,338 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:49:23,338 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:49:23,340 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:49:23,340 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:49:23,341 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:49:23,342 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:49:23,344 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:49:23,345 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:49:23,345 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:49:23,346 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:49:23,347 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:49:23,348 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:49:23,349 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:49:23,350 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:49:23,351 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:49:23,353 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:49:23,354 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:49:23,355 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:49:23,621 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00012_nis_uncal.fits',).
2026-07-28 16:49:23,640 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:49:23,665 - 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-07-28 16:49:23,669 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:49:23,669 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:49:23,670 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:49:23,671 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:49:23,671 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:49:23,672 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:49:23,672 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:49:23,673 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:49:23,674 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:49:23,674 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:49:23,674 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:49:23,675 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:49:23,675 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:49:23,676 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:49:24,146 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:49:24,147 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:49:24,148 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:49:24,150 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:49:24,414 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:49:24,417 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:49:24,551 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:49:24,814 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:49:24,819 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:49:24,819 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:49:24,854 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:49:24,854 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:49:24,859 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:49:24,925 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:49:25,861 - stcal.saturation.saturation - INFO - Detected 4024 saturated pixels
2026-07-28 16:49:25,885 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-07-28 16:49:25,900 - stpipe.step - INFO - Step saturation done
2026-07-28 16:49:26,166 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:49:26,167 - stpipe.step - INFO - Step skipped.
2026-07-28 16:49:26,437 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:49:26,441 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:49:26,538 - stpipe.step - INFO - Step superbias done
2026-07-28 16:49:26,804 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:49:26,806 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:49:26,807 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:49:26,807 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:49:26,808 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:49:26,808 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:49:26,809 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:49:26,809 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:49:26,810 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:49:30,422 - stpipe.step - INFO - Step refpix done
2026-07-28 16:49:30,693 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:49:30,696 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:49:30,747 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:49:30,748 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:49:30,752 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:49:31,170 - stpipe.step - INFO - Step linearity done
2026-07-28 16:49:31,439 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:49:31,443 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:49:31,582 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:49:31,583 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:49:31,719 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:49:31,990 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:49:31,991 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:49:32,485 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:49:32,752 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:49:32,753 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:49:32,753 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:49:32,756 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:49:32,759 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:49:32,885 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:49:32,886 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:49:35,235 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:49:39,832 - stcal.jump.jump - INFO - Total snowballs = 75
2026-07-28 16:49:39,833 - stcal.jump.jump - INFO - Total elapsed time = 6.94744 sec
2026-07-28 16:49:39,851 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.098016
2026-07-28 16:49:39,854 - stpipe.step - INFO - Step jump done
2026-07-28 16:49:40,120 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:49:40,121 - stpipe.step - INFO - Step skipped.
2026-07-28 16:49:40,390 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:49:50,343 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:49:50,344 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:49:50,344 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:49:50,345 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:49:50,348 - 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-07-28 16:49:50,349 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:49:51,728 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:49:56,885 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:49:57,389 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00012_nis_uncal.fits
2026-07-28 16:50:33,529 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:50:33,785 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:50:33,786 - stpipe.step - INFO - Step skipped.
2026-07-28 16:50:34,035 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:50:34,040 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:50:34,041 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:50:34,071 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:50:34,072 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:50:34,173 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:50:38,686 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.506498098373413
2026-07-28 16:50:38,826 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:50:39,077 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:50:39,080 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:50:39,097 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:50:39,099 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:50:39,103 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:50:39,364 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00012_nis_uncal.fits>,).
2026-07-28 16:50:39,367 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:50:39,381 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:50:39,382 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:50:39,385 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:50:39,469 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00012_nis_rateints.fits
2026-07-28 16:50:39,469 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:50:39,470 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:50:39,553 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00012_nis_rate.fits
2026-07-28 16:50:39,554 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:50:39,555 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:50:39,586 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:50:39,590 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:50:39,600 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:50:39,612 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:50:39,622 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:50:39,638 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:50:39,639 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:50:39,640 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:50:39,641 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:50:39,642 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:50:39,643 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:50:39,644 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:50:39,645 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:50:39,646 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:50:39,647 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:50:39,648 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:50:39,649 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:50:39,649 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:50:39,650 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:50:39,651 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:50:39,652 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:50:39,653 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:50:39,654 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:50:39,656 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:50:39,657 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:50:39,657 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:50:39,924 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00013_nis_uncal.fits',).
2026-07-28 16:50:39,943 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:50:39,969 - 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-07-28 16:50:39,972 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:50:39,973 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:50:39,973 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:50:39,974 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:50:39,975 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:50:39,975 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:50:39,976 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:50:39,976 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:50:39,977 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:50:39,977 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:50:39,978 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:50:39,979 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:50:39,979 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:50:39,980 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:50:40,436 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:50:40,437 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:50:40,437 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:50:40,440 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:50:40,705 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:50:40,708 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:50:40,831 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:50:41,095 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:50:41,100 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:50:41,100 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:50:41,135 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:50:41,135 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:50:41,139 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:50:41,203 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:50:42,131 - stcal.saturation.saturation - INFO - Detected 4397 saturated pixels
2026-07-28 16:50:42,154 - stcal.saturation.saturation - INFO - Detected 2 A/D floor pixels
2026-07-28 16:50:42,170 - stpipe.step - INFO - Step saturation done
2026-07-28 16:50:42,420 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:50:42,421 - stpipe.step - INFO - Step skipped.
2026-07-28 16:50:42,665 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:50:42,669 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:50:42,765 - stpipe.step - INFO - Step superbias done
2026-07-28 16:50:43,011 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:50:43,013 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:50:43,014 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:50:43,014 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:50:43,015 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:50:43,015 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:50:43,016 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:50:43,016 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:50:43,017 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:50:46,600 - stpipe.step - INFO - Step refpix done
2026-07-28 16:50:46,854 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:50:46,857 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:50:46,905 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:50:46,906 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:50:46,910 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:50:47,339 - stpipe.step - INFO - Step linearity done
2026-07-28 16:50:47,588 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:50:47,591 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:50:47,758 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:50:47,759 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:50:47,898 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:50:48,149 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:50:48,150 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:50:48,687 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:50:48,938 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:50:48,939 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:50:48,940 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:50:48,943 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:50:48,945 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:50:49,066 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:50:49,067 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:50:51,479 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:50:55,892 - stcal.jump.jump - INFO - Total snowballs = 77
2026-07-28 16:50:55,892 - stcal.jump.jump - INFO - Total elapsed time = 6.82523 sec
2026-07-28 16:50:55,910 - jwst.jump.jump_step - INFO - The execution time in seconds: 6.970565
2026-07-28 16:50:55,913 - stpipe.step - INFO - Step jump done
2026-07-28 16:50:56,171 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:50:56,172 - stpipe.step - INFO - Step skipped.
2026-07-28 16:50:56,427 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:51:05,845 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:51:05,846 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:51:05,846 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:51:05,847 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:51:05,850 - 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-07-28 16:51:05,851 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:51:07,224 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:51:12,318 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:51:12,788 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00013_nis_uncal.fits
2026-07-28 16:51:48,422 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:51:48,681 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:51:48,682 - stpipe.step - INFO - Step skipped.
2026-07-28 16:51:48,934 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:51:48,939 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:51:48,940 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:51:48,967 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:51:48,968 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:51:49,061 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:51:53,608 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.540580749511719
2026-07-28 16:51:53,749 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:51:54,015 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:51:54,018 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:51:54,032 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:51:54,033 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:51:54,036 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:51:54,293 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00013_nis_uncal.fits>,).
2026-07-28 16:51:54,296 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:51:54,310 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:51:54,311 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:51:54,314 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:51:54,397 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00013_nis_rateints.fits
2026-07-28 16:51:54,398 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:51:54,399 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:51:54,484 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00013_nis_rate.fits
2026-07-28 16:51:54,484 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:51:54,485 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:51:54,517 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:51:54,520 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:51:54,530 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:51:54,542 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:51:54,552 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:51:54,568 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:51:54,569 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:51:54,570 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:51:54,571 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:51:54,572 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:51:54,573 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:51:54,574 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:51:54,575 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:51:54,576 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:51:54,577 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:51:54,578 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:51:54,579 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:51:54,580 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:51:54,581 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:51:54,582 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:51:54,583 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:51:54,584 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:51:54,585 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:51:54,587 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:51:54,588 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:51:54,588 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:51:54,852 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00014_nis_uncal.fits',).
2026-07-28 16:51:54,871 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:51:54,898 - 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-07-28 16:51:54,902 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:51:54,903 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:51:54,903 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:51:54,904 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:51:54,904 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:51:54,905 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:51:54,905 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:51:54,906 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:51:54,907 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:51:54,907 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:51:54,907 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:51:54,908 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:51:54,909 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:51:54,910 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:51:55,369 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:51:55,369 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:51:55,370 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:51:55,372 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:51:55,637 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:51:55,640 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:51:55,762 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:51:56,031 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:51:56,036 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:51:56,036 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:51:56,071 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:51:56,072 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:51:56,075 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:51:56,137 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:51:57,082 - stcal.saturation.saturation - INFO - Detected 4581 saturated pixels
2026-07-28 16:51:57,106 - stcal.saturation.saturation - INFO - Detected 2 A/D floor pixels
2026-07-28 16:51:57,122 - stpipe.step - INFO - Step saturation done
2026-07-28 16:51:57,381 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:51:57,382 - stpipe.step - INFO - Step skipped.
2026-07-28 16:51:57,642 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:51:57,646 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:51:57,742 - stpipe.step - INFO - Step superbias done
2026-07-28 16:51:57,987 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:51:57,989 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:51:57,990 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:51:57,990 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:51:57,991 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:51:57,992 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:51:57,993 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:51:57,994 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:51:57,994 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:52:01,589 - stpipe.step - INFO - Step refpix done
2026-07-28 16:52:01,837 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:52:01,840 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:52:01,889 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:52:01,890 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:52:01,894 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:52:02,322 - stpipe.step - INFO - Step linearity done
2026-07-28 16:52:02,575 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:52:02,578 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:52:02,716 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:52:02,717 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:52:02,850 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:52:03,102 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:52:03,103 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:52:03,626 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:52:03,880 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:52:03,881 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:52:03,881 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:52:03,884 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:52:03,887 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:52:04,008 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:52:04,009 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:52:06,384 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:52:10,746 - stcal.jump.jump - INFO - Total snowballs = 70
2026-07-28 16:52:10,746 - stcal.jump.jump - INFO - Total elapsed time = 6.73722 sec
2026-07-28 16:52:10,764 - jwst.jump.jump_step - INFO - The execution time in seconds: 6.882967
2026-07-28 16:52:10,767 - stpipe.step - INFO - Step jump done
2026-07-28 16:52:11,019 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:52:11,020 - stpipe.step - INFO - Step skipped.
2026-07-28 16:52:11,270 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:52:21,056 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:52:21,057 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:52:21,058 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:52:21,058 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:52:21,061 - 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-07-28 16:52:21,062 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:52:22,498 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:52:27,591 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:52:28,088 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00014_nis_uncal.fits
2026-07-28 16:53:03,647 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:53:03,921 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:53:03,922 - stpipe.step - INFO - Step skipped.
2026-07-28 16:53:04,195 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:53:04,201 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:53:04,201 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:53:04,229 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:53:04,229 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:53:04,326 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:53:08,857 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.525604009628296
2026-07-28 16:53:09,005 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:53:09,282 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:53:09,286 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:53:09,300 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:53:09,301 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:53:09,304 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:53:09,576 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00014_nis_uncal.fits>,).
2026-07-28 16:53:09,580 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:53:09,594 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:53:09,594 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:53:09,598 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:53:09,682 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00014_nis_rateints.fits
2026-07-28 16:53:09,683 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:53:09,684 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:53:09,768 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00014_nis_rate.fits
2026-07-28 16:53:09,769 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:53:09,769 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:53:09,801 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:53:09,805 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:53:09,815 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:53:09,827 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:53:09,837 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:53:09,853 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:53:09,854 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:53:09,855 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:53:09,856 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:53:09,857 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:53:09,858 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:53:09,859 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:53:09,860 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:53:09,861 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:53:09,862 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:53:09,863 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:53:09,864 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:53:09,865 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:53:09,865 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:53:09,866 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:53:09,867 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:53:09,869 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:53:09,870 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:53:09,871 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:53:09,872 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:53:09,873 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:53:10,149 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00015_nis_uncal.fits',).
2026-07-28 16:53:10,168 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:53:10,195 - 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-07-28 16:53:10,198 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:53:10,199 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:53:10,199 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:53:10,200 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:53:10,201 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:53:10,201 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:53:10,202 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:53:10,202 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:53:10,203 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:53:10,203 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:53:10,204 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:53:10,204 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:53:10,205 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:53:10,206 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:53:10,677 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:53:10,678 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:53:10,678 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:53:10,680 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:53:10,957 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:53:10,960 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:53:11,092 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:53:11,369 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:53:11,373 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:53:11,374 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:53:11,409 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:53:11,410 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:53:11,414 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:53:11,479 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:53:12,439 - stcal.saturation.saturation - INFO - Detected 4781 saturated pixels
2026-07-28 16:53:12,462 - stcal.saturation.saturation - INFO - Detected 1 A/D floor pixels
2026-07-28 16:53:12,478 - stpipe.step - INFO - Step saturation done
2026-07-28 16:53:12,749 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:53:12,750 - stpipe.step - INFO - Step skipped.
2026-07-28 16:53:13,081 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:53:13,085 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:53:13,187 - stpipe.step - INFO - Step superbias done
2026-07-28 16:53:13,472 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:53:13,474 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:53:13,474 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:53:13,475 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:53:13,475 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:53:13,476 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:53:13,476 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:53:13,477 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:53:13,477 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:53:17,107 - stpipe.step - INFO - Step refpix done
2026-07-28 16:53:17,381 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:53:17,384 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:53:17,433 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:53:17,434 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:53:17,438 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:53:17,882 - stpipe.step - INFO - Step linearity done
2026-07-28 16:53:18,153 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:53:18,157 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:53:18,294 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:53:18,295 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:53:18,432 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:53:18,707 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:53:18,708 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:53:19,249 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:53:19,520 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:53:19,520 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:53:19,521 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:53:19,524 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:53:19,527 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:53:19,650 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:53:19,650 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:53:22,075 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:53:26,754 - stcal.jump.jump - INFO - Total snowballs = 75
2026-07-28 16:53:26,755 - stcal.jump.jump - INFO - Total elapsed time = 7.10414 sec
2026-07-28 16:53:26,772 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.251889
2026-07-28 16:53:26,775 - stpipe.step - INFO - Step jump done
2026-07-28 16:53:27,040 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:53:27,041 - stpipe.step - INFO - Step skipped.
2026-07-28 16:53:27,311 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:53:37,024 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:53:37,025 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:53:37,026 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: median
2026-07-28 16:53:37,026 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:53:37,029 - 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-07-28 16:53:37,030 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:53:38,439 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:53:43,599 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:53:44,075 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00015_nis_uncal.fits
2026-07-28 16:54:06,083 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:54:06,370 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:54:06,370 - stpipe.step - INFO - Step skipped.
2026-07-28 16:54:06,658 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:54:06,664 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:54:06,665 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:54:06,693 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:54:06,693 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:54:06,793 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:54:11,275 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.476011276245117
2026-07-28 16:54:11,419 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:54:11,702 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:54:11,705 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:54:11,720 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:54:11,720 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:54:11,724 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:54:12,002 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00015_nis_uncal.fits>,).
2026-07-28 16:54:12,006 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:54:12,020 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:54:12,021 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:54:12,025 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:54:12,110 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00015_nis_rateints.fits
2026-07-28 16:54:12,111 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:54:12,112 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:54:12,197 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00015_nis_rate.fits
2026-07-28 16:54:12,198 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:54:12,199 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:54:12,231 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:54:12,235 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:54:12,246 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:54:12,257 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:54:12,268 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:54:12,284 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:54:12,285 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:54:12,286 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:54:12,287 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:54:12,288 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:54:12,289 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:54:12,290 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:54:12,291 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:54:12,293 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:54:12,293 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:54:12,295 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:54:12,295 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:54:12,296 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:54:12,297 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:54:12,298 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:54:12,299 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:54:12,300 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:54:12,302 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:54:12,303 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:54:12,304 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:54:12,305 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:54:12,590 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00016_nis_uncal.fits',).
2026-07-28 16:54:12,608 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:54:12,636 - 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-07-28 16:54:12,639 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:54:12,640 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:54:12,641 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:54:12,641 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:54:12,642 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:54:12,642 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:54:12,643 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:54:12,643 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:54:12,644 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:54:12,644 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:54:12,645 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:54:12,646 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:54:12,646 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:54:12,647 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:54:13,121 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:54:13,122 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:54:13,123 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:54:13,125 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:54:13,403 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:54:13,406 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:54:13,538 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:54:13,813 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:54:13,818 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:54:13,819 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:54:13,854 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:54:13,855 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:54:13,858 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:54:13,923 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:54:14,887 - stcal.saturation.saturation - INFO - Detected 4883 saturated pixels
2026-07-28 16:54:14,910 - stcal.saturation.saturation - INFO - Detected 2 A/D floor pixels
2026-07-28 16:54:14,926 - stpipe.step - INFO - Step saturation done
2026-07-28 16:54:15,205 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:54:15,206 - stpipe.step - INFO - Step skipped.
2026-07-28 16:54:15,483 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:54:15,486 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:54:15,588 - stpipe.step - INFO - Step superbias done
2026-07-28 16:54:15,870 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:54:15,872 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:54:15,872 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:54:15,873 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:54:15,873 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:54:15,873 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:54:15,874 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:54:15,874 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:54:15,875 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:54:19,483 - stpipe.step - INFO - Step refpix done
2026-07-28 16:54:19,759 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:54:19,762 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:54:19,812 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:54:19,813 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:54:19,816 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:54:20,252 - stpipe.step - INFO - Step linearity done
2026-07-28 16:54:20,529 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:54:20,532 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:54:20,672 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:54:20,673 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:54:20,810 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:54:21,090 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:54:21,091 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:54:21,631 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:54:21,903 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:54:21,904 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:54:21,905 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:54:21,908 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:54:21,910 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:54:22,035 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:54:22,036 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:54:24,509 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:54:29,004 - stcal.jump.jump - INFO - Total snowballs = 94
2026-07-28 16:54:29,005 - stcal.jump.jump - INFO - Total elapsed time = 6.96942 sec
2026-07-28 16:54:29,023 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.118560
2026-07-28 16:54:29,026 - stpipe.step - INFO - Step jump done
2026-07-28 16:54:29,296 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:54:29,297 - stpipe.step - INFO - Step skipped.
2026-07-28 16:54:29,575 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:54:39,382 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:54:39,382 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:54:39,383 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:54:39,383 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:54:39,387 - 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-07-28 16:54:39,387 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:54:40,786 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:54:46,298 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:54:46,821 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00016_nis_uncal.fits
2026-07-28 16:55:23,403 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:55:23,681 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:55:23,682 - stpipe.step - INFO - Step skipped.
2026-07-28 16:55:23,959 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:55:23,965 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:55:23,966 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:55:23,994 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:55:23,994 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:55:24,091 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:55:28,542 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.444679021835327
2026-07-28 16:55:28,688 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:55:28,960 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:55:28,964 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:55:28,977 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:55:28,978 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:55:28,981 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:55:29,251 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00016_nis_uncal.fits>,).
2026-07-28 16:55:29,255 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:55:29,269 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:55:29,269 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:55:29,272 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:55:29,356 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00016_nis_rateints.fits
2026-07-28 16:55:29,357 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:55:29,358 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:55:29,441 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00016_nis_rate.fits
2026-07-28 16:55:29,442 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:55:29,442 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:55:29,476 - CRDS - ERROR -  Error determining best reference for 'pars-darkcurrentstep'  =   No match found.
2026-07-28 16:55:29,480 - stpipe.step - INFO - PARS-CHARGEMIGRATIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-chargemigrationstep_0018.asdf
2026-07-28 16:55:29,490 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-jumpstep_0087.asdf
2026-07-28 16:55:29,501 - stpipe.step - INFO - PARS-CLEANFLICKERNOISESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-cleanflickernoisestep_0005.asdf
2026-07-28 16:55:29,512 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-detector1pipeline_0005.asdf
2026-07-28 16:55:29,527 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-07-28 16:55:29,528 - stpipe.step - INFO - GroupScaleStep instance created.
2026-07-28 16:55:29,529 - stpipe.step - INFO - DQInitStep instance created.
2026-07-28 16:55:29,530 - stpipe.step - INFO - EmiCorrStep instance created.
2026-07-28 16:55:29,531 - stpipe.step - INFO - SaturationStep instance created.
2026-07-28 16:55:29,531 - stpipe.step - INFO - IPCStep instance created.
2026-07-28 16:55:29,532 - stpipe.step - INFO - SuperBiasStep instance created.
2026-07-28 16:55:29,533 - stpipe.step - INFO - RefPixStep instance created.
2026-07-28 16:55:29,534 - stpipe.step - INFO - RscdStep instance created.
2026-07-28 16:55:29,535 - stpipe.step - INFO - FirstFrameStep instance created.
2026-07-28 16:55:29,536 - stpipe.step - INFO - LastFrameStep instance created.
2026-07-28 16:55:29,537 - stpipe.step - INFO - LinearityStep instance created.
2026-07-28 16:55:29,538 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-07-28 16:55:29,539 - stpipe.step - INFO - ResetStep instance created.
2026-07-28 16:55:29,540 - stpipe.step - INFO - PersistenceStep instance created.
2026-07-28 16:55:29,540 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-07-28 16:55:29,542 - stpipe.step - INFO - JumpStep instance created.
2026-07-28 16:55:29,543 - stpipe.step - INFO - PictureFrameStep instance created.
2026-07-28 16:55:29,544 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-07-28 16:55:29,547 - stpipe.step - INFO - RampFitStep instance created.
2026-07-28 16:55:29,547 - stpipe.step - INFO - GainScaleStep instance created.
2026-07-28 16:55:29,814 - stpipe.step - INFO - Step Detector1Pipeline running with args ('./nis_im_demo_data/Obs006/uncal/jw01475006001_02201_00017_nis_uncal.fits',).
2026-07-28 16:55:29,832 - 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
      siglimit: 3.0
    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: ''
      save_persistence: None
      persistence_time: None
      dn_threshold: None
      persistence_array_file: None
      persistence_dnu: 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-07-28 16:55:29,858 - 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-07-28 16:55:29,861 - stpipe.pipeline - INFO - Prefetch for DARK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits'.
2026-07-28 16:55:29,862 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:55:29,863 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits'.
2026-07-28 16:55:29,863 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits'.
2026-07-28 16:55:29,864 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits'.
2026-07-28 16:55:29,865 - stpipe.pipeline - INFO - Prefetch for PASTASOSS reference file is 'N/A'.
2026-07-28 16:55:29,865 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits'.
2026-07-28 16:55:29,866 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-07-28 16:55:29,866 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-07-28 16:55:29,867 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-07-28 16:55:29,867 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits'.
2026-07-28 16:55:29,868 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_sirskernel_0001.asdf'.
2026-07-28 16:55:29,868 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits'.
2026-07-28 16:55:29,869 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-07-28 16:55:30,333 - stpipe.step - INFO - Step group_scale running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:55:30,334 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-07-28 16:55:30,334 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-07-28 16:55:30,337 - stpipe.step - INFO - Step group_scale done
2026-07-28 16:55:30,608 - stpipe.step - INFO - Step dq_init running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:55:30,611 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_mask_0038.fits
2026-07-28 16:55:30,740 - stpipe.step - INFO - Step dq_init done
2026-07-28 16:55:31,014 - stpipe.step - INFO - Step saturation running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:55:31,019 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_saturation_0015.fits
2026-07-28 16:55:31,019 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:55:31,054 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:55:31,055 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:55:31,061 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:55:31,128 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 4
2026-07-28 16:55:32,073 - stcal.saturation.saturation - INFO - Detected 4739 saturated pixels
2026-07-28 16:55:32,097 - stcal.saturation.saturation - INFO - Detected 2 A/D floor pixels
2026-07-28 16:55:32,112 - stpipe.step - INFO - Step saturation done
2026-07-28 16:55:32,380 - stpipe.step - INFO - Step ipc running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:55:32,381 - stpipe.step - INFO - Step skipped.
2026-07-28 16:55:32,641 - stpipe.step - INFO - Step superbias running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:55:32,644 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_superbias_0247.fits
2026-07-28 16:55:32,741 - stpipe.step - INFO - Step superbias done
2026-07-28 16:55:33,002 - stpipe.step - INFO - Step refpix running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:55:33,005 - jwst.refpix.reference_pixels - INFO - NIR full frame data
2026-07-28 16:55:33,005 - jwst.refpix.reference_pixels - INFO - The following parameters are valid for this mode:
2026-07-28 16:55:33,006 - jwst.refpix.reference_pixels - INFO - use_side_ref_pixels = True
2026-07-28 16:55:33,006 - jwst.refpix.reference_pixels - INFO - odd_even_columns = True
2026-07-28 16:55:33,007 - jwst.refpix.reference_pixels - INFO - side_smoothing_length = 11
2026-07-28 16:55:33,007 - jwst.refpix.reference_pixels - INFO - side_gain = 1.0
2026-07-28 16:55:33,007 - jwst.refpix.reference_pixels - INFO - The following parameter is not applicable and is ignored:
2026-07-28 16:55:33,008 - jwst.refpix.reference_pixels - INFO - odd_even_rows = False
2026-07-28 16:55:36,581 - stpipe.step - INFO - Step refpix done
2026-07-28 16:55:36,852 - stpipe.step - INFO - Step linearity running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:55:36,856 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_linearity_0017.fits
2026-07-28 16:55:36,902 - stdatamodels.dynamicdq - WARNING - Keyword LOWILLUM does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:55:36,902 - stdatamodels.dynamicdq - WARNING - Keyword LOWRESP does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:55:36,908 - stdatamodels.dynamicdq - WARNING - Keyword UNCERTAIN does not correspond to an existing DQ mnemonic, so will be ignored
2026-07-28 16:55:37,353 - stpipe.step - INFO - Step linearity done
2026-07-28 16:55:37,608 - stpipe.step - INFO - Step dark_current running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:55:37,612 - jwst.dark_current.dark_current_step - INFO - Using DARK reference file /home/runner/crds/references/jwst/niriss/jwst_niriss_dark_0222.fits
2026-07-28 16:55:37,749 - stcal.dark_current.dark_sub - INFO - Science data nints=1, ngroups=16, nframes=4, groupgap=0
2026-07-28 16:55:37,750 - stcal.dark_current.dark_sub - INFO - Dark data nints=1, ngroups=30, nframes=4, groupgap=0
2026-07-28 16:55:37,890 - stpipe.step - INFO - Step dark_current done
2026-07-28 16:55:38,147 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:55:38,148 - jwst.charge_migration.charge_migration - INFO - Using signal_threshold: 21864.00
2026-07-28 16:55:38,679 - stpipe.step - INFO - Step charge_migration done
2026-07-28 16:55:38,943 - stpipe.step - INFO - Step jump running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:55:38,944 - jwst.jump.jump_step - INFO - CR rejection threshold = 8 sigma
2026-07-28 16:55:38,944 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-07-28 16:55:38,947 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:55:38,950 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:55:39,073 - stcal.jump.jump - INFO - Executing two-point difference method
2026-07-28 16:55:39,074 - stcal.jump.jump - INFO - Creating 2 processes for jump detection 
2026-07-28 16:55:41,444 - stcal.jump.jump - INFO - Flagging Snowballs
2026-07-28 16:55:45,934 - stcal.jump.jump - INFO - Total snowballs = 66
2026-07-28 16:55:45,935 - stcal.jump.jump - INFO - Total elapsed time = 6.8611 sec
2026-07-28 16:55:45,952 - jwst.jump.jump_step - INFO - The execution time in seconds: 7.008677
2026-07-28 16:55:45,956 - stpipe.step - INFO - Step jump done
2026-07-28 16:55:46,214 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:55:46,216 - stpipe.step - INFO - Step skipped.
2026-07-28 16:55:46,483 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:55:56,172 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO - Auto parameters set for NIS_IMAGE:
2026-07-28 16:55:56,172 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   apply_flat_field: True
2026-07-28 16:55:56,173 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   background_method: model
2026-07-28 16:55:56,173 - jwst.clean_flicker_noise.clean_flicker_noise_step - INFO -   fit_by_channel: False
2026-07-28 16:55:56,177 - 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-07-28 16:55:56,177 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Input exposure type is NIS_IMAGE, detector=NIS
2026-07-28 16:55:57,583 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating draft rate file for scene masking
2026-07-28 16:56:02,708 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Creating mask
2026-07-28 16:56:03,192 - jwst.clean_flicker_noise.clean_flicker_noise - INFO - Cleaning image jw01475006001_02201_00017_nis_uncal.fits
2026-07-28 16:56:39,137 - stpipe.step - INFO - Step clean_flicker_noise done
2026-07-28 16:56:39,412 - stpipe.step - INFO - Step persistence running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:56:39,413 - stpipe.step - INFO - Step skipped.
2026-07-28 16:56:39,685 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(1, 16, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:56:39,690 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_readnoise_0005.fits
2026-07-28 16:56:39,691 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:56:39,718 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-07-28 16:56:39,719 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-07-28 16:56:39,814 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-07-28 16:56:44,302 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 4.481759071350098
2026-07-28 16:56:44,444 - stpipe.step - INFO - Step ramp_fit done
2026-07-28 16:56:44,710 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:56:44,714 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:56:44,728 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:56:44,728 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:56:44,732 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:56:44,997 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw01475006001_02201_00017_nis_uncal.fits>,).
2026-07-28 16:56:45,000 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_gain_0006.fits
2026-07-28 16:56:45,014 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-07-28 16:56:45,014 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-07-28 16:56:45,018 - stpipe.step - INFO - Step gain_scale done
2026-07-28 16:56:45,101 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00017_nis_rateints.fits
2026-07-28 16:56:45,102 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-07-28 16:56:45,103 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:56:45,186 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage1/jw01475006001_02201_00017_nis_rate.fits
2026-07-28 16:56:45,187 - stpipe.step - INFO - Step Detector1Pipeline done
2026-07-28 16:56:45,187 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
# Print out the time benchmark
time1 = time.perf_counter()
print(f"Runtime for Detector1: {time1 - time0:0.0f} seconds")
Runtime for Detector1: 1341 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-07-28 16:56:45,298 - CRDS - INFO -  Syncing 1 files
2026-07-28 16:56:45,299 - 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-07-28 16:56:45,461 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:56:45,471 - CRDS - INFO -  Syncing 1 files
2026-07-28 16:56:45,472 - 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-07-28 16:56:45,618 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:56:45,629 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:56:45,630 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:56:45,632 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:56:45,633 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:56:45,634 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:56:45,635 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:56:45,894 - 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-07-28 16:56:45,901 - 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-07-28 16:56:45,924 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00001_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:56:45,927 - CRDS - INFO -  Syncing 4 files
2026-07-28 16:56:45,927 - 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-07-28 16:56:46,437 - 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-07-28 16:56:46,558 - 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-07-28 16:56:46,693 - 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-07-28 16:56:46,794 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:56:46,795 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:56:46,795 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:56:46,796 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:56:46,796 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:56:46,797 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:56:46,797 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:56:46,798 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:56:46,798 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:56:46,799 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:56:46,800 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:56:46,800 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:56:46,801 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:56:46,801 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:56:46,801 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:56:46,802 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:56:46,802 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:56:46,803 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:56:46,804 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:56:46,804 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:56:46,805 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:56:46,805 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:56:46,806 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:56:46,806 - 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-07-28 16:56:46,807 - 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-07-28 16:56:47,124 - 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-07-28 16:56:47,234 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:56:47,268 - 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-07-28 16:56:47,269 - 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-07-28 16:56:47,269 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:56:47,314 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:56:47,591 - 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-07-28 16:56:47,694 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:56:47,695 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:56:47,695 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:56:47,696 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:56:47,819 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:56:48,096 - 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-07-28 16:56:48,109 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:56:48,109 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:56:48,110 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:56:48,110 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:56:48,111 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:56:48,111 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:56:48,112 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:56:48,160 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:56:48,160 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:56:48,161 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:56:48,213 - stpipe.step - INFO - Step photom done
2026-07-28 16:56:48,487 - 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-07-28 16:56:48,487 - stpipe.step - INFO - Step skipped.
2026-07-28 16:56:48,490 - 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-07-28 16:56:48,490 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:56:48,491 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:56:48,618 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00001_nis_cal.fits
2026-07-28 16:56:48,619 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:56:48,620 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:56:48,643 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:56:48,653 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:56:48,664 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:56:48,665 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:56:48,667 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:56:48,668 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:56:48,669 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:56:48,670 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:56:48,938 - 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-07-28 16:56:48,945 - 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-07-28 16:56:48,966 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00002_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:56:48,969 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:56:48,969 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:56:48,970 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:56:48,970 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:56:48,971 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:56:48,971 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:56:48,972 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:56:48,972 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:56:48,973 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:56:48,974 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:56:48,975 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:56:48,975 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:56:48,975 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:56:48,976 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:56:48,976 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:56:48,977 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:56:48,978 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:56:48,978 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:56:48,979 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:56:48,979 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:56:48,980 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:56:48,980 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:56:48,981 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:56:48,981 - 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-07-28 16:56:48,982 - 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-07-28 16:56:49,296 - 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-07-28 16:56:49,374 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:56:49,404 - 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-07-28 16:56:49,405 - 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-07-28 16:56:49,406 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:56:49,448 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:56:49,723 - 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-07-28 16:56:49,805 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:56:49,806 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:56:49,807 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:56:49,807 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:56:49,929 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:56:50,204 - 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-07-28 16:56:50,211 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:56:50,212 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:56:50,212 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:56:50,213 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:56:50,213 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:56:50,214 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:56:50,214 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:56:50,258 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:56:50,258 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:56:50,259 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:56:50,312 - stpipe.step - INFO - Step photom done
2026-07-28 16:56:50,587 - 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-07-28 16:56:50,588 - stpipe.step - INFO - Step skipped.
2026-07-28 16:56:50,590 - 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-07-28 16:56:50,590 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:56:50,591 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:56:50,710 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00002_nis_cal.fits
2026-07-28 16:56:50,711 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:56:50,711 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:56:50,736 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:56:50,746 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:56:50,756 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:56:50,757 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:56:50,759 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:56:50,760 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:56:50,761 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:56:50,762 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:56:51,033 - 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-07-28 16:56:51,040 - 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-07-28 16:56:51,061 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00003_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:56:51,064 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:56:51,064 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:56:51,065 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:56:51,065 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:56:51,066 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:56:51,066 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:56:51,066 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:56:51,067 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:56:51,067 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:56:51,068 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:56:51,069 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:56:51,069 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:56:51,070 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:56:51,070 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:56:51,071 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:56:51,071 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:56:51,072 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:56:51,072 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:56:51,073 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:56:51,074 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:56:51,074 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:56:51,074 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:56:51,075 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:56:51,076 - 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-07-28 16:56:51,076 - 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-07-28 16:56:51,384 - 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-07-28 16:56:51,461 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:56:51,491 - 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-07-28 16:56:51,491 - 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-07-28 16:56:51,492 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:56:51,534 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:56:51,807 - 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-07-28 16:56:51,880 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:56:51,881 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:56:51,881 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:56:51,882 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:56:51,998 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:56:52,272 - 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-07-28 16:56:52,279 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:56:52,280 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:56:52,280 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:56:52,281 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:56:52,281 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:56:52,282 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:56:52,282 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:56:52,326 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:56:52,327 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:56:52,328 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:56:52,381 - stpipe.step - INFO - Step photom done
2026-07-28 16:56:52,655 - 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-07-28 16:56:52,656 - stpipe.step - INFO - Step skipped.
2026-07-28 16:56:52,658 - 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-07-28 16:56:52,659 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:56:52,660 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:56:52,785 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00003_nis_cal.fits
2026-07-28 16:56:52,786 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:56:52,787 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:56:52,812 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:56:52,823 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:56:52,833 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:56:52,835 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:56:52,836 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:56:52,837 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:56:52,838 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:56:52,839 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:56:53,130 - 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-07-28 16:56:53,137 - 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-07-28 16:56:53,158 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00004_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:56:53,161 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:56:53,162 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:56:53,162 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:56:53,163 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:56:53,163 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:56:53,163 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:56:53,164 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:56:53,165 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:56:53,165 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:56:53,166 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:56:53,167 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:56:53,167 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:56:53,167 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:56:53,168 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:56:53,168 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:56:53,169 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:56:53,169 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:56:53,170 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:56:53,170 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:56:53,171 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:56:53,171 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:56:53,172 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:56:53,172 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:56:53,173 - 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-07-28 16:56:53,173 - 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-07-28 16:56:53,504 - 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-07-28 16:56:53,581 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:56:53,611 - 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-07-28 16:56:53,611 - 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-07-28 16:56:53,612 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:56:53,654 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:56:53,940 - 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-07-28 16:56:54,017 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:56:54,018 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:56:54,018 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:56:54,019 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:56:54,141 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:56:54,424 - 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-07-28 16:56:54,431 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:56:54,432 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:56:54,432 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:56:54,433 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:56:54,433 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:56:54,434 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:56:54,435 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:56:54,478 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:56:54,479 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:56:54,480 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:56:54,531 - stpipe.step - INFO - Step photom done
2026-07-28 16:56:54,809 - 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-07-28 16:56:54,810 - stpipe.step - INFO - Step skipped.
2026-07-28 16:56:54,812 - 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-07-28 16:56:54,813 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:56:54,813 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:56:54,932 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00004_nis_cal.fits
2026-07-28 16:56:54,933 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:56:54,933 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:56:54,958 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:56:54,969 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:56:54,980 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:56:54,981 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:56:54,982 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:56:54,983 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:56:54,984 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:56:54,985 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:56:55,264 - 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-07-28 16:56:55,270 - 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-07-28 16:56:55,291 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00005_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:56:55,294 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:56:55,294 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:56:55,295 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:56:55,295 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:56:55,296 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:56:55,296 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:56:55,297 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:56:55,298 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:56:55,298 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:56:55,299 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:56:55,299 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:56:55,300 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:56:55,300 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:56:55,301 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:56:55,301 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:56:55,301 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:56:55,302 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:56:55,302 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:56:55,303 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:56:55,304 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:56:55,304 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:56:55,305 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:56:55,305 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:56:55,306 - 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-07-28 16:56:55,306 - 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-07-28 16:56:55,622 - 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-07-28 16:56:55,700 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:56:55,729 - 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-07-28 16:56:55,730 - 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-07-28 16:56:55,731 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:56:55,773 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:56:56,050 - 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-07-28 16:56:56,123 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:56:56,124 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:56:56,124 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:56:56,125 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:56:56,241 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:56:56,519 - 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-07-28 16:56:56,526 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:56:56,527 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:56:56,527 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:56:56,528 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:56:56,528 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:56:56,529 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:56:56,529 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:56:56,573 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:56:56,573 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:56:56,574 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:56:56,626 - stpipe.step - INFO - Step photom done
2026-07-28 16:56:56,906 - 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-07-28 16:56:56,907 - stpipe.step - INFO - Step skipped.
2026-07-28 16:56:56,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_00005_nis
2026-07-28 16:56:56,910 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:56:56,911 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:56:57,029 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00005_nis_cal.fits
2026-07-28 16:56:57,030 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:56:57,031 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:56:57,057 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:56:57,067 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:56:57,078 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:56:57,079 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:56:57,080 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:56:57,081 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:56:57,082 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:56:57,084 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:56:57,361 - 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-07-28 16:56:57,368 - 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-07-28 16:56:57,388 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00006_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:56:57,391 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:56:57,392 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:56:57,392 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:56:57,393 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:56:57,393 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:56:57,394 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:56:57,394 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:56:57,395 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:56:57,395 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:56:57,396 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:56:57,397 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:56:57,397 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:56:57,398 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:56:57,398 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:56:57,399 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:56:57,399 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:56:57,400 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:56:57,400 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:56:57,400 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:56:57,401 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:56:57,401 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:56:57,402 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:56:57,402 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:56:57,403 - 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-07-28 16:56:57,403 - 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-07-28 16:56:57,715 - 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-07-28 16:56:57,796 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:56:57,826 - 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-07-28 16:56:57,827 - 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-07-28 16:56:57,827 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:56:57,870 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:56:58,157 - 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-07-28 16:56:58,237 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:56:58,238 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:56:58,239 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:56:58,239 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:56:58,363 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:56:58,643 - 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-07-28 16:56:58,651 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:56:58,651 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:56:58,652 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:56:58,652 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:56:58,653 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:56:58,653 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:56:58,653 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:56:58,698 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:56:58,699 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:56:58,700 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:56:58,751 - stpipe.step - INFO - Step photom done
2026-07-28 16:56:59,032 - 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-07-28 16:56:59,033 - stpipe.step - INFO - Step skipped.
2026-07-28 16:56:59,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_00006_nis
2026-07-28 16:56:59,035 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:56:59,036 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:56:59,156 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00006_nis_cal.fits
2026-07-28 16:56:59,157 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:56:59,157 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:56:59,182 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:56:59,193 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:56:59,204 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:56:59,205 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:56:59,206 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:56:59,208 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:56:59,209 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:56:59,210 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:56:59,491 - 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-07-28 16:56:59,498 - 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-07-28 16:56:59,520 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00007_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:56:59,523 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:56:59,523 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:56:59,524 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:56:59,524 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:56:59,525 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:56:59,526 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:56:59,526 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:56:59,526 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:56:59,527 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:56:59,527 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:56:59,528 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:56:59,529 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:56:59,529 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:56:59,530 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:56:59,530 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:56:59,530 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:56:59,531 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:56:59,531 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:56:59,532 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:56:59,533 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:56:59,533 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:56:59,534 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:56:59,534 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:56:59,535 - 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-07-28 16:56:59,535 - 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-07-28 16:56:59,858 - 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-07-28 16:56:59,936 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:56:59,967 - 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-07-28 16:56:59,968 - 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-07-28 16:56:59,968 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:57:00,011 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:57:00,299 - 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-07-28 16:57:00,373 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:57:00,374 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:57:00,374 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:57:00,375 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:57:00,493 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:57:00,773 - 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-07-28 16:57:00,780 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:57:00,780 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:57:00,781 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:57:00,782 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:57:00,782 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:57:00,782 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:57:00,783 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:57:00,827 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:57:00,828 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:57:00,829 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:57:00,881 - stpipe.step - INFO - Step photom done
2026-07-28 16:57:01,159 - 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-07-28 16:57:01,160 - stpipe.step - INFO - Step skipped.
2026-07-28 16:57:01,162 - 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-07-28 16:57:01,163 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:57:01,163 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:57:01,283 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00007_nis_cal.fits
2026-07-28 16:57:01,283 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:57:01,284 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:57:01,310 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:57:01,321 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:57:01,331 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:57:01,333 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:57:01,334 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:57:01,335 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:57:01,336 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:57:01,337 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:57:01,613 - 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-07-28 16:57:01,621 - 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-07-28 16:57:01,641 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00008_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:57:01,644 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:57:01,645 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:57:01,645 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:57:01,646 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:57:01,647 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:57:01,647 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:57:01,647 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:57:01,648 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:57:01,649 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:57:01,649 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:57:01,650 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:57:01,650 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:57:01,651 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:57:01,651 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:57:01,652 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:57:01,652 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:57:01,653 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:57:01,653 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:57:01,654 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:57:01,654 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:57:01,655 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:57:01,655 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:57:01,655 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:57:01,656 - 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-07-28 16:57:01,657 - 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-07-28 16:57:01,976 - 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-07-28 16:57:02,053 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:57:02,083 - 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-07-28 16:57:02,084 - 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-07-28 16:57:02,085 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:57:02,127 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:57:02,408 - 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-07-28 16:57:02,483 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:57:02,484 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:57:02,484 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:57:02,485 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:57:02,607 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:57:02,883 - 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-07-28 16:57:02,890 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:57:02,890 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:57:02,891 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:57:02,891 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:57:02,892 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:57:02,892 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:57:02,893 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:57:02,936 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:57:02,937 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:57:02,938 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:57:02,990 - stpipe.step - INFO - Step photom done
2026-07-28 16:57:03,274 - 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-07-28 16:57:03,275 - stpipe.step - INFO - Step skipped.
2026-07-28 16:57:03,278 - 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-07-28 16:57:03,278 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:57:03,279 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:57:03,399 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00008_nis_cal.fits
2026-07-28 16:57:03,400 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:57:03,400 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:57:03,425 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:57:03,435 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:57:03,446 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:57:03,447 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:57:03,449 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:57:03,449 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:57:03,450 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:57:03,452 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:57:03,740 - 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-07-28 16:57:03,748 - 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-07-28 16:57:03,769 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00009_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:57:03,772 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:57:03,773 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:57:03,773 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:57:03,774 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:57:03,774 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:57:03,775 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:57:03,775 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:57:03,776 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:57:03,776 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:57:03,777 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:57:03,778 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:57:03,778 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:57:03,779 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:57:03,779 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:57:03,780 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:57:03,780 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:57:03,780 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:57:03,781 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:57:03,782 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:57:03,782 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:57:03,783 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:57:03,783 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:57:03,784 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:57:03,784 - 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-07-28 16:57:03,785 - 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-07-28 16:57:04,112 - 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-07-28 16:57:04,189 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:57:04,220 - 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-07-28 16:57:04,221 - 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-07-28 16:57:04,221 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:57:04,265 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:57:04,552 - 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-07-28 16:57:04,626 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:57:04,627 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:57:04,628 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:57:04,628 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:57:04,745 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:57:05,020 - 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-07-28 16:57:05,027 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:57:05,028 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:57:05,029 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:57:05,029 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:57:05,030 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:57:05,030 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:57:05,031 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:57:05,074 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:57:05,075 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:57:05,076 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:57:05,128 - stpipe.step - INFO - Step photom done
2026-07-28 16:57:05,411 - 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-07-28 16:57:05,412 - stpipe.step - INFO - Step skipped.
2026-07-28 16:57:05,414 - 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-07-28 16:57:05,414 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:57:05,415 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:57:05,535 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00009_nis_cal.fits
2026-07-28 16:57:05,535 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:57:05,536 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:57:05,561 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:57:05,572 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:57:05,582 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:57:05,584 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:57:05,585 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:57:05,586 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:57:05,587 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:57:05,589 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:57:05,868 - 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-07-28 16:57:05,875 - 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-07-28 16:57:05,896 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00010_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:57:05,899 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:57:05,899 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:57:05,900 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:57:05,900 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:57:05,901 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:57:05,901 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:57:05,902 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:57:05,902 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:57:05,903 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:57:05,904 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:57:05,904 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:57:05,905 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:57:05,905 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:57:05,906 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:57:05,906 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:57:05,907 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:57:05,907 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:57:05,907 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:57:05,908 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:57:05,909 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:57:05,909 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:57:05,910 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:57:05,910 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:57:05,911 - 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-07-28 16:57:05,911 - 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-07-28 16:57:06,230 - 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-07-28 16:57:06,307 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:57:06,337 - 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-07-28 16:57:06,338 - 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-07-28 16:57:06,339 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:57:06,381 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:57:06,659 - 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-07-28 16:57:06,732 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:57:06,733 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:57:06,734 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:57:06,734 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:57:06,856 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:57:07,132 - 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-07-28 16:57:07,140 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:57:07,140 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:57:07,141 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:57:07,141 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:57:07,142 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:57:07,142 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:57:07,142 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:57:07,187 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:57:07,188 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:57:07,189 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:57:07,240 - stpipe.step - INFO - Step photom done
2026-07-28 16:57:07,520 - 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-07-28 16:57:07,521 - stpipe.step - INFO - Step skipped.
2026-07-28 16:57:07,523 - 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-07-28 16:57:07,524 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:57:07,525 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:57:07,643 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00010_nis_cal.fits
2026-07-28 16:57:07,644 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:57:07,644 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:57:07,669 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:57:07,679 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:57:07,690 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:57:07,691 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:57:07,692 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:57:07,693 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:57:07,694 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:57:07,695 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:57:07,971 - 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-07-28 16:57:07,978 - 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-07-28 16:57:08,000 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00011_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:57:08,003 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:57:08,003 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:57:08,004 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:57:08,004 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:57:08,005 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:57:08,005 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:57:08,005 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:57:08,006 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:57:08,006 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:57:08,007 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:57:08,008 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:57:08,008 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:57:08,009 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:57:08,009 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:57:08,010 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:57:08,010 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:57:08,011 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:57:08,011 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:57:08,012 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:57:08,012 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:57:08,012 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:57:08,013 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:57:08,013 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:57:08,014 - 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-07-28 16:57:08,015 - 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-07-28 16:57:08,339 - 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-07-28 16:57:08,416 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:57:08,446 - 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-07-28 16:57:08,447 - 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-07-28 16:57:08,448 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:57:08,493 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:57:08,773 - 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-07-28 16:57:08,847 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:57:08,848 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:57:08,848 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:57:08,849 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:57:08,966 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:57:09,249 - 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-07-28 16:57:09,256 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:57:09,257 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:57:09,257 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:57:09,257 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:57:09,258 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:57:09,258 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:57:09,259 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:57:09,303 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:57:09,304 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:57:09,305 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:57:09,358 - stpipe.step - INFO - Step photom done
2026-07-28 16:57:09,638 - 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-07-28 16:57:09,639 - stpipe.step - INFO - Step skipped.
2026-07-28 16:57:09,641 - 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-07-28 16:57:09,641 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:57:09,642 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:57:09,762 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00011_nis_cal.fits
2026-07-28 16:57:09,763 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:57:09,763 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:57:09,790 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:57:09,800 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:57:09,812 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:57:09,813 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:57:09,814 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:57:09,815 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:57:09,816 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:57:09,817 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:57:10,094 - 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-07-28 16:57:10,101 - 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-07-28 16:57:10,122 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00012_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:57:10,125 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:57:10,126 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:57:10,127 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:57:10,127 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:57:10,128 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:57:10,128 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:57:10,128 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:57:10,129 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:57:10,130 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:57:10,130 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:57:10,131 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:57:10,131 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:57:10,132 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:57:10,132 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:57:10,133 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:57:10,133 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:57:10,134 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:57:10,134 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:57:10,135 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:57:10,135 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:57:10,136 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:57:10,136 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:57:10,137 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:57:10,137 - 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-07-28 16:57:10,138 - 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-07-28 16:57:10,458 - 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-07-28 16:57:10,535 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:57:10,566 - 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-07-28 16:57:10,567 - 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-07-28 16:57:10,568 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:57:10,611 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:57:10,949 - 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-07-28 16:57:11,023 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:57:11,024 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:57:11,024 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:57:11,025 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:57:11,147 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:57:11,429 - 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-07-28 16:57:11,437 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:57:11,437 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:57:11,438 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:57:11,438 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:57:11,439 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:57:11,439 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:57:11,440 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:57:11,484 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:57:11,485 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:57:11,486 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:57:11,538 - stpipe.step - INFO - Step photom done
2026-07-28 16:57:11,815 - 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-07-28 16:57:11,817 - stpipe.step - INFO - Step skipped.
2026-07-28 16:57:11,819 - 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-07-28 16:57:11,819 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:57:11,820 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:57:11,940 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00012_nis_cal.fits
2026-07-28 16:57:11,941 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:57:11,941 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:57:11,966 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:57:11,976 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:57:11,987 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:57:11,988 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:57:11,989 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:57:11,990 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:57:11,991 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:57:11,993 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:57:12,271 - 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-07-28 16:57:12,279 - 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-07-28 16:57:12,300 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00013_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:57:12,303 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:57:12,303 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:57:12,304 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:57:12,304 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:57:12,305 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:57:12,305 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:57:12,306 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:57:12,306 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:57:12,307 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:57:12,308 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:57:12,308 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:57:12,309 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:57:12,309 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:57:12,309 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:57:12,310 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:57:12,310 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:57:12,311 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:57:12,312 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:57:12,312 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:57:12,313 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:57:12,313 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:57:12,314 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:57:12,314 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:57:12,315 - 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-07-28 16:57:12,316 - 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-07-28 16:57:12,639 - 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-07-28 16:57:12,717 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:57:12,749 - 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-07-28 16:57:12,750 - 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-07-28 16:57:12,751 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:57:12,794 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:57:13,080 - 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-07-28 16:57:13,154 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:57:13,155 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:57:13,155 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:57:13,156 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:57:13,277 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:57:13,564 - 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-07-28 16:57:13,571 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:57:13,571 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:57:13,572 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:57:13,572 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:57:13,573 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:57:13,573 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:57:13,574 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:57:13,618 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:57:13,619 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:57:13,620 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:57:13,673 - stpipe.step - INFO - Step photom done
2026-07-28 16:57:13,954 - 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-07-28 16:57:13,955 - stpipe.step - INFO - Step skipped.
2026-07-28 16:57:13,957 - 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-07-28 16:57:13,957 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:57:13,958 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:57:14,082 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00013_nis_cal.fits
2026-07-28 16:57:14,083 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:57:14,084 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:57:14,110 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:57:14,120 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:57:14,131 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:57:14,132 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:57:14,134 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:57:14,135 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:57:14,136 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:57:14,137 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:57:14,418 - 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-07-28 16:57:14,426 - 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-07-28 16:57:14,446 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00014_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:57:14,449 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:57:14,450 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:57:14,451 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:57:14,451 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:57:14,452 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:57:14,452 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:57:14,452 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:57:14,453 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:57:14,454 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:57:14,454 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:57:14,455 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:57:14,455 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:57:14,456 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:57:14,456 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:57:14,457 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:57:14,457 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:57:14,457 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:57:14,458 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:57:14,458 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:57:14,459 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:57:14,459 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:57:14,460 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:57:14,461 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:57:14,462 - 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-07-28 16:57:14,462 - 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-07-28 16:57:14,777 - 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-07-28 16:57:14,854 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:57:14,884 - 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-07-28 16:57:14,885 - 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-07-28 16:57:14,885 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:57:14,928 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:57:15,206 - 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-07-28 16:57:15,280 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:57:15,280 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:57:15,281 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:57:15,281 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:57:15,404 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:57:15,677 - 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-07-28 16:57:15,684 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:57:15,685 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:57:15,686 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:57:15,686 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:57:15,686 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:57:15,687 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:57:15,687 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:57:15,732 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:57:15,732 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:57:15,734 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:57:15,785 - stpipe.step - INFO - Step photom done
2026-07-28 16:57:16,055 - 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-07-28 16:57:16,056 - stpipe.step - INFO - Step skipped.
2026-07-28 16:57:16,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_00014_nis
2026-07-28 16:57:16,059 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:57:16,060 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:57:16,179 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00014_nis_cal.fits
2026-07-28 16:57:16,180 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:57:16,180 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:57:16,204 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:57:16,214 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:57:16,225 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:57:16,226 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:57:16,227 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:57:16,229 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:57:16,230 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:57:16,231 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:57:16,503 - 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-07-28 16:57:16,510 - 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-07-28 16:57:16,531 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00015_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:57:16,534 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:57:16,535 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:57:16,535 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:57:16,536 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:57:16,536 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:57:16,537 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:57:16,537 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:57:16,538 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:57:16,539 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:57:16,539 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:57:16,540 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:57:16,540 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:57:16,541 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:57:16,541 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:57:16,541 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:57:16,542 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:57:16,542 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:57:16,543 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:57:16,543 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:57:16,544 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:57:16,544 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:57:16,545 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:57:16,545 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:57:16,546 - 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-07-28 16:57:16,546 - 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-07-28 16:57:16,858 - 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-07-28 16:57:16,936 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:57:16,966 - 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-07-28 16:57:16,967 - 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-07-28 16:57:16,968 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:57:17,010 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:57:17,288 - 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-07-28 16:57:17,362 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:57:17,363 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:57:17,364 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:57:17,364 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:57:17,482 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:57:17,757 - 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-07-28 16:57:17,764 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:57:17,764 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:57:17,765 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:57:17,765 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:57:17,766 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:57:17,766 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:57:17,767 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:57:17,810 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:57:17,811 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:57:17,812 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:57:17,864 - stpipe.step - INFO - Step photom done
2026-07-28 16:57:18,146 - 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-07-28 16:57:18,147 - stpipe.step - INFO - Step skipped.
2026-07-28 16:57:18,149 - 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-07-28 16:57:18,149 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:57:18,150 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:57:18,270 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00015_nis_cal.fits
2026-07-28 16:57:18,271 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:57:18,271 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:57:18,297 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:57:18,307 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:57:18,318 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:57:18,319 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:57:18,320 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:57:18,321 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:57:18,323 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:57:18,324 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:57:18,602 - 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-07-28 16:57:18,609 - 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-07-28 16:57:18,630 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00016_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:57:18,633 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:57:18,633 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:57:18,634 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:57:18,634 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:57:18,635 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:57:18,635 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:57:18,636 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:57:18,636 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:57:18,636 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:57:18,637 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:57:18,638 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:57:18,639 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:57:18,639 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:57:18,640 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:57:18,640 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:57:18,640 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:57:18,641 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:57:18,641 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:57:18,642 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:57:18,643 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:57:18,643 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:57:18,644 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:57:18,644 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:57:18,645 - 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-07-28 16:57:18,645 - 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-07-28 16:57:18,966 - 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-07-28 16:57:19,049 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:57:19,080 - 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-07-28 16:57:19,081 - 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-07-28 16:57:19,082 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:57:19,124 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:57:19,407 - 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-07-28 16:57:19,481 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:57:19,482 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:57:19,483 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:57:19,483 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:57:19,605 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:57:19,881 - 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-07-28 16:57:19,889 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:57:19,889 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:57:19,890 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:57:19,890 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:57:19,891 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:57:19,891 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:57:19,892 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:57:19,936 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:57:19,937 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:57:19,938 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:57:19,990 - stpipe.step - INFO - Step photom done
2026-07-28 16:57:20,266 - 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-07-28 16:57:20,266 - stpipe.step - INFO - Step skipped.
2026-07-28 16:57:20,269 - 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-07-28 16:57:20,269 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:57:20,270 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:57:20,392 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00016_nis_cal.fits
2026-07-28 16:57:20,393 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:57:20,393 - jwst.stpipe.core - INFO - Results used jwst version: 3.0.0
2026-07-28 16:57:20,418 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:57:20,428 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-image2pipeline_0002.asdf
2026-07-28 16:57:20,439 - stpipe.step - INFO - Image2Pipeline instance created.
2026-07-28 16:57:20,440 - stpipe.step - INFO - BackgroundStep instance created.
2026-07-28 16:57:20,442 - stpipe.step - INFO - AssignWcsStep instance created.
2026-07-28 16:57:20,443 - stpipe.step - INFO - FlatFieldStep instance created.
2026-07-28 16:57:20,443 - stpipe.step - INFO - PhotomStep instance created.
2026-07-28 16:57:20,445 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:57:20,721 - 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-07-28 16:57:20,728 - 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-07-28 16:57:20,749 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475006001_02201_00017_nis_rate.fits' reftypes = ['area', 'camera', 'chromcorr', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-07-28 16:57:20,752 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits'.
2026-07-28 16:57:20,752 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-07-28 16:57:20,753 - stpipe.pipeline - INFO - Prefetch for CHROMCORR reference file is 'N/A'.
2026-07-28 16:57:20,753 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-07-28 16:57:20,754 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-07-28 16:57:20,755 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-07-28 16:57:20,755 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_distortion_0047.asdf'.
2026-07-28 16:57:20,755 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-07-28 16:57:20,756 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_filteroffset_0006.asdf'.
2026-07-28 16:57:20,757 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits'.
2026-07-28 16:57:20,757 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-07-28 16:57:20,758 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-07-28 16:57:20,758 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-07-28 16:57:20,759 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-07-28 16:57:20,759 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-07-28 16:57:20,760 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-07-28 16:57:20,760 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-07-28 16:57:20,761 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits'.
2026-07-28 16:57:20,761 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-07-28 16:57:20,762 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-07-28 16:57:20,762 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-07-28 16:57:20,762 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-07-28 16:57:20,763 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-07-28 16:57:20,764 - 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-07-28 16:57:20,764 - 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-07-28 16:57:21,082 - 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-07-28 16:57:21,160 - jwst.assign_wcs.niriss - INFO - Offsets from filteroffset file are 0.0, 0.0
2026-07-28 16:57:21,190 - 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-07-28 16:57:21,191 - 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-07-28 16:57:21,192 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-07-28 16:57:21,234 - stpipe.step - INFO - Step assign_wcs done
2026-07-28 16:57:21,514 - 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-07-28 16:57:21,588 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_flat_0282.fits
2026-07-28 16:57:21,589 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-07-28 16:57:21,589 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-07-28 16:57:21,590 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-07-28 16:57:21,710 - stpipe.step - INFO - Step flat_field done
2026-07-28 16:57:21,990 - 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-07-28 16:57:21,997 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_photom_0049.fits
2026-07-28 16:57:21,997 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_area_0021.fits
2026-07-28 16:57:21,998 - jwst.photom.photom - INFO - Using instrument: NIRISS
2026-07-28 16:57:21,999 - jwst.photom.photom - INFO -  detector: NIS
2026-07-28 16:57:21,999 - jwst.photom.photom - INFO -  exp_type: NIS_IMAGE
2026-07-28 16:57:22,000 - jwst.photom.photom - INFO -  filter: CLEAR
2026-07-28 16:57:22,000 - jwst.photom.photom - INFO -  pupil: F150W
2026-07-28 16:57:22,044 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-07-28 16:57:22,045 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-07-28 16:57:22,046 - jwst.photom.photom - INFO - PHOTMJSR value: 0.253426
2026-07-28 16:57:22,098 - stpipe.step - INFO - Step photom done
2026-07-28 16:57:22,387 - 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-07-28 16:57:22,390 - stpipe.step - INFO - Step skipped.
2026-07-28 16:57:22,393 - 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-07-28 16:57:22,394 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-07-28 16:57:22,395 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1584.pmap
2026-07-28 16:57:22,536 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage2/jw01475006001_02201_00017_nis_cal.fits
2026-07-28 16:57:22,537 - stpipe.step - INFO - Step Image2Pipeline done
2026-07-28 16:57:22,537 - jwst.stpipe.core - INFO - Results used jwst version: 3.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: 1378 seconds
Runtime for Image2: 37 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-07-28 16:57:22,850 - CRDS - INFO -  Syncing 1 files
2026-07-28 16:57:22,850 - 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-07-28 16:57:22,939 - stpipe.step - INFO - PARS-TWEAKREGSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-tweakregstep_0079.asdf
2026-07-28 16:57:22,953 - CRDS - INFO -  Syncing 1 files
2026-07-28 16:57:22,954 - 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-07-28 16:57:23,097 - stpipe.step - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-outlierdetectionstep_0010.asdf
2026-07-28 16:57:23,111 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-resamplestep_0001.asdf
2026-07-28 16:57:23,122 - CRDS - INFO -  Syncing 1 files
2026-07-28 16:57:23,122 - CRDS - INFO -  Fetching  /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0034.asdf    1.6 K bytes  (1 / 1 files) (0 / 1.6 K bytes)
2026-07-28 16:57:23,215 - stpipe.step - INFO - PARS-SOURCECATALOGSTEP parameters found: /home/runner/crds/references/jwst/niriss/jwst_niriss_pars-sourcecatalogstep_0034.asdf
2026-07-28 16:57:23,230 - stpipe.step - INFO - Image3Pipeline instance created.
2026-07-28 16:57:23,231 - stpipe.step - INFO - AssignMTWcsStep instance created.
2026-07-28 16:57:23,234 - stpipe.step - INFO - TweakRegStep instance created.
2026-07-28 16:57:23,235 - stpipe.step - INFO - SkyMatchStep instance created.
2026-07-28 16:57:23,236 - stpipe.step - INFO - OutlierDetectionStep instance created.
2026-07-28 16:57:23,238 - stpipe.step - INFO - ResampleStep instance created.
2026-07-28 16:57:23,239 - stpipe.step - INFO - SourceCatalogStep instance created.
2026-07-28 16:57:23,518 - stpipe.step - INFO - Step Image3Pipeline running with args ('./nis_im_demo_data/Obs006/jw01475-a3001_image3_00019_asn.json',).
2026-07-28 16:57:23,530 - 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.2
      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: True
2026-07-28 16:57:23,592 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01475-a3001_image3_00019_asn.json' reftypes = ['abvegaoffset', 'apcorr']
2026-07-28 16:57:23,595 - CRDS - INFO -  Syncing 2 files
2026-07-28 16:57:23,596 - 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-07-28 16:57:23,764 - 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-07-28 16:57:23,918 - stpipe.pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf'.
2026-07-28 16:57:23,919 - stpipe.pipeline - INFO - Prefetch for APCORR reference file is '/home/runner/crds/references/jwst/niriss/jwst_niriss_apcorr_0008.fits'.
2026-07-28 16:57:23,920 - jwst.pipeline.calwebb_image3 - INFO - Starting calwebb_image3 ...
2026-07-28 16:57:24,633 - stpipe.step - INFO - Step tweakreg running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fbeda323890>,).
2026-07-28 16:57:27,173 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00001_nis_cal.fits.
2026-07-28 16:57:29,708 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00002_nis_cal.fits.
2026-07-28 16:57:32,258 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00003_nis_cal.fits.
2026-07-28 16:57:34,792 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00004_nis_cal.fits.
2026-07-28 16:57:37,342 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00005_nis_cal.fits.
2026-07-28 16:57:39,873 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00006_nis_cal.fits.
2026-07-28 16:57:42,456 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00007_nis_cal.fits.
2026-07-28 16:57:45,015 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00008_nis_cal.fits.
2026-07-28 16:57:47,595 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00009_nis_cal.fits.
2026-07-28 16:57:50,149 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00010_nis_cal.fits.
2026-07-28 16:57:52,717 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00011_nis_cal.fits.
2026-07-28 16:57:55,299 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00012_nis_cal.fits.
2026-07-28 16:57:57,925 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00013_nis_cal.fits.
2026-07-28 16:58:00,483 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00014_nis_cal.fits.
2026-07-28 16:58:03,076 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00015_nis_cal.fits.
2026-07-28 16:58:05,683 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00016_nis_cal.fits.
2026-07-28 16:58:08,307 - jwst.tweakreg.tweakreg_step - INFO - Detected 100 sources in jw01475006001_02201_00017_nis_cal.fits.
2026-07-28 16:58:08,331 - jwst.tweakreg.tweakreg_step - INFO - 
2026-07-28 16:58:08,331 - jwst.tweakreg.tweakreg_step - INFO - Number of image groups to be aligned: 17.
2026-07-28 16:58:08,332 - tweakwcs.imalign - INFO -  
2026-07-28 16:58:08,332 - tweakwcs.imalign - INFO - ***** tweakwcs.imalign.align_wcs() started on 2026-07-28 16:58:08.332059
2026-07-28 16:58:08,333 - tweakwcs.imalign - INFO -       Version 0.9.2
2026-07-28 16:58:08,333 - tweakwcs.imalign - INFO -  
2026-07-28 16:58:30,632 - tweakwcs.imalign - INFO - Selected image 'GROUP ID: jw01475006001_02201_17' as reference image
2026-07-28 16:58:30,637 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_12' to the reference catalog.
2026-07-28 16:58:30,695 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00012_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00017_nis_cal' catalog.
2026-07-28 16:58:30,696 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:30,697 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 77 and 77 matches.
2026-07-28 16:58:30,698 - tweakwcs.wcsimage - INFO - Found 77 matches for 'GROUP ID: jw01475006001_02201_12'...
2026-07-28 16:58:30,699 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:30,701 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_12':
2026-07-28 16:58:30,702 - tweakwcs.wcsimage - INFO - XSH: -0.0024224  YSH: -0.00135398    ROT: 7.46213e-05    SCALE: 1
2026-07-28 16:58:30,703 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:30,703 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00547043   FIT MAE: 0.00496498
2026-07-28 16:58:30,704 - tweakwcs.wcsimage - INFO - Final solution based on 76 objects.
2026-07-28 16:58:30,748 - tweakwcs.imalign - INFO - Added 23 unmatched sources from 'GROUP ID: jw01475006001_02201_12' to the reference catalog.
2026-07-28 16:58:33,291 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_13' to the reference catalog.
2026-07-28 16:58:33,346 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00013_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00012_nis_cal' catalog.
2026-07-28 16:58:33,346 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:33,348 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 65.8179 and 76 matches.
2026-07-28 16:58:33,349 - tweakwcs.wcsimage - INFO - Found 75 matches for 'GROUP ID: jw01475006001_02201_13'...
2026-07-28 16:58:33,350 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:33,352 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_13':
2026-07-28 16:58:33,352 - tweakwcs.wcsimage - INFO - XSH: 0.00238203  YSH: -0.00094984    ROT: 0.000373055    SCALE: 1
2026-07-28 16:58:33,353 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:33,353 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00535419   FIT MAE: 0.00475003
2026-07-28 16:58:33,354 - tweakwcs.wcsimage - INFO - Final solution based on 74 objects.
2026-07-28 16:58:33,399 - tweakwcs.imalign - INFO - Added 25 unmatched sources from 'GROUP ID: jw01475006001_02201_13' to the reference catalog.
2026-07-28 16:58:35,577 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_14' to the reference catalog.
2026-07-28 16:58:35,634 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00014_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00013_nis_cal' catalog.
2026-07-28 16:58:35,635 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:35,636 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.0497204, 0.049 (arcsec) with significance of 90 and 91 matches.
2026-07-28 16:58:35,638 - tweakwcs.wcsimage - INFO - Found 88 matches for 'GROUP ID: jw01475006001_02201_14'...
2026-07-28 16:58:35,639 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:35,640 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_14':
2026-07-28 16:58:35,641 - tweakwcs.wcsimage - INFO - XSH: 0.0036474  YSH: 0.00174822    ROT: 0.000810763    SCALE: 1
2026-07-28 16:58:35,641 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:35,642 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.0045   FIT MAE: 0.00398899
2026-07-28 16:58:35,642 - tweakwcs.wcsimage - INFO - Final solution based on 86 objects.
2026-07-28 16:58:35,686 - tweakwcs.imalign - INFO - Added 12 unmatched sources from 'GROUP ID: jw01475006001_02201_14' to the reference catalog.
2026-07-28 16:58:38,034 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_1' to the reference catalog.
2026-07-28 16:58:38,090 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00001_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00014_nis_cal' catalog.
2026-07-28 16:58:38,090 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:38,092 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 87.0271 and 94 matches.
2026-07-28 16:58:38,093 - tweakwcs.wcsimage - INFO - Found 91 matches for 'GROUP ID: jw01475006001_02201_1'...
2026-07-28 16:58:38,094 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:38,096 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_1':
2026-07-28 16:58:38,096 - tweakwcs.wcsimage - INFO - XSH: 0.00214187  YSH: 0.000822128    ROT: 0.000589809    SCALE: 1
2026-07-28 16:58:38,097 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:38,097 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00604444   FIT MAE: 0.00530135
2026-07-28 16:58:38,098 - tweakwcs.wcsimage - INFO - Final solution based on 89 objects.
2026-07-28 16:58:38,144 - tweakwcs.imalign - INFO - Added 9 unmatched sources from 'GROUP ID: jw01475006001_02201_1' to the reference catalog.
2026-07-28 16:58:40,264 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_16' to the reference catalog.
2026-07-28 16:58:40,319 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00016_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00001_nis_cal' catalog.
2026-07-28 16:58:40,320 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:40,322 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 78.8083 and 91 matches.
2026-07-28 16:58:40,323 - tweakwcs.wcsimage - INFO - Found 87 matches for 'GROUP ID: jw01475006001_02201_16'...
2026-07-28 16:58:40,323 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:40,325 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_16':
2026-07-28 16:58:40,326 - tweakwcs.wcsimage - INFO - XSH: -0.00420992  YSH: 0.000531422    ROT: -5.45113e-05    SCALE: 1
2026-07-28 16:58:40,326 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:40,327 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.0051451   FIT MAE: 0.00434173
2026-07-28 16:58:40,327 - tweakwcs.wcsimage - INFO - Final solution based on 85 objects.
2026-07-28 16:58:40,371 - tweakwcs.imalign - INFO - Added 13 unmatched sources from 'GROUP ID: jw01475006001_02201_16' to the reference catalog.
2026-07-28 16:58:42,364 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_11' to the reference catalog.
2026-07-28 16:58:42,423 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00011_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00016_nis_cal' catalog.
2026-07-28 16:58:42,424 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:42,425 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 91.6706 and 98 matches.
2026-07-28 16:58:42,426 - tweakwcs.wcsimage - INFO - Found 92 matches for 'GROUP ID: jw01475006001_02201_11'...
2026-07-28 16:58:42,427 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:42,429 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_11':
2026-07-28 16:58:42,430 - tweakwcs.wcsimage - INFO - XSH: -0.00067041  YSH: 0.00495864    ROT: 0.000493598    SCALE: 1
2026-07-28 16:58:42,430 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:42,431 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00478366   FIT MAE: 0.00396996
2026-07-28 16:58:42,431 - tweakwcs.wcsimage - INFO - Final solution based on 91 objects.
2026-07-28 16:58:42,476 - tweakwcs.imalign - INFO - Added 8 unmatched sources from 'GROUP ID: jw01475006001_02201_11' to the reference catalog.
2026-07-28 16:58:44,381 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_10' to the reference catalog.
2026-07-28 16:58:44,437 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00010_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00011_nis_cal' catalog.
2026-07-28 16:58:44,438 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:44,439 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 73.5867 and 95 matches.
2026-07-28 16:58:44,440 - tweakwcs.wcsimage - INFO - Found 91 matches for 'GROUP ID: jw01475006001_02201_10'...
2026-07-28 16:58:44,441 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:44,443 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_10':
2026-07-28 16:58:44,443 - tweakwcs.wcsimage - INFO - XSH: 0.0054164  YSH: 0.00242669    ROT: 0.00085353    SCALE: 1
2026-07-28 16:58:44,444 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:44,444 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00641607   FIT MAE: 0.00544427
2026-07-28 16:58:44,445 - tweakwcs.wcsimage - INFO - Final solution based on 90 objects.
2026-07-28 16:58:44,488 - tweakwcs.imalign - INFO - Added 9 unmatched sources from 'GROUP ID: jw01475006001_02201_10' to the reference catalog.
2026-07-28 16:58:46,407 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_15' to the reference catalog.
2026-07-28 16:58:46,463 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00015_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00010_nis_cal' catalog.
2026-07-28 16:58:46,464 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:46,466 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 82.9156 and 100 matches.
2026-07-28 16:58:46,467 - tweakwcs.wcsimage - INFO - Found 93 matches for 'GROUP ID: jw01475006001_02201_15'...
2026-07-28 16:58:46,467 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:46,470 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_15':
2026-07-28 16:58:46,470 - tweakwcs.wcsimage - INFO - XSH: 0.00175445  YSH: 0.00473336    ROT: 0.000697115    SCALE: 1
2026-07-28 16:58:46,471 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:46,471 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00546387   FIT MAE: 0.00461393
2026-07-28 16:58:46,471 - tweakwcs.wcsimage - INFO - Final solution based on 90 objects.
2026-07-28 16:58:46,516 - tweakwcs.imalign - INFO - Added 7 unmatched sources from 'GROUP ID: jw01475006001_02201_15' to the reference catalog.
2026-07-28 16:58:48,223 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_8' to the reference catalog.
2026-07-28 16:58:48,279 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00008_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00015_nis_cal' catalog.
2026-07-28 16:58:48,280 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:48,281 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 67.8274 and 91 matches.
2026-07-28 16:58:48,283 - tweakwcs.wcsimage - INFO - Found 86 matches for 'GROUP ID: jw01475006001_02201_8'...
2026-07-28 16:58:48,283 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:48,285 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_8':
2026-07-28 16:58:48,286 - tweakwcs.wcsimage - INFO - XSH: -0.000921364  YSH: -0.00459145    ROT: -0.000123637    SCALE: 1
2026-07-28 16:58:48,286 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:48,287 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00481739   FIT MAE: 0.00433724
2026-07-28 16:58:48,287 - tweakwcs.wcsimage - INFO - Final solution based on 84 objects.
2026-07-28 16:58:48,335 - tweakwcs.imalign - INFO - Added 14 unmatched sources from 'GROUP ID: jw01475006001_02201_8' to the reference catalog.
2026-07-28 16:58:49,852 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_4' to the reference catalog.
2026-07-28 16:58:49,909 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00004_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00008_nis_cal' catalog.
2026-07-28 16:58:49,910 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:49,912 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 69.2965 and 98 matches.
2026-07-28 16:58:49,913 - tweakwcs.wcsimage - INFO - Found 93 matches for 'GROUP ID: jw01475006001_02201_4'...
2026-07-28 16:58:49,914 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:49,915 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_4':
2026-07-28 16:58:49,916 - tweakwcs.wcsimage - INFO - XSH: 0.00353478  YSH: -0.00636935    ROT: -0.000180349    SCALE: 1
2026-07-28 16:58:49,916 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:49,917 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00505568   FIT MAE: 0.00443392
2026-07-28 16:58:49,917 - tweakwcs.wcsimage - INFO - Final solution based on 91 objects.
2026-07-28 16:58:49,964 - tweakwcs.imalign - INFO - Added 7 unmatched sources from 'GROUP ID: jw01475006001_02201_4' to the reference catalog.
2026-07-28 16:58:51,257 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_9' to the reference catalog.
2026-07-28 16:58:51,316 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00009_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00004_nis_cal' catalog.
2026-07-28 16:58:51,316 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:51,318 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 57.1577 and 99 matches.
2026-07-28 16:58:51,319 - tweakwcs.wcsimage - INFO - Found 92 matches for 'GROUP ID: jw01475006001_02201_9'...
2026-07-28 16:58:51,320 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:51,322 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_9':
2026-07-28 16:58:51,323 - tweakwcs.wcsimage - INFO - XSH: 0.00566166  YSH: 0.000130468    ROT: 0.000313225    SCALE: 1
2026-07-28 16:58:51,323 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:51,324 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00684283   FIT MAE: 0.00560469
2026-07-28 16:58:51,324 - tweakwcs.wcsimage - INFO - Final solution based on 91 objects.
2026-07-28 16:58:51,370 - tweakwcs.imalign - INFO - Added 8 unmatched sources from 'GROUP ID: jw01475006001_02201_9' to the reference catalog.
2026-07-28 16:58:52,483 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_5' to the reference catalog.
2026-07-28 16:58:52,538 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00005_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00009_nis_cal' catalog.
2026-07-28 16:58:52,539 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:52,541 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 67.082 and 100 matches.
2026-07-28 16:58:52,542 - tweakwcs.wcsimage - INFO - Found 87 matches for 'GROUP ID: jw01475006001_02201_5'...
2026-07-28 16:58:52,543 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:52,545 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_5':
2026-07-28 16:58:52,545 - tweakwcs.wcsimage - INFO - XSH: 0.00438158  YSH: 0.00392886    ROT: -0.00112594    SCALE: 1
2026-07-28 16:58:52,546 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:52,546 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00678227   FIT MAE: 0.0057074
2026-07-28 16:58:52,547 - tweakwcs.wcsimage - INFO - Final solution based on 86 objects.
2026-07-28 16:58:52,592 - tweakwcs.imalign - INFO - Added 13 unmatched sources from 'GROUP ID: jw01475006001_02201_5' to the reference catalog.
2026-07-28 16:58:53,464 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_6' to the reference catalog.
2026-07-28 16:58:53,523 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00006_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00005_nis_cal' catalog.
2026-07-28 16:58:53,524 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:53,526 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 63.3206 and 99 matches.
2026-07-28 16:58:53,527 - tweakwcs.wcsimage - INFO - Found 91 matches for 'GROUP ID: jw01475006001_02201_6'...
2026-07-28 16:58:53,528 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:53,530 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_6':
2026-07-28 16:58:53,531 - tweakwcs.wcsimage - INFO - XSH: -0.00126428  YSH: 0.00862547    ROT: -0.000252397    SCALE: 1
2026-07-28 16:58:53,531 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:53,532 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.0247468   FIT MAE: 0.00730674
2026-07-28 16:58:53,532 - tweakwcs.wcsimage - INFO - Final solution based on 88 objects.
2026-07-28 16:58:53,579 - tweakwcs.imalign - INFO - Added 9 unmatched sources from 'GROUP ID: jw01475006001_02201_6' to the reference catalog.
2026-07-28 16:58:54,230 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_3' to the reference catalog.
2026-07-28 16:58:54,287 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00003_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00006_nis_cal' catalog.
2026-07-28 16:58:54,288 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:54,290 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 58.5662 and 98 matches.
2026-07-28 16:58:54,291 - tweakwcs.wcsimage - INFO - Found 86 matches for 'GROUP ID: jw01475006001_02201_3'...
2026-07-28 16:58:54,292 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:54,294 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_3':
2026-07-28 16:58:54,294 - tweakwcs.wcsimage - INFO - XSH: -0.00684681  YSH: -0.00531775    ROT: 6.30829e-05    SCALE: 1
2026-07-28 16:58:54,295 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:54,296 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00613255   FIT MAE: 0.00510336
2026-07-28 16:58:54,296 - tweakwcs.wcsimage - INFO - Final solution based on 84 objects.
2026-07-28 16:58:54,346 - tweakwcs.imalign - INFO - Added 14 unmatched sources from 'GROUP ID: jw01475006001_02201_3' to the reference catalog.
2026-07-28 16:58:54,779 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_2' to the reference catalog.
2026-07-28 16:58:54,836 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00002_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00003_nis_cal' catalog.
2026-07-28 16:58:54,837 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:54,838 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 60.7157 and 96 matches.
2026-07-28 16:58:54,840 - tweakwcs.wcsimage - INFO - Found 91 matches for 'GROUP ID: jw01475006001_02201_2'...
2026-07-28 16:58:54,841 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:54,842 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_2':
2026-07-28 16:58:54,843 - tweakwcs.wcsimage - INFO - XSH: -0.0025297  YSH: 0.00533142    ROT: -0.000555081    SCALE: 1
2026-07-28 16:58:54,843 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:54,844 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00511791   FIT MAE: 0.00441644
2026-07-28 16:58:54,844 - tweakwcs.wcsimage - INFO - Final solution based on 88 objects.
2026-07-28 16:58:54,891 - tweakwcs.imalign - INFO - Added 9 unmatched sources from 'GROUP ID: jw01475006001_02201_2' to the reference catalog.
2026-07-28 16:58:55,109 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: jw01475006001_02201_7' to the reference catalog.
2026-07-28 16:58:55,170 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_00007_nis_cal' catalog with sources from the reference 'jw01475006001_02201_00002_nis_cal' catalog.
2026-07-28 16:58:55,170 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 16:58:55,172 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of 0.049, 0.049 (arcsec) with significance of 73.5391 and 104 matches.
2026-07-28 16:58:55,173 - tweakwcs.wcsimage - INFO - Found 92 matches for 'GROUP ID: jw01475006001_02201_7'...
2026-07-28 16:58:55,174 - tweakwcs.linearfit - INFO - Performing 'rshift' fit
2026-07-28 16:58:55,176 - tweakwcs.wcsimage - INFO - Computed 'rshift' fit for 'GROUP ID: jw01475006001_02201_7':
2026-07-28 16:58:55,177 - tweakwcs.wcsimage - INFO - XSH: -0.00874421  YSH: 0.00298706    ROT: -0.00018526    SCALE: 1
2026-07-28 16:58:55,177 - tweakwcs.wcsimage - INFO - 
2026-07-28 16:58:55,177 - tweakwcs.wcsimage - INFO - FIT RMSE: 0.00632645   FIT MAE: 0.00543527
2026-07-28 16:58:55,178 - tweakwcs.wcsimage - INFO - Final solution based on 90 objects.
2026-07-28 16:58:55,225 - tweakwcs.imalign - INFO - Added 8 unmatched sources from 'GROUP ID: jw01475006001_02201_7' to the reference catalog.
2026-07-28 16:58:55,226 - tweakwcs.imalign - INFO -  
2026-07-28 16:58:55,226 - tweakwcs.imalign - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2026-07-28 16:58:55.226228
2026-07-28 16:58:55,227 - tweakwcs.imalign - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:46.894169
2026-07-28 16:58:55,227 - tweakwcs.imalign - INFO -  
2026-07-28 16:58:55,336 - jwst.tweakreg.tweakreg_step - INFO - Aligning to absolute reference catalog: GAIADR3
2026-07-28 16:58:55,766 - tweakwcs.imalign - INFO -  
2026-07-28 16:58:55,767 - tweakwcs.imalign - INFO - ***** tweakwcs.imalign.align_wcs() started on 2026-07-28 16:58:55.766762
2026-07-28 16:58:55,768 - tweakwcs.imalign - INFO -       Version 0.9.2
2026-07-28 16:58:55,768 - tweakwcs.imalign - INFO -  
2026-07-28 17:00:47,453 - tweakwcs.imalign - INFO - Aligning image catalog 'GROUP ID: 987654' to the reference catalog.
2026-07-28 17:00:47,524 - tweakwcs.matchutils - INFO - Matching sources from 'jw01475006001_02201_000' catalog with sources from the reference 'GAIADR3' catalog.
2026-07-28 17:00:47,525 - tweakwcs.matchutils - INFO - Computing initial guess for X and Y shifts...
2026-07-28 17:00:47,528 - tweakwcs.matchutils - INFO - Found initial X and Y shifts of -3.96756, 5.21119 (arcsec) with significance of 7.5972 and 15 matches.
2026-07-28 17:00:47,529 - tweakwcs.wcsimage - INFO - Found 1 matches for 'GROUP ID: 987654'...
2026-07-28 17:00:47,530 - tweakwcs.wcsimage - WARNING - Not enough matches (1) found for image catalog 'GROUP ID: 987654'. Min required: 15.
2026-07-28 17:00:47,531 - tweakwcs.imalign - INFO -  
2026-07-28 17:00:47,531 - tweakwcs.imalign - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2026-07-28 17:00:47.531072
2026-07-28 17:00:47,532 - tweakwcs.imalign - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:01:51.764310
2026-07-28 17:00:47,532 - tweakwcs.imalign - INFO -  
2026-07-28 17:00:48,072 - stpipe.step - INFO - Step tweakreg done
2026-07-28 17:00:48,489 - stpipe.step - INFO - Step skymatch running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fbeda323890>,).
2026-07-28 17:00:48,896 - stcal.skymatch.skymatch - INFO -  
2026-07-28 17:00:48,897 - stcal.skymatch.skymatch - INFO - ***** stcal.skymatch.skymatch.skymatch() started on 2026-07-28 17:00:48.896365
2026-07-28 17:00:48,897 - stcal.skymatch.skymatch - INFO -  
2026-07-28 17:00:48,898 - stcal.skymatch.skymatch - INFO - Sky computation method: 'match'
2026-07-28 17:00:48,898 - stcal.skymatch.skymatch - INFO - Sky matching direction: DOWN
2026-07-28 17:00:48,899 - stcal.skymatch.skymatch - INFO - Sky subtraction from image data: OFF
2026-07-28 17:00:48,899 - stcal.skymatch.skymatch - INFO -  
2026-07-28 17:00:48,900 - stcal.skymatch.skymatch - INFO - ----  Computing differences in sky values in overlapping regions.
2026-07-28 17:01:29,282 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00001_nis_cal.fits. Sky background: 0.000560257
2026-07-28 17:01:29,283 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00002_nis_cal.fits. Sky background: 0
2026-07-28 17:01:29,283 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00003_nis_cal.fits. Sky background: 0.00217706
2026-07-28 17:01:29,284 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00004_nis_cal.fits. Sky background: 0.00246891
2026-07-28 17:01:29,284 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00005_nis_cal.fits. Sky background: 0.00211387
2026-07-28 17:01:29,285 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00006_nis_cal.fits. Sky background: 0.000707176
2026-07-28 17:01:29,285 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00007_nis_cal.fits. Sky background: 0.000639855
2026-07-28 17:01:29,286 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00008_nis_cal.fits. Sky background: 0.00118402
2026-07-28 17:01:29,287 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00009_nis_cal.fits. Sky background: 0.000946635
2026-07-28 17:01:29,288 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00010_nis_cal.fits. Sky background: 0.00204423
2026-07-28 17:01:29,288 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00011_nis_cal.fits. Sky background: 0.00134765
2026-07-28 17:01:29,289 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00012_nis_cal.fits. Sky background: 0.00144041
2026-07-28 17:01:29,289 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00013_nis_cal.fits. Sky background: 0.00135024
2026-07-28 17:01:29,290 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00014_nis_cal.fits. Sky background: 0.00258091
2026-07-28 17:01:29,298 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00015_nis_cal.fits. Sky background: 0.00139376
2026-07-28 17:01:29,299 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00016_nis_cal.fits. Sky background: 0.00193548
2026-07-28 17:01:29,299 - stcal.skymatch.skymatch - INFO -    *  Image ID=jw01475006001_02201_00017_nis_cal.fits. Sky background: 0.00212952
2026-07-28 17:01:29,300 - stcal.skymatch.skymatch - INFO -  
2026-07-28 17:01:29,300 - stcal.skymatch.skymatch - INFO - ***** stcal.skymatch.skymatch.skymatch() ended on 2026-07-28 17:01:29.300304
2026-07-28 17:01:29,301 - stcal.skymatch.skymatch - INFO - ***** stcal.skymatch.skymatch.skymatch() TOTAL RUN TIME: 0:00:40.403939
2026-07-28 17:01:29,301 - stcal.skymatch.skymatch - INFO -  
2026-07-28 17:01:29,404 - stpipe.step - INFO - Step skymatch done
2026-07-28 17:01:29,820 - stpipe.step - INFO - Step outlier_detection running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fbeda323890>,).
2026-07-28 17:01:29,821 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: imaging
2026-07-28 17:01:29,822 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-07-28 17:01:29,874 - jwst.resample.resample_utils - INFO - Pixel scale ratio (pscale_out/pscale_in): 1.0
2026-07-28 17:01:29,875 - jwst.resample.resample_utils - INFO - Computed output pixel scale: 0.06556287117462305 arcsec.
2026-07-28 17:01:29,902 - stcal.resample.resample - INFO - Output pixel scale: 0.06556287117462305 arcsec.
2026-07-28 17:01:29,902 - stcal.resample.resample - INFO - Driz parameter kernel: square
2026-07-28 17:01:29,903 - stcal.resample.resample - INFO - Driz parameter pixfrac: 1.0
2026-07-28 17:01:29,903 - stcal.resample.resample - INFO - Driz parameter fillval: NAN
2026-07-28 17:01:29,904 - stcal.resample.resample - INFO - Driz parameter weight_type: ivm
2026-07-28 17:01:29,908 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:01:31,871 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:01:32,574 - 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-07-28 17:01:32,921 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:01:34,682 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:01:35,374 - 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-07-28 17:01:35,756 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:01:37,542 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:01:38,242 - 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-07-28 17:01:38,585 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:01:40,359 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:01:41,054 - 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-07-28 17:01:41,391 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:01:43,166 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:01:43,862 - 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-07-28 17:01:44,232 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:01:45,997 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:01:46,694 - 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-07-28 17:01:47,044 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:01:48,822 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:01:49,528 - 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-07-28 17:01:49,883 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:01:51,661 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:01:52,362 - 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-07-28 17:01:52,721 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:01:54,445 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:01:55,138 - 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-07-28 17:01:55,497 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:01:57,230 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:01:57,933 - 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-07-28 17:01:58,259 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:02:00,002 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:02:00,699 - 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-07-28 17:02:01,050 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:02:02,797 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:02:03,511 - 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-07-28 17:02:03,857 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:02:05,604 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:02:06,297 - 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-07-28 17:02:06,654 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:02:08,374 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:02:09,084 - 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-07-28 17:02:09,424 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:02:11,189 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:02:11,890 - 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-07-28 17:02:12,254 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:02:14,032 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:02:14,726 - 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-07-28 17:02:15,069 - jwst.resample.resample - INFO - 1 exposures to drizzle together
2026-07-28 17:02:16,828 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:02:17,527 - 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-07-28 17:02:22,883 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:23,114 - jwst.outlier_detection.utils - INFO - 3440 pixels marked as outliers
2026-07-28 17:02:24,884 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:25,117 - jwst.outlier_detection.utils - INFO - 3219 pixels marked as outliers
2026-07-28 17:02:26,872 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:27,105 - jwst.outlier_detection.utils - INFO - 3061 pixels marked as outliers
2026-07-28 17:02:28,855 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:29,084 - jwst.outlier_detection.utils - INFO - 3700 pixels marked as outliers
2026-07-28 17:02:30,858 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:31,092 - jwst.outlier_detection.utils - INFO - 3447 pixels marked as outliers
2026-07-28 17:02:32,857 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:33,090 - jwst.outlier_detection.utils - INFO - 3374 pixels marked as outliers
2026-07-28 17:02:34,839 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:35,070 - jwst.outlier_detection.utils - INFO - 2992 pixels marked as outliers
2026-07-28 17:02:36,846 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:37,077 - jwst.outlier_detection.utils - INFO - 3527 pixels marked as outliers
2026-07-28 17:02:38,835 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:39,070 - jwst.outlier_detection.utils - INFO - 3313 pixels marked as outliers
2026-07-28 17:02:40,835 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:41,067 - jwst.outlier_detection.utils - INFO - 3354 pixels marked as outliers
2026-07-28 17:02:42,826 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:43,059 - jwst.outlier_detection.utils - INFO - 3454 pixels marked as outliers
2026-07-28 17:02:44,827 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:45,059 - jwst.outlier_detection.utils - INFO - 3076 pixels marked as outliers
2026-07-28 17:02:46,827 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:47,060 - jwst.outlier_detection.utils - INFO - 3223 pixels marked as outliers
2026-07-28 17:02:48,840 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:49,071 - jwst.outlier_detection.utils - INFO - 3388 pixels marked as outliers
2026-07-28 17:02:50,835 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:51,068 - jwst.outlier_detection.utils - INFO - 3469 pixels marked as outliers
2026-07-28 17:02:52,837 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:53,073 - jwst.outlier_detection.utils - INFO - 3270 pixels marked as outliers
2026-07-28 17:02:54,846 - stcal.outlier_detection.utils - INFO - Blotting (2048, 2048) <-- (2568, 2545)
2026-07-28 17:02:55,080 - jwst.outlier_detection.utils - INFO - 3169 pixels marked as outliers
2026-07-28 17:02:55,361 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00001_nis_a3001_crf.fits
2026-07-28 17:02:55,492 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00002_nis_a3001_crf.fits
2026-07-28 17:02:55,627 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00003_nis_a3001_crf.fits
2026-07-28 17:02:55,759 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00004_nis_a3001_crf.fits
2026-07-28 17:02:55,898 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00005_nis_a3001_crf.fits
2026-07-28 17:02:56,030 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00006_nis_a3001_crf.fits
2026-07-28 17:02:56,162 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00007_nis_a3001_crf.fits
2026-07-28 17:02:56,294 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00008_nis_a3001_crf.fits
2026-07-28 17:02:56,433 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00009_nis_a3001_crf.fits
2026-07-28 17:02:56,587 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00010_nis_a3001_crf.fits
2026-07-28 17:02:56,736 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00011_nis_a3001_crf.fits
2026-07-28 17:02:56,874 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00012_nis_a3001_crf.fits
2026-07-28 17:02:57,015 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00013_nis_a3001_crf.fits
2026-07-28 17:02:57,151 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00014_nis_a3001_crf.fits
2026-07-28 17:02:57,285 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00015_nis_a3001_crf.fits
2026-07-28 17:02:57,420 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00016_nis_a3001_crf.fits
2026-07-28 17:02:57,557 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/jw01475006001_02201_00017_nis_a3001_crf.fits
2026-07-28 17:02:57,558 - stpipe.step - INFO - Step outlier_detection done
2026-07-28 17:02:58,141 - stpipe.step - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7fbeda323890>,).
2026-07-28 17:02:58,556 - jwst.resample.resample_utils - INFO - Pixel scale ratio (pscale_out/pscale_in): 1.0
2026-07-28 17:02:58,557 - jwst.resample.resample_utils - INFO - Computed output pixel scale: 0.06556287117462305 arcsec.
2026-07-28 17:02:58,584 - stcal.resample.resample - INFO - Output pixel scale: 0.06556287117462305 arcsec.
2026-07-28 17:02:58,585 - stcal.resample.resample - INFO - Driz parameter kernel: square
2026-07-28 17:02:58,585 - stcal.resample.resample - INFO - Driz parameter pixfrac: 1.0
2026-07-28 17:02:58,586 - stcal.resample.resample - INFO - Driz parameter fillval: NAN
2026-07-28 17:02:58,586 - stcal.resample.resample - INFO - Driz parameter weight_type: ivm
2026-07-28 17:02:58,599 - jwst.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:00,537 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:01,137 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:01,700 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:02,254 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:04,906 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:05,499 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:06,058 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:06,621 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:09,112 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:09,709 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:10,258 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:10,816 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:13,319 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:13,911 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:14,467 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:15,025 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:17,527 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:18,119 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:18,676 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:19,233 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:21,704 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:22,307 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:22,863 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:23,418 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:25,904 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:26,497 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:27,058 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:27,624 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:30,122 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:30,718 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:31,275 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:31,834 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:34,349 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:34,942 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:35,502 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:36,058 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:38,561 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:39,165 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:39,724 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:40,282 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:42,788 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:43,387 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:43,944 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:44,502 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:46,986 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:47,578 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:48,137 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:48,701 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:51,179 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:51,772 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:52,325 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:52,883 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:55,399 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:03:55,992 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:56,550 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:57,110 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:03:59,608 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:04:00,201 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:04:00,761 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:04:01,323 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:04:03,827 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:04:04,439 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:04:04,995 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:04:05,552 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:04:08,036 - stcal.resample.resample - INFO - Resampling science and variance data
2026-07-28 17:04:08,628 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:04:09,181 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:04:09,748 - stcal.resample.resample - INFO - Drizzling (2048, 2048) --> (2568, 2545)
2026-07-28 17:04:10,859 - 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-07-28 17:04:11,177 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/image3_association_i2d.fits
2026-07-28 17:04:11,178 - stpipe.step - INFO - Step resample done
2026-07-28 17:04:11,513 - stpipe.step - INFO - Step source_catalog running with args (<ImageModel(2568, 2545) from image3_association_i2d.fits>,).
2026-07-28 17:04:11,727 - jwst.source_catalog.source_catalog_step - INFO - Using APCORR reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_apcorr_0008.fits
2026-07-28 17:04:11,735 - jwst.source_catalog.source_catalog_step - INFO - Using ABVEGAOFFSET reference file: /home/runner/crds/references/jwst/niriss/jwst_niriss_abvegaoffset_0003.asdf
2026-07-28 17:04:11,736 - jwst.source_catalog.reference_data - INFO - Instrument: NIRISS
2026-07-28 17:04:11,736 - jwst.source_catalog.reference_data - INFO - Detector: NIS
2026-07-28 17:04:11,737 - jwst.source_catalog.reference_data - INFO - Filter: CLEAR
2026-07-28 17:04:11,737 - jwst.source_catalog.reference_data - INFO - Pupil: F150W
2026-07-28 17:04:11,738 - jwst.source_catalog.reference_data - INFO - Subarray: FULL
2026-07-28 17:04:11,781 - jwst.source_catalog.reference_data - INFO - AB to Vega magnitude offset 1.19753
2026-07-28 17:04:23,325 - jwst.source_catalog.source_catalog_step - INFO - Wrote source catalog: ./nis_im_demo_data/Obs006/stage3/image3_association_cat.ecsv
2026-07-28 17:04:23,491 - stpipe.step - INFO - Saved model in ./nis_im_demo_data/Obs006/stage3/image3_association_segm.fits
2026-07-28 17:04:23,492 - jwst.source_catalog.source_catalog_step - INFO - Wrote segmentation map: image3_association_segm.fits
2026-07-28 17:04:23,494 - stpipe.step - INFO - Step source_catalog done
2026-07-28 17:04:23,528 - stpipe.step - INFO - Step Image3Pipeline done
2026-07-28 17:04:23,529 - jwst.stpipe.core - INFO - Results used jwst version: 3.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: 1799 seconds
Runtime for Image3: 421 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%'
/tmp/ipykernel_3169/1140695876.py:7: DeprecationWarning: Imviz is deprecated and will be removed in version 5.2. Please use the top-level App instead.
  imviz_i2d = Imviz()
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')
/tmp/ipykernel_3169/3242206686.py:3: DeprecationWarning: Imviz is deprecated and will be removed in version 5.2. Please use the top-level App instead.
  imviz_cat = Imviz()
WARNING: AstropyDeprecationWarning: The load_data function is deprecated and may be removed in a future version.
        Use load instead. [warnings]

stsci_logo