Download Wide Field Slittless Spectroscopy (WFSS) Data#
This notebook uses the python astroquery.mast Observations class of the MAST API to query specific data products of a specific program. We are looking for NIRISS imaging and WFSS files of the NGDEEP program (ID 2079). The observations are in three NIRISS filters: F115W, F150W, and F200W using both GR150R and GR150C grisms. A WFSS observation sequence typically consists of a direct image followed by a grism observation in the same blocking filter to help identify the sources in the field. In program 2079, the exposure sequence follows the pattern: direct image -> GR150R -> direct image -> GR150C -> direct image.
Use case: use MAST to download data products.
Data: JWST/NIRISS images and spectra from program 2079 observation 004.
Tools: astropy, astroquery, glob, matplotlib, numpy, os, pandas, (yaml)
Cross-instrument: all
Content
Imports
Querying for Observations
Search with Proposal ID
Search with Observation ID
Filter and Download Products
Filtering Data Before Downloading
Downloading Data
Inspect Downloaded Data
Author: Camilla Pacifici (cpacifici@stsci.edu) & Rachel Plesha (rplesha@stsci.edu) & Jo Taylor (jotaylor@stsci.edu)
First Published: May 2024
This notebook was inspired by the JWebbinar session about MAST.
Imports#
from astropy.io import fits
from astroquery.mast import Observations
from matplotlib import pyplot as plt
import numpy as np
import os
import glob
import pandas as pd
Querying for Observations#
The observations class in astroquery.mast
is used to download JWST data. Use the metadata function to see the available search options and their descriptions.
Note that for JWST, the instrument names have a specific format. More information about that can be found at: https://outerspace.stsci.edu/display/MASTDOCS/JWST+Instrument+Names
Observations.get_metadata("observations")
Column Name | Column Label | Data Type | Units | Description | Examples/Valid Values |
---|---|---|---|---|---|
str21 | str25 | str7 | str10 | str72 | str116 |
intentType | Observation Type | string | Whether observation is for science or calibration. | Valid values: science, calibration | |
obs_collection | Mission | string | Collection | E.g. SWIFT, PS1, HST, IUE | |
provenance_name | Provenance Name | string | Provenance name, or source of data | E.g. TASOC, CALSTIS, PS1 | |
instrument_name | Instrument | string | Instrument Name | E.g. WFPC2/WFC, UVOT, STIS/CCD | |
project | Project | string | Processing project | E.g. HST, HLA, EUVE, hlsp_legus | |
filters | Filters | string | Instrument filters | F469N, NUV, FUV, LOW DISP, MIRROR | |
wavelength_region | Waveband | string | Energy Band | EUV, XRAY, OPTICAL | |
target_name | Target Name | string | Target Name | Ex. COMET-67P-CHURYUMOV-GER-UPDATE | |
target_classification | Target Classification | string | Type of target | Ex. COMET;COMET BEING ORBITED BY THE ROSETTA SPACECRAFT;SOLAR SYSTEM | |
... | ... | ... | ... | ... | ... |
s_region | s_region | string | ICRS Shape | STC/S Footprint | Will be ICRS circle or polygon. E.g. CIRCLE ICRS 17.71740689 -58.40043015 0.625 |
jpegURL | jpegURL | string | Preview Image URL | https://archive.stsci.edu/hst/previews/N4QF/N4QF18090.jpg | |
distance | Distance (") | float | arcsec | Angular separation between searched coordinates and center of obsevation | |
obsid | Product Group ID | integer | Database identifier for obs_id | Long integer, e.g. 2007590987 | |
dataRights | Data Rights | string | Data Rights | valid values: public,exclusive_access,restricted | |
mtFlag | Moving Target | boolean | Moving Target Flag | If True, observation contains a moving target, if False or absent observation may or may not contain a moving target | |
srcDen | Number of Catalog Objects | float | Number of cataloged objects found in observation | ||
dataURL | Data URL | string | Data URL | ||
proposal_type | Proposal Type | string | Type of telescope proposal | Eg. 3PI, GO, GO/DD, HLA, GII, AIS | |
sequence_number | Sequence Number | integer | Sequence number, e.g. Kepler quarter or TESS sector |
The two most common ways to download specific datasets are by using the proposal ID or by using the observation ID.
Search with Proposal ID#
# Select the proposal ID, instrument, and some useful keywords (filters in this case).
obs_table = Observations.query_criteria(obs_collection=["JWST"],
instrument_name=["NIRISS/IMAGE", "NIRISS/WFSS"],
provenance_name=["CALJWST"], # Executed observations
filters=['F115W', 'F150W', 'F200W'],
proposal_id=[2079],
)
print(len(obs_table), 'files found')
# look at what was obtained in this query for a select number of column names of interest
obs_table[['obs_collection', 'instrument_name', 'filters', 'target_name', 'obs_id', 's_ra', 's_dec', 't_exptime', 'proposal_id']]
1228 files found
obs_collection | instrument_name | filters | target_name | obs_id | s_ra | s_dec | t_exptime | proposal_id |
---|---|---|---|---|---|---|---|---|
str4 | str12 | str12 | str15 | str43 | float64 | float64 | float64 | str4 |
JWST | NIRISS/IMAGE | CLEAR;F115W | HUDF-DEEP-F160W | jw02079-o001_t001_niriss_clear-f115w | 53.16083625 | -27.783286111111124 | 5153.64 | 2079 |
JWST | NIRISS/IMAGE | CLEAR;F150W | HUDF-DEEP-F160W | jw02079-o001_t001_niriss_clear-f150w | 53.16083625 | -27.783286111111124 | 1717.8800000000006 | 2079 |
JWST | NIRISS/IMAGE | CLEAR;F200W | HUDF-DEEP-F160W | jw02079-o001_t001_niriss_clear-f200w | 53.16083625 | -27.783286111111124 | 1717.8800000000006 | 2079 |
JWST | NIRISS/IMAGE | CLEAR;F115W | HUDF-DEEP-F160W | jw02079-o004_t001_niriss_clear-f115w | 53.16083625 | -27.783286111111124 | 5153.64 | 2079 |
JWST | NIRISS/IMAGE | CLEAR;F200W | HUDF-DEEP-F160W | jw02079-o004_t001_niriss_clear-f200w | 53.16083625 | -27.783286111111124 | 1717.8800000000006 | 2079 |
JWST | NIRISS/IMAGE | CLEAR;F150W | HUDF-DEEP-F160W | jw02079-o004_t001_niriss_clear-f150w | 53.16083625 | -27.783286111111124 | 1717.8800000000006 | 2079 |
JWST | NIRISS/WFSS | GR150C;F115W | HUDF-DEEP-F160W | jw02079-o004_s000000165_niriss_f115w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F115W | HUDF-DEEP-F160W | jw02079-o004_s000000588_niriss_f115w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F150W | HUDF-DEEP-F160W | jw02079-o004_s000001004_niriss_f150w-gr150c | 53.16083625 | -27.783286111111124 | 6871.533 | 2079 |
... | ... | ... | ... | ... | ... | ... | ... | ... |
JWST | NIRISS/WFSS | GR150C;F115W | HUDF-DEEP-F160W | jw02079-o001_s000000434_niriss_f115w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F150W | HUDF-DEEP-F160W | jw02079-o001_s000000219_niriss_f150w-gr150c | 53.16083625 | -27.783286111111124 | 6871.533 | 2079 |
JWST | NIRISS/WFSS | GR150R;F200W | HUDF-DEEP-F160W | jw02079-o001_s000000940_niriss_f200w-gr150r | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F150W | HUDF-DEEP-F160W | jw02079-o001_s000000266_niriss_f150w-gr150c | 53.16083625 | -27.783286111111124 | 6871.533 | 2079 |
JWST | NIRISS/WFSS | GR150C;F200W | HUDF-DEEP-F160W | jw02079-o001_s000001390_niriss_f200w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F200W | HUDF-DEEP-F160W | jw02079-o001_s000000749_niriss_f200w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F200W | HUDF-DEEP-F160W | jw02079-o001_s000001417_niriss_f200w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F150W | HUDF-DEEP-F160W | jw02079-o001_s000000657_niriss_f150w-gr150c | 53.16083625 | -27.783286111111124 | 6871.533 | 2079 |
JWST | NIRISS/WFSS | GR150R;F115W | HUDF-DEEP-F160W | jw02079-o001_s000000433_niriss_f115w-gr150r | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150R;F200W | HUDF-DEEP-F160W | jw02079-o001_s000000899_niriss_f200w-gr150r | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
Search with Observation ID#
The observation ID (obs_id) allows for flexibility of searching by the proposal ID and the observation ID because of how the JWST filenames are structured. 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. For the purposes of this notebook series, we will use only one of the two observations (004) in program 2079.
Additionally, there is flexibility using wildcards inside of the search criteria. For example, instead of specifying both “NIRISS/IMAGE” and “NIRISS/WFSS”, we can specify “NIRISS*”, which picks up both file modes. The wildcard also works within the obs_id, so we do not have to list all of the different IDs.
# Obtain a list to download from a specific list of observation IDs instead
obs_id_table = Observations.query_criteria(instrument_name=["NIRISS*"],
provenance_name=["CALJWST"], # Executed observations
obs_id=['jw02079-o004*'], # Searching for PID 2079 observation 004
)
# this number will change with JWST pipeline and reference file updates
print(len(obs_id_table), 'files found') # ~613 files
613 files found
Filter and Download Products#
If there are too many files to download, the API will time out. Instead, it is better to divide the observations in batches to download one at a time.
batch_size = 5 # 5 files at a time maximizes the download speed.
# Let's split up our list of files, ``obs_id_table``, into batches according to our batch size.
obs_batches = [obs_id_table[i:i+batch_size] for i in range(0, len(obs_id_table), batch_size)]
print("How many batches?", len(obs_batches))
single_group = obs_batches[0] # Useful to inspect the files obtained from one group
print("Inspect the first batch to ensure that it matches expectations of what you want downloaded:")
single_group['obs_collection', 'instrument_name', 'filters', 'target_name', 'obs_id', 's_ra', 's_dec', 't_exptime', 'proposal_id']
How many batches? 123
Inspect the first batch to ensure that it matches expectations of what you want downloaded:
obs_collection | instrument_name | filters | target_name | obs_id | s_ra | s_dec | t_exptime | proposal_id |
---|---|---|---|---|---|---|---|---|
str4 | str12 | str12 | str15 | str43 | float64 | float64 | float64 | str4 |
JWST | NIRISS/IMAGE | CLEAR;F115W | HUDF-DEEP-F160W | jw02079-o004_t001_niriss_clear-f115w | 53.16083625 | -27.783286111111124 | 5153.64 | 2079 |
JWST | NIRISS/IMAGE | CLEAR;F200W | HUDF-DEEP-F160W | jw02079-o004_t001_niriss_clear-f200w | 53.16083625 | -27.783286111111124 | 1717.8800000000006 | 2079 |
JWST | NIRISS/IMAGE | CLEAR;F150W | HUDF-DEEP-F160W | jw02079-o004_t001_niriss_clear-f150w | 53.16083625 | -27.783286111111124 | 1717.8800000000006 | 2079 |
JWST | NIRISS/WFSS | GR150C;F115W | HUDF-DEEP-F160W | jw02079-o004_s000000165_niriss_f115w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F115W | HUDF-DEEP-F160W | jw02079-o004_s000000588_niriss_f115w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
Select the type of products needed. The various levels are:
uncalibrated files
productType=[“SCIENCE”]
productSubGroupDescription=[‘UNCAL’]
calib_level=[1]
rate images
productType=[“SCIENCE”]
productSubGroupDescription=[‘RATE’]
calib_level=[2]
level 2 associations for both spectroscopy and imaging
productType=[“INFO”]
productSubGroupDescription=[‘ASN’]
calib_level=[2]
level 3 associations for imaging
productType=[“INFO”]
productSubGroupDescription=[‘ASN’]
dataproduct_type=[“image”]
calib_level=[3]
Filtering Data Before Downloading#
# creating a dictionary of the above information to use for inspection of the filtering function
file_dict = {'uncal': {'product_type': 'SCIENCE',
'productSubGroupDescription': 'UNCAL',
'calib_level': [1]},
'rate': {'product_type': 'SCIENCE',
'productSubGroupDescription': 'RATE',
'calib_level': [2]},
'level2_association': {'product_type': 'INFO',
'productSubGroupDescription': 'ASN',
'calib_level': [2]},
'level3_association': {'product_type': 'INFO',
'productSubGroupDescription': 'ASN',
'calib_level': [3]},
}
# Look at the files existing for each of these different levels
files_to_download = []
for index, batch_exposure in enumerate(single_group):
print('*'*50)
print(f"Exposure #{index+1} ({batch_exposure['obs_id']})")
# pull out the product names from the list to filter
products = Observations.get_product_list(batch_exposure)
for filetype, query_dict in file_dict.items():
print('File type:', filetype)
filtered_products = Observations.filter_products(products,
productType=query_dict['product_type'],
productSubGroupDescription=query_dict['productSubGroupDescription'],
calib_level=query_dict['calib_level'],
)
print(filtered_products['productFilename'])
files_to_download.extend(filtered_products['productFilename'])
print()
print('*'*50)
**************************************************
Exposure #1 (jw02079-o004_t001_niriss_clear-f115w)
File type: uncal
productFilename
----------------------------------------
jw02079004001_10101_00004_nis_uncal.fits
jw02079004001_06101_00001_nis_uncal.fits
jw02079004001_10101_00001_nis_uncal.fits
jw02079004001_10101_00003_nis_uncal.fits
jw02079004001_04101_00002_nis_uncal.fits
jw02079004001_04101_00001_nis_uncal.fits
jw02079004001_06101_00002_nis_uncal.fits
jw02079004001_10101_00002_nis_uncal.fits
jw02079004001_02101_00001_nis_uncal.fits
jw02079004001_04101_00004_nis_uncal.fits
...
jw02079004001_12101_00002_nis_uncal.fits
jw02079004001_12101_00001_nis_uncal.fits
jw02079004002_04101_00003_nis_uncal.fits
jw02079004002_06101_00001_nis_uncal.fits
jw02079004002_06101_00003_nis_uncal.fits
jw02079004002_04101_00001_nis_uncal.fits
jw02079004002_04101_00004_nis_uncal.fits
jw02079004002_04101_00002_nis_uncal.fits
jw02079004002_06101_00002_nis_uncal.fits
jw02079004002_02101_00001_nis_uncal.fits
Length = 24 rows
File type: rate
productFilename
---------------------------------------
jw02079004001_10101_00004_nis_rate.fits
jw02079004001_06101_00001_nis_rate.fits
jw02079004001_10101_00001_nis_rate.fits
jw02079004001_10101_00003_nis_rate.fits
jw02079004001_04101_00002_nis_rate.fits
jw02079004001_04101_00001_nis_rate.fits
jw02079004001_06101_00002_nis_rate.fits
jw02079004001_10101_00002_nis_rate.fits
jw02079004001_02101_00001_nis_rate.fits
jw02079004001_04101_00004_nis_rate.fits
...
jw02079004001_12101_00002_nis_rate.fits
jw02079004001_12101_00001_nis_rate.fits
jw02079004002_04101_00003_nis_rate.fits
jw02079004002_06101_00001_nis_rate.fits
jw02079004002_06101_00003_nis_rate.fits
jw02079004002_04101_00001_nis_rate.fits
jw02079004002_04101_00004_nis_rate.fits
jw02079004002_04101_00002_nis_rate.fits
jw02079004002_06101_00002_nis_rate.fits
jw02079004002_02101_00001_nis_rate.fits
Length = 24 rows
File type: level2_association
productFilename
--------------------------------------------------
jw02079-o004_20250113t033328_image2_00548_asn.json
jw02079-o004_20250113t033328_image2_00625_asn.json
jw02079-o004_20250113t033328_image2_00551_asn.json
jw02079-o004_20250113t033328_image2_00549_asn.json
jw02079-o004_20250113t033328_image2_00698_asn.json
jw02079-o004_20250113t033328_image2_00699_asn.json
jw02079-o004_20250113t033328_image2_00624_asn.json
jw02079-o004_20250113t033328_image2_00550_asn.json
jw02079-o004_20250113t033328_image2_00740_asn.json
jw02079-o004_20250113t033328_image2_00696_asn.json
...
jw02079-o004_20250113t033328_image2_00476_asn.json
jw02079-o004_20250113t033328_image2_00477_asn.json
jw02079-o004_20250113t033328_image2_00401_asn.json
jw02079-o004_20250113t033328_image2_00329_asn.json
jw02079-o004_20250113t033328_image2_00327_asn.json
jw02079-o004_20250113t033328_image2_00403_asn.json
jw02079-o004_20250113t033328_image2_00400_asn.json
jw02079-o004_20250113t033328_image2_00402_asn.json
jw02079-o004_20250113t033328_image2_00328_asn.json
jw02079-o004_20250113t033328_image2_00444_asn.json
Length = 24 rows
File type: level3_association
productFilename
--------------------------------------------------
jw02079-o004_20250113t033328_image3_00009_asn.json
**************************************************
**************************************************
Exposure #2 (jw02079-o004_t001_niriss_clear-f200w)
File type: uncal
productFilename
----------------------------------------
jw02079004003_06101_00001_nis_uncal.fits
jw02079004003_04101_00001_nis_uncal.fits
jw02079004003_04101_00002_nis_uncal.fits
jw02079004003_04101_00003_nis_uncal.fits
jw02079004003_06101_00002_nis_uncal.fits
jw02079004003_02101_00001_nis_uncal.fits
jw02079004003_06101_00003_nis_uncal.fits
jw02079004003_04101_00004_nis_uncal.fits
File type: rate
productFilename
---------------------------------------
jw02079004003_06101_00001_nis_rate.fits
jw02079004003_04101_00001_nis_rate.fits
jw02079004003_04101_00002_nis_rate.fits
jw02079004003_04101_00003_nis_rate.fits
jw02079004003_06101_00002_nis_rate.fits
jw02079004003_02101_00001_nis_rate.fits
jw02079004003_06101_00003_nis_rate.fits
jw02079004003_04101_00004_nis_rate.fits
File type: level2_association
productFilename
--------------------------------------------------
jw02079-o004_20250113t033328_image2_00033_asn.json
jw02079-o004_20250113t033328_image2_00107_asn.json
jw02079-o004_20250113t033328_image2_00106_asn.json
jw02079-o004_20250113t033328_image2_00105_asn.json
jw02079-o004_20250113t033328_image2_00032_asn.json
jw02079-o004_20250113t033328_image2_00148_asn.json
jw02079-o004_20250113t033328_image2_00031_asn.json
jw02079-o004_20250113t033328_image2_00104_asn.json
File type: level3_association
productFilename
--------------------------------------------------
jw02079-o004_20250113t033328_image3_00002_asn.json
**************************************************
**************************************************
Exposure #3 (jw02079-o004_t001_niriss_clear-f150w)
File type: uncal
productFilename
----------------------------------------
jw02079004002_08101_00001_nis_uncal.fits
jw02079004002_12101_00001_nis_uncal.fits
jw02079004002_12101_00002_nis_uncal.fits
jw02079004002_10101_00002_nis_uncal.fits
jw02079004002_10101_00004_nis_uncal.fits
jw02079004002_10101_00003_nis_uncal.fits
jw02079004002_10101_00001_nis_uncal.fits
jw02079004002_12101_00003_nis_uncal.fits
File type: rate
productFilename
---------------------------------------
jw02079004002_08101_00001_nis_rate.fits
jw02079004002_12101_00001_nis_rate.fits
jw02079004002_12101_00002_nis_rate.fits
jw02079004002_10101_00002_nis_rate.fits
jw02079004002_10101_00004_nis_rate.fits
jw02079004002_10101_00003_nis_rate.fits
jw02079004002_10101_00001_nis_rate.fits
jw02079004002_12101_00003_nis_rate.fits
File type: level2_association
productFilename
--------------------------------------------------
jw02079-o004_20250113t033328_image2_00296_asn.json
jw02079-o004_20250113t033328_image2_00181_asn.json
jw02079-o004_20250113t033328_image2_00180_asn.json
jw02079-o004_20250113t033328_image2_00254_asn.json
jw02079-o004_20250113t033328_image2_00252_asn.json
jw02079-o004_20250113t033328_image2_00253_asn.json
jw02079-o004_20250113t033328_image2_00255_asn.json
jw02079-o004_20250113t033328_image2_00179_asn.json
File type: level3_association
productFilename
--------------------------------------------------
jw02079-o004_20250113t033328_image3_00005_asn.json
**************************************************
**************************************************
Exposure #4 (jw02079-o004_s000000165_niriss_f115w-gr150c)
File type: uncal
productFilename
----------------------------------------
jw02079004001_05101_00002_nis_uncal.fits
jw02079004001_05101_00001_nis_uncal.fits
jw02079004001_05101_00003_nis_uncal.fits
jw02079004001_11101_00001_nis_uncal.fits
jw02079004001_11101_00002_nis_uncal.fits
jw02079004001_11101_00003_nis_uncal.fits
jw02079004002_05101_00001_nis_uncal.fits
jw02079004002_05101_00002_nis_uncal.fits
jw02079004002_05101_00003_nis_uncal.fits
File type: rate
productFilename
---------------------------------------
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00003_nis_rate.fits
jw02079004001_11101_00001_nis_rate.fits
jw02079004001_11101_00002_nis_rate.fits
jw02079004001_11101_00003_nis_rate.fits
jw02079004002_05101_00001_nis_rate.fits
jw02079004002_05101_00002_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
File type: level2_association
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079-o004_20250113t033328_spec2_00019_asn.json
jw02079-o004_20250113t033328_spec2_00015_asn.json
jw02079-o004_20250113t033328_spec2_00014_asn.json
jw02079-o004_20250113t033328_spec2_00013_asn.json
File type: level3_association
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec3_00005_asn.json
**************************************************
**************************************************
Exposure #5 (jw02079-o004_s000000588_niriss_f115w-gr150c)
File type: uncal
productFilename
----------------------------------------
jw02079004001_05101_00002_nis_uncal.fits
jw02079004001_05101_00001_nis_uncal.fits
jw02079004001_05101_00003_nis_uncal.fits
jw02079004001_11101_00001_nis_uncal.fits
jw02079004001_11101_00002_nis_uncal.fits
jw02079004001_11101_00003_nis_uncal.fits
jw02079004002_05101_00001_nis_uncal.fits
jw02079004002_05101_00002_nis_uncal.fits
jw02079004002_05101_00003_nis_uncal.fits
File type: rate
productFilename
---------------------------------------
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00003_nis_rate.fits
jw02079004001_11101_00001_nis_rate.fits
jw02079004001_11101_00002_nis_rate.fits
jw02079004001_11101_00003_nis_rate.fits
jw02079004002_05101_00001_nis_rate.fits
jw02079004002_05101_00002_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
File type: level2_association
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079-o004_20250113t033328_spec2_00019_asn.json
jw02079-o004_20250113t033328_spec2_00015_asn.json
jw02079-o004_20250113t033328_spec2_00014_asn.json
jw02079-o004_20250113t033328_spec2_00013_asn.json
File type: level3_association
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec3_00005_asn.json
**************************************************
From above, we can see that for each exposure name in the observation list (obs_id_table
), there are many associated files in the background that need to be downloaded as well. This is why we need to work in batches to download.
Downloading Data#
To actually download the products, provide Observations.download_products()
with a list of the filtered products.
Typically, adjustments aren’t needed to the detector1 pipeline, so we can start with the outputs from detector1, the rate files, rather than the uncal files. Because of this, we only need to download the rate and association files. If you need to rerun the detector1 pipeline, productSubGroupDescription
and calib_level
will need to be adjusted in the Observations.filter_products
call to download the uncal files instead.
If the data are proprietary, you may also need to set up your API token. NEVER commit your token to a public repository. An alternative is to create a separate configuration file (config_file.yaml) that is readable only to you and has a key: ‘mast_token’ : API token
To make create a new API token visit to following link: https://auth.mast.stsci.edu/token?suggested_name=Astroquery&suggested_scope=mast:exclusive_access
Note that a version of astroquery >= 0.4.7 is required to have the call flat=True
when downloading the data. If you prefer to use an earlier version, remove that line from the call, download the data, and move all of the files in all downloaded subfolders into the single directory as defined by the download_dir
variable.
# check that the version is above 0.4.7. See above note for more information
import astroquery
astroquery.__version__
'0.4.10'
download_dir = 'data'
# make sure the download directory exists; if not, write a new directory
if not os.path.exists(download_dir):
os.mkdir(download_dir)
# Now let's get the products for each batch of observations, and filter down to only the products of interest.
for index, batch in enumerate(obs_batches):
# Progress indicator...
print('\n'+f'Batch #{index+1} / {len(obs_batches)}')
# Make a list of the `obsid` identifiers from our Astropy table of observations to get products for.
obsids = batch['obsid']
print('Working with the following obsids:')
for number, obs_text in zip(obsids, batch['obs_id']):
print(f"{number} : {obs_text}")
# Get list of products
products = Observations.get_product_list(obsids)
# Filter the products to only get only the products of interest
filtered_products = Observations.filter_products(products,
productType=["SCIENCE", "INFO"],
productSubGroupDescription=["RATE", "ASN"], # Not using "UNCAL" here since we can start with the rate files
calib_level=[2, 3] # not using 1 here since not getting the UNCAL files
)
# Download products for these records.
# The `flat=True` option stores all files in a single directory specified by `download_dir`.
manifest = Observations.download_products(filtered_products,
download_dir=download_dir,
flat=True, # astroquery v0.4.7 or later only
)
print('Products downloaded:\n', filtered_products['productFilename'])
Batch #1 / 123
Working with the following obsids:
113650767 : jw02079-o004_t001_niriss_clear-f115w
113644309 : jw02079-o004_t001_niriss_clear-f200w
113650778 : jw02079-o004_t001_niriss_clear-f150w
236583734 : jw02079-o004_s000000165_niriss_f115w-gr150c
236582178 : jw02079-o004_s000000588_niriss_f115w-gr150c
INFO: 19 of 121 products were duplicates. Only returning 102 unique product(s). [astroquery.mast.utils]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00031_asn.json to data/jw02079-o004_20250113t033328_image2_00031_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00032_asn.json to data/jw02079-o004_20250113t033328_image2_00032_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00033_asn.json to data/jw02079-o004_20250113t033328_image2_00033_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00104_asn.json to data/jw02079-o004_20250113t033328_image2_00104_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00105_asn.json to data/jw02079-o004_20250113t033328_image2_00105_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00106_asn.json to data/jw02079-o004_20250113t033328_image2_00106_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00107_asn.json to data/jw02079-o004_20250113t033328_image2_00107_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00148_asn.json to data/jw02079-o004_20250113t033328_image2_00148_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00179_asn.json to data/jw02079-o004_20250113t033328_image2_00179_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00180_asn.json to data/jw02079-o004_20250113t033328_image2_00180_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00181_asn.json to data/jw02079-o004_20250113t033328_image2_00181_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00252_asn.json to data/jw02079-o004_20250113t033328_image2_00252_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00253_asn.json to data/jw02079-o004_20250113t033328_image2_00253_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00254_asn.json to data/jw02079-o004_20250113t033328_image2_00254_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00255_asn.json to data/jw02079-o004_20250113t033328_image2_00255_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00296_asn.json to data/jw02079-o004_20250113t033328_image2_00296_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00327_asn.json to data/jw02079-o004_20250113t033328_image2_00327_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00328_asn.json to data/jw02079-o004_20250113t033328_image2_00328_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00329_asn.json to data/jw02079-o004_20250113t033328_image2_00329_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00400_asn.json to data/jw02079-o004_20250113t033328_image2_00400_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00401_asn.json to data/jw02079-o004_20250113t033328_image2_00401_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00402_asn.json to data/jw02079-o004_20250113t033328_image2_00402_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00403_asn.json to data/jw02079-o004_20250113t033328_image2_00403_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00444_asn.json to data/jw02079-o004_20250113t033328_image2_00444_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00475_asn.json to data/jw02079-o004_20250113t033328_image2_00475_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00476_asn.json to data/jw02079-o004_20250113t033328_image2_00476_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00477_asn.json to data/jw02079-o004_20250113t033328_image2_00477_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00548_asn.json to data/jw02079-o004_20250113t033328_image2_00548_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00549_asn.json to data/jw02079-o004_20250113t033328_image2_00549_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00550_asn.json to data/jw02079-o004_20250113t033328_image2_00550_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00551_asn.json to data/jw02079-o004_20250113t033328_image2_00551_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00592_asn.json to data/jw02079-o004_20250113t033328_image2_00592_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00623_asn.json to data/jw02079-o004_20250113t033328_image2_00623_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00624_asn.json to data/jw02079-o004_20250113t033328_image2_00624_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00625_asn.json to data/jw02079-o004_20250113t033328_image2_00625_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00696_asn.json to data/jw02079-o004_20250113t033328_image2_00696_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00697_asn.json to data/jw02079-o004_20250113t033328_image2_00697_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00698_asn.json to data/jw02079-o004_20250113t033328_image2_00698_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00699_asn.json to data/jw02079-o004_20250113t033328_image2_00699_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image2_00740_asn.json to data/jw02079-o004_20250113t033328_image2_00740_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image3_00002_asn.json to data/jw02079-o004_20250113t033328_image3_00002_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image3_00005_asn.json to data/jw02079-o004_20250113t033328_image3_00005_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_image3_00009_asn.json to data/jw02079-o004_20250113t033328_image3_00009_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00013_asn.json to data/jw02079-o004_20250113t033328_spec2_00013_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00014_asn.json to data/jw02079-o004_20250113t033328_spec2_00014_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00015_asn.json to data/jw02079-o004_20250113t033328_spec2_00015_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00019_asn.json to data/jw02079-o004_20250113t033328_spec2_00019_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00020_asn.json to data/jw02079-o004_20250113t033328_spec2_00020_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00021_asn.json to data/jw02079-o004_20250113t033328_spec2_00021_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00025_asn.json to data/jw02079-o004_20250113t033328_spec2_00025_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00026_asn.json to data/jw02079-o004_20250113t033328_spec2_00026_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00027_asn.json to data/jw02079-o004_20250113t033328_spec2_00027_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec3_00005_asn.json to data/jw02079-o004_20250113t033328_spec3_00005_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_02101_00001_nis_rate.fits to data/jw02079004001_02101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_04101_00001_nis_rate.fits to data/jw02079004001_04101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_04101_00002_nis_rate.fits to data/jw02079004001_04101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_04101_00003_nis_rate.fits to data/jw02079004001_04101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_04101_00004_nis_rate.fits to data/jw02079004001_04101_00004_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_05101_00001_nis_rate.fits to data/jw02079004001_05101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_05101_00002_nis_rate.fits to data/jw02079004001_05101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_05101_00003_nis_rate.fits to data/jw02079004001_05101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_06101_00001_nis_rate.fits to data/jw02079004001_06101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_06101_00002_nis_rate.fits to data/jw02079004001_06101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_06101_00003_nis_rate.fits to data/jw02079004001_06101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_08101_00001_nis_rate.fits to data/jw02079004001_08101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_10101_00001_nis_rate.fits to data/jw02079004001_10101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_10101_00002_nis_rate.fits to data/jw02079004001_10101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_10101_00003_nis_rate.fits to data/jw02079004001_10101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_10101_00004_nis_rate.fits to data/jw02079004001_10101_00004_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_11101_00001_nis_rate.fits to data/jw02079004001_11101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_11101_00002_nis_rate.fits to data/jw02079004001_11101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_11101_00003_nis_rate.fits to data/jw02079004001_11101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_12101_00001_nis_rate.fits to data/jw02079004001_12101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_12101_00002_nis_rate.fits to data/jw02079004001_12101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_12101_00003_nis_rate.fits to data/jw02079004001_12101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_02101_00001_nis_rate.fits to data/jw02079004002_02101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_04101_00001_nis_rate.fits to data/jw02079004002_04101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_04101_00002_nis_rate.fits to data/jw02079004002_04101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_04101_00003_nis_rate.fits to data/jw02079004002_04101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_04101_00004_nis_rate.fits to data/jw02079004002_04101_00004_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_05101_00001_nis_rate.fits to data/jw02079004002_05101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_05101_00002_nis_rate.fits to data/jw02079004002_05101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_05101_00003_nis_rate.fits to data/jw02079004002_05101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_06101_00001_nis_rate.fits to data/jw02079004002_06101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_06101_00002_nis_rate.fits to data/jw02079004002_06101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_06101_00003_nis_rate.fits to data/jw02079004002_06101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_08101_00001_nis_rate.fits to data/jw02079004002_08101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_10101_00001_nis_rate.fits to data/jw02079004002_10101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_10101_00002_nis_rate.fits to data/jw02079004002_10101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_10101_00003_nis_rate.fits to data/jw02079004002_10101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_10101_00004_nis_rate.fits to data/jw02079004002_10101_00004_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_12101_00001_nis_rate.fits to data/jw02079004002_12101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_12101_00002_nis_rate.fits to data/jw02079004002_12101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_12101_00003_nis_rate.fits to data/jw02079004002_12101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_02101_00001_nis_rate.fits to data/jw02079004003_02101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_04101_00001_nis_rate.fits to data/jw02079004003_04101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_04101_00002_nis_rate.fits to data/jw02079004003_04101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_04101_00003_nis_rate.fits to data/jw02079004003_04101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_04101_00004_nis_rate.fits to data/jw02079004003_04101_00004_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_06101_00001_nis_rate.fits to data/jw02079004003_06101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_06101_00002_nis_rate.fits to data/jw02079004003_06101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_06101_00003_nis_rate.fits to data/jw02079004003_06101_00003_nis_rate.fits ...
[Done]
Products downloaded:
productFilename
--------------------------------------------------
jw02079-o004_20250113t033328_image2_00548_asn.json
jw02079004001_10101_00004_nis_rate.fits
jw02079-o004_20250113t033328_image2_00625_asn.json
jw02079004001_06101_00001_nis_rate.fits
jw02079-o004_20250113t033328_image2_00551_asn.json
jw02079004001_10101_00001_nis_rate.fits
jw02079-o004_20250113t033328_image2_00549_asn.json
jw02079004001_10101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
...
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_image3_00002_asn.json
jw02079-o004_20250113t033328_image3_00009_asn.json
jw02079-o004_20250113t033328_image3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 121 rows
Batch #2 / 123
Working with the following obsids:
236582038 : jw02079-o004_s000001004_niriss_f150w-gr150c
236582704 : jw02079-o004_s000001322_niriss_f150w-gr150r
236583405 : jw02079-o004_s000000927_niriss_f115w-gr150r
236582036 : jw02079-o004_s000001004_niriss_f150w-gr150r
236582400 : jw02079-o004_s000000530_niriss_f200w-gr150r
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00004_asn.json to data/jw02079-o004_20250113t033328_spec2_00004_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00005_asn.json to data/jw02079-o004_20250113t033328_spec2_00005_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00006_asn.json to data/jw02079-o004_20250113t033328_spec2_00006_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00007_asn.json to data/jw02079-o004_20250113t033328_spec2_00007_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00008_asn.json to data/jw02079-o004_20250113t033328_spec2_00008_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00009_asn.json to data/jw02079-o004_20250113t033328_spec2_00009_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00010_asn.json to data/jw02079-o004_20250113t033328_spec2_00010_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00011_asn.json to data/jw02079-o004_20250113t033328_spec2_00011_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00012_asn.json to data/jw02079-o004_20250113t033328_spec2_00012_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00016_asn.json to data/jw02079-o004_20250113t033328_spec2_00016_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00017_asn.json to data/jw02079-o004_20250113t033328_spec2_00017_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00018_asn.json to data/jw02079-o004_20250113t033328_spec2_00018_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00022_asn.json to data/jw02079-o004_20250113t033328_spec2_00022_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00023_asn.json to data/jw02079-o004_20250113t033328_spec2_00023_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00024_asn.json to data/jw02079-o004_20250113t033328_spec2_00024_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00028_asn.json to data/jw02079-o004_20250113t033328_spec2_00028_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00029_asn.json to data/jw02079-o004_20250113t033328_spec2_00029_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00030_asn.json to data/jw02079-o004_20250113t033328_spec2_00030_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec3_00002_asn.json to data/jw02079-o004_20250113t033328_spec3_00002_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec3_00003_asn.json to data/jw02079-o004_20250113t033328_spec3_00003_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec3_00004_asn.json to data/jw02079-o004_20250113t033328_spec3_00004_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec3_00006_asn.json to data/jw02079-o004_20250113t033328_spec3_00006_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_03101_00001_nis_rate.fits to data/jw02079004001_03101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_03101_00002_nis_rate.fits to data/jw02079004001_03101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_03101_00003_nis_rate.fits to data/jw02079004001_03101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_09101_00001_nis_rate.fits to data/jw02079004001_09101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_09101_00002_nis_rate.fits to data/jw02079004001_09101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004001_09101_00003_nis_rate.fits to data/jw02079004001_09101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_03101_00001_nis_rate.fits to data/jw02079004002_03101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_03101_00002_nis_rate.fits to data/jw02079004002_03101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_03101_00003_nis_rate.fits to data/jw02079004002_03101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_09101_00001_nis_rate.fits to data/jw02079004002_09101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_09101_00002_nis_rate.fits to data/jw02079004002_09101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_09101_00003_nis_rate.fits to data/jw02079004002_09101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_11101_00001_nis_rate.fits to data/jw02079004002_11101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_11101_00002_nis_rate.fits to data/jw02079004002_11101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004002_11101_00003_nis_rate.fits to data/jw02079004002_11101_00003_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_03101_00001_nis_rate.fits to data/jw02079004003_03101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_03101_00002_nis_rate.fits to data/jw02079004003_03101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_03101_00003_nis_rate.fits to data/jw02079004003_03101_00003_nis_rate.fits ...
[Done]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 47 rows
Batch #3 / 123
Working with the following obsids:
236582705 : jw02079-o004_s000000554_niriss_f150w-gr150c
236583735 : jw02079-o004_s000000442_niriss_f150w-gr150c
236582013 : jw02079-o004_s000000816_niriss_f150w-gr150c
236582436 : jw02079-o004_s000000292_niriss_f115w-gr150r
230239562 : jw02079-o004_s000000596_niriss_f200w-gr150r
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 47 rows
Batch #4 / 123
Working with the following obsids:
236582363 : jw02079-o004_s000001405_niriss_f115w-gr150r
230239565 : jw02079-o004_s000000746_niriss_f200w-gr150c
236583308 : jw02079-o004_s000000708_niriss_f150w-gr150c
230239567 : jw02079-o004_s000000373_niriss_f200w-gr150c
236583401 : jw02079-o004_s000000987_niriss_f200w-gr150r
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00001_asn.json to data/jw02079-o004_20250113t033328_spec2_00001_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00002_asn.json to data/jw02079-o004_20250113t033328_spec2_00002_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec2_00003_asn.json to data/jw02079-o004_20250113t033328_spec2_00003_asn.json ...
[Done]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20250113t033328_spec3_00001_asn.json to data/jw02079-o004_20250113t033328_spec3_00001_asn.json ...
[Done]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_05101_00001_nis_rate.fits to data/jw02079004003_05101_00001_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_05101_00002_nis_rate.fits to data/jw02079004003_05101_00002_nis_rate.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079004003_05101_00003_nis_rate.fits to data/jw02079004003_05101_00003_nis_rate.fits ...
[Done]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 47 rows
Batch #5 / 123
Working with the following obsids:
236582364 : jw02079-o004_s000000884_niriss_f115w-gr150r
230239569 : jw02079-o004_s000000529_niriss_f200w-gr150r
231802354 : jw02079-o004_s000000461_niriss_f115w-gr150c
236582365 : jw02079-o004_s000001537_niriss_f115w-gr150r
236582749 : jw02079-o004_s000000357_niriss_f150w-gr150r
INFO: 19 of 71 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 71 rows
Batch #6 / 123
Working with the following obsids:
230242039 : jw02079-o004_s000001117_niriss_f200w-gr150c
236582131 : jw02079-o004_s000001433_niriss_f115w-gr150r
236582366 : jw02079-o004_s000000410_niriss_f115w-gr150c
236582367 : jw02079-o004_s000000461_niriss_f150w-gr150r
236582150 : jw02079-o004_s000000952_niriss_f200w-gr150c
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 59 rows
Batch #7 / 123
Working with the following obsids:
236583309 : jw02079-o004_s000000556_niriss_f200w-gr150c
236582824 : jw02079-o004_s000000871_niriss_f150w-gr150r
230239579 : jw02079-o004_s000000785_niriss_f200w-gr150r
236583310 : jw02079-o004_s000000975_niriss_f115w-gr150r
236582706 : jw02079-o004_s000000357_niriss_f150w-gr150c
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 47 rows
Batch #8 / 123
Working with the following obsids:
236582707 : jw02079-o004_s000000245_niriss_f150w-gr150r
230239586 : jw02079-o004_s000000720_niriss_f200w-gr150c
236582087 : jw02079-o004_s000001107_niriss_f200w-gr150c
236582088 : jw02079-o004_s000001323_niriss_f200w-gr150c
236582828 : jw02079-o004_s000001281_niriss_f150w-gr150r
INFO: 21 of 35 products were duplicates. Only returning 14 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 35 rows
Batch #9 / 123
Working with the following obsids:
236583311 : jw02079-o004_s000000265_niriss_f200w-gr150r
236582368 : jw02079-o004_s000000916_niriss_f200w-gr150c
236582789 : jw02079-o004_s000001346_niriss_f150w-gr150c
236583736 : jw02079-o004_s000000757_niriss_f200w-gr150r
236582089 : jw02079-o004_s000000781_niriss_f150w-gr150r
INFO: 7 of 35 products were duplicates. Only returning 28 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00005_asn.json
jw02079-o004_20250113t033328_spec2_00005_asn.json
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 35 rows
Batch #10 / 123
Working with the following obsids:
236582369 : jw02079-o004_s000001143_niriss_f115w-gr150c
236582370 : jw02079-o004_s000000916_niriss_f200w-gr150r
236582371 : jw02079-o004_s000001067_niriss_f115w-gr150r
236583312 : jw02079-o004_s000000702_niriss_f200w-gr150r
230242048 : jw02079-o004_s000000449_niriss_f150w-gr150c
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 59 rows
Batch #11 / 123
Working with the following obsids:
236582205 : jw02079-o004_s000000862_niriss_f115w-gr150r
236582708 : jw02079-o004_s000000416_niriss_f150w-gr150r
236582090 : jw02079-o004_s000001276_niriss_f200w-gr150c
236582091 : jw02079-o004_s000000727_niriss_f115w-gr150c
236582734 : jw02079-o004_s000000690_niriss_f150w-gr150r
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 59 rows
Batch #12 / 123
Working with the following obsids:
236582733 : jw02079-o004_s000000645_niriss_f150w-gr150c
236583737 : jw02079-o004_s000000487_niriss_f150w-gr150r
236582723 : jw02079-o004_s000000245_niriss_f150w-gr150c
236582132 : jw02079-o004_s000000875_niriss_f115w-gr150c
230239594 : jw02079-o004_s000000220_niriss_f150w-gr150r
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 47 rows
Batch #13 / 123
Working with the following obsids:
236582829 : jw02079-o004_s000000139_niriss_f150w-gr150c
236583738 : jw02079-o004_s000001456_niriss_f115w-gr150c
236582760 : jw02079-o004_s000000225_niriss_f150w-gr150r
236582135 : jw02079-o004_s000001192_niriss_f115w-gr150r
236582092 : jw02079-o004_s000000936_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 71 rows
Batch #14 / 123
Working with the following obsids:
236582023 : jw02079-o004_s000000795_niriss_f150w-gr150c
236583313 : jw02079-o004_s000001027_niriss_f200w-gr150c
236582843 : jw02079-o004_s000001134_niriss_f150w-gr150r
236582014 : jw02079-o004_s000000352_niriss_f150w-gr150c
236582372 : jw02079-o004_s000000547_niriss_f200w-gr150r
INFO: 7 of 35 products were duplicates. Only returning 28 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00004_asn.json
jw02079004003_03101_00003_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 35 rows
Batch #15 / 123
Working with the following obsids:
236582093 : jw02079-o004_s000000936_niriss_f115w-gr150c
236582094 : jw02079-o004_s000000254_niriss_f200w-gr150c
236582780 : jw02079-o004_s000001432_niriss_f115w-gr150r
236582842 : jw02079-o004_s000001281_niriss_f150w-gr150c
236583314 : jw02079-o004_s000000827_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 71 rows
Batch #16 / 123
Working with the following obsids:
236583392 : jw02079-o004_s000000462_niriss_f115w-gr150c
230239599 : jw02079-o004_s000000171_niriss_f115w-gr150r
236582373 : jw02079-o004_s000000540_niriss_f115w-gr150r
236582714 : jw02079-o004_s000000578_niriss_f150w-gr150r
236582095 : jw02079-o004_s000001240_niriss_f200w-gr150c
INFO: 19 of 71 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 71 rows
Batch #17 / 123
Working with the following obsids:
236582709 : jw02079-o004_s000001302_niriss_f150w-gr150r
230240324 : jw02079-o004_s000000101_niriss_f115w-gr150r
236583315 : jw02079-o004_s000000270_niriss_f200w-gr150c
230242055 : jw02079-o004_s000000806_niriss_f200w-gr150r
236582374 : jw02079-o004_s000000530_niriss_f150w-gr150r
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 47 rows
Batch #18 / 123
Working with the following obsids:
236582710 : jw02079-o004_s000000633_niriss_f150w-gr150c
236582728 : jw02079-o004_s000001062_niriss_f150w-gr150r
236582191 : jw02079-o004_s000001276_niriss_f115w-gr150r
230239609 : jw02079-o004_s000000962_niriss_f200w-gr150c
236582096 : jw02079-o004_s000000062_niriss_f115w-gr150r
INFO: 19 of 59 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079-o004_20250113t033328_spec2_00029_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 59 rows
Batch #19 / 123
Working with the following obsids:
230239610 : jw02079-o004_s000000908_niriss_f200w-gr150c
236582097 : jw02079-o004_s000001326_niriss_f115w-gr150c
236583316 : jw02079-o004_s000000743_niriss_f115w-gr150c
236582720 : jw02079-o004_s000001432_niriss_f115w-gr150c
236582114 : jw02079-o004_s000000862_niriss_f150w-gr150c
INFO: 38 of 71 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 71 rows
Batch #20 / 123
Working with the following obsids:
236582098 : jw02079-o004_s000000290_niriss_f200w-gr150r
230239612 : jw02079-o004_s000001116_niriss_f200w-gr150c
236582711 : jw02079-o004_s000000574_niriss_f150w-gr150c
236583739 : jw02079-o004_s000000331_niriss_f200w-gr150c
236582712 : jw02079-o004_s000000326_niriss_f150w-gr150c
INFO: 14 of 35 products were duplicates. Only returning 21 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 35 rows
Batch #21 / 123
Working with the following obsids:
236582099 : jw02079-o004_s000000526_niriss_f200w-gr150r
236582375 : jw02079-o004_s000001142_niriss_f115w-gr150r
236582813 : jw02079-o004_s000001277_niriss_f150w-gr150r
236582208 : jw02079-o004_s000000862_niriss_f115w-gr150c
236582799 : jw02079-o004_s000001149_niriss_f150w-gr150r
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 59 rows
Batch #22 / 123
Working with the following obsids:
236582716 : jw02079-o004_s000001346_niriss_f150w-gr150r
236582100 : jw02079-o004_s000001237_niriss_f200w-gr150r
236582101 : jw02079-o004_s000001568_niriss_f115w-gr150c
236583317 : jw02079-o004_s000001248_niriss_f200w-gr150r
236582713 : jw02079-o004_s000000930_niriss_f150w-gr150r
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 47 rows
Batch #23 / 123
Working with the following obsids:
236582390 : jw02079-o004_s000001394_niriss_f200w-gr150c
236583318 : jw02079-o004_s000000509_niriss_f115w-gr150c
236582143 : jw02079-o004_s000000197_niriss_f115w-gr150r
230240288 : jw02079-o004_s000000094_niriss_f115w-gr150r
236582170 : jw02079-o004_s000001192_niriss_f115w-gr150c
INFO: 38 of 83 products were duplicates. Only returning 45 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 83 rows
Batch #24 / 123
Working with the following obsids:
236583319 : jw02079-o004_s000000556_niriss_f200w-gr150r
236583740 : jw02079-o004_s000001456_niriss_f200w-gr150c
236583320 : jw02079-o004_s000000533_niriss_f200w-gr150c
236582102 : jw02079-o004_s000000981_niriss_f115w-gr150c
236582383 : jw02079-o004_s000000170_niriss_f200w-gr150c
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00014_asn.json
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 47 rows
Batch #25 / 123
Working with the following obsids:
236582772 : jw02079-o004_s000001162_niriss_f150w-gr150c
236582207 : jw02079-o004_s000001263_niriss_f200w-gr150r
230239623 : jw02079-o004_s000001097_niriss_f200w-gr150c
236582015 : jw02079-o004_s000000795_niriss_f150w-gr150r
236582103 : jw02079-o004_s000000654_niriss_f115w-gr150r
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 47 rows
Batch #26 / 123
Working with the following obsids:
236582724 : jw02079-o004_s000000648_niriss_f150w-gr150c
236582104 : jw02079-o004_s000000862_niriss_f150w-gr150r
236582804 : jw02079-o004_s000000808_niriss_f150w-gr150c
236582105 : jw02079-o004_s000000781_niriss_f150w-gr150c
236582034 : jw02079-o004_s000000644_niriss_f150w-gr150c
INFO: 21 of 35 products were duplicates. Only returning 14 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00010_asn.json
jw02079004002_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00011_asn.json
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00009_asn.json
jw02079-o004_20250113t033328_spec2_00009_asn.json
jw02079-o004_20250113t033328_spec2_00009_asn.json
jw02079-o004_20250113t033328_spec2_00009_asn.json
jw02079004002_11101_00001_nis_rate.fits
jw02079004002_11101_00001_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 35 rows
Batch #27 / 123
Working with the following obsids:
236582758 : jw02079-o004_s000000820_niriss_f150w-gr150r
236582117 : jw02079-o004_s000000150_niriss_f115w-gr150r
236582106 : jw02079-o004_s000000588_niriss_f115w-gr150r
236582376 : jw02079-o004_s000000545_niriss_f200w-gr150c
230239630 : jw02079-o004_s000000455_niriss_f150w-gr150c
INFO: 19 of 59 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079-o004_20250113t033328_spec2_00029_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 59 rows
Batch #28 / 123
Working with the following obsids:
236583741 : jw02079-o004_s000001513_niriss_f115w-gr150r
236582016 : jw02079-o004_s000000965_niriss_f150w-gr150r
236582852 : jw02079-o004_s000000485_niriss_f150w-gr150r
236582037 : jw02079-o004_s000001032_niriss_f150w-gr150c
236582165 : jw02079-o004_s000000710_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 59 rows
Batch #29 / 123
Working with the following obsids:
236582377 : jw02079-o004_s000001067_niriss_f115w-gr150c
236583742 : jw02079-o004_s000001456_niriss_f200w-gr150r
236583770 : jw02079-o004_s000000092_niriss_f115w-gr150r
236582107 : jw02079-o004_s000000882_niriss_f200w-gr150c
236582848 : jw02079-o004_s000000774_niriss_f150w-gr150r
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 59 rows
Batch #30 / 123
Working with the following obsids:
236582844 : jw02079-o004_s000001134_niriss_f150w-gr150c
236582467 : jw02079-o004_s000000669_niriss_f115w-gr150r
236583321 : jw02079-o004_s000000975_niriss_f115w-gr150c
236582806 : jw02079-o004_s000000826_niriss_f150w-gr150r
230239638 : jw02079-o004_s000000699_niriss_f200w-gr150r
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 59 rows
Batch #31 / 123
Working with the following obsids:
236582039 : jw02079-o004_s000001020_niriss_f150w-gr150c
236583322 : jw02079-o004_s000000864_niriss_f200w-gr150c
230239639 : jw02079-o004_s000000720_niriss_f200w-gr150r
230239641 : jw02079-o004_s000001291_niriss_f150w-gr150c
236582378 : jw02079-o004_s000000947_niriss_f115w-gr150r
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 47 rows
Batch #32 / 123
Working with the following obsids:
236582017 : jw02079-o004_s000000578_niriss_f150w-gr150c
236582715 : jw02079-o004_s000001254_niriss_f150w-gr150r
236583743 : jw02079-o004_s000001293_niriss_f115w-gr150r
236582800 : jw02079-o004_s000000534_niriss_f150w-gr150r
230242075 : jw02079-o004_s000000449_niriss_f150w-gr150r
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 47 rows
Batch #33 / 123
Working with the following obsids:
236582108 : jw02079-o004_s000001276_niriss_f200w-gr150r
236582111 : jw02079-o004_s000000952_niriss_f200w-gr150r
236582193 : jw02079-o004_s000000288_niriss_f115w-gr150r
236582462 : jw02079-o004_s000000851_niriss_f115w-gr150r
236582786 : jw02079-o004_s000001229_niriss_f150w-gr150c
INFO: 26 of 59 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079-o004_20250113t033328_spec2_00029_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 59 rows
Batch #34 / 123
Working with the following obsids:
236582788 : jw02079-o004_s000001229_niriss_f150w-gr150r
236582379 : jw02079-o004_s000000334_niriss_f200w-gr150r
230239652 : jw02079-o004_s000000467_niriss_f150w-gr150c
236582184 : jw02079-o004_s000001237_niriss_f200w-gr150c
236582120 : jw02079-o004_s000001433_niriss_f200w-gr150c
INFO: 7 of 35 products were duplicates. Only returning 28 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 35 rows
Batch #35 / 123
Working with the following obsids:
236582380 : jw02079-o004_s000000884_niriss_f115w-gr150c
236582743 : jw02079-o004_s000000237_niriss_f150w-gr150r
236583744 : jw02079-o004_s000000442_niriss_f115w-gr150c
236582109 : jw02079-o004_s000000675_niriss_f115w-gr150r
236582726 : jw02079-o004_s000000935_niriss_f150w-gr150r
INFO: 26 of 71 products were duplicates. Only returning 45 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
...
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 71 rows
Batch #36 / 123
Working with the following obsids:
231808007 : jw02079-o004_s000000426_niriss_f115w-gr150c
236582146 : jw02079-o004_s000001433_niriss_f200w-gr150r
236582188 : jw02079-o004_s000001263_niriss_f200w-gr150c
236582834 : jw02079-o004_s000001287_niriss_f150w-gr150c
236583747 : jw02079-o004_s000000880_niriss_f115w-gr150r
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 59 rows
Batch #37 / 123
Working with the following obsids:
236582381 : jw02079-o004_s000001201_niriss_f200w-gr150r
236582412 : jw02079-o004_s000000701_niriss_f115w-gr150c
236582466 : jw02079-o004_s000000916_niriss_f150w-gr150c
236583374 : jw02079-o004_s000000634_niriss_f150w-gr150r
236582110 : jw02079-o004_s000000597_niriss_f200w-gr150c
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 47 rows
Batch #38 / 123
Working with the following obsids:
236583749 : jw02079-o004_s000000442_niriss_f115w-gr150r
236582128 : jw02079-o004_s000001126_niriss_f115w-gr150r
236582465 : jw02079-o004_s000000916_niriss_f150w-gr150r
236582801 : jw02079-o004_s000000637_niriss_f150w-gr150c
236583323 : jw02079-o004_s000000486_niriss_f115w-gr150r
INFO: 38 of 71 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 71 rows
Batch #39 / 123
Working with the following obsids:
236582198 : jw02079-o004_s000000494_niriss_f200w-gr150c
236582382 : jw02079-o004_s000001415_niriss_f115w-gr150r
236583327 : jw02079-o004_s000000203_niriss_f200w-gr150c
230239678 : jw02079-o004_s000000630_niriss_f200w-gr150c
236582815 : jw02079-o004_s000000464_niriss_f150w-gr150c
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 47 rows
Batch #40 / 123
Working with the following obsids:
236582419 : jw02079-o004_s000000459_niriss_f115w-gr150c
230239681 : jw02079-o004_s000000962_niriss_f200w-gr150r
236583745 : jw02079-o004_s000000714_niriss_f115w-gr150c
236582384 : jw02079-o004_s000000998_niriss_f150w-gr150c
236582385 : jw02079-o004_s000000897_niriss_f200w-gr150r
INFO: 26 of 59 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079-o004_20250113t033328_spec2_00025_asn.json
...
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 59 rows
Batch #41 / 123
Working with the following obsids:
236582212 : jw02079-o004_s000001437_niriss_f115w-gr150r
236582453 : jw02079-o004_s000000910_niriss_f200w-gr150c
236582386 : jw02079-o004_s000001415_niriss_f115w-gr150c
236582427 : jw02079-o004_s000001165_niriss_f115w-gr150c
236582387 : jw02079-o004_s000000459_niriss_f115w-gr150r
INFO: 38 of 83 products were duplicates. Only returning 45 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 83 rows
Batch #42 / 123
Working with the following obsids:
236582388 : jw02079-o004_s000001455_niriss_f115w-gr150r
236582035 : jw02079-o004_s000001345_niriss_f150w-gr150r
230239687 : jw02079-o004_s000000908_niriss_f200w-gr150r
236582750 : jw02079-o004_s000000674_niriss_f150w-gr150c
236582112 : jw02079-o004_s000000875_niriss_f115w-gr150r
INFO: 19 of 59 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079-o004_20250113t033328_spec2_00029_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 59 rows
Batch #43 / 123
Working with the following obsids:
236583335 : jw02079-o004_s000000702_niriss_f200w-gr150c
236582185 : jw02079-o004_s000000710_niriss_f115w-gr150r
236582721 : jw02079-o004_s000000633_niriss_f150w-gr150r
236582456 : jw02079-o004_s000000244_niriss_f115w-gr150r
236582197 : jw02079-o004_s000000281_niriss_f200w-gr150c
INFO: 26 of 59 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079-o004_20250113t033328_spec2_00029_asn.json
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 59 rows
Batch #44 / 123
Working with the following obsids:
236582722 : jw02079-o004_s000000648_niriss_f150w-gr150r
236583337 : jw02079-o004_s000000864_niriss_f200w-gr150r
236583339 : jw02079-o004_s000001389_niriss_f200w-gr150c
236582126 : jw02079-o004_s000000781_niriss_f200w-gr150c
236582389 : jw02079-o004_s000000897_niriss_f200w-gr150c
INFO: 14 of 35 products were duplicates. Only returning 21 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079-o004_20250113t033328_spec2_00002_asn.json
...
jw02079004002_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00011_asn.json
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 35 rows
Batch #45 / 123
Working with the following obsids:
236582738 : jw02079-o004_s000001238_niriss_f150w-gr150r
236583386 : jw02079-o004_s000001139_niriss_f200w-gr150r
231810089 : jw02079-o004_s000000101_niriss_f115w-gr150c
236582147 : jw02079-o004_s000001392_niriss_f200w-gr150c
230239698 : jw02079-o004_s000000511_niriss_f200w-gr150r
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 47 rows
Batch #46 / 123
Working with the following obsids:
236583430 : jw02079-o004_s000001403_niriss_f200w-gr150r
236582113 : jw02079-o004_s000001433_niriss_f115w-gr150c
236582018 : jw02079-o004_s000000644_niriss_f150w-gr150r
230239704 : jw02079-o004_s000000461_niriss_f115w-gr150r
230239705 : jw02079-o004_s000000723_niriss_f200w-gr150r
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 59 rows
Batch #47 / 123
Working with the following obsids:
236583345 : jw02079-o004_s000000662_niriss_f115w-gr150r
230239709 : jw02079-o004_s000000375_niriss_f200w-gr150c
236582853 : jw02079-o004_s000000485_niriss_f150w-gr150c
236582391 : jw02079-o004_s000000244_niriss_f115w-gr150c
236583348 : jw02079-o004_s000000117_niriss_f200w-gr150c
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 59 rows
Batch #48 / 123
Working with the following obsids:
236583350 : jw02079-o004_s000000523_niriss_f200w-gr150r
236582190 : jw02079-o004_s000000891_niriss_f115w-gr150r
236582836 : jw02079-o004_s000001287_niriss_f150w-gr150r
236582115 : jw02079-o004_s000000290_niriss_f200w-gr150c
236582455 : jw02079-o004_s000001201_niriss_f200w-gr150c
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 47 rows
Batch #49 / 123
Working with the following obsids:
236582468 : jw02079-o004_s000001455_niriss_f115w-gr150c
236583352 : jw02079-o004_s000000405_niriss_f200w-gr150c
236582725 : jw02079-o004_s000000609_niriss_f150w-gr150r
236582392 : jw02079-o004_s000001165_niriss_f115w-gr150r
236582116 : jw02079-o004_s000000507_niriss_f200w-gr150c
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 59 rows
Batch #50 / 123
Working with the following obsids:
230239719 : jw02079-o004_s000000630_niriss_f200w-gr150r
236582393 : jw02079-o004_s000000836_niriss_f115w-gr150r
236582394 : jw02079-o004_s000001537_niriss_f115w-gr150c
236582395 : jw02079-o004_s000000910_niriss_f200w-gr150r
236582727 : jw02079-o004_s000001322_niriss_f150w-gr150c
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 59 rows
Batch #51 / 123
Working with the following obsids:
230239722 : jw02079-o004_s000000470_niriss_f150w-gr150c
236582471 : jw02079-o004_s000001307_niriss_f150w-gr150c
236582396 : jw02079-o004_s000001539_niriss_f115w-gr150c
230239723 : jw02079-o004_s000000681_niriss_f200w-gr150r
236582118 : jw02079-o004_s000000448_niriss_f115w-gr150r
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 59 rows
Batch #52 / 123
Working with the following obsids:
236584447 : jw02079-o004_s000001464_niriss_f115w-gr150c
236582180 : jw02079-o004_s000000682_niriss_f200w-gr150r
236583360 : jw02079-o004_s000000557_niriss_f200w-gr150r
236583416 : jw02079-o004_s000001389_niriss_f200w-gr150r
236582202 : jw02079-o004_s000000727_niriss_f115w-gr150r
INFO: 14 of 59 products were duplicates. Only returning 45 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 59 rows
Batch #53 / 123
Working with the following obsids:
236582739 : jw02079-o004_s000001238_niriss_f150w-gr150c
236582127 : jw02079-o004_s000001392_niriss_f200w-gr150r
236582119 : jw02079-o004_s000000288_niriss_f115w-gr150c
236582831 : jw02079-o004_s000000324_niriss_f150w-gr150r
236582730 : jw02079-o004_s000000706_niriss_f150w-gr150c
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 47 rows
Batch #54 / 123
Working with the following obsids:
236582817 : jw02079-o004_s000000869_niriss_f150w-gr150r
236583748 : jw02079-o004_s000000487_niriss_f115w-gr150c
236583362 : jw02079-o004_s000000905_niriss_f200w-gr150r
236582397 : jw02079-o004_s000000410_niriss_f200w-gr150c
236582398 : jw02079-o004_s000001472_niriss_f115w-gr150r
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 59 rows
Batch #55 / 123
Working with the following obsids:
236582830 : jw02079-o004_s000000498_niriss_f150w-gr150r
236583746 : jw02079-o004_s000000487_niriss_f115w-gr150r
236582399 : jw02079-o004_s000001394_niriss_f200w-gr150r
236583424 : jw02079-o004_s000001461_niriss_f115w-gr150c
236582819 : jw02079-o004_s000000464_niriss_f150w-gr150r
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 59 rows
Batch #56 / 123
Working with the following obsids:
236582810 : jw02079-o004_s000000169_niriss_f150w-gr150r
236583363 : jw02079-o004_s000000858_niriss_f200w-gr150r
236583364 : jw02079-o004_s000001260_niriss_f200w-gr150r
236582213 : jw02079-o004_s000000187_niriss_f115w-gr150r
236583365 : jw02079-o004_s000000827_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 59 rows
Batch #57 / 123
Working with the following obsids:
236582802 : jw02079-o004_s000000637_niriss_f150w-gr150r
236582401 : jw02079-o004_s000000671_niriss_f115w-gr150r
230239756 : jw02079-o004_s000000785_niriss_f200w-gr150c
236582402 : jw02079-o004_s000001405_niriss_f115w-gr150c
236583366 : jw02079-o004_s000000533_niriss_f200w-gr150r
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 59 rows
Batch #58 / 123
Working with the following obsids:
236583367 : jw02079-o004_s000001453_niriss_f200w-gr150r
236582163 : jw02079-o004_s000000427_niriss_f200w-gr150r
236582121 : jw02079-o004_s000000507_niriss_f200w-gr150r
236582803 : jw02079-o004_s000000826_niriss_f150w-gr150c
236582019 : jw02079-o004_s000000726_niriss_f150w-gr150r
INFO: 14 of 35 products were duplicates. Only returning 21 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00005_asn.json
jw02079-o004_20250113t033328_spec2_00005_asn.json
jw02079-o004_20250113t033328_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 35 rows
Batch #59 / 123
Working with the following obsids:
236582794 : jw02079-o004_s000001124_niriss_f150w-gr150c
236582729 : jw02079-o004_s000001094_niriss_f150w-gr150r
236582122 : jw02079-o004_s000001107_niriss_f200w-gr150r
236582770 : jw02079-o004_s000000819_niriss_f150w-gr150c
236582792 : jw02079-o004_s000000678_niriss_f150w-gr150r
INFO: 14 of 35 products were duplicates. Only returning 21 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00004_asn.json
jw02079004003_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00010_asn.json
jw02079-o004_20250113t033328_spec2_00010_asn.json
jw02079004002_09101_00003_nis_rate.fits
jw02079004002_09101_00003_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 35 rows
Batch #60 / 123
Working with the following obsids:
236582130 : jw02079-o004_s000000664_niriss_f115w-gr150r
236583380 : jw02079-o004_s000000117_niriss_f200w-gr150r
236583419 : jw02079-o004_s000000509_niriss_f115w-gr150r
236582154 : jw02079-o004_s000000638_niriss_f115w-gr150c
236582791 : jw02079-o004_s000001146_niriss_f150w-gr150r
INFO: 19 of 71 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 71 rows
Batch #61 / 123
Working with the following obsids:
230239766 : jw02079-o004_s000000434_niriss_f150w-gr150c
236582845 : jw02079-o004_s000000613_niriss_f150w-gr150r
236582752 : jw02079-o004_s000000935_niriss_f150w-gr150c
236582403 : jw02079-o004_s000000436_niriss_f115w-gr150c
236582731 : jw02079-o004_s000001058_niriss_f150w-gr150c
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 47 rows
Batch #62 / 123
Working with the following obsids:
236582823 : jw02079-o004_s000000871_niriss_f150w-gr150c
236582420 : jw02079-o004_s000000836_niriss_f115w-gr150c
236583368 : jw02079-o004_s000000375_niriss_f150w-gr150c
236582123 : jw02079-o004_s000000752_niriss_f200w-gr150c
236582404 : jw02079-o004_s000000562_niriss_f115w-gr150c
INFO: 26 of 59 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079-o004_20250113t033328_spec2_00025_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 59 rows
Batch #63 / 123
Working with the following obsids:
236582124 : jw02079-o004_s000001276_niriss_f115w-gr150c
236582405 : jw02079-o004_s000000461_niriss_f150w-gr150c
230239775 : jw02079-o004_s000000723_niriss_f200w-gr150c
230239777 : jw02079-o004_s000000596_niriss_f200w-gr150c
236582805 : jw02079-o004_s000000169_niriss_f150w-gr150c
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 47 rows
Batch #64 / 123
Working with the following obsids:
236583369 : jw02079-o004_s000001420_niriss_f200w-gr150c
236582778 : jw02079-o004_s000000706_niriss_f150w-gr150r
236583428 : jw02079-o004_s000000739_niriss_f115w-gr150c
236583370 : jw02079-o004_s000000008_niriss_f200w-gr150r
236582139 : jw02079-o004_s000001307_niriss_f115w-gr150r
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 59 rows
Batch #65 / 123
Working with the following obsids:
236582469 : jw02079-o004_s000001143_niriss_f115w-gr150r
236583766 : jw02079-o004_s000000442_niriss_f150w-gr150r
236582418 : jw02079-o004_s000001472_niriss_f115w-gr150c
236582406 : jw02079-o004_s000001485_niriss_f115w-gr150c
230240122 : jw02079-o004_s000000220_niriss_f150w-gr150c
INFO: 19 of 71 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 71 rows
Batch #66 / 123
Working with the following obsids:
236582125 : jw02079-o004_s000000481_niriss_f150w-gr150c
236583371 : jw02079-o004_s000001248_niriss_f200w-gr150c
236583372 : jw02079-o004_s000000857_niriss_f200w-gr150c
236582732 : jw02079-o004_s000001062_niriss_f150w-gr150c
236582472 : jw02079-o004_s000001142_niriss_f115w-gr150c
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 47 rows
Batch #67 / 123
Working with the following obsids:
236582407 : jw02079-o004_s000001492_niriss_f115w-gr150c
236582194 : jw02079-o004_s000001102_niriss_f115w-gr150c
236583373 : jw02079-o004_s000000557_niriss_f200w-gr150c
236582449 : jw02079-o004_s000000671_niriss_f115w-gr150c
230239795 : jw02079-o004_s000001097_niriss_f200w-gr150r
INFO: 38 of 71 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 71 rows
Batch #68 / 123
Working with the following obsids:
230239797 : jw02079-o004_s000000719_niriss_f200w-gr150c
236582129 : jw02079-o004_s000000959_niriss_f200w-gr150c
236582020 : jw02079-o004_s000001032_niriss_f150w-gr150r
236583421 : jw02079-o004_s000000672_niriss_f200w-gr150r
236583750 : jw02079-o004_s000000487_niriss_f150w-gr150c
INFO: 7 of 35 products were duplicates. Only returning 28 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 35 rows
Batch #69 / 123
Working with the following obsids:
236582735 : jw02079-o004_s000001125_niriss_f150w-gr150c
236583754 : jw02079-o004_s000000003_niriss_f115w-gr150c
236582021 : jw02079-o004_s000000644_niriss_f200w-gr150c
236582408 : jw02079-o004_s000000054_niriss_f115w-gr150c
236582409 : jw02079-o004_s000000465_niriss_f115w-gr150c
INFO: 38 of 71 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 71 rows
Batch #70 / 123
Working with the following obsids:
236582846 : jw02079-o004_s000000774_niriss_f150w-gr150c
236582790 : jw02079-o004_s000001373_niriss_f150w-gr150c
230239816 : jw02079-o004_s000000719_niriss_f200w-gr150r
230239819 : jw02079-o004_s000001291_niriss_f150w-gr150r
236582736 : jw02079-o004_s000000574_niriss_f150w-gr150r
INFO: 14 of 35 products were duplicates. Only returning 21 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00004_asn.json
jw02079004003_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00010_asn.json
jw02079-o004_20250113t033328_spec2_00010_asn.json
jw02079004002_09101_00003_nis_rate.fits
jw02079004002_09101_00003_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 35 rows
Batch #71 / 123
Working with the following obsids:
236583375 : jw02079-o004_s000000634_niriss_f150w-gr150c
236582737 : jw02079-o004_s000000895_niriss_f150w-gr150c
236582022 : jw02079-o004_s000000130_niriss_f150w-gr150c
236582410 : jw02079-o004_s000000170_niriss_f200w-gr150r
236582411 : jw02079-o004_s000000947_niriss_f115w-gr150c
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 47 rows
Batch #72 / 123
Working with the following obsids:
236583413 : jw02079-o004_s000001172_niriss_f200w-gr150c
236583376 : jw02079-o004_s000000405_niriss_f200w-gr150r
236582808 : jw02079-o004_s000000162_niriss_f150w-gr150r
236582782 : jw02079-o004_s000000291_niriss_f150w-gr150r
236584454 : jw02079-o004_s000001464_niriss_f115w-gr150r
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 47 rows
Batch #73 / 123
Working with the following obsids:
236582413 : jw02079-o004_s000000321_niriss_f115w-gr150c
236582763 : jw02079-o004_s000000690_niriss_f150w-gr150c
236582189 : jw02079-o004_s000000457_niriss_f115w-gr150c
230240061 : jw02079-o004_s000000467_niriss_f150w-gr150r
230239842 : jw02079-o004_s000000529_niriss_f200w-gr150c
INFO: 19 of 59 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079-o004_20250113t033328_spec2_00025_asn.json
...
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 59 rows
Batch #74 / 123
Working with the following obsids:
236582140 : jw02079-o004_s000000481_niriss_f200w-gr150r
236583755 : jw02079-o004_s000000003_niriss_f115w-gr150r
236582439 : jw02079-o004_s000000947_niriss_f200w-gr150c
236582767 : jw02079-o004_s000000666_niriss_f150w-gr150r
236582740 : jw02079-o004_s000000286_niriss_f150w-gr150r
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 47 rows
Batch #75 / 123
Working with the following obsids:
231815700 : jw02079-o004_s000000171_niriss_f115w-gr150c
236583756 : jw02079-o004_s000000880_niriss_f115w-gr150c
236582741 : jw02079-o004_s000001058_niriss_f150w-gr150r
236582776 : jw02079-o004_s000001094_niriss_f150w-gr150c
230239848 : jw02079-o004_s000000455_niriss_f150w-gr150r
INFO: 26 of 59 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079-o004_20250113t033328_spec2_00025_asn.json
...
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 59 rows
Batch #76 / 123
Working with the following obsids:
236582133 : jw02079-o004_s000001372_niriss_f200w-gr150r
236583411 : jw02079-o004_s000000927_niriss_f115w-gr150c
236582414 : jw02079-o004_s000001492_niriss_f115w-gr150r
236582134 : jw02079-o004_s000001342_niriss_f200w-gr150c
236582447 : jw02079-o004_s000000620_niriss_f200w-gr150c
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 59 rows
Batch #77 / 123
Working with the following obsids:
236582145 : jw02079-o004_s000000179_niriss_f200w-gr150c
236583378 : jw02079-o004_s000000634_niriss_f115w-gr150c
236582181 : jw02079-o004_s000001568_niriss_f115w-gr150r
236583757 : jw02079-o004_s000000092_niriss_f115w-gr150c
230239865 : jw02079-o004_s000000375_niriss_f200w-gr150r
INFO: 19 of 71 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
...
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 71 rows
Batch #78 / 123
Working with the following obsids:
236582415 : jw02079-o004_s000000562_niriss_f115w-gr150r
236583758 : jw02079-o004_s000001456_niriss_f115w-gr150r
236582742 : jw02079-o004_s000000416_niriss_f150w-gr150c
236583759 : jw02079-o004_s000000281_niriss_f200w-gr150r
236583382 : jw02079-o004_s000000739_niriss_f115w-gr150r
INFO: 38 of 71 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 71 rows
Batch #79 / 123
Working with the following obsids:
236582177 : jw02079-o004_s000000882_niriss_f200w-gr150r
236583760 : jw02079-o004_s000000249_niriss_f115w-gr150c
236583381 : jw02079-o004_s000000265_niriss_f200w-gr150c
236582153 : jw02079-o004_s000000654_niriss_f115w-gr150c
236582807 : jw02079-o004_s000000869_niriss_f150w-gr150c
INFO: 19 of 59 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079-o004_20250113t033328_spec2_00025_asn.json
...
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 59 rows
Batch #80 / 123
Working with the following obsids:
236582416 : jw02079-o004_s000000540_niriss_f115w-gr150c
236583418 : jw02079-o004_s000001461_niriss_f115w-gr150r
236582024 : jw02079-o004_s000000863_niriss_f150w-gr150c
236582762 : jw02079-o004_s000000286_niriss_f150w-gr150c
236582136 : jw02079-o004_s000000959_niriss_f200w-gr150r
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 59 rows
Batch #81 / 123
Working with the following obsids:
230239890 : jw02079-o004_s000001063_niriss_f200w-gr150c
236582137 : jw02079-o004_s000000448_niriss_f115w-gr150c
230239891 : jw02079-o004_s000000681_niriss_f200w-gr150c
236582832 : jw02079-o004_s000000139_niriss_f150w-gr150r
236582138 : jw02079-o004_s000000197_niriss_f115w-gr150c
INFO: 26 of 59 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079-o004_20250113t033328_spec2_00025_asn.json
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 59 rows
Batch #82 / 123
Working with the following obsids:
236582451 : jw02079-o004_s000000947_niriss_f200w-gr150r
236582417 : jw02079-o004_s000000410_niriss_f200w-gr150r
230242157 : jw02079-o004_s000000806_niriss_f200w-gr150c
230239903 : jw02079-o004_s000000214_niriss_f200w-gr150r
236583414 : jw02079-o004_s000000509_niriss_f150w-gr150r
INFO: 14 of 35 products were duplicates. Only returning 21 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00011_asn.json
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 35 rows
Batch #83 / 123
Working with the following obsids:
236582744 : jw02079-o004_s000000207_niriss_f150w-gr150c
236583761 : jw02079-o004_s000000249_niriss_f115w-gr150r
236582141 : jw02079-o004_s000000752_niriss_f200w-gr150r
230239906 : jw02079-o004_s000001353_niriss_f200w-gr150c
230239909 : jw02079-o004_s000000434_niriss_f150w-gr150r
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 47 rows
Batch #84 / 123
Working with the following obsids:
236583429 : jw02079-o004_s000000509_niriss_f150w-gr150c
236583762 : jw02079-o004_s000000331_niriss_f115w-gr150r
236582156 : jw02079-o004_s000001323_niriss_f200w-gr150r
230239917 : jw02079-o004_s000001063_niriss_f200w-gr150r
236582431 : jw02079-o004_s000000765_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 59 rows
Batch #85 / 123
Working with the following obsids:
236582745 : jw02079-o004_s000000930_niriss_f150w-gr150c
236583408 : jw02079-o004_s000000662_niriss_f115w-gr150c
236582144 : jw02079-o004_s000001342_niriss_f200w-gr150r
236582206 : jw02079-o004_s000001126_niriss_f115w-gr150c
236583383 : jw02079-o004_s000000960_niriss_f200w-gr150r
INFO: 26 of 59 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079-o004_20250113t033328_spec2_00025_asn.json
...
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 59 rows
Batch #86 / 123
Working with the following obsids:
236582192 : jw02079-o004_s000000664_niriss_f115w-gr150c
236582460 : jw02079-o004_s000000321_niriss_f115w-gr150r
236583385 : jw02079-o004_s000000601_niriss_f200w-gr150r
236582464 : jw02079-o004_s000000465_niriss_f115w-gr150r
236583384 : jw02079-o004_s000001027_niriss_f200w-gr150r
INFO: 26 of 71 products were duplicates. Only returning 45 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 71 rows
Batch #87 / 123
Working with the following obsids:
230239939 : jw02079-o004_s000000707_niriss_f200w-gr150c
236582183 : jw02079-o004_s000000187_niriss_f115w-gr150c
236582809 : jw02079-o004_s000001021_niriss_f150w-gr150c
236582421 : jw02079-o004_s000000530_niriss_f150w-gr150c
236582764 : jw02079-o004_s000000819_niriss_f150w-gr150r
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 47 rows
Batch #88 / 123
Working with the following obsids:
236583426 : jw02079-o004_s000001172_niriss_f200w-gr150r
236582757 : jw02079-o004_s000001302_niriss_f150w-gr150c
236582422 : jw02079-o004_s000000292_niriss_f115w-gr150c
236582746 : jw02079-o004_s000001125_niriss_f150w-gr150r
236582747 : jw02079-o004_s000000554_niriss_f150w-gr150r
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 47 rows
Batch #89 / 123
Working with the following obsids:
230240021 : jw02079-o004_s000000622_niriss_f115w-gr150r
236582748 : jw02079-o004_s000000468_niriss_f150w-gr150r
236582787 : jw02079-o004_s000000674_niriss_f150w-gr150r
236582793 : jw02079-o004_s000000666_niriss_f150w-gr150c
230239951 : jw02079-o004_s000000426_niriss_f115w-gr150r
INFO: 26 of 59 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079-o004_20250113t033328_spec2_00029_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 59 rows
Batch #90 / 123
Working with the following obsids:
236583387 : jw02079-o004_s000001007_niriss_f200w-gr150c
230239953 : jw02079-o004_s000000511_niriss_f200w-gr150c
236583388 : jw02079-o004_s000001420_niriss_f200w-gr150r
236582025 : jw02079-o004_s000000965_niriss_f150w-gr150c
236582204 : jw02079-o004_s000000682_niriss_f200w-gr150c
INFO: 14 of 35 products were duplicates. Only returning 21 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079-o004_20250113t033328_spec2_00002_asn.json
...
jw02079004002_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00007_asn.json
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 35 rows
Batch #91 / 123
Working with the following obsids:
236582026 : jw02079-o004_s000000130_niriss_f150w-gr150r
236583773 : jw02079-o004_s000000944_niriss_f115w-gr150r
236582423 : jw02079-o004_s000000587_niriss_f115w-gr150c
236582765 : jw02079-o004_s000000645_niriss_f150w-gr150r
236582461 : jw02079-o004_s000000677_niriss_f115w-gr150r
INFO: 26 of 71 products were duplicates. Only returning 45 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 71 rows
Batch #92 / 123
Working with the following obsids:
236582833 : jw02079-o004_s000000324_niriss_f150w-gr150c
236582424 : jw02079-o004_s000000998_niriss_f115w-gr150r
236582821 : jw02079-o004_s000000162_niriss_f150w-gr150c
236582751 : jw02079-o004_s000000291_niriss_f150w-gr150c
236582425 : jw02079-o004_s000001307_niriss_f150w-gr150r
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 47 rows
Batch #93 / 123
Working with the following obsids:
236582211 : jw02079-o004_s000000597_niriss_f200w-gr150r
236582426 : jw02079-o004_s000001201_niriss_f115w-gr150c
236582753 : jw02079-o004_s000001373_niriss_f150w-gr150r
236582475 : jw02079-o004_s000000944_niriss_f115w-gr150c
236583389 : jw02079-o004_s000000375_niriss_f150w-gr150r
INFO: 26 of 59 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079-o004_20250113t033328_spec2_00025_asn.json
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 59 rows
Batch #94 / 123
Working with the following obsids:
236582175 : jw02079-o004_s000000427_niriss_f200w-gr150c
236583390 : jw02079-o004_s000001453_niriss_f200w-gr150c
230239978 : jw02079-o004_s000000470_niriss_f150w-gr150r
236583391 : jw02079-o004_s000000858_niriss_f200w-gr150c
236582030 : jw02079-o004_s000000816_niriss_f150w-gr150r
INFO: 21 of 35 products were duplicates. Only returning 14 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 35 rows
Batch #95 / 123
Working with the following obsids:
236582148 : jw02079-o004_s000000675_niriss_f115w-gr150c
236583399 : jw02079-o004_s000000743_niriss_f115w-gr150r
236583393 : jw02079-o004_s000000486_niriss_f115w-gr150c
236582458 : jw02079-o004_s000001539_niriss_f115w-gr150r
236582754 : jw02079-o004_s000001254_niriss_f150w-gr150c
INFO: 38 of 83 products were duplicates. Only returning 45 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 83 rows
Batch #96 / 123
Working with the following obsids:
236583394 : jw02079-o004_s000000523_niriss_f200w-gr150c
236583406 : jw02079-o004_s000001369_niriss_f200w-gr150r
236582027 : jw02079-o004_s000000726_niriss_f150w-gr150c
236582755 : jw02079-o004_s000000541_niriss_f150w-gr150c
236582756 : jw02079-o004_s000001252_niriss_f150w-gr150c
INFO: 14 of 35 products were duplicates. Only returning 21 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00004_asn.json
jw02079004003_03101_00003_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 35 rows
Batch #97 / 123
Working with the following obsids:
236582428 : jw02079-o004_s000000518_niriss_f200w-gr150c
230239982 : jw02079-o004_s000000735_niriss_f200w-gr150c
236582841 : jw02079-o004_s000000328_niriss_f150w-gr150c
230240094 : jw02079-o004_s000001353_niriss_f200w-gr150r
236582429 : jw02079-o004_s000000998_niriss_f150w-gr150r
INFO: 7 of 35 products were duplicates. Only returning 28 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 35 rows
Batch #98 / 123
Working with the following obsids:
236582474 : jw02079-o004_s000000672_niriss_f200w-gr150c
236582149 : jw02079-o004_s000001240_niriss_f200w-gr150r
236582759 : jw02079-o004_s000000207_niriss_f150w-gr150r
236583407 : jw02079-o004_s000001369_niriss_f200w-gr150c
236583395 : jw02079-o004_s000000203_niriss_f200w-gr150r
INFO: 14 of 35 products were duplicates. Only returning 21 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079-o004_20250113t033328_spec2_00002_asn.json
...
jw02079004002_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00011_asn.json
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 35 rows
Batch #99 / 123
Working with the following obsids:
236582761 : jw02079-o004_s000000870_niriss_f150w-gr150c
236582151 : jw02079-o004_s000000254_niriss_f200w-gr150r
236583423 : jw02079-o004_s000000482_niriss_f115w-gr150c
236582152 : jw02079-o004_s000001311_niriss_f115w-gr150c
230239994 : jw02079-o004_s000000735_niriss_f200w-gr150r
INFO: 26 of 59 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079-o004_20250113t033328_spec2_00025_asn.json
...
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 59 rows
Batch #100 / 123
Working with the following obsids:
236583431 : jw02079-o004_s000001403_niriss_f200w-gr150c
236582835 : jw02079-o004_s000000498_niriss_f150w-gr150c
236583396 : jw02079-o004_s000000377_niriss_f200w-gr150c
236582811 : jw02079-o004_s000001149_niriss_f150w-gr150c
236583763 : jw02079-o004_s000000714_niriss_f115w-gr150r
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 47 rows
Batch #101 / 123
Working with the following obsids:
230240088 : jw02079-o004_s000000003_niriss_f150w-gr150c
236582157 : jw02079-o004_s000001307_niriss_f115w-gr150c
236583397 : jw02079-o004_s000001166_niriss_f200w-gr150c
236582158 : jw02079-o004_s000000765_niriss_f115w-gr150r
236583398 : jw02079-o004_s000000634_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 71 rows
Batch #102 / 123
Working with the following obsids:
236582812 : jw02079-o004_s000000808_niriss_f150w-gr150r
236582159 : jw02079-o004_s000001102_niriss_f115w-gr150r
236582457 : jw02079-o004_s000001201_niriss_f115w-gr150r
236582448 : jw02079-o004_s000000677_niriss_f115w-gr150c
230240004 : jw02079-o004_s000001116_niriss_f200w-gr150r
INFO: 19 of 71 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 71 rows
Batch #103 / 123
Working with the following obsids:
236582160 : jw02079-o004_s000001382_niriss_f115w-gr150r
236583764 : jw02079-o004_s000000331_niriss_f200w-gr150r
236582161 : jw02079-o004_s000000062_niriss_f115w-gr150c
236582820 : jw02079-o004_s000001277_niriss_f150w-gr150c
230242225 : jw02079-o004_s000001117_niriss_f200w-gr150r
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 59 rows
Batch #104 / 123
Working with the following obsids:
236582162 : jw02079-o004_s000000497_niriss_f115w-gr150r
236582837 : jw02079-o004_s000000627_niriss_f150w-gr150r
236582847 : jw02079-o004_s000000613_niriss_f150w-gr150c
236582450 : jw02079-o004_s000000620_niriss_f200w-gr150r
236583400 : jw02079-o004_s000000377_niriss_f200w-gr150r
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 47 rows
Batch #105 / 123
Working with the following obsids:
236582430 : jw02079-o004_s000000914_niriss_f200w-gr150c
236582164 : jw02079-o004_s000000638_niriss_f115w-gr150r
236582432 : jw02079-o004_s000000547_niriss_f200w-gr150c
236582433 : jw02079-o004_s000001485_niriss_f115w-gr150r
236582434 : jw02079-o004_s000000515_niriss_f115w-gr150r
INFO: 45 of 71 products were duplicates. Only returning 26 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 71 rows
Batch #106 / 123
Working with the following obsids:
230240016 : jw02079-o004_s000000708_niriss_f200w-gr150c
236583765 : jw02079-o004_s000001293_niriss_f115w-gr150c
236582766 : jw02079-o004_s000000466_niriss_f150w-gr150c
236582768 : jw02079-o004_s000001162_niriss_f150w-gr150r
236582435 : jw02079-o004_s000001020_niriss_f115w-gr150c
INFO: 19 of 59 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079-o004_20250113t033328_spec2_00025_asn.json
...
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 59 rows
Batch #107 / 123
Working with the following obsids:
230240018 : jw02079-o004_s000000708_niriss_f200w-gr150r
230240089 : jw02079-o004_s000000373_niriss_f200w-gr150r
236582028 : jw02079-o004_s000000863_niriss_f150w-gr150r
236582166 : jw02079-o004_s000000781_niriss_f200w-gr150r
236582174 : jw02079-o004_s000000457_niriss_f115w-gr150r
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 47 rows
Batch #108 / 123
Working with the following obsids:
236582029 : jw02079-o004_s000001345_niriss_f150w-gr150c
236582031 : jw02079-o004_s000001020_niriss_f150w-gr150r
236582167 : jw02079-o004_s000001437_niriss_f115w-gr150c
236582816 : jw02079-o004_s000000602_niriss_f150w-gr150r
236582168 : jw02079-o004_s000000638_niriss_f200w-gr150r
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 47 rows
Batch #109 / 123
Working with the following obsids:
236583402 : jw02079-o004_s000000462_niriss_f115w-gr150r
236582210 : jw02079-o004_s000000179_niriss_f200w-gr150r
236582769 : jw02079-o004_s000000466_niriss_f150w-gr150r
236582814 : jw02079-o004_s000001021_niriss_f150w-gr150r
236582169 : jw02079-o004_s000001240_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 59 rows
Batch #110 / 123
Working with the following obsids:
236582032 : jw02079-o004_s000000644_niriss_f200w-gr150r
236582437 : jw02079-o004_s000000998_niriss_f115w-gr150c
236582172 : jw02079-o004_s000001372_niriss_f200w-gr150c
236582771 : jw02079-o004_s000000820_niriss_f150w-gr150c
236582203 : jw02079-o004_s000000638_niriss_f200w-gr150c
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 47 rows
Batch #111 / 123
Working with the following obsids:
236582438 : jw02079-o004_s000000530_niriss_f200w-gr150c
236582773 : jw02079-o004_s000000609_niriss_f150w-gr150c
236582173 : jw02079-o004_s000001311_niriss_f115w-gr150r
236582440 : jw02079-o004_s000000518_niriss_f200w-gr150r
236582459 : jw02079-o004_s000000545_niriss_f200w-gr150r
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
Length = 47 rows
Batch #112 / 123
Working with the following obsids:
236582463 : jw02079-o004_s000000914_niriss_f200w-gr150r
236582441 : jw02079-o004_s000000334_niriss_f200w-gr150c
236582839 : jw02079-o004_s000000328_niriss_f150w-gr150r
236582033 : jw02079-o004_s000000352_niriss_f150w-gr150r
236583403 : jw02079-o004_s000000960_niriss_f200w-gr150c
INFO: 14 of 35 products were duplicates. Only returning 21 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079-o004_20250113t033328_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079-o004_20250113t033328_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 35 rows
Batch #113 / 123
Working with the following obsids:
236583404 : jw02079-o004_s000000270_niriss_f200w-gr150r
236582195 : jw02079-o004_s000000150_niriss_f115w-gr150c
236582838 : jw02079-o004_s000000627_niriss_f150w-gr150c
236582774 : jw02079-o004_s000000079_niriss_f150w-gr150r
236582818 : jw02079-o004_s000000534_niriss_f150w-gr150c
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
Length = 47 rows
Batch #114 / 123
Working with the following obsids:
236583767 : jw02079-o004_s000000701_niriss_f115w-gr150r
231822083 : jw02079-o004_s000000094_niriss_f115w-gr150c
236582176 : jw02079-o004_s000000481_niriss_f200w-gr150c
236582470 : jw02079-o004_s000000891_niriss_f115w-gr150c
236582775 : jw02079-o004_s000000678_niriss_f150w-gr150c
INFO: 19 of 71 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 71 rows
Batch #115 / 123
Working with the following obsids:
236582442 : jw02079-o004_s000001020_niriss_f115w-gr150r
236582179 : jw02079-o004_s000001326_niriss_f115w-gr150r
236583425 : jw02079-o004_s000000905_niriss_f200w-gr150c
236582443 : jw02079-o004_s000000515_niriss_f115w-gr150c
236583420 : jw02079-o004_s000001139_niriss_f200w-gr150c
INFO: 26 of 71 products were duplicates. Only returning 45 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 71 rows
Batch #116 / 123
Working with the following obsids:
236582444 : jw02079-o004_s000000669_niriss_f115w-gr150c
236582445 : jw02079-o004_s000000436_niriss_f115w-gr150r
230240057 : jw02079-o004_s000000746_niriss_f200w-gr150r
236582446 : jw02079-o004_s000000410_niriss_f115w-gr150r
236582187 : jw02079-o004_s000000481_niriss_f150w-gr150r
INFO: 19 of 71 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 71 rows
Batch #117 / 123
Working with the following obsids:
236582777 : jw02079-o004_s000000870_niriss_f150w-gr150r
236582182 : jw02079-o004_s000000526_niriss_f200w-gr150c
230240119 : jw02079-o004_s000000214_niriss_f200w-gr150c
230240063 : jw02079-o004_s000000003_niriss_f150w-gr150r
236583768 : jw02079-o004_s000001513_niriss_f115w-gr150c
INFO: 14 of 47 products were duplicates. Only returning 33 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 47 rows
Batch #118 / 123
Working with the following obsids:
236583422 : jw02079-o004_s000000482_niriss_f115w-gr150r
236583415 : jw02079-o004_s000000987_niriss_f200w-gr150c
236583769 : jw02079-o004_s000000165_niriss_f115w-gr150r
236582779 : jw02079-o004_s000000895_niriss_f150w-gr150r
236583409 : jw02079-o004_s000001166_niriss_f200w-gr150r
INFO: 19 of 59 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079-o004_20250113t033328_spec2_00029_asn.json
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
Length = 59 rows
Batch #119 / 123
Working with the following obsids:
236583410 : jw02079-o004_s000000601_niriss_f200w-gr150c
236582186 : jw02079-o004_s000000494_niriss_f200w-gr150r
236582840 : jw02079-o004_s000000225_niriss_f150w-gr150c
236582201 : jw02079-o004_s000001382_niriss_f115w-gr150c
236582781 : jw02079-o004_s000000237_niriss_f150w-gr150c
INFO: 7 of 47 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 47 rows
Batch #120 / 123
Working with the following obsids:
236583412 : jw02079-o004_s000001007_niriss_f200w-gr150r
236582783 : jw02079-o004_s000001252_niriss_f150w-gr150r
236582784 : jw02079-o004_s000001146_niriss_f150w-gr150c
236583417 : jw02079-o004_s000000708_niriss_f150w-gr150r
230240092 : jw02079-o004_s000000707_niriss_f200w-gr150r
INFO: 14 of 35 products were duplicates. Only returning 21 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079-o004_20250113t033328_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00005_asn.json
jw02079-o004_20250113t033328_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00004_asn.json
jw02079-o004_20250113t033328_spec2_00004_asn.json
...
jw02079-o004_20250113t033328_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 35 rows
Batch #121 / 123
Working with the following obsids:
236582452 : jw02079-o004_s000000054_niriss_f115w-gr150r
236582454 : jw02079-o004_s000000587_niriss_f115w-gr150r
236582785 : jw02079-o004_s000000468_niriss_f150w-gr150c
230240096 : jw02079-o004_s000000699_niriss_f200w-gr150c
236582795 : jw02079-o004_s000001124_niriss_f150w-gr150r
INFO: 19 of 59 products were duplicates. Only returning 40 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00029_asn.json
jw02079-o004_20250113t033328_spec2_00029_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00001_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00004_asn.json
Length = 59 rows
Batch #122 / 123
Working with the following obsids:
236583771 : jw02079-o004_s000000757_niriss_f200w-gr150c
236582199 : jw02079-o004_s000000497_niriss_f115w-gr150c
231823321 : jw02079-o004_s000000622_niriss_f115w-gr150c
236582200 : jw02079-o004_s000001240_niriss_f115w-gr150r
236583427 : jw02079-o004_s000000857_niriss_f200w-gr150r
INFO: 19 of 71 products were duplicates. Only returning 52 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00006_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_09101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_03101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004003_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
...
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00006_asn.json
jw02079-o004_20250113t033328_spec3_00002_asn.json
jw02079-o004_20250113t033328_spec3_00001_asn.json
Length = 71 rows
Batch #123 / 123
Working with the following obsids:
236583772 : jw02079-o004_s000000331_niriss_f115w-gr150c
236582822 : jw02079-o004_s000000602_niriss_f150w-gr150c
236582473 : jw02079-o004_s000000851_niriss_f115w-gr150c
INFO: 19 of 45 products were duplicates. Only returning 26 unique product(s). [astroquery.mast.utils]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20250113t033328_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004001_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_05101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00001_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00002_nis_rate.fits with expected size 83943360. [astroquery.query]
INFO: Found cached file data/jw02079004002_11101_00003_nis_rate.fits with expected size 83943360. [astroquery.query]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079-o004_20250113t033328_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079-o004_20250113t033328_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00025_asn.json
jw02079-o004_20250113t033328_spec2_00025_asn.json
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079-o004_20250113t033328_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20250113t033328_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20250113t033328_spec3_00005_asn.json
jw02079-o004_20250113t033328_spec3_00003_asn.json
jw02079-o004_20250113t033328_spec3_00005_asn.json
Length = 45 rows
If continuing on with the WFSS notebooks, let’s double check that we’ve downloaded all of the files that we need for the remaining notebooks. There should be 149 files downloaded.
downloaded_files = glob.glob(os.path.join(download_dir, '*.fits')) + glob.glob(os.path.join(download_dir, '*.json'))
print(len(downloaded_files), 'files downloaded to:', download_dir)
149 files downloaded to: data
Inspect Downloaded Data#
The purpose of this function is to have a better idea of what data are available to you. Additionally, you will be able to use this dataframe to select specific files that match the mode you would like to take a closer look at.
ratefile_datadir = 'data/'
# first look for all of the rate files you have downloaded
rate_files = np.sort(glob.glob(os.path.join(ratefile_datadir, "*rate.fits")))
for file_num, ratefile in enumerate(rate_files):
rate_hdr = fits.getheader(ratefile) # Primary header for each rate file
# information we want to store that might be useful to us later for evaluating the data
temp_hdr_dict = {"FILENAME": ratefile,
"TARG_RA": [rate_hdr["TARG_RA"]],
"TARG_DEC": [rate_hdr["TARG_DEC"]],
"FILTER": [rate_hdr["FILTER"]], # Grism; GR150R/GR150C
"PUPIL": [rate_hdr["PUPIL"]], # Filter used; F090W, F115W, F140M, F150W F158M, F200W
"EXPSTART": [rate_hdr['EXPSTART']], # Exposure start time (MJD)
"PATT_NUM": [rate_hdr["PATT_NUM"]], # Position number within dither pattern for WFSS
"NUMDTHPT": [rate_hdr["NUMDTHPT"]], # Total number of points in entire dither pattern
"XOFFSET": [rate_hdr["XOFFSET"]], # X offset from pattern starting position for NIRISS (arcsec)
"YOFFSET": [rate_hdr["YOFFSET"]], # Y offset from pattern starting position for NIRISS (arcsec)
}
# Turn the dictionary into a pandas dataframe
if file_num == 0:
# if this is the first file, make an initial dataframe
rate_df = pd.DataFrame(temp_hdr_dict)
else:
# otherwise, append to the dataframe for each file
new_data_df = pd.DataFrame(temp_hdr_dict)
# merge the two dataframes together to create a dataframe with all
rate_df = pd.concat([rate_df, new_data_df], ignore_index=True, axis=0)
rate_dfsort = rate_df.sort_values('EXPSTART', ignore_index=False)
# Save the dataframe to a file to read in later, if desired
outfile = './list_ngdeep_rate.csv'
rate_dfsort.to_csv(outfile, sep=',', index=False)
print('Saved:', outfile)
# Look at the resulting dataframe
rate_dfsort
Saved: ./list_ngdeep_rate.csv
FILENAME | TARG_RA | TARG_DEC | FILTER | PUPIL | EXPSTART | PATT_NUM | NUMDTHPT | XOFFSET | YOFFSET | |
---|---|---|---|---|---|---|---|---|---|---|
0 | data/jw02079004001_02101_00001_nis_rate.fits | 53.160836 | -27.783286 | CLEAR | F115W | 59975.842873 | 1 | 4 | -6.136233e-13 | -6.263844e-11 |
1 | data/jw02079004001_03101_00001_nis_rate.fits | 53.160836 | -27.783286 | GR150R | F115W | 59975.848060 | 1 | 4 | -6.136233e-13 | -6.263844e-11 |
2 | data/jw02079004001_03101_00002_nis_rate.fits | 53.160836 | -27.783286 | GR150R | F115W | 59975.909446 | 2 | 4 | 5.677032e-01 | 1.157200e+00 |
3 | data/jw02079004001_03101_00003_nis_rate.fits | 53.160836 | -27.783286 | GR150R | F115W | 59975.970816 | 3 | 4 | -5.677032e-01 | -1.157200e+00 |
4 | data/jw02079004001_04101_00001_nis_rate.fits | 53.160836 | -27.783286 | CLEAR | F115W | 59976.033716 | 1 | 4 | -5.677032e-01 | -1.157200e+00 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
51 | data/jw02079004002_11101_00002_nis_rate.fits | 53.160836 | -27.783286 | GR150C | F150W | 59977.872597 | 2 | 4 | 4.589426e+00 | 1.138700e+00 |
52 | data/jw02079004002_11101_00003_nis_rate.fits | 53.160836 | -27.783286 | GR150C | F150W | 59977.954128 | 3 | 4 | 3.454020e+00 | -1.175700e+00 |
53 | data/jw02079004002_12101_00001_nis_rate.fits | 53.160836 | -27.783286 | CLEAR | F150W | 59978.037413 | 1 | 3 | 3.454020e+00 | -1.175700e+00 |
54 | data/jw02079004002_12101_00002_nis_rate.fits | 53.160836 | -27.783286 | CLEAR | F150W | 59978.040882 | 2 | 3 | 4.206024e+00 | -1.376800e+00 |
55 | data/jw02079004002_12101_00003_nis_rate.fits | 53.160836 | -27.783286 | CLEAR | F150W | 59978.044344 | 3 | 3 | 3.911723e+00 | -9.472001e-01 |
70 rows × 10 columns
In particular, let’s look at the observation sequence these rate files follow. We have sorted the files above by exposure time, so they should already be in time order in the dataframe.
FILTER = CLEAR
indicates a direct image while FILTER=GR150R
or FILTER=GR150C
indicates a dispersed image. PUPIL is the blocking filter used. The first 14 exposures make up the first sequence set of direct image -> grism -> direct image -> grism. There are also multiple dither positions for the dispersed images and the direct images. The multiple direct image dithers will be combined in image3, while the multiple dispersed images can be combined in spec3.
rate_df[['EXPSTART', 'FILTER', 'PUPIL', 'PATT_NUM', 'XOFFSET', 'YOFFSET']].head(14)
EXPSTART | FILTER | PUPIL | PATT_NUM | XOFFSET | YOFFSET | |
---|---|---|---|---|---|---|
0 | 59975.842873 | CLEAR | F115W | 1 | -6.136233e-13 | -6.263844e-11 |
1 | 59975.848060 | GR150R | F115W | 1 | -6.136233e-13 | -6.263844e-11 |
2 | 59975.909446 | GR150R | F115W | 2 | 5.677032e-01 | 1.157200e+00 |
3 | 59975.970816 | GR150R | F115W | 3 | -5.677032e-01 | -1.157200e+00 |
4 | 59976.033716 | CLEAR | F115W | 1 | -5.677032e-01 | -1.157200e+00 |
5 | 59976.037186 | CLEAR | F115W | 2 | 1.843011e-01 | -1.358300e+00 |
6 | 59976.040652 | CLEAR | F115W | 3 | -1.100006e-01 | -9.287000e-01 |
7 | 59976.044124 | CLEAR | F115W | 4 | 5.231030e-01 | 2.942000e-01 |
8 | 59976.049432 | GR150C | F115W | 1 | 5.231030e-01 | 2.942000e-01 |
9 | 59976.110810 | GR150C | F115W | 2 | 1.090806e+00 | 1.451400e+00 |
10 | 59976.172180 | GR150C | F115W | 3 | -4.460021e-02 | -8.630000e-01 |
11 | 59976.235342 | CLEAR | F115W | 1 | -4.460021e-02 | -8.630000e-01 |
12 | 59976.238811 | CLEAR | F115W | 2 | 7.074041e-01 | -1.064100e+00 |
13 | 59976.242272 | CLEAR | F115W | 3 | 4.131024e-01 | -6.345000e-01 |
Shown below are the first 14 rate files to give an idea of the above sequence visually. Grid lines are shown as a visual guide for any dithers that are made.
# plot set up
fig = plt.figure(figsize=(20, 35))
cols = 3
rows = int(np.ceil(14 / cols))
# loop over the first 14 rate files and plot them
for plt_num, rf in enumerate(rate_dfsort[0:14]['FILENAME']):
# determine where the subplot should be
xpos = (plt_num % 40) % cols
ypos = ((plt_num % 40) // cols) # // to make it an int.
# make the subplot
ax = plt.subplot2grid((rows, cols), (ypos, xpos))
# open the data and plot it
with fits.open(rf) as hdu:
data = hdu[1].data
data[np.isnan(data)] = 0 # filling in nan data with 0s to help with the matplotlib color scale.
ax.imshow(data, vmin=0, vmax=1.5, origin='lower')
# adding in grid lines as a visual aid
for gridline in [500, 1000, 1500]:
ax.axhline(gridline, color='black', alpha=0.5)
ax.axvline(gridline, color='black', alpha=0.5)
ax.set_title(f"#{plt_num+1}: {hdu[0].header['FILTER']} {hdu[0].header['PUPIL']} Dither{hdu[0].header['PATT_NUM']}")

