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']]
2445 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-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/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/WFSS | GR150R;F200W | HUDF-DEEP-F160W | jw02079-o001_s01139_niriss_f200w-gr150r | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F115W | HUDF-DEEP-F160W | jw02079-o001_s00288_niriss_f115w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F115W | HUDF-DEEP-F160W | jw02079-o001_s00499_niriss_f115w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
... | ... | ... | ... | ... | ... | ... | ... | ... |
JWST | NIRISS/WFSS | GR150C;F115W | HUDF-DEEP-F160W | jw02079-o004_s000000624_niriss_f115w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F115W | HUDF-DEEP-F160W | jw02079-o004_s000000622_niriss_f115w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F200W | HUDF-DEEP-F160W | jw02079-o004_s000000525_niriss_f200w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F150W | HUDF-DEEP-F160W | jw02079-o004_s000000996_niriss_f150w-gr150c | 53.16083625 | -27.783286111111124 | 6871.533 | 2079 |
JWST | NIRISS/WFSS | GR150R;F115W | HUDF-DEEP-F160W | jw02079-o004_s000000009_niriss_f115w-gr150r | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150R;F150W | HUDF-DEEP-F160W | jw02079-o004_s000000239_niriss_f150w-gr150r | 53.16083625 | -27.783286111111124 | 6871.533 | 2079 |
JWST | NIRISS/WFSS | GR150R;F115W | HUDF-DEEP-F160W | jw02079-o004_s000000453_niriss_f115w-gr150r | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F200W | HUDF-DEEP-F160W | jw02079-o004_s000000643_niriss_f200w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F115W | HUDF-DEEP-F160W | jw02079-o004_s000000425_niriss_f115w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150R;F200W | HUDF-DEEP-F160W | jw02079-o004_s000000280_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
1220 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? 244
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/WFSS | GR150R;F200W | HUDF-DEEP-F160W | jw02079-o004_s00909_niriss_f200w-gr150r | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150R;F150W | HUDF-DEEP-F160W | jw02079-o004_s01210_niriss_f150w-gr150r | 53.16083625 | -27.783286111111124 | 6871.533 | 2079 |
JWST | NIRISS/WFSS | GR150R;F150W | HUDF-DEEP-F160W | jw02079-o004_s00965_niriss_f150w-gr150r | 53.16083625 | -27.783286111111124 | 6871.533 | 2079 |
JWST | NIRISS/WFSS | GR150C;F200W | HUDF-DEEP-F160W | jw02079-o004_s00602_niriss_f200w-gr150c | 53.16083625 | -27.783286111111124 | 5153.65 | 2079 |
JWST | NIRISS/WFSS | GR150C;F200W | HUDF-DEEP-F160W | jw02079-o004_s00711_niriss_f200w-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_s00909_niriss_f200w-gr150r)
File type: uncal
productFilename
----------------------------------------
jw02079004003_03101_00001_nis_uncal.fits
jw02079004003_03101_00002_nis_uncal.fits
jw02079004003_03101_00003_nis_uncal.fits
File type: rate
productFilename
---------------------------------------
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00002_nis_rate.fits
jw02079004003_03101_00003_nis_rate.fits
File type: level2_association
productFilename
-------------------------------------------------
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079-o004_20241005t184831_spec2_00004_asn.json
File type: level3_association
productFilename
-------------------------------------------------
jw02079-o004_20240704t000032_spec3_00002_asn.json
**************************************************
**************************************************
Exposure #2 (jw02079-o004_s01210_niriss_f150w-gr150r)
File type: uncal
productFilename
----------------------------------------
jw02079004002_09101_00003_nis_uncal.fits
jw02079004002_09101_00002_nis_uncal.fits
jw02079004002_09101_00001_nis_uncal.fits
File type: rate
productFilename
---------------------------------------
jw02079004002_09101_00003_nis_rate.fits
jw02079004002_09101_00002_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
File type: level2_association
productFilename
-------------------------------------------------
jw02079-o004_20241005t184831_spec2_00010_asn.json
jw02079-o004_20241005t184831_spec2_00011_asn.json
jw02079-o004_20241005t184831_spec2_00012_asn.json
File type: level3_association
productFilename
-------------------------------------------------
jw02079-o004_20240704t000032_spec3_00004_asn.json
**************************************************
**************************************************
Exposure #3 (jw02079-o004_s00965_niriss_f150w-gr150r)
File type: uncal
productFilename
----------------------------------------
jw02079004002_09101_00003_nis_uncal.fits
jw02079004002_09101_00002_nis_uncal.fits
jw02079004002_09101_00001_nis_uncal.fits
File type: rate
productFilename
---------------------------------------
jw02079004002_09101_00003_nis_rate.fits
jw02079004002_09101_00002_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
File type: level2_association
productFilename
-------------------------------------------------
jw02079-o004_20241005t184831_spec2_00010_asn.json
jw02079-o004_20241005t184831_spec2_00011_asn.json
jw02079-o004_20241005t184831_spec2_00012_asn.json
File type: level3_association
productFilename
-------------------------------------------------
jw02079-o004_20240704t000032_spec3_00004_asn.json
**************************************************
**************************************************
Exposure #4 (jw02079-o004_s00602_niriss_f200w-gr150c)
File type: uncal
productFilename
----------------------------------------
jw02079004003_05101_00003_nis_uncal.fits
jw02079004003_05101_00002_nis_uncal.fits
jw02079004003_05101_00001_nis_uncal.fits
File type: rate
productFilename
---------------------------------------
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00001_nis_rate.fits
File type: level2_association
productFilename
-------------------------------------------------
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00003_asn.json
File type: level3_association
productFilename
-------------------------------------------------
jw02079-o004_20240704t000032_spec3_00001_asn.json
**************************************************
**************************************************
Exposure #5 (jw02079-o004_s00711_niriss_f200w-gr150c)
File type: uncal
productFilename
----------------------------------------
jw02079004003_05101_00003_nis_uncal.fits
jw02079004003_05101_00002_nis_uncal.fits
jw02079004003_05101_00001_nis_uncal.fits
File type: rate
productFilename
---------------------------------------
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00001_nis_rate.fits
File type: level2_association
productFilename
-------------------------------------------------
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00003_asn.json
File type: level3_association
productFilename
-------------------------------------------------
jw02079-o004_20240704t000032_spec3_00001_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.7'
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 / 244
Working with the following obsids:
216640175 : jw02079-o004_s00909_niriss_f200w-gr150r
218211248 : jw02079-o004_s01210_niriss_f150w-gr150r
218211249 : jw02079-o004_s00965_niriss_f150w-gr150r
192843000 : jw02079-o004_s00602_niriss_f200w-gr150c
218211251 : jw02079-o004_s00711_niriss_f200w-gr150c
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00001_asn.json to data/jw02079-o004_20241005t184831_spec2_00001_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00002_asn.json to data/jw02079-o004_20241005t184831_spec2_00002_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00003_asn.json to data/jw02079-o004_20241005t184831_spec2_00003_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00004_asn.json to data/jw02079-o004_20241005t184831_spec2_00004_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00005_asn.json to data/jw02079-o004_20241005t184831_spec2_00005_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00006_asn.json to data/jw02079-o004_20241005t184831_spec2_00006_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00010_asn.json to data/jw02079-o004_20241005t184831_spec2_00010_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00011_asn.json to data/jw02079-o004_20241005t184831_spec2_00011_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00012_asn.json to data/jw02079-o004_20241005t184831_spec2_00012_asn.json ...
[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/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]
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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 35 rows
Batch #2 / 244
Working with the following obsids:
218211253 : jw02079-o004_s01320_niriss_f115w-gr150r
216640176 : jw02079-o004_s01029_niriss_f200w-gr150r
218211255 : jw02079-o004_s01140_niriss_f115w-gr150r
218211256 : jw02079-o004_s00676_niriss_f150w-gr150r
218211259 : jw02079-o004_s01261_niriss_f150w-gr150r
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_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_20241005t184831_spec2_00016_asn.json to data/jw02079-o004_20241005t184831_spec2_00016_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00017_asn.json to data/jw02079-o004_20241005t184831_spec2_00017_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00018_asn.json to data/jw02079-o004_20241005t184831_spec2_00018_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00022_asn.json to data/jw02079-o004_20241005t184831_spec2_00022_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00023_asn.json to data/jw02079-o004_20241005t184831_spec2_00023_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00024_asn.json to data/jw02079-o004_20241005t184831_spec2_00024_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00028_asn.json to data/jw02079-o004_20241005t184831_spec2_00028_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00029_asn.json to data/jw02079-o004_20241005t184831_spec2_00029_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00030_asn.json to data/jw02079-o004_20241005t184831_spec2_00030_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]
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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 59 rows
Batch #3 / 244
Working with the following obsids:
218211260 : jw02079-o004_s00596_niriss_f150w-gr150c
218211261 : jw02079-o004_s00580_niriss_f150w-gr150c
218211262 : jw02079-o004_s00959_niriss_f150w-gr150c
216640177 : jw02079-o004_s00794_niriss_f115w-gr150c
218211263 : jw02079-o004_s01048_niriss_f150w-gr150c
INFO: 21 of 47 products were duplicates. Only downloading 26 unique product(s). [astroquery.mast.observations]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00007_asn.json to data/jw02079-o004_20241005t184831_spec2_00007_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00008_asn.json to data/jw02079-o004_20241005t184831_spec2_00008_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00009_asn.json to data/jw02079-o004_20241005t184831_spec2_00009_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00013_asn.json to data/jw02079-o004_20241005t184831_spec2_00013_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00014_asn.json to data/jw02079-o004_20241005t184831_spec2_00014_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00015_asn.json to data/jw02079-o004_20241005t184831_spec2_00015_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00019_asn.json to data/jw02079-o004_20241005t184831_spec2_00019_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00020_asn.json to data/jw02079-o004_20241005t184831_spec2_00020_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00021_asn.json to data/jw02079-o004_20241005t184831_spec2_00021_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00025_asn.json to data/jw02079-o004_20241005t184831_spec2_00025_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00026_asn.json to data/jw02079-o004_20241005t184831_spec2_00026_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec2_00027_asn.json to data/jw02079-o004_20241005t184831_spec2_00027_asn.json ...
[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_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/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_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]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079-o004_20241005t184831_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_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 47 rows
Batch #4 / 244
Working with the following obsids:
218211264 : jw02079-o004_s00519_niriss_f115w-gr150r
218211265 : jw02079-o004_s00358_niriss_f150w-gr150r
216640178 : jw02079-o004_s00400_niriss_f115w-gr150c
216640179 : jw02079-o004_s01106_niriss_f200w-gr150r
218211266 : jw02079-o004_s00411_niriss_f150w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 59 rows
Batch #5 / 244
Working with the following obsids:
216640180 : jw02079-o004_s01387_niriss_f115w-gr150c
218211267 : jw02079-o004_s00785_niriss_f150w-gr150c
218211269 : jw02079-o004_s00394_niriss_f150w-gr150c
218211270 : jw02079-o004_s00831_niriss_f115w-gr150r
218211271 : jw02079-o004_s01237_niriss_f115w-gr150r
INFO: 26 of 71 products were duplicates. Only downloading 45 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #6 / 244
Working with the following obsids:
218211273 : jw02079-o004_s00426_niriss_f150w-gr150c
218211275 : jw02079-o004_s00920_niriss_f200w-gr150c
218211276 : jw02079-o004_s00636_niriss_f150w-gr150r
218211277 : jw02079-o004_s00954_niriss_f200w-gr150c
212418707 : jw02079-o004_s00430_niriss_f150w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00003_asn.json
jw02079-o004_20241005t184831_spec2_00003_asn.json
...
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 35 rows
Batch #7 / 244
Working with the following obsids:
216640181 : jw02079-o004_s01362_niriss_f115w-gr150c
218211279 : jw02079-o004_s00182_niriss_f200w-gr150c
218211280 : jw02079-o004_s01433_niriss_f200w-gr150c
218211281 : jw02079-o004_s01231_niriss_f150w-gr150r
218211282 : jw02079-o004_s00785_niriss_f150w-gr150r
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 47 rows
Batch #8 / 244
Working with the following obsids:
216640182 : jw02079-o004_s01153_niriss_f115w-gr150c
216640183 : jw02079-o004_s00548_niriss_f200w-gr150r
218211283 : jw02079-o004_s00222_niriss_f150w-gr150r
218211284 : jw02079-o004_s01388_niriss_f200w-gr150c
216640184 : jw02079-o004_s01262_niriss_f115w-gr150c
INFO: 19 of 59 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 59 rows
Batch #9 / 244
Working with the following obsids:
212418718 : jw02079-o004_s00683_niriss_f200w-gr150r
216640185 : jw02079-o004_s00209_niriss_f115w-gr150c
218211287 : jw02079-o004_s01256_niriss_f150w-gr150r
218211288 : jw02079-o004_s00055_niriss_f115w-gr150r
216640186 : jw02079-o004_s01262_niriss_f200w-gr150r
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 59 rows
Batch #10 / 244
Working with the following obsids:
212418727 : jw02079-o004_s01411_niriss_f115w-gr150r
218211290 : jw02079-o004_s01171_niriss_f200w-gr150c
218211291 : jw02079-o004_s00693_niriss_f150w-gr150c
218211293 : jw02079-o004_s00428_niriss_f200w-gr150c
218211294 : jw02079-o004_s00269_niriss_f150w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 47 rows
Batch #11 / 244
Working with the following obsids:
218211295 : jw02079-o004_s00311_niriss_f150w-gr150c
216640187 : jw02079-o004_s00406_niriss_f200w-gr150r
212418738 : jw02079-o004_s00748_niriss_f200w-gr150r
216640188 : jw02079-o004_s01321_niriss_f200w-gr150r
218211297 : jw02079-o004_s01272_niriss_f115w-gr150r
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 47 rows
Batch #12 / 244
Working with the following obsids:
216640189 : jw02079-o004_s01455_niriss_f200w-gr150r
218211299 : jw02079-o004_s01165_niriss_f115w-gr150r
216640190 : jw02079-o004_s01140_niriss_f115w-gr150c
216640191 : jw02079-o004_s00620_niriss_f200w-gr150r
192843955 : jw02079-o004_s00457_niriss_f150w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 59 rows
Batch #13 / 244
Working with the following obsids:
218211300 : jw02079-o004_s00845_niriss_f115w-gr150r
212418746 : jw02079-o004_s00530_niriss_f200w-gr150c
218211302 : jw02079-o004_s00461_niriss_f150w-gr150r
218211303 : jw02079-o004_s01079_niriss_f150w-gr150c
216640192 : jw02079-o004_s00423_niriss_f115w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 59 rows
Batch #14 / 244
Working with the following obsids:
216640193 : jw02079-o004_s01328_niriss_f115w-gr150c
218211304 : jw02079-o004_s00411_niriss_f150w-gr150r
218211305 : jw02079-o004_s00949_niriss_f200w-gr150c
216640194 : jw02079-o004_s00398_niriss_f115w-gr150c
218211306 : jw02079-o004_s00589_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #15 / 244
Working with the following obsids:
218211307 : jw02079-o004_s01170_niriss_f115w-gr150r
212418757 : jw02079-o004_s00557_niriss_f200w-gr150c
218211308 : jw02079-o004_s00989_niriss_f200w-gr150c
218211309 : jw02079-o004_s00748_niriss_f150w-gr150c
212418766 : jw02079-o004_s00483_niriss_f150w-gr150c
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 47 rows
Batch #16 / 244
Working with the following obsids:
212418767 : jw02079-o004_s01276_niriss_f150w-gr150c
218211312 : jw02079-o004_s00423_niriss_f115w-gr150r
218211313 : jw02079-o004_s00676_niriss_f150w-gr150c
212418774 : jw02079-o004_s01391_niriss_f200w-gr150r
212418775 : jw02079-o004_s00557_niriss_f200w-gr150r
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 47 rows
Batch #17 / 244
Working with the following obsids:
216640195 : jw02079-o004_s00217_niriss_f200w-gr150r
218211315 : jw02079-o004_s00446_niriss_f150w-gr150r
218211316 : jw02079-o004_s00618_niriss_f150w-gr150r
216640196 : jw02079-o004_s01025_niriss_f115w-gr150c
218211317 : jw02079-o004_s00403_niriss_f115w-gr150r
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 59 rows
Batch #18 / 244
Working with the following obsids:
218211318 : jw02079-o004_s00602_niriss_f115w-gr150r
218211319 : jw02079-o004_s01110_niriss_f115w-gr150r
216640197 : jw02079-o004_s00251_niriss_f115w-gr150c
218211320 : jw02079-o004_s00419_niriss_f150w-gr150c
216640198 : jw02079-o004_s01007_niriss_f115w-gr150c
INFO: 38 of 83 products were duplicates. Only downloading 45 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 83 rows
Batch #19 / 244
Working with the following obsids:
218211321 : jw02079-o004_s01235_niriss_f150w-gr150r
218211322 : jw02079-o004_s00340_niriss_f150w-gr150r
218211323 : jw02079-o004_s00440_niriss_f150w-gr150c
218211324 : jw02079-o004_s00792_niriss_f150w-gr150c
216640199 : jw02079-o004_s00129_niriss_f115w-gr150c
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 47 rows
Batch #20 / 244
Working with the following obsids:
216640200 : jw02079-o004_s00845_niriss_f115w-gr150c
216640201 : jw02079-o004_s00393_niriss_f115w-gr150c
216640202 : jw02079-o004_s01234_niriss_f200w-gr150r
218211326 : jw02079-o004_s01029_niriss_f200w-gr150c
216640203 : jw02079-o004_s01075_niriss_f115w-gr150c
INFO: 38 of 71 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 71 rows
Batch #21 / 244
Working with the following obsids:
216640204 : jw02079-o004_s00961_niriss_f200w-gr150r
218211329 : jw02079-o004_s00834_niriss_f150w-gr150c
218211330 : jw02079-o004_s00645_niriss_f200w-gr150c
218211331 : jw02079-o004_s00393_niriss_f115w-gr150r
218211332 : jw02079-o004_s00411_niriss_f200w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 47 rows
Batch #22 / 244
Working with the following obsids:
218211333 : jw02079-o004_s00630_niriss_f200w-gr150c
218211335 : jw02079-o004_s01089_niriss_f150w-gr150c
218211336 : jw02079-o004_s00379_niriss_f200w-gr150c
218211339 : jw02079-o004_s00648_niriss_f150w-gr150c
218211340 : jw02079-o004_s00993_niriss_f150w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00003_asn.json
jw02079-o004_20241005t184831_spec2_00003_asn.json
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 35 rows
Batch #23 / 244
Working with the following obsids:
216640205 : jw02079-o004_s00591_niriss_f115w-gr150c
216640206 : jw02079-o004_s00791_niriss_f115w-gr150c
216640207 : jw02079-o004_s01433_niriss_f200w-gr150r
218211342 : jw02079-o004_s00567_niriss_f115w-gr150r
216640208 : jw02079-o004_s00594_niriss_f115w-gr150c
INFO: 38 of 83 products were duplicates. Only downloading 45 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 83 rows
Batch #24 / 244
Working with the following obsids:
212418808 : jw02079-o004_s00880_niriss_f115w-gr150r
216640209 : jw02079-o004_s00705_niriss_f200w-gr150r
216640210 : jw02079-o004_s00964_niriss_f200w-gr150r
218211346 : jw02079-o004_s01185_niriss_f150w-gr150r
216640211 : jw02079-o004_s01272_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 59 rows
Batch #25 / 244
Working with the following obsids:
218211347 : jw02079-o004_s01310_niriss_f115w-gr150r
218211348 : jw02079-o004_s00257_niriss_f200w-gr150c
218211349 : jw02079-o004_s00406_niriss_f200w-gr150c
218211350 : jw02079-o004_s00440_niriss_f150w-gr150r
218211351 : jw02079-o004_s00961_niriss_f200w-gr150c
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 47 rows
Batch #26 / 244
Working with the following obsids:
216640212 : jw02079-o004_s00630_niriss_f200w-gr150r
216640213 : jw02079-o004_s00597_niriss_f115w-gr150c
218211353 : jw02079-o004_s00896_niriss_f115w-gr150r
218211354 : jw02079-o004_s00916_niriss_f115w-gr150r
218211355 : jw02079-o004_s00546_niriss_f200w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 71 rows
Batch #27 / 244
Working with the following obsids:
218211356 : jw02079-o004_s01117_niriss_f200w-gr150c
216640214 : jw02079-o004_s00456_niriss_f115w-gr150c
218211357 : jw02079-o004_s01321_niriss_f200w-gr150c
216640215 : jw02079-o004_s00407_niriss_f115w-gr150c
218211358 : jw02079-o004_s00828_niriss_f150w-gr150c
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 59 rows
Batch #28 / 244
Working with the following obsids:
218211359 : jw02079-o004_s00522_niriss_f115w-gr150r
192845402 : jw02079-o004_s00661_niriss_f115w-gr150c
216640216 : jw02079-o004_s01340_niriss_f200w-gr150r
218211360 : jw02079-o004_s01024_niriss_f115w-gr150r
212418822 : jw02079-o004_s00684_niriss_f200w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #29 / 244
Working with the following obsids:
216640217 : jw02079-o004_s00510_niriss_f200w-gr150r
218211362 : jw02079-o004_s00775_niriss_f150w-gr150r
218211364 : jw02079-o004_s00160_niriss_f115w-gr150r
218211365 : jw02079-o004_s00693_niriss_f150w-gr150r
216640218 : jw02079-o004_s00403_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 59 rows
Batch #30 / 244
Working with the following obsids:
218211366 : jw02079-o004_s00761_niriss_f150w-gr150r
218211367 : jw02079-o004_s01118_niriss_f150w-gr150r
216640219 : jw02079-o004_s00743_niriss_f115w-gr150c
218211369 : jw02079-o004_s00442_niriss_f150w-gr150r
218211370 : jw02079-o004_s01210_niriss_f150w-gr150c
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 47 rows
Batch #31 / 244
Working with the following obsids:
218211371 : jw02079-o004_s00556_niriss_f115w-gr150r
218211372 : jw02079-o004_s00741_niriss_f150w-gr150c
212418842 : jw02079-o004_s00748_niriss_f200w-gr150c
216640220 : jw02079-o004_s00755_niriss_f115w-gr150c
212418844 : jw02079-o004_s00962_niriss_f200w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 59 rows
Batch #32 / 244
Working with the following obsids:
192831709 : jw02079-o004_s00602_niriss_f200w-gr150r
216640221 : jw02079-o004_s00427_niriss_f115w-gr150c
218211375 : jw02079-o004_s00311_niriss_f150w-gr150r
218211376 : jw02079-o004_s00597_niriss_f115w-gr150r
216640222 : jw02079-o004_s01182_niriss_f115w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #33 / 244
Working with the following obsids:
218211379 : jw02079-o004_s00596_niriss_f200w-gr150c
218211380 : jw02079-o004_s00157_niriss_f150w-gr150r
218211381 : jw02079-o004_s00307_niriss_f150w-gr150r
218211382 : jw02079-o004_s00495_niriss_f200w-gr150c
218211383 : jw02079-o004_s01193_niriss_f150w-gr150c
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00003_asn.json
jw02079-o004_20241005t184831_spec2_00003_asn.json
...
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 35 rows
Batch #34 / 244
Working with the following obsids:
212418854 : jw02079-o004_s00862_niriss_f200w-gr150r
216640223 : jw02079-o004_s00785_niriss_f200w-gr150r
218211384 : jw02079-o004_s01007_niriss_f115w-gr150r
216640224 : jw02079-o004_s00920_niriss_f200w-gr150r
218211385 : jw02079-o004_s01317_niriss_f115w-gr150r
INFO: 33 of 59 products were duplicates. Only downloading 26 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 59 rows
Batch #35 / 244
Working with the following obsids:
218211387 : jw02079-o004_s00074_niriss_f150w-gr150r
212418861 : jw02079-o004_s00644_niriss_f150w-gr150c
218211388 : jw02079-o004_s00835_niriss_f150w-gr150c
218211389 : jw02079-o004_s01048_niriss_f150w-gr150r
212418865 : jw02079-o004_s00148_niriss_f115w-gr150c
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 47 rows
Batch #36 / 244
Working with the following obsids:
216640225 : jw02079-o004_s01237_niriss_f115w-gr150c
218211390 : jw02079-o004_s01064_niriss_f200w-gr150c
218211391 : jw02079-o004_s00580_niriss_f150w-gr150r
218211393 : jw02079-o004_s00840_niriss_f115w-gr150r
218211394 : jw02079-o004_s01208_niriss_f150w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 59 rows
Batch #37 / 244
Working with the following obsids:
218211395 : jw02079-o004_s00217_niriss_f200w-gr150c
212418869 : jw02079-o004_s00644_niriss_f150w-gr150r
212418870 : jw02079-o004_s00809_niriss_f200w-gr150c
218211396 : jw02079-o004_s00251_niriss_f115w-gr150r
218211397 : jw02079-o004_s00901_niriss_f200w-gr150c
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 47 rows
Batch #38 / 244
Working with the following obsids:
216640226 : jw02079-o004_s00387_niriss_f115w-gr150c
216640227 : jw02079-o004_s00506_niriss_f200w-gr150r
216640228 : jw02079-o004_s00160_niriss_f115w-gr150c
212418873 : jw02079-o004_s00526_niriss_f200w-gr150c
212418875 : jw02079-o004_s00526_niriss_f200w-gr150r
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
Length = 59 rows
Batch #39 / 244
Working with the following obsids:
218211399 : jw02079-o004_s00173_niriss_f200w-gr150c
218211400 : jw02079-o004_s00477_niriss_f115w-gr150r
218211401 : jw02079-o004_s00684_niriss_f115w-gr150r
216640229 : jw02079-o004_s00901_niriss_f200w-gr150r
216640230 : jw02079-o004_s00764_niriss_f115w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #40 / 244
Working with the following obsids:
216640231 : jw02079-o004_s00752_niriss_f115w-gr150c
216640232 : jw02079-o004_s01097_niriss_f200w-gr150r
216640233 : jw02079-o004_s00546_niriss_f200w-gr150r
216640234 : jw02079-o004_s00916_niriss_f115w-gr150c
218211402 : jw02079-o004_s00558_niriss_f200w-gr150c
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 59 rows
Batch #41 / 244
Working with the following obsids:
218211403 : jw02079-o004_s00606_niriss_f150w-gr150r
218211404 : jw02079-o004_s00827_niriss_f150w-gr150c
212418884 : jw02079-o004_s00008_niriss_f200w-gr150r
216640235 : jw02079-o004_s01009_niriss_f200w-gr150r
216640236 : jw02079-o004_s01420_niriss_f200w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [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_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 35 rows
Batch #42 / 244
Working with the following obsids:
218211405 : jw02079-o004_s01182_niriss_f115w-gr150r
218211406 : jw02079-o004_s01025_niriss_f115w-gr150r
216640237 : jw02079-o004_s00168_niriss_f115w-gr150c
218211407 : jw02079-o004_s00848_niriss_f115w-gr150r
218211408 : jw02079-o004_s00480_niriss_f200w-gr150c
INFO: 38 of 83 products were duplicates. Only downloading 45 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
...
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 83 rows
Batch #43 / 244
Working with the following obsids:
212418891 : jw02079-o004_s00721_niriss_f200w-gr150c
192832151 : jw02079-o004_s00608_niriss_f150w-gr150r
218211409 : jw02079-o004_s00614_niriss_f150w-gr150r
212418895 : jw02079-o004_s00483_niriss_f150w-gr150r
218211410 : jw02079-o004_s00591_niriss_f115w-gr150r
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 47 rows
Batch #44 / 244
Working with the following obsids:
218211411 : jw02079-o004_s00548_niriss_f200w-gr150c
216640238 : jw02079-o004_s00754_niriss_f200w-gr150r
218211412 : jw02079-o004_s01079_niriss_f150w-gr150r
216640239 : jw02079-o004_s00789_niriss_f200w-gr150r
218211413 : jw02079-o004_s00879_niriss_f150w-gr150c
INFO: 7 of 35 products were duplicates. Only downloading 28 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079-o004_20241005t184831_spec2_00005_asn.json
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 35 rows
Batch #45 / 244
Working with the following obsids:
218211414 : jw02079-o004_s01235_niriss_f150w-gr150c
218211415 : jw02079-o004_s00193_niriss_f150w-gr150r
216640240 : jw02079-o004_s00519_niriss_f115w-gr150c
216640241 : jw02079-o004_s00405_niriss_f115w-gr150c
218211417 : jw02079-o004_s00743_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #46 / 244
Working with the following obsids:
218211418 : jw02079-o004_s00786_niriss_f150w-gr150c
218211419 : jw02079-o004_s01022_niriss_f150w-gr150c
216640242 : jw02079-o004_s00558_niriss_f200w-gr150r
218211420 : jw02079-o004_s01018_niriss_f150w-gr150c
218211421 : jw02079-o004_s00759_niriss_f200w-gr150c
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00004_asn.json
jw02079004003_03101_00003_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 35 rows
Batch #47 / 244
Working with the following obsids:
218211422 : jw02079-o004_s00625_niriss_f115w-gr150r
218211423 : jw02079-o004_s00638_niriss_f115w-gr150r
218211424 : jw02079-o004_s00879_niriss_f150w-gr150r
212418911 : jw02079-o004_s01119_niriss_f200w-gr150r
216640243 : jw02079-o004_s01312_niriss_f115w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 71 rows
Batch #48 / 244
Working with the following obsids:
216640244 : jw02079-o004_s01367_niriss_f200w-gr150r
218211425 : jw02079-o004_s00377_niriss_f200w-gr150c
218211426 : jw02079-o004_s00129_niriss_f115w-gr150r
218211428 : jw02079-o004_s01241_niriss_f150w-gr150r
218211429 : jw02079-o004_s01340_niriss_f200w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 47 rows
Batch #49 / 244
Working with the following obsids:
192832328 : jw02079-o004_s00457_niriss_f150w-gr150r
218211432 : jw02079-o004_s00959_niriss_f150w-gr150r
192832353 : jw02079-o004_s00737_niriss_f200w-gr150r
218211433 : jw02079-o004_s00705_niriss_f200w-gr150c
218211434 : jw02079-o004_s01193_niriss_f150w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00004_asn.json
jw02079004003_03101_00003_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 35 rows
Batch #50 / 244
Working with the following obsids:
218211435 : jw02079-o004_s00120_niriss_f150w-gr150r
218211436 : jw02079-o004_s00748_niriss_f150w-gr150r
218211437 : jw02079-o004_s00449_niriss_f115w-gr150r
218211438 : jw02079-o004_s01138_niriss_f200w-gr150c
216640245 : jw02079-o004_s00449_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 59 rows
Batch #51 / 244
Working with the following obsids:
218211439 : jw02079-o004_s00387_niriss_f115w-gr150r
218211440 : jw02079-o004_s00120_niriss_f150w-gr150c
218211441 : jw02079-o004_s00605_niriss_f150w-gr150c
216640246 : jw02079-o004_s00381_niriss_f115w-gr150c
218211443 : jw02079-o004_s00827_niriss_f150w-gr150r
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 59 rows
Batch #52 / 244
Working with the following obsids:
216640247 : jw02079-o004_s01066_niriss_f115w-gr150c
218211444 : jw02079-o004_s00504_niriss_f150w-gr150c
218211445 : jw02079-o004_s01208_niriss_f150w-gr150r
216640248 : jw02079-o004_s00840_niriss_f115w-gr150c
218211446 : jw02079-o004_s00510_niriss_f200w-gr150c
INFO: 19 of 59 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 59 rows
Batch #53 / 244
Working with the following obsids:
218211447 : jw02079-o004_s00994_niriss_f115w-gr150r
216640249 : jw02079-o004_s00994_niriss_f115w-gr150c
216640250 : jw02079-o004_s01317_niriss_f115w-gr150c
218211448 : jw02079-o004_s00279_niriss_f115w-gr150r
218211450 : jw02079-o004_s00375_niriss_f200w-gr150c
INFO: 38 of 83 products were duplicates. Only downloading 45 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 83 rows
Batch #54 / 244
Working with the following obsids:
218211451 : jw02079-o004_s00761_niriss_f150w-gr150c
212418939 : jw02079-o004_s00333_niriss_f200w-gr150c
216640251 : jw02079-o004_s01403_niriss_f200w-gr150r
218211453 : jw02079-o004_s00982_niriss_f150w-gr150r
216640252 : jw02079-o004_s01385_niriss_f115w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 47 rows
Batch #55 / 244
Working with the following obsids:
218211454 : jw02079-o004_s01080_niriss_f150w-gr150r
212418943 : jw02079-o004_s00875_niriss_f115w-gr150r
218211455 : jw02079-o004_s01018_niriss_f150w-gr150r
216640253 : jw02079-o004_s00702_niriss_f200w-gr150r
218211457 : jw02079-o004_s01245_niriss_f150w-gr150r
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 47 rows
Batch #56 / 244
Working with the following obsids:
218211458 : jw02079-o004_s00088_niriss_f115w-gr150r
216640254 : jw02079-o004_s00094_niriss_f115w-gr150c
218211459 : jw02079-o004_s00659_niriss_f150w-gr150r
216640255 : jw02079-o004_s00759_niriss_f200w-gr150r
216640256 : jw02079-o004_s01163_niriss_f200w-gr150r
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 59 rows
Batch #57 / 244
Working with the following obsids:
218211460 : jw02079-o004_s01331_niriss_f150w-gr150r
218211461 : jw02079-o004_s00222_niriss_f150w-gr150c
216640257 : jw02079-o004_s00914_niriss_f200w-gr150r
218211462 : jw02079-o004_s01097_niriss_f200w-gr150c
216640258 : jw02079-o004_s00638_niriss_f115w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 47 rows
Batch #58 / 244
Working with the following obsids:
218211463 : jw02079-o004_s01105_niriss_f150w-gr150c
218211464 : jw02079-o004_s00274_niriss_f200w-gr150c
218211465 : jw02079-o004_s00168_niriss_f115w-gr150r
216640259 : jw02079-o004_s00119_niriss_f200w-gr150r
218211466 : jw02079-o004_s00546_niriss_f150w-gr150r
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 47 rows
Batch #59 / 244
Working with the following obsids:
216640260 : jw02079-o004_s00144_niriss_f115w-gr150c
218211469 : jw02079-o004_s01245_niriss_f150w-gr150c
216640261 : jw02079-o004_s01239_niriss_f200w-gr150r
218211470 : jw02079-o004_s00427_niriss_f115w-gr150r
216640262 : jw02079-o004_s00294_niriss_f200w-gr150r
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 59 rows
Batch #60 / 244
Working with the following obsids:
216640263 : jw02079-o004_s01199_niriss_f200w-gr150r
216640264 : jw02079-o004_s00495_niriss_f200w-gr150r
212418974 : jw02079-o004_s00529_niriss_f200w-gr150r
218211473 : jw02079-o004_s00659_niriss_f150w-gr150c
216640265 : jw02079-o004_s00600_niriss_f115w-gr150c
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 47 rows
Batch #61 / 244
Working with the following obsids:
218211475 : jw02079-o004_s00459_niriss_f150w-gr150r
218211476 : jw02079-o004_s00774_niriss_f115w-gr150r
216640266 : jw02079-o004_s00257_niriss_f200w-gr150r
216640267 : jw02079-o004_s00896_niriss_f115w-gr150c
181967842 : jw02079-o004_s00333_niriss_f200w-gr150r
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 59 rows
Batch #62 / 244
Working with the following obsids:
218211477 : jw02079-o004_s01275_niriss_f200w-gr150c
218211478 : jw02079-o004_s00614_niriss_f150w-gr150c
218211479 : jw02079-o004_s00918_niriss_f200w-gr150c
181967932 : jw02079-o004_s00437_niriss_f150w-gr150r
218211480 : jw02079-o004_s01299_niriss_f150w-gr150c
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00003_asn.json
jw02079-o004_20241005t184831_spec2_00003_asn.json
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 35 rows
Batch #63 / 244
Working with the following obsids:
216640268 : jw02079-o004_s00711_niriss_f200w-gr150r
212418990 : jw02079-o004_s00550_niriss_f150w-gr150r
216640269 : jw02079-o004_s00428_niriss_f115w-gr150c
218211481 : jw02079-o004_s00775_niriss_f150w-gr150c
218211482 : jw02079-o004_s00516_niriss_f150w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 47 rows
Batch #64 / 244
Working with the following obsids:
216640270 : jw02079-o004_s00522_niriss_f115w-gr150c
218211483 : jw02079-o004_s01234_niriss_f200w-gr150c
218211484 : jw02079-o004_s00982_niriss_f150w-gr150c
218211485 : jw02079-o004_s01393_niriss_f200w-gr150c
212418998 : jw02079-o004_s01119_niriss_f200w-gr150c
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 47 rows
Batch #65 / 244
Working with the following obsids:
216640271 : jw02079-o004_s00372_niriss_f115w-gr150c
216640272 : jw02079-o004_s00279_niriss_f115w-gr150c
218211486 : jw02079-o004_s01262_niriss_f200w-gr150c
218211487 : jw02079-o004_s00428_niriss_f115w-gr150r
218211488 : jw02079-o004_s00596_niriss_f150w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 71 rows
Batch #66 / 244
Working with the following obsids:
192848640 : jw02079-o004_s00737_niriss_f200w-gr150c
218211490 : jw02079-o004_s01009_niriss_f200w-gr150c
212419002 : jw02079-o004_s00533_niriss_f200w-gr150c
212419004 : jw02079-o004_s00721_niriss_f200w-gr150r
218211491 : jw02079-o004_s00461_niriss_f150w-gr150c
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
...
jw02079004002_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00007_asn.json
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 35 rows
Batch #67 / 244
Working with the following obsids:
216640273 : jw02079-o004_s00062_niriss_f115w-gr150c
218211493 : jw02079-o004_s00008_niriss_f200w-gr150c
218211494 : jw02079-o004_s00254_niriss_f115w-gr150r
218211495 : jw02079-o004_s00794_niriss_f115w-gr150r
216640274 : jw02079-o004_s01117_niriss_f200w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #68 / 244
Working with the following obsids:
212419005 : jw02079-o004_s00129_niriss_f150w-gr150r
212419006 : jw02079-o004_s00722_niriss_f200w-gr150r
216640275 : jw02079-o004_s00848_niriss_f115w-gr150c
218211496 : jw02079-o004_s00148_niriss_f150w-gr150c
218211497 : jw02079-o004_s01199_niriss_f200w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 47 rows
Batch #69 / 244
Working with the following obsids:
218211499 : jw02079-o004_s00886_niriss_f200w-gr150c
218211500 : jw02079-o004_s00893_niriss_f150w-gr150r
218211501 : jw02079-o004_s00205_niriss_f150w-gr150c
218211502 : jw02079-o004_s00472_niriss_f150w-gr150c
216640276 : jw02079-o004_s00958_niriss_f115w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 47 rows
Batch #70 / 244
Working with the following obsids:
218211503 : jw02079-o004_s00741_niriss_f150w-gr150r
212419012 : jw02079-o004_s00875_niriss_f115w-gr150c
212419019 : jw02079-o004_s00722_niriss_f200w-gr150c
216640277 : jw02079-o004_s00477_niriss_f115w-gr150c
216640278 : jw02079-o004_s00664_niriss_f115w-gr150c
INFO: 38 of 71 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 71 rows
Batch #71 / 244
Working with the following obsids:
218211504 : jw02079-o004_s00574_niriss_f150w-gr150c
218211505 : jw02079-o004_s00754_niriss_f200w-gr150c
218211506 : jw02079-o004_s00615_niriss_f150w-gr150c
212419022 : jw02079-o004_s00862_niriss_f200w-gr150c
216640279 : jw02079-o004_s00774_niriss_f115w-gr150c
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 47 rows
Batch #72 / 244
Working with the following obsids:
216640280 : jw02079-o004_s01024_niriss_f115w-gr150c
218211508 : jw02079-o004_s00456_niriss_f115w-gr150r
212419025 : jw02079-o004_s00710_niriss_f200w-gr150c
216640281 : jw02079-o004_s00583_niriss_f115w-gr150c
218211509 : jw02079-o004_s00752_niriss_f115w-gr150r
INFO: 38 of 83 products were duplicates. Only downloading 45 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 83 rows
Batch #73 / 244
Working with the following obsids:
212419029 : jw02079-o004_s00861_niriss_f200w-gr150c
218211510 : jw02079-o004_s01075_niriss_f115w-gr150r
218211511 : jw02079-o004_s00446_niriss_f150w-gr150c
218211512 : jw02079-o004_s01080_niriss_f150w-gr150c
216640282 : jw02079-o004_s01388_niriss_f200w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 47 rows
Batch #74 / 244
Working with the following obsids:
218211513 : jw02079-o004_s00144_niriss_f115w-gr150r
218211514 : jw02079-o004_s00834_niriss_f150w-gr150r
216640283 : jw02079-o004_s00949_niriss_f200w-gr150r
218211515 : jw02079-o004_s00648_niriss_f150w-gr150r
218211516 : jw02079-o004_s00899_niriss_f150w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 47 rows
Batch #75 / 244
Working with the following obsids:
218211517 : jw02079-o004_s00618_niriss_f150w-gr150c
218211518 : jw02079-o004_s00472_niriss_f150w-gr150r
212419037 : jw02079-o004_s01411_niriss_f115w-gr150c
216640284 : jw02079-o004_s01337_niriss_f115w-gr150c
218211519 : jw02079-o004_s01289_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #76 / 244
Working with the following obsids:
212419040 : jw02079-o004_s00684_niriss_f200w-gr150r
218211520 : jw02079-o004_s00835_niriss_f150w-gr150r
218211521 : jw02079-o004_s00993_niriss_f150w-gr150c
216640285 : jw02079-o004_s01064_niriss_f200w-gr150r
212419043 : jw02079-o004_s00725_niriss_f200w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [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_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 35 rows
Batch #77 / 244
Working with the following obsids:
192833055 : jw02079-o004_s00523_niriss_f200w-gr150r
218211522 : jw02079-o004_s00929_niriss_f150w-gr150r
218211523 : jw02079-o004_s01367_niriss_f200w-gr150c
218211524 : jw02079-o004_s00157_niriss_f150w-gr150c
218211525 : jw02079-o004_s00273_niriss_f150w-gr150c
INFO: 7 of 35 products were duplicates. Only downloading 28 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00004_asn.json
jw02079004003_03101_00003_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 35 rows
Batch #78 / 244
Working with the following obsids:
218211526 : jw02079-o004_s00193_niriss_f150w-gr150c
216640286 : jw02079-o004_s00182_niriss_f200w-gr150r
216640287 : jw02079-o004_s00954_niriss_f200w-gr150r
218211527 : jw02079-o004_s01022_niriss_f150w-gr150r
216640288 : jw02079-o004_s00567_niriss_f115w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 47 rows
Batch #79 / 244
Working with the following obsids:
218211528 : jw02079-o004_s00268_niriss_f200w-gr150c
218211529 : jw02079-o004_s00214_niriss_f115w-gr150r
216640289 : jw02079-o004_s00173_niriss_f200w-gr150r
218211530 : jw02079-o004_s00381_niriss_f115w-gr150r
216640290 : jw02079-o004_s00268_niriss_f200w-gr150r
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 59 rows
Batch #80 / 244
Working with the following obsids:
216640291 : jw02079-o004_s00254_niriss_f115w-gr150c
218211531 : jw02079-o004_s00800_niriss_f115w-gr150r
212419058 : jw02079-o004_s00861_niriss_f200w-gr150r
218211532 : jw02079-o004_s00294_niriss_f200w-gr150c
218211533 : jw02079-o004_s00094_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #81 / 244
Working with the following obsids:
216640292 : jw02079-o004_s01343_niriss_f115w-gr150c
218211534 : jw02079-o004_s00584_niriss_f150w-gr150c
218211535 : jw02079-o004_s00789_niriss_f200w-gr150c
218211536 : jw02079-o004_s00675_niriss_f150w-gr150c
216640293 : jw02079-o004_s00004_niriss_f115w-gr150c
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 59 rows
Batch #82 / 244
Working with the following obsids:
218211537 : jw02079-o004_s00583_niriss_f115w-gr150r
218211538 : jw02079-o004_s00444_niriss_f150w-gr150r
218211539 : jw02079-o004_s00782_niriss_f150w-gr150r
216640294 : jw02079-o004_s01310_niriss_f115w-gr150c
218211540 : jw02079-o004_s01300_niriss_f150w-gr150r
INFO: 14 of 59 products were duplicates. Only downloading 45 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 59 rows
Batch #83 / 244
Working with the following obsids:
212419075 : jw02079-o004_s00430_niriss_f150w-gr150c
216640295 : jw02079-o004_s00989_niriss_f200w-gr150r
218211542 : jw02079-o004_s00004_niriss_f115w-gr150r
212419080 : jw02079-o004_s01276_niriss_f150w-gr150r
216640296 : jw02079-o004_s00596_niriss_f200w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 47 rows
Batch #84 / 244
Working with the following obsids:
218211543 : jw02079-o004_s01403_niriss_f200w-gr150c
218211544 : jw02079-o004_s00426_niriss_f150w-gr150r
218211545 : jw02079-o004_s00600_niriss_f115w-gr150r
216640297 : jw02079-o004_s00480_niriss_f200w-gr150r
218211546 : jw02079-o004_s00574_niriss_f150w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 47 rows
Batch #85 / 244
Working with the following obsids:
216640298 : jw02079-o004_s00274_niriss_f200w-gr150r
218211547 : jw02079-o004_s00620_niriss_f200w-gr150c
218211549 : jw02079-o004_s00837_niriss_f150w-gr150c
216640299 : jw02079-o004_s00602_niriss_f115w-gr150c
218211550 : jw02079-o004_s00208_niriss_f200w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 47 rows
Batch #86 / 244
Working with the following obsids:
212419089 : jw02079-o004_s00533_niriss_f200w-gr150r
218211551 : jw02079-o004_s00335_niriss_f200w-gr150c
218211552 : jw02079-o004_s01118_niriss_f150w-gr150c
218211553 : jw02079-o004_s01106_niriss_f200w-gr150c
216640300 : jw02079-o004_s01370_niriss_f200w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
...
jw02079004002_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00007_asn.json
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 35 rows
Batch #87 / 244
Working with the following obsids:
212419102 : jw02079-o004_s00725_niriss_f200w-gr150c
218211554 : jw02079-o004_s00508_niriss_f150w-gr150c
216640301 : jw02079-o004_s01165_niriss_f115w-gr150c
218211555 : jw02079-o004_s00372_niriss_f115w-gr150r
216640302 : jw02079-o004_s00214_niriss_f115w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #88 / 244
Working with the following obsids:
216640303 : jw02079-o004_s01170_niriss_f115w-gr150c
218211556 : jw02079-o004_s00893_niriss_f150w-gr150c
218211557 : jw02079-o004_s00506_niriss_f200w-gr150c
216640304 : jw02079-o004_s00428_niriss_f200w-gr150r
216640305 : jw02079-o004_s00595_niriss_f200w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 47 rows
Batch #89 / 244
Working with the following obsids:
216640306 : jw02079-o004_s01247_niriss_f200w-gr150r
216640307 : jw02079-o004_s01352_niriss_f200w-gr150r
218211558 : jw02079-o004_s00899_niriss_f150w-gr150r
218211559 : jw02079-o004_s00419_niriss_f150w-gr150r
216640308 : jw02079-o004_s01138_niriss_f200w-gr150r
INFO: 21 of 35 products were duplicates. Only downloading 14 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [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_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 35 rows
Batch #90 / 244
Working with the following obsids:
218211560 : jw02079-o004_s00437_niriss_f115w-gr150r
218211561 : jw02079-o004_s00965_niriss_f150w-gr150c
216640309 : jw02079-o004_s00556_niriss_f115w-gr150c
218211562 : jw02079-o004_s00792_niriss_f150w-gr150r
218211563 : jw02079-o004_s00639_niriss_f200w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 59 rows
Batch #91 / 244
Working with the following obsids:
218211564 : jw02079-o004_s01153_niriss_f115w-gr150r
218211565 : jw02079-o004_s00785_niriss_f200w-gr150c
218211566 : jw02079-o004_s01362_niriss_f115w-gr150r
212419118 : jw02079-o004_s00674_niriss_f200w-gr150r
216640310 : jw02079-o004_s01259_niriss_f200w-gr150r
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 59 rows
Batch #92 / 244
Working with the following obsids:
218211567 : jw02079-o004_s00205_niriss_f150w-gr150r
218211568 : jw02079-o004_s01102_niriss_f150w-gr150c
218211569 : jw02079-o004_s00335_niriss_f150w-gr150c
218211570 : jw02079-o004_s00914_niriss_f200w-gr150c
218211571 : jw02079-o004_s00664_niriss_f115w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 47 rows
Batch #93 / 244
Working with the following obsids:
212419122 : jw02079-o004_s00497_niriss_f115w-gr150c
218211573 : jw02079-o004_s00442_niriss_f150w-gr150c
216640311 : jw02079-o004_s00437_niriss_f115w-gr150c
216640312 : jw02079-o004_s00208_niriss_f200w-gr150r
218211574 : jw02079-o004_s00340_niriss_f150w-gr150c
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 59 rows
Batch #94 / 244
Working with the following obsids:
216640313 : jw02079-o004_s00375_niriss_f200w-gr150r
218211575 : jw02079-o004_s00782_niriss_f150w-gr150c
216640314 : jw02079-o004_s01043_niriss_f115w-gr150c
218211576 : jw02079-o004_s00504_niriss_f150w-gr150r
218211578 : jw02079-o004_s00209_niriss_f115w-gr150r
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 59 rows
Batch #95 / 244
Working with the following obsids:
216640315 : jw02079-o004_s00684_niriss_f115w-gr150c
212419131 : jw02079-o004_s00550_niriss_f150w-gr150c
218211579 : jw02079-o004_s01105_niriss_f150w-gr150r
218211580 : jw02079-o004_s00284_niriss_f115w-gr150r
218211581 : jw02079-o004_s01452_niriss_f200w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 59 rows
Batch #96 / 244
Working with the following obsids:
218211582 : jw02079-o004_s00148_niriss_f150w-gr150r
218211583 : jw02079-o004_s01387_niriss_f115w-gr150r
218211584 : jw02079-o004_s00119_niriss_f200w-gr150c
216640316 : jw02079-o004_s01171_niriss_f200w-gr150r
218211585 : jw02079-o004_s00595_niriss_f200w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 47 rows
Batch #97 / 244
Working with the following obsids:
218211586 : jw02079-o004_s00958_niriss_f115w-gr150r
216640317 : jw02079-o004_s00377_niriss_f200w-gr150r
218211587 : jw02079-o004_s01331_niriss_f150w-gr150c
216640318 : jw02079-o004_s00568_niriss_f115w-gr150c
218211588 : jw02079-o004_s00981_niriss_f150w-gr150r
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 59 rows
Batch #98 / 244
Working with the following obsids:
218211589 : jw02079-o004_s00398_niriss_f115w-gr150r
216640319 : jw02079-o004_s01289_niriss_f115w-gr150c
218211590 : jw02079-o004_s00062_niriss_f115w-gr150r
218211591 : jw02079-o004_s01420_niriss_f200w-gr150c
212419147 : jw02079-o004_s00869_niriss_f200w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 71 rows
Batch #99 / 244
Working with the following obsids:
216640320 : jw02079-o004_s01288_niriss_f115w-gr150c
212419149 : jw02079-o004_s00809_niriss_f200w-gr150r
218211592 : jw02079-o004_s00764_niriss_f115w-gr150r
218211593 : jw02079-o004_s00517_niriss_f200w-gr150c
218211594 : jw02079-o004_s00230_niriss_f150w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 59 rows
Batch #100 / 244
Working with the following obsids:
192851222 : jw02079-o004_s00661_niriss_f115w-gr150r
218211595 : jw02079-o004_s01352_niriss_f200w-gr150c
216640321 : jw02079-o004_s00088_niriss_f115w-gr150c
218211596 : jw02079-o004_s00594_niriss_f115w-gr150r
218211597 : jw02079-o004_s00546_niriss_f150w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 71 rows
Batch #101 / 244
Working with the following obsids:
218211598 : jw02079-o004_s01043_niriss_f115w-gr150r
218211599 : jw02079-o004_s00528_niriss_f150w-gr150r
218211600 : jw02079-o004_s00929_niriss_f150w-gr150c
218211602 : jw02079-o004_s00210_niriss_f150w-gr150r
216640322 : jw02079-o004_s01320_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 59 rows
Batch #102 / 244
Working with the following obsids:
218211603 : jw02079-o004_s01455_niriss_f200w-gr150c
216640323 : jw02079-o004_s01452_niriss_f200w-gr150r
218211604 : jw02079-o004_s00584_niriss_f150w-gr150r
218211605 : jw02079-o004_s00459_niriss_f150w-gr150c
218211606 : jw02079-o004_s01256_niriss_f150w-gr150c
INFO: 7 of 35 products were duplicates. Only downloading 28 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00004_asn.json
jw02079004003_03101_00003_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 35 rows
Batch #103 / 244
Working with the following obsids:
218211607 : jw02079-o004_s01089_niriss_f150w-gr150r
218211608 : jw02079-o004_s00307_niriss_f150w-gr150c
218211609 : jw02079-o004_s00860_niriss_f150w-gr150r
218211610 : jw02079-o004_s01247_niriss_f200w-gr150c
181969125 : jw02079-o004_s00437_niriss_f150w-gr150c
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00003_asn.json
jw02079004003_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00010_asn.json
jw02079-o004_20241005t184831_spec2_00010_asn.json
jw02079004002_09101_00003_nis_rate.fits
jw02079004002_09101_00003_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 35 rows
Batch #104 / 244
Working with the following obsids:
212419163 : jw02079-o004_s00633_niriss_f115w-gr150c
216640324 : jw02079-o004_s00787_niriss_f115w-gr150c
218211612 : jw02079-o004_s00702_niriss_f200w-gr150c
218211613 : jw02079-o004_s01262_niriss_f115w-gr150r
216640325 : jw02079-o004_s00055_niriss_f115w-gr150c
INFO: 38 of 83 products were duplicates. Only downloading 45 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 83 rows
Batch #105 / 244
Working with the following obsids:
216640326 : jw02079-o004_s00648_niriss_f115w-gr150c
212419170 : jw02079-o004_s00003_niriss_f150w-gr150r
192851529 : jw02079-o004_s00523_niriss_f200w-gr150c
218211614 : jw02079-o004_s00791_niriss_f115w-gr150r
216640327 : jw02079-o004_s00284_niriss_f115w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #106 / 244
Working with the following obsids:
218211615 : jw02079-o004_s00786_niriss_f150w-gr150r
218211616 : jw02079-o004_s00568_niriss_f115w-gr150r
218211617 : jw02079-o004_s00860_niriss_f150w-gr150c
218211618 : jw02079-o004_s01163_niriss_f200w-gr150c
218211619 : jw02079-o004_s00964_niriss_f200w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 47 rows
Batch #107 / 244
Working with the following obsids:
218211620 : jw02079-o004_s00755_niriss_f115w-gr150r
216640328 : jw02079-o004_s00912_niriss_f200w-gr150r
212419187 : jw02079-o004_s01391_niriss_f200w-gr150c
212419188 : jw02079-o004_s00003_niriss_f150w-gr150c
218211621 : jw02079-o004_s00837_niriss_f150w-gr150r
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 47 rows
Batch #108 / 244
Working with the following obsids:
216640329 : jw02079-o004_s00517_niriss_f200w-gr150r
218211622 : jw02079-o004_s00508_niriss_f150w-gr150r
216640330 : jw02079-o004_s01110_niriss_f115w-gr150c
218211624 : jw02079-o004_s01328_niriss_f115w-gr150r
218211625 : jw02079-o004_s01102_niriss_f150w-gr150r
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 59 rows
Batch #109 / 244
Working with the following obsids:
218211626 : jw02079-o004_s00909_niriss_f200w-gr150c
218211627 : jw02079-o004_s01370_niriss_f200w-gr150c
218211628 : jw02079-o004_s00443_niriss_f150w-gr150c
218211629 : jw02079-o004_s01241_niriss_f150w-gr150c
218211630 : jw02079-o004_s00269_niriss_f150w-gr150c
INFO: 21 of 35 products were duplicates. Only downloading 14 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00003_asn.json
jw02079-o004_20241005t184831_spec2_00003_asn.json
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 35 rows
Batch #110 / 244
Working with the following obsids:
218211631 : jw02079-o004_s00400_niriss_f115w-gr150r
218211632 : jw02079-o004_s00358_niriss_f150w-gr150c
212419206 : jw02079-o004_s00869_niriss_f200w-gr150c
216640331 : jw02079-o004_s00285_niriss_f200w-gr150r
218211634 : jw02079-o004_s01185_niriss_f150w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 47 rows
Batch #111 / 244
Working with the following obsids:
218211635 : jw02079-o004_s01385_niriss_f115w-gr150r
216640332 : jw02079-o004_s00335_niriss_f200w-gr150r
212419208 : jw02079-o004_s00683_niriss_f200w-gr150c
218211637 : jw02079-o004_s00615_niriss_f150w-gr150r
216640333 : jw02079-o004_s01393_niriss_f200w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 47 rows
Batch #112 / 244
Working with the following obsids:
218211638 : jw02079-o004_s00273_niriss_f150w-gr150r
218211639 : jw02079-o004_s01066_niriss_f115w-gr150r
218211640 : jw02079-o004_s00787_niriss_f115w-gr150r
218211641 : jw02079-o004_s00210_niriss_f150w-gr150c
218211642 : jw02079-o004_s00407_niriss_f115w-gr150r
INFO: 38 of 71 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #113 / 244
Working with the following obsids:
218211643 : jw02079-o004_s00528_niriss_f150w-gr150c
218211644 : jw02079-o004_s01288_niriss_f115w-gr150r
218211645 : jw02079-o004_s00636_niriss_f150w-gr150c
218211646 : jw02079-o004_s00648_niriss_f115w-gr150r
218211647 : jw02079-o004_s01231_niriss_f150w-gr150c
INFO: 33 of 59 products were duplicates. Only downloading 26 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
Length = 59 rows
Batch #114 / 244
Working with the following obsids:
216640334 : jw02079-o004_s00589_niriss_f115w-gr150c
216640335 : jw02079-o004_s00886_niriss_f200w-gr150r
212419220 : jw02079-o004_s00148_niriss_f115w-gr150r
218211649 : jw02079-o004_s01299_niriss_f150w-gr150r
218211650 : jw02079-o004_s01293_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #115 / 244
Working with the following obsids:
216640336 : jw02079-o004_s01293_niriss_f115w-gr150c
218211651 : jw02079-o004_s01312_niriss_f115w-gr150r
212419225 : jw02079-o004_s00633_niriss_f115w-gr150r
216640337 : jw02079-o004_s00918_niriss_f200w-gr150r
216640338 : jw02079-o004_s00639_niriss_f200w-gr150r
INFO: 26 of 71 products were duplicates. Only downloading 45 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #116 / 244
Working with the following obsids:
212419226 : jw02079-o004_s00710_niriss_f200w-gr150r
216640339 : jw02079-o004_s00625_niriss_f115w-gr150c
218211653 : jw02079-o004_s01300_niriss_f150w-gr150c
218211654 : jw02079-o004_s00444_niriss_f150w-gr150c
218211656 : jw02079-o004_s01239_niriss_f200w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 47 rows
Batch #117 / 244
Working with the following obsids:
212419227 : jw02079-o004_s00529_niriss_f200w-gr150c
218211657 : jw02079-o004_s00675_niriss_f150w-gr150r
218211658 : jw02079-o004_s00335_niriss_f150w-gr150r
212419228 : jw02079-o004_s00962_niriss_f200w-gr150r
218211660 : jw02079-o004_s01343_niriss_f115w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 47 rows
Batch #118 / 244
Working with the following obsids:
218211661 : jw02079-o004_s00405_niriss_f115w-gr150r
216640340 : jw02079-o004_s00379_niriss_f200w-gr150r
218211662 : jw02079-o004_s00605_niriss_f150w-gr150r
218211663 : jw02079-o004_s01337_niriss_f115w-gr150r
212419235 : jw02079-o004_s00880_niriss_f115w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00006_asn.json
Length = 71 rows
Batch #119 / 244
Working with the following obsids:
212419236 : jw02079-o004_s00530_niriss_f200w-gr150r
218211664 : jw02079-o004_s01261_niriss_f150w-gr150c
212419238 : jw02079-o004_s00129_niriss_f150w-gr150c
218211666 : jw02079-o004_s00828_niriss_f150w-gr150r
216640341 : jw02079-o004_s00357_niriss_f115w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 47 rows
Batch #120 / 244
Working with the following obsids:
192852581 : jw02079-o004_s00608_niriss_f150w-gr150c
218211667 : jw02079-o004_s00981_niriss_f150w-gr150c
218211668 : jw02079-o004_s00230_niriss_f150w-gr150r
218211669 : jw02079-o004_s00912_niriss_f200w-gr150c
218211670 : jw02079-o004_s00443_niriss_f150w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00003_asn.json
jw02079004003_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00010_asn.json
jw02079-o004_20241005t184831_spec2_00010_asn.json
jw02079004002_09101_00003_nis_rate.fits
jw02079004002_09101_00003_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00003_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 35 rows
Batch #121 / 244
Working with the following obsids:
216640342 : jw02079-o004_s00645_niriss_f200w-gr150r
216640343 : jw02079-o004_s00831_niriss_f115w-gr150c
216640344 : jw02079-o004_s00800_niriss_f115w-gr150c
218211672 : jw02079-o004_s00394_niriss_f150w-gr150r
212419246 : jw02079-o004_s00497_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20240704t000032_spec3_00006_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00005_asn.json
jw02079-o004_20240704t000032_spec3_00004_asn.json
Length = 71 rows
Batch #122 / 244
Working with the following obsids:
216640345 : jw02079-o004_s01275_niriss_f200w-gr150r
212419248 : jw02079-o004_s00674_niriss_f200w-gr150c
218211674 : jw02079-o004_s00285_niriss_f200w-gr150c
216640346 : jw02079-o004_s00411_niriss_f200w-gr150r
113650767 : jw02079-o004_t001_niriss_clear-f115w
INFO: 14 of 77 products were duplicates. Only downloading 63 unique product(s). [astroquery.mast.observations]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00327_asn.json to data/jw02079-o004_20241005t184831_image2_00327_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00328_asn.json to data/jw02079-o004_20241005t184831_image2_00328_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00329_asn.json to data/jw02079-o004_20241005t184831_image2_00329_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00400_asn.json to data/jw02079-o004_20241005t184831_image2_00400_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00401_asn.json to data/jw02079-o004_20241005t184831_image2_00401_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00402_asn.json to data/jw02079-o004_20241005t184831_image2_00402_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00403_asn.json to data/jw02079-o004_20241005t184831_image2_00403_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00444_asn.json to data/jw02079-o004_20241005t184831_image2_00444_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00475_asn.json to data/jw02079-o004_20241005t184831_image2_00475_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00476_asn.json to data/jw02079-o004_20241005t184831_image2_00476_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00477_asn.json to data/jw02079-o004_20241005t184831_image2_00477_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00548_asn.json to data/jw02079-o004_20241005t184831_image2_00548_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00549_asn.json to data/jw02079-o004_20241005t184831_image2_00549_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00550_asn.json to data/jw02079-o004_20241005t184831_image2_00550_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00551_asn.json to data/jw02079-o004_20241005t184831_image2_00551_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00592_asn.json to data/jw02079-o004_20241005t184831_image2_00592_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00623_asn.json to data/jw02079-o004_20241005t184831_image2_00623_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00624_asn.json to data/jw02079-o004_20241005t184831_image2_00624_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00625_asn.json to data/jw02079-o004_20241005t184831_image2_00625_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00696_asn.json to data/jw02079-o004_20241005t184831_image2_00696_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00697_asn.json to data/jw02079-o004_20241005t184831_image2_00697_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00698_asn.json to data/jw02079-o004_20241005t184831_image2_00698_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00699_asn.json to data/jw02079-o004_20241005t184831_image2_00699_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00740_asn.json to data/jw02079-o004_20241005t184831_image2_00740_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image3_00009_asn.json to data/jw02079-o004_20241005t184831_image3_00009_asn.json ...
[Done]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
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_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_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_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]
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_20241005t184831_image2_00548_asn.json
jw02079004001_10101_00004_nis_rate.fits
jw02079-o004_20241005t184831_image2_00625_asn.json
jw02079004001_06101_00001_nis_rate.fits
jw02079-o004_20241005t184831_image2_00551_asn.json
jw02079004001_10101_00001_nis_rate.fits
jw02079-o004_20241005t184831_image2_00549_asn.json
jw02079004001_10101_00003_nis_rate.fits
jw02079-o004_20241005t184831_image2_00698_asn.json
jw02079004001_04101_00002_nis_rate.fits
...
jw02079004002_04101_00002_nis_rate.fits
jw02079-o004_20241005t184831_image2_00328_asn.json
jw02079004002_06101_00002_nis_rate.fits
jw02079-o004_20241005t184831_image2_00444_asn.json
jw02079004002_02101_00001_nis_rate.fits
jw02079-o004_20241005t184831_image3_00009_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00002_asn.json
jw02079-o004_20240704t000032_spec3_00001_asn.json
Length = 77 rows
Batch #123 / 244
Working with the following obsids:
113644309 : jw02079-o004_t001_niriss_clear-f200w
113650778 : jw02079-o004_t001_niriss_clear-f150w
230240076 : jw02079-o004_s000001313_niriss_f150w-gr150r
230239813 : jw02079-o004_s000000425_niriss_f115w-gr150r
230240124 : jw02079-o004_s000000406_niriss_f200w-gr150r
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00031_asn.json to data/jw02079-o004_20241005t184831_image2_00031_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00032_asn.json to data/jw02079-o004_20241005t184831_image2_00032_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00033_asn.json to data/jw02079-o004_20241005t184831_image2_00033_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00104_asn.json to data/jw02079-o004_20241005t184831_image2_00104_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00105_asn.json to data/jw02079-o004_20241005t184831_image2_00105_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00106_asn.json to data/jw02079-o004_20241005t184831_image2_00106_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00107_asn.json to data/jw02079-o004_20241005t184831_image2_00107_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00148_asn.json to data/jw02079-o004_20241005t184831_image2_00148_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00179_asn.json to data/jw02079-o004_20241005t184831_image2_00179_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00180_asn.json to data/jw02079-o004_20241005t184831_image2_00180_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00181_asn.json to data/jw02079-o004_20241005t184831_image2_00181_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00252_asn.json to data/jw02079-o004_20241005t184831_image2_00252_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00253_asn.json to data/jw02079-o004_20241005t184831_image2_00253_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00254_asn.json to data/jw02079-o004_20241005t184831_image2_00254_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00255_asn.json to data/jw02079-o004_20241005t184831_image2_00255_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image2_00296_asn.json to data/jw02079-o004_20241005t184831_image2_00296_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image3_00002_asn.json to data/jw02079-o004_20241005t184831_image3_00002_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_image3_00005_asn.json to data/jw02079-o004_20241005t184831_image3_00005_asn.json ...
[Done]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec3_00002_asn.json to data/jw02079-o004_20241005t184831_spec3_00002_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec3_00004_asn.json to data/jw02079-o004_20241005t184831_spec3_00004_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec3_00006_asn.json to data/jw02079-o004_20241005t184831_spec3_00006_asn.json ...
[Done]
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]
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]
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]
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]
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_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_12101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_image3_00002_asn.json
jw02079-o004_20241005t184831_image3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
Length = 67 rows
Batch #124 / 244
Working with the following obsids:
230239601 : jw02079-o004_s000000552_niriss_f200w-gr150c
231801813 : jw02079-o004_s000001454_niriss_f115w-gr150c
230239561 : jw02079-o004_s000001092_niriss_f150w-gr150c
231801885 : jw02079-o004_s000001365_niriss_f115w-gr150c
230240090 : jw02079-o004_s000000307_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec3_00001_asn.json to data/jw02079-o004_20241005t184831_spec3_00001_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec3_00003_asn.json to data/jw02079-o004_20241005t184831_spec3_00003_asn.json ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw02079-o004_20241005t184831_spec3_00005_asn.json to data/jw02079-o004_20241005t184831_spec3_00005_asn.json ...
[Done]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #125 / 244
Working with the following obsids:
230239562 : jw02079-o004_s000000596_niriss_f200w-gr150r
230239563 : jw02079-o004_s000001401_niriss_f200w-gr150r
230239564 : jw02079-o004_s000000478_niriss_f150w-gr150c
230239565 : jw02079-o004_s000000746_niriss_f200w-gr150c
230239567 : jw02079-o004_s000000373_niriss_f200w-gr150c
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
...
jw02079004002_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00007_asn.json
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
Length = 35 rows
Batch #126 / 244
Working with the following obsids:
231802174 : jw02079-o004_s000001213_niriss_f115w-gr150c
230239568 : jw02079-o004_s000000913_niriss_f200w-gr150r
230239569 : jw02079-o004_s000000529_niriss_f200w-gr150r
230240121 : jw02079-o004_s000001220_niriss_f150w-gr150r
230239570 : jw02079-o004_s000000471_niriss_f150w-gr150r
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #127 / 244
Working with the following obsids:
231802354 : jw02079-o004_s000000461_niriss_f115w-gr150c
230239571 : jw02079-o004_s000000482_niriss_f150w-gr150c
230240040 : jw02079-o004_s000000672_niriss_f115w-gr150r
230242038 : jw02079-o004_s000001086_niriss_f115w-gr150r
230239572 : jw02079-o004_s000000901_niriss_f200w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #128 / 244
Working with the following obsids:
230242039 : jw02079-o004_s000001117_niriss_f200w-gr150c
230239573 : jw02079-o004_s000000942_niriss_f150w-gr150r
230239574 : jw02079-o004_s000001247_niriss_f150w-gr150c
230239575 : jw02079-o004_s000000847_niriss_f150w-gr150c
230240301 : jw02079-o004_s000001213_niriss_f115w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
Length = 47 rows
Batch #129 / 244
Working with the following obsids:
230239576 : jw02079-o004_s000001182_niriss_f115w-gr150r
230239577 : jw02079-o004_s000000264_niriss_f200w-gr150r
230240314 : jw02079-o004_s000000957_niriss_f115w-gr150r
230239578 : jw02079-o004_s000000654_niriss_f150w-gr150c
231802903 : jw02079-o004_s000000548_niriss_f115w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #130 / 244
Working with the following obsids:
230239579 : jw02079-o004_s000000785_niriss_f200w-gr150r
230239580 : jw02079-o004_s000000414_niriss_f115w-gr150r
230239581 : jw02079-o004_s000000758_niriss_f200w-gr150r
231803085 : jw02079-o004_s000001109_niriss_f115w-gr150c
230239582 : jw02079-o004_s000000239_niriss_f150w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #131 / 244
Working with the following obsids:
230242044 : jw02079-o004_s000001037_niriss_f115w-gr150r
230240109 : jw02079-o004_s000000685_niriss_f150w-gr150r
230239583 : jw02079-o004_s000000760_niriss_f150w-gr150c
230239584 : jw02079-o004_s000001132_niriss_f150w-gr150c
230242046 : jw02079-o004_s000000624_niriss_f150w-gr150r
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
Length = 47 rows
Batch #132 / 244
Working with the following obsids:
230239585 : jw02079-o004_s000000215_niriss_f150w-gr150r
231803358 : jw02079-o004_s000000700_niriss_f115w-gr150c
230239586 : jw02079-o004_s000000720_niriss_f200w-gr150c
230239588 : jw02079-o004_s000000166_niriss_f150w-gr150r
230242047 : jw02079-o004_s000001343_niriss_f200w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #133 / 244
Working with the following obsids:
230240099 : jw02079-o004_s000001312_niriss_f150w-gr150r
230239589 : jw02079-o004_s000000519_niriss_f150w-gr150c
231803579 : jw02079-o004_s000001338_niriss_f115w-gr150c
230239590 : jw02079-o004_s000000284_niriss_f150w-gr150r
231803667 : jw02079-o004_s000001068_niriss_f115w-gr150c
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #134 / 244
Working with the following obsids:
230240284 : jw02079-o004_s000000825_niriss_f115w-gr150r
230240105 : jw02079-o004_s000000343_niriss_f150w-gr150c
230242048 : jw02079-o004_s000000449_niriss_f150w-gr150c
230239755 : jw02079-o004_s000001137_niriss_f200w-gr150r
231803866 : jw02079-o004_s000000058_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #135 / 244
Working with the following obsids:
231803918 : jw02079-o004_s000000672_niriss_f115w-gr150c
230240107 : jw02079-o004_s000000646_niriss_f150w-gr150c
230239591 : jw02079-o004_s000000680_niriss_f200w-gr150c
230239592 : jw02079-o004_s000000669_niriss_f150w-gr150c
230239593 : jw02079-o004_s000000786_niriss_f150w-gr150c
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #136 / 244
Working with the following obsids:
231804090 : jw02079-o004_s000001314_niriss_f115w-gr150c
230240067 : jw02079-o004_s000001199_niriss_f200w-gr150r
230240292 : jw02079-o004_s000000429_niriss_f115w-gr150r
230239594 : jw02079-o004_s000000220_niriss_f150w-gr150r
230239967 : jw02079-o004_s000001371_niriss_f200w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #137 / 244
Working with the following obsids:
230240285 : jw02079-o004_s000001361_niriss_f115w-gr150r
231804312 : jw02079-o004_s000001153_niriss_f115w-gr150c
231804355 : jw02079-o004_s000001406_niriss_f115w-gr150c
230239596 : jw02079-o004_s000000482_niriss_f150w-gr150r
230239597 : jw02079-o004_s000001118_niriss_f150w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #138 / 244
Working with the following obsids:
230239598 : jw02079-o004_s000000371_niriss_f200w-gr150c
230240034 : jw02079-o004_s000000954_niriss_f200w-gr150r
230239599 : jw02079-o004_s000000171_niriss_f115w-gr150r
230242053 : jw02079-o004_s000000668_niriss_f115w-gr150r
230239600 : jw02079-o004_s000000610_niriss_f150w-gr150c
INFO: 19 of 59 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 59 rows
Batch #139 / 244
Working with the following obsids:
230240306 : jw02079-o004_s000000419_niriss_f150w-gr150r
230240311 : jw02079-o004_s000000721_niriss_f115w-gr150r
230239602 : jw02079-o004_s000000619_niriss_f150w-gr150r
231804716 : jw02079-o004_s000000504_niriss_f115w-gr150c
230239603 : jw02079-o004_s000000911_niriss_f200w-gr150r
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #140 / 244
Working with the following obsids:
230240324 : jw02079-o004_s000000101_niriss_f115w-gr150r
230239604 : jw02079-o004_s000001253_niriss_f150w-gr150r
230242055 : jw02079-o004_s000000806_niriss_f200w-gr150r
230240095 : jw02079-o004_s000000752_niriss_f150w-gr150c
230239605 : jw02079-o004_s000001208_niriss_f115w-gr150r
INFO: 19 of 59 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
Length = 59 rows
Batch #141 / 244
Working with the following obsids:
230242056 : jw02079-o004_s000000524_niriss_f200w-gr150r
230239606 : jw02079-o004_s000001137_niriss_f200w-gr150c
230239707 : jw02079-o004_s000000592_niriss_f200w-gr150r
230239608 : jw02079-o004_s000000680_niriss_f200w-gr150r
230240100 : jw02079-o004_s000000559_niriss_f150w-gr150c
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00007_asn.json
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
Length = 35 rows
Batch #142 / 244
Working with the following obsids:
231805127 : jw02079-o004_s000001332_niriss_f115w-gr150c
231805163 : jw02079-o004_s000000780_niriss_f115w-gr150c
230239609 : jw02079-o004_s000000962_niriss_f200w-gr150c
230239692 : jw02079-o004_s000000954_niriss_f200w-gr150c
230239664 : jw02079-o004_s000000773_niriss_f150w-gr150c
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #143 / 244
Working with the following obsids:
230239610 : jw02079-o004_s000000908_niriss_f200w-gr150c
230242059 : jw02079-o004_s000000636_niriss_f115w-gr150r
230242060 : jw02079-o004_s000001368_niriss_f200w-gr150r
231805384 : jw02079-o004_s000000273_niriss_f115w-gr150c
230239611 : jw02079-o004_s000001418_niriss_f200w-gr150r
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #144 / 244
Working with the following obsids:
230239612 : jw02079-o004_s000001116_niriss_f200w-gr150c
231805508 : jw02079-o004_s000001361_niriss_f115w-gr150c
230240286 : jw02079-o004_s000001365_niriss_f115w-gr150r
231805580 : jw02079-o004_s000001373_niriss_f115w-gr150c
230242062 : jw02079-o004_s000000289_niriss_f200w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #145 / 244
Working with the following obsids:
230239614 : jw02079-o004_s000000451_niriss_f115w-gr150r
230240287 : jw02079-o004_s000000504_niriss_f200w-gr150c
230239615 : jw02079-o004_s000000552_niriss_f200w-gr150r
230240025 : jw02079-o004_s000000182_niriss_f115w-gr150r
230240035 : jw02079-o004_s000000700_niriss_f115w-gr150r
INFO: 38 of 71 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
Length = 71 rows
Batch #146 / 244
Working with the following obsids:
230239617 : jw02079-o004_s000000913_niriss_f200w-gr150c
230239618 : jw02079-o004_s000000758_niriss_f200w-gr150c
230239619 : jw02079-o004_s000000873_niriss_f150w-gr150c
230240288 : jw02079-o004_s000000094_niriss_f115w-gr150r
231805962 : jw02079-o004_s000000152_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #147 / 244
Working with the following obsids:
230240059 : jw02079-o004_s000000696_niriss_f115w-gr150r
230239620 : jw02079-o004_s000000752_niriss_f150w-gr150r
230239621 : jw02079-o004_s000000365_niriss_f150w-gr150c
231806147 : jw02079-o004_s000001208_niriss_f115w-gr150c
230242065 : jw02079-o004_s000001368_niriss_f200w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #148 / 244
Working with the following obsids:
230239623 : jw02079-o004_s000001097_niriss_f200w-gr150c
230239624 : jw02079-o004_s000000501_niriss_f200w-gr150r
230242066 : jw02079-o004_s000001373_niriss_f115w-gr150r
230239626 : jw02079-o004_s000000596_niriss_f150w-gr150r
230239627 : jw02079-o004_s000000868_niriss_f200w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 47 rows
Batch #149 / 244
Working with the following obsids:
230239628 : jw02079-o004_s000001450_niriss_f200w-gr150r
230239629 : jw02079-o004_s000000475_niriss_f200w-gr150c
230239908 : jw02079-o004_s000001031_niriss_f150w-gr150c
230239630 : jw02079-o004_s000000455_niriss_f150w-gr150c
231806501 : jw02079-o004_s000001388_niriss_f115w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #150 / 244
Working with the following obsids:
230239631 : jw02079-o004_s000001450_niriss_f200w-gr150c
231806573 : jw02079-o004_s000001428_niriss_f115w-gr150c
230240117 : jw02079-o004_s000001313_niriss_f150w-gr150c
231806643 : jw02079-o004_s000001383_niriss_f115w-gr150c
230240308 : jw02079-o004_s000001338_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #151 / 244
Working with the following obsids:
230240289 : jw02079-o004_s000000419_niriss_f115w-gr150r
230239632 : jw02079-o004_s000000828_niriss_f115w-gr150r
230240036 : jw02079-o004_s000000270_niriss_f115w-gr150r
230239633 : jw02079-o004_s000001196_niriss_f150w-gr150c
230240123 : jw02079-o004_s000000202_niriss_f150w-gr150r
INFO: 38 of 71 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 71 rows
Batch #152 / 244
Working with the following obsids:
230239635 : jw02079-o004_s000000152_niriss_f115w-gr150r
230239636 : jw02079-o004_s000000637_niriss_f200w-gr150c
230239637 : jw02079-o004_s000000616_niriss_f150w-gr150r
230239977 : jw02079-o004_s000001383_niriss_f115w-gr150r
231807002 : jw02079-o004_s000001182_niriss_f115w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #153 / 244
Working with the following obsids:
230239671 : jw02079-o004_s000001354_niriss_f115w-gr150r
230239638 : jw02079-o004_s000000699_niriss_f200w-gr150r
230239639 : jw02079-o004_s000000720_niriss_f200w-gr150r
230239640 : jw02079-o004_s000000264_niriss_f200w-gr150c
231807205 : jw02079-o004_s000000270_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #154 / 244
Working with the following obsids:
230239641 : jw02079-o004_s000001291_niriss_f150w-gr150c
230239642 : jw02079-o004_s000001247_niriss_f150w-gr150r
230242073 : jw02079-o004_s000001306_niriss_f115w-gr150r
230239643 : jw02079-o004_s000000704_niriss_f150w-gr150r
230240323 : jw02079-o004_s000000599_niriss_f115w-gr150r
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 59 rows
Batch #155 / 244
Working with the following obsids:
230239644 : jw02079-o004_s000000840_niriss_f150w-gr150c
230239645 : jw02079-o004_s000000901_niriss_f200w-gr150r
230239646 : jw02079-o004_s000000961_niriss_f200w-gr150c
230239647 : jw02079-o004_s000000974_niriss_f150w-gr150c
230242075 : jw02079-o004_s000000449_niriss_f150w-gr150r
INFO: 7 of 35 products were duplicates. Only downloading 28 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00004_asn.json
jw02079004003_03101_00003_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
Length = 35 rows
Batch #156 / 244
Working with the following obsids:
230239648 : jw02079-o004_s000001029_niriss_f200w-gr150c
230242076 : jw02079-o004_s000001109_niriss_f115w-gr150r
230239649 : jw02079-o004_s000000786_niriss_f150w-gr150r
230239975 : jw02079-o004_s000000231_niriss_f150w-gr150c
230239650 : jw02079-o004_s000000392_niriss_f115w-gr150r
INFO: 19 of 59 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 59 rows
Batch #157 / 244
Working with the following obsids:
230239651 : jw02079-o004_s000001115_niriss_f150w-gr150r
230239652 : jw02079-o004_s000000467_niriss_f150w-gr150c
230239653 : jw02079-o004_s000000658_niriss_f150w-gr150r
230239655 : jw02079-o004_s000001096_niriss_f150w-gr150c
230239955 : jw02079-o004_s000000625_niriss_f150w-gr150c
INFO: 21 of 35 products were duplicates. Only downloading 14 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00010_asn.json
jw02079-o004_20241005t184831_spec2_00010_asn.json
jw02079004002_09101_00003_nis_rate.fits
jw02079004002_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00011_asn.json
jw02079-o004_20241005t184831_spec2_00011_asn.json
jw02079004002_09101_00002_nis_rate.fits
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00009_asn.json
jw02079-o004_20241005t184831_spec2_00009_asn.json
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
Length = 35 rows
Batch #158 / 244
Working with the following obsids:
230239656 : jw02079-o004_s000000521_niriss_f200w-gr150c
231808007 : jw02079-o004_s000000426_niriss_f115w-gr150c
231808055 : jw02079-o004_s000000138_niriss_f115w-gr150c
230239657 : jw02079-o004_s000001275_niriss_f200w-gr150c
230239658 : jw02079-o004_s000000868_niriss_f200w-gr150r
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #159 / 244
Working with the following obsids:
230239659 : jw02079-o004_s000000989_niriss_f200w-gr150c
230239660 : jw02079-o004_s000001031_niriss_f150w-gr150r
230239661 : jw02079-o004_s000001096_niriss_f150w-gr150r
230239662 : jw02079-o004_s000000787_niriss_f200w-gr150c
230239663 : jw02079-o004_s000001009_niriss_f200w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
Length = 35 rows
Batch #160 / 244
Working with the following obsids:
230240079 : jw02079-o004_s000000517_niriss_f200w-gr150c
230239665 : jw02079-o004_s000000564_niriss_f150w-gr150c
230240030 : jw02079-o004_s000000627_niriss_f115w-gr150r
231808386 : jw02079-o004_s000000452_niriss_f115w-gr150c
230239666 : jw02079-o004_s000000989_niriss_f200w-gr150r
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #161 / 244
Working with the following obsids:
230239667 : jw02079-o004_s000000475_niriss_f200w-gr150r
230239668 : jw02079-o004_s000000961_niriss_f200w-gr150r
230239669 : jw02079-o004_s000000348_niriss_f150w-gr150r
231808568 : jw02079-o004_s000000828_niriss_f115w-gr150c
230239670 : jw02079-o004_s000000129_niriss_f150w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #162 / 244
Working with the following obsids:
231808656 : jw02079-o004_s000001356_niriss_f115w-gr150c
230239672 : jw02079-o004_s000000320_niriss_f150w-gr150r
230242082 : jw02079-o004_s000000979_niriss_f150w-gr150r
230239674 : jw02079-o004_s000000180_niriss_f200w-gr150r
230239675 : jw02079-o004_s000001388_niriss_f200w-gr150r
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #163 / 244
Working with the following obsids:
230239676 : jw02079-o004_s000001220_niriss_f150w-gr150c
230239677 : jw02079-o004_s000000684_niriss_f115w-gr150r
231808920 : jw02079-o004_s000000879_niriss_f115w-gr150c
230242084 : jw02079-o004_s000000633_niriss_f115w-gr150r
230242085 : jw02079-o004_s000000157_niriss_f115w-gr150r
INFO: 38 of 83 products were duplicates. Only downloading 45 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
...
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 83 rows
Batch #164 / 244
Working with the following obsids:
231809053 : jw02079-o004_s000001197_niriss_f115w-gr150c
230239678 : jw02079-o004_s000000630_niriss_f200w-gr150c
231809132 : jw02079-o004_s000000157_niriss_f115w-gr150c
230239680 : jw02079-o004_s000000010_niriss_f200w-gr150r
230239681 : jw02079-o004_s000000962_niriss_f200w-gr150r
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #165 / 244
Working with the following obsids:
230240019 : jw02079-o004_s000000893_niriss_f150w-gr150r
230239682 : jw02079-o004_s000001393_niriss_f200w-gr150r
231809331 : jw02079-o004_s000001069_niriss_f115w-gr150c
231809372 : jw02079-o004_s000000182_niriss_f115w-gr150c
230239683 : jw02079-o004_s000000798_niriss_f150w-gr150c
INFO: 19 of 59 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #166 / 244
Working with the following obsids:
230239783 : jw02079-o004_s000000773_niriss_f150w-gr150r
230239684 : jw02079-o004_s000001103_niriss_f150w-gr150c
230239685 : jw02079-o004_s000000802_niriss_f115w-gr150r
231809562 : jw02079-o004_s000001000_niriss_f115w-gr150c
230239686 : jw02079-o004_s000000787_niriss_f200w-gr150r
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #167 / 244
Working with the following obsids:
230242089 : jw02079-o004_s000000515_niriss_f150w-gr150c
230239687 : jw02079-o004_s000000908_niriss_f200w-gr150r
230239688 : jw02079-o004_s000000849_niriss_f150w-gr150r
230239689 : jw02079-o004_s000000539_niriss_f150w-gr150c
230239690 : jw02079-o004_s000001262_niriss_f200w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00004_asn.json
jw02079-o004_20241005t184831_spec2_00004_asn.json
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
Length = 35 rows
Batch #168 / 244
Working with the following obsids:
230239691 : jw02079-o004_s000000138_niriss_f115w-gr150r
230239693 : jw02079-o004_s000000316_niriss_f150w-gr150c
230239694 : jw02079-o004_s000000592_niriss_f200w-gr150c
230240316 : jw02079-o004_s000000453_niriss_f150w-gr150c
231809954 : jw02079-o004_s000000668_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #169 / 244
Working with the following obsids:
231810003 : jw02079-o004_s000000957_niriss_f115w-gr150c
230239696 : jw02079-o004_s000000320_niriss_f150w-gr150c
231810089 : jw02079-o004_s000000101_niriss_f115w-gr150c
230239796 : jw02079-o004_s000000592_niriss_f150w-gr150r
230239697 : jw02079-o004_s000001170_niriss_f200w-gr150r
INFO: 19 of 59 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #170 / 244
Working with the following obsids:
230239698 : jw02079-o004_s000000511_niriss_f200w-gr150r
230240058 : jw02079-o004_s000000595_niriss_f115w-gr150r
230239699 : jw02079-o004_s000001258_niriss_f150w-gr150r
230239700 : jw02079-o004_s000001234_niriss_f200w-gr150c
230239701 : jw02079-o004_s000000833_niriss_f115w-gr150r
INFO: 19 of 59 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 59 rows
Batch #171 / 244
Working with the following obsids:
230239702 : jw02079-o004_s000001238_niriss_f200w-gr150r
230242094 : jw02079-o004_s000001342_niriss_f150w-gr150c
230239703 : jw02079-o004_s000000521_niriss_f200w-gr150r
231810457 : jw02079-o004_s000000009_niriss_f115w-gr150c
230239704 : jw02079-o004_s000000461_niriss_f115w-gr150r
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #172 / 244
Working with the following obsids:
231810532 : jw02079-o004_s000000935_niriss_f115w-gr150c
230242096 : jw02079-o004_s000000859_niriss_f200w-gr150r
230240065 : jw02079-o004_s000000592_niriss_f150w-gr150c
230239705 : jw02079-o004_s000000723_niriss_f200w-gr150r
230242097 : jw02079-o004_s000000789_niriss_f115w-gr150r
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #173 / 244
Working with the following obsids:
230239706 : jw02079-o004_s000000501_niriss_f200w-gr150c
231810753 : jw02079-o004_s000000919_niriss_f115w-gr150c
230239708 : jw02079-o004_s000001388_niriss_f115w-gr150r
230240083 : jw02079-o004_s000000942_niriss_f150w-gr150c
230239709 : jw02079-o004_s000000375_niriss_f200w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #174 / 244
Working with the following obsids:
230239710 : jw02079-o004_s000000950_niriss_f200w-gr150c
230239711 : jw02079-o004_s000001035_niriss_f150w-gr150c
230239712 : jw02079-o004_s000000860_niriss_f200w-gr150r
231811031 : jw02079-o004_s000000870_niriss_f115w-gr150c
230239713 : jw02079-o004_s000000316_niriss_f150w-gr150r
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #175 / 244
Working with the following obsids:
230239715 : jw02079-o004_s000000406_niriss_f200w-gr150c
230242100 : jw02079-o004_s000001343_niriss_f200w-gr150c
230239717 : jw02079-o004_s000000121_niriss_f200w-gr150r
230239718 : jw02079-o004_s000000446_niriss_f150w-gr150r
231811242 : jw02079-o004_s000000453_niriss_f115w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #176 / 244
Working with the following obsids:
230240291 : jw02079-o004_s000000812_niriss_f115w-gr150r
230239719 : jw02079-o004_s000000630_niriss_f200w-gr150r
230239720 : jw02079-o004_s000001064_niriss_f150w-gr150r
231811398 : jw02079-o004_s000000551_niriss_f115w-gr150c
230240297 : jw02079-o004_s000000453_niriss_f150w-gr150r
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #177 / 244
Working with the following obsids:
230239722 : jw02079-o004_s000000470_niriss_f150w-gr150c
230239723 : jw02079-o004_s000000681_niriss_f200w-gr150r
230239724 : jw02079-o004_s000000637_niriss_f200w-gr150r
230239725 : jw02079-o004_s000000206_niriss_f200w-gr150c
230239726 : jw02079-o004_s000000401_niriss_f200w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00007_asn.json
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
Length = 35 rows
Batch #178 / 244
Working with the following obsids:
230239728 : jw02079-o004_s000000591_niriss_f200w-gr150r
231811673 : jw02079-o004_s000001334_niriss_f115w-gr150c
230239730 : jw02079-o004_s000000180_niriss_f200w-gr150c
230239734 : jw02079-o004_s000000907_niriss_f150w-gr150r
230239735 : jw02079-o004_s000000426_niriss_f150w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #179 / 244
Working with the following obsids:
231811823 : jw02079-o004_s000000684_niriss_f115w-gr150c
230239736 : jw02079-o004_s000000584_niriss_f115w-gr150r
230239737 : jw02079-o004_s000001388_niriss_f200w-gr150c
230242104 : jw02079-o004_s000000524_niriss_f200w-gr150c
230239740 : jw02079-o004_s000000166_niriss_f150w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #180 / 244
Working with the following obsids:
230239741 : jw02079-o004_s000000760_niriss_f150w-gr150r
230242106 : jw02079-o004_s000000452_niriss_f150w-gr150c
230239743 : jw02079-o004_s000000950_niriss_f200w-gr150r
230239744 : jw02079-o004_s000000426_niriss_f150w-gr150r
230239746 : jw02079-o004_s000001332_niriss_f115w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
Length = 47 rows
Batch #181 / 244
Working with the following obsids:
231812214 : jw02079-o004_s000001306_niriss_f115w-gr150c
230239747 : jw02079-o004_s000000586_niriss_f150w-gr150c
231812283 : jw02079-o004_s000001225_niriss_f115w-gr150c
230239749 : jw02079-o004_s000000671_niriss_f200w-gr150r
230242108 : jw02079-o004_s000000289_niriss_f200w-gr150c
INFO: 19 of 59 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #182 / 244
Working with the following obsids:
231812376 : jw02079-o004_s000000812_niriss_f115w-gr150c
231812413 : jw02079-o004_s000000633_niriss_f115w-gr150c
231812450 : jw02079-o004_s000000627_niriss_f115w-gr150c
231812484 : jw02079-o004_s000000696_niriss_f115w-gr150c
230239751 : jw02079-o004_s000000669_niriss_f150w-gr150r
INFO: 57 of 83 products were duplicates. Only downloading 26 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 83 rows
Batch #183 / 244
Working with the following obsids:
230239753 : jw02079-o004_s000001452_niriss_f200w-gr150c
231812613 : jw02079-o004_s000001037_niriss_f115w-gr150c
230239756 : jw02079-o004_s000000785_niriss_f200w-gr150c
231812683 : jw02079-o004_s000000451_niriss_f115w-gr150c
230239757 : jw02079-o004_s000000172_niriss_f200w-gr150r
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #184 / 244
Working with the following obsids:
231812767 : jw02079-o004_s000000525_niriss_f115w-gr150c
231812808 : jw02079-o004_s000000227_niriss_f115w-gr150c
230239760 : jw02079-o004_s000001103_niriss_f150w-gr150r
230239761 : jw02079-o004_s000000596_niriss_f150w-gr150c
230240047 : jw02079-o004_s000000628_niriss_f150w-gr150r
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #185 / 244
Working with the following obsids:
230240290 : jw02079-o004_s000001164_niriss_f200w-gr150c
230239763 : jw02079-o004_s000000907_niriss_f150w-gr150c
230239764 : jw02079-o004_s000000794_niriss_f150w-gr150r
230239766 : jw02079-o004_s000000434_niriss_f150w-gr150c
231813086 : jw02079-o004_s000001282_niriss_f115w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #186 / 244
Working with the following obsids:
231813137 : jw02079-o004_s000000630_niriss_f115w-gr150c
230242113 : jw02079-o004_s000001428_niriss_f115w-gr150r
230239768 : jw02079-o004_s000001322_niriss_f200w-gr150c
231813240 : jw02079-o004_s000001117_niriss_f115w-gr150c
230239769 : jw02079-o004_s000001106_niriss_f200w-gr150c
INFO: 26 of 71 products were duplicates. Only downloading 45 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #187 / 244
Working with the following obsids:
230239770 : jw02079-o004_s000000129_niriss_f150w-gr150r
230239772 : jw02079-o004_s000000913_niriss_f150w-gr150r
230239773 : jw02079-o004_s000000704_niriss_f150w-gr150c
230239775 : jw02079-o004_s000000723_niriss_f200w-gr150c
230239777 : jw02079-o004_s000000596_niriss_f200w-gr150c
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00003_asn.json
jw02079-o004_20241005t184831_spec2_00003_asn.json
...
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
Length = 35 rows
Batch #188 / 244
Working with the following obsids:
230239779 : jw02079-o004_s000000919_niriss_f200w-gr150c
230239959 : jw02079-o004_s000000231_niriss_f150w-gr150r
230240073 : jw02079-o004_s000000559_niriss_f150w-gr150r
230239781 : jw02079-o004_s000000525_niriss_f115w-gr150r
231813549 : jw02079-o004_s000000914_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #189 / 244
Working with the following obsids:
230239782 : jw02079-o004_s000001196_niriss_f150w-gr150r
231813627 : jw02079-o004_s000000599_niriss_f115w-gr150c
230239785 : jw02079-o004_s000000586_niriss_f150w-gr150r
230239986 : jw02079-o004_s000001197_niriss_f115w-gr150r
230242118 : jw02079-o004_s000000839_niriss_f115w-gr150r
INFO: 26 of 71 products were duplicates. Only downloading 45 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #190 / 244
Working with the following obsids:
230240122 : jw02079-o004_s000000220_niriss_f150w-gr150c
230239786 : jw02079-o004_s000000494_niriss_f150w-gr150r
230239870 : jw02079-o004_s000000159_niriss_f150w-gr150c
230239788 : jw02079-o004_s000000919_niriss_f115w-gr150r
230239790 : jw02079-o004_s000001243_niriss_f150w-gr150r
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
Length = 47 rows
Batch #191 / 244
Working with the following obsids:
231813984 : jw02079-o004_s000000446_niriss_f115w-gr150c
230239792 : jw02079-o004_s000000654_niriss_f150w-gr150r
230239793 : jw02079-o004_s000001258_niriss_f150w-gr150c
230239795 : jw02079-o004_s000001097_niriss_f200w-gr150r
230239797 : jw02079-o004_s000000719_niriss_f200w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #192 / 244
Working with the following obsids:
230239800 : jw02079-o004_s000000138_niriss_f150w-gr150r
230239803 : jw02079-o004_s000001322_niriss_f200w-gr150r
230239913 : jw02079-o004_s000000517_niriss_f200w-gr150r
230242123 : jw02079-o004_s000000515_niriss_f150w-gr150r
230239806 : jw02079-o004_s000000963_niriss_f200w-gr150c
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079-o004_20241005t184831_spec2_00005_asn.json
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
Length = 35 rows
Batch #193 / 244
Working with the following obsids:
230239807 : jw02079-o004_s000000478_niriss_f150w-gr150r
230239809 : jw02079-o004_s000000797_niriss_f150w-gr150r
230240293 : jw02079-o004_s000001164_niriss_f200w-gr150r
230239811 : jw02079-o004_s000000687_niriss_f150w-gr150c
230240294 : jw02079-o004_s000000551_niriss_f200w-gr150c
INFO: 7 of 35 products were duplicates. Only downloading 28 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00004_asn.json
jw02079004003_03101_00003_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
Length = 35 rows
Batch #194 / 244
Working with the following obsids:
230239815 : jw02079-o004_s000001029_niriss_f200w-gr150r
230239816 : jw02079-o004_s000000719_niriss_f200w-gr150r
230239819 : jw02079-o004_s000001291_niriss_f150w-gr150r
230239820 : jw02079-o004_s000001262_niriss_f200w-gr150c
230239823 : jw02079-o004_s000001035_niriss_f150w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079-o004_20241005t184831_spec2_00005_asn.json
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
Length = 35 rows
Batch #195 / 244
Working with the following obsids:
230240029 : jw02079-o004_s000000451_niriss_f150w-gr150c
230239825 : jw02079-o004_s000001312_niriss_f150w-gr150c
230239827 : jw02079-o004_s000000616_niriss_f150w-gr150c
230239828 : jw02079-o004_s000000138_niriss_f150w-gr150c
230239830 : jw02079-o004_s000001132_niriss_f150w-gr150r
INFO: 21 of 35 products were duplicates. Only downloading 14 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00010_asn.json
jw02079004002_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00011_asn.json
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00009_asn.json
jw02079-o004_20241005t184831_spec2_00009_asn.json
jw02079-o004_20241005t184831_spec2_00009_asn.json
jw02079-o004_20241005t184831_spec2_00009_asn.json
jw02079004002_11101_00001_nis_rate.fits
jw02079004002_11101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_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_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
Length = 35 rows
Batch #196 / 244
Working with the following obsids:
231814850 : jw02079-o004_s000000839_niriss_f115w-gr150c
230240072 : jw02079-o004_s000000408_niriss_f115w-gr150r
231814929 : jw02079-o004_s000000793_niriss_f115w-gr150c
230239882 : jw02079-o004_s000000215_niriss_f150w-gr150c
230239831 : jw02079-o004_s000000365_niriss_f150w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #197 / 244
Working with the following obsids:
230239832 : jw02079-o004_s000000995_niriss_f150w-gr150c
230239834 : jw02079-o004_s000001253_niriss_f150w-gr150c
230239836 : jw02079-o004_s000000687_niriss_f150w-gr150r
231815154 : jw02079-o004_s000000952_niriss_f115w-gr150c
230239839 : jw02079-o004_s000001275_niriss_f200w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #198 / 244
Working with the following obsids:
230239841 : jw02079-o004_s000000159_niriss_f150w-gr150r
230240061 : jw02079-o004_s000000467_niriss_f150w-gr150r
230239842 : jw02079-o004_s000000529_niriss_f200w-gr150c
230240295 : jw02079-o004_s000000551_niriss_f115w-gr150r
230239887 : jw02079-o004_s000001391_niriss_f200w-gr150c
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 47 rows
Batch #199 / 244
Working with the following obsids:
231815416 : jw02079-o004_s000000419_niriss_f115w-gr150c
230240103 : jw02079-o004_s000000273_niriss_f115w-gr150r
230240325 : jw02079-o004_s000001153_niriss_f115w-gr150r
230239898 : jw02079-o004_s000001238_niriss_f200w-gr150c
230240093 : jw02079-o004_s000000202_niriss_f150w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #200 / 244
Working with the following obsids:
230240309 : jw02079-o004_s000000419_niriss_f150w-gr150c
231815654 : jw02079-o004_s000000474_niriss_f115w-gr150c
231815700 : jw02079-o004_s000000171_niriss_f115w-gr150c
230239845 : jw02079-o004_s000001431_niriss_f200w-gr150r
230239846 : jw02079-o004_s000001245_niriss_f200w-gr150r
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #201 / 244
Working with the following obsids:
230239848 : jw02079-o004_s000000455_niriss_f150w-gr150r
230239851 : jw02079-o004_s000000121_niriss_f200w-gr150c
230239852 : jw02079-o004_s000000849_niriss_f150w-gr150c
230239853 : jw02079-o004_s000000919_niriss_f200w-gr150r
230242137 : jw02079-o004_s000000859_niriss_f200w-gr150c
INFO: 7 of 35 products were duplicates. Only downloading 28 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
Length = 35 rows
Batch #202 / 244
Working with the following obsids:
230239856 : jw02079-o004_s000000269_niriss_f200w-gr150r
230239857 : jw02079-o004_s000001452_niriss_f200w-gr150r
230239858 : jw02079-o004_s000000474_niriss_f115w-gr150r
230239865 : jw02079-o004_s000000375_niriss_f200w-gr150r
230239867 : jw02079-o004_s000000446_niriss_f115w-gr150r
INFO: 33 of 59 products were duplicates. Only downloading 26 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 59 rows
Batch #203 / 244
Working with the following obsids:
230240296 : jw02079-o004_s000000253_niriss_f200w-gr150c
230239871 : jw02079-o004_s000000848_niriss_f150w-gr150r
230242142 : jw02079-o004_s000000624_niriss_f150w-gr150c
230239873 : jw02079-o004_s000000539_niriss_f200w-gr150r
230239874 : jw02079-o004_s000000402_niriss_f150w-gr150c
INFO: 7 of 35 products were duplicates. Only downloading 28 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00004_asn.json
jw02079004003_03101_00003_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
Length = 35 rows
Batch #204 / 244
Working with the following obsids:
230239877 : jw02079-o004_s000000805_niriss_f150w-gr150c
230239878 : jw02079-o004_s000001245_niriss_f200w-gr150c
231816354 : jw02079-o004_s000000661_niriss_f115w-gr150c
230239880 : jw02079-o004_s000000889_niriss_f115w-gr150r
231816440 : jw02079-o004_s000000232_niriss_f115w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #205 / 244
Working with the following obsids:
230239883 : jw02079-o004_s000000610_niriss_f150w-gr150r
230239927 : jw02079-o004_s000000630_niriss_f115w-gr150r
230240087 : jw02079-o004_s000000911_niriss_f200w-gr150c
230239885 : jw02079-o004_s000001269_niriss_f150w-gr150r
231816620 : jw02079-o004_s000000802_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #206 / 244
Working with the following obsids:
230242149 : jw02079-o004_s000001225_niriss_f115w-gr150r
230239890 : jw02079-o004_s000001063_niriss_f200w-gr150c
230239891 : jw02079-o004_s000000681_niriss_f200w-gr150c
230239893 : jw02079-o004_s000001454_niriss_f115w-gr150r
230239896 : jw02079-o004_s000000279_niriss_f150w-gr150c
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 59 rows
Batch #207 / 244
Working with the following obsids:
230239992 : jw02079-o004_s000000402_niriss_f150w-gr150r
230239900 : jw02079-o004_s000001118_niriss_f150w-gr150r
230239901 : jw02079-o004_s000000206_niriss_f200w-gr150r
230242157 : jw02079-o004_s000000806_niriss_f200w-gr150c
230239903 : jw02079-o004_s000000214_niriss_f200w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079-o004_20241005t184831_spec2_00005_asn.json
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
Length = 35 rows
Batch #208 / 244
Working with the following obsids:
230242158 : jw02079-o004_s000000618_niriss_f200w-gr150r
230240078 : jw02079-o004_s000000886_niriss_f115w-gr150r
230239904 : jw02079-o004_s000000996_niriss_f150w-gr150r
230239905 : jw02079-o004_s000001064_niriss_f150w-gr150c
231817137 : jw02079-o004_s000000429_niriss_f115w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #209 / 244
Working with the following obsids:
230239906 : jw02079-o004_s000001353_niriss_f200w-gr150c
230239909 : jw02079-o004_s000000434_niriss_f150w-gr150r
230240052 : jw02079-o004_s000000614_niriss_f115w-gr150r
230239911 : jw02079-o004_s000001269_niriss_f150w-gr150c
230240116 : jw02079-o004_s000000685_niriss_f150w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
Length = 47 rows
Batch #210 / 244
Working with the following obsids:
230240317 : jw02079-o004_s000000299_niriss_f115w-gr150r
230240104 : jw02079-o004_s000000227_niriss_f115w-gr150r
230239914 : jw02079-o004_s000001401_niriss_f200w-gr150c
230239917 : jw02079-o004_s000001063_niriss_f200w-gr150r
230239920 : jw02079-o004_s000001258_niriss_f200w-gr150r
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 59 rows
Batch #211 / 244
Working with the following obsids:
230239922 : jw02079-o004_s000000797_niriss_f150w-gr150c
230239925 : jw02079-o004_s000001431_niriss_f200w-gr150c
230239929 : jw02079-o004_s000000798_niriss_f150w-gr150r
230239931 : jw02079-o004_s000000446_niriss_f150w-gr150c
231817633 : jw02079-o004_s000000721_niriss_f115w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #212 / 244
Working with the following obsids:
230239933 : jw02079-o004_s000000371_niriss_f200w-gr150r
230239934 : jw02079-o004_s000001009_niriss_f200w-gr150c
230239937 : jw02079-o004_s000000440_niriss_f150w-gr150c
230239935 : jw02079-o004_s000000646_niriss_f150w-gr150r
230239936 : jw02079-o004_s000000542_niriss_f200w-gr150c
INFO: 7 of 35 products were duplicates. Only downloading 28 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079004003_05101_00002_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
Length = 35 rows
Batch #213 / 244
Working with the following obsids:
231817813 : jw02079-o004_s000000595_niriss_f115w-gr150c
230239939 : jw02079-o004_s000000707_niriss_f200w-gr150c
230240298 : jw02079-o004_s000001356_niriss_f115w-gr150r
230239942 : jw02079-o004_s000001115_niriss_f150w-gr150c
230240299 : jw02079-o004_s000001069_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #214 / 244
Working with the following obsids:
230240021 : jw02079-o004_s000000622_niriss_f115w-gr150r
230240318 : jw02079-o004_s000000551_niriss_f200w-gr150r
230239945 : jw02079-o004_s000001203_niriss_f150w-gr150r
230239947 : jw02079-o004_s000000841_niriss_f150w-gr150r
231818174 : jw02079-o004_s000000307_niriss_f115w-gr150c
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #215 / 244
Working with the following obsids:
230239951 : jw02079-o004_s000000426_niriss_f115w-gr150r
230239953 : jw02079-o004_s000000511_niriss_f200w-gr150c
230240300 : jw02079-o004_s000000870_niriss_f115w-gr150r
230240033 : jw02079-o004_s000000893_niriss_f150w-gr150c
231818346 : jw02079-o004_s000000833_niriss_f115w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #216 / 244
Working with the following obsids:
230240313 : jw02079-o004_s000000914_niriss_f115w-gr150r
230240304 : jw02079-o004_s000001431_niriss_f115w-gr150r
230240125 : jw02079-o004_s000000879_niriss_f115w-gr150r
230240006 : jw02079-o004_s000000625_niriss_f150w-gr150r
231818538 : jw02079-o004_s000000636_niriss_f115w-gr150c
INFO: 38 of 83 products were duplicates. Only downloading 45 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
...
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 83 rows
Batch #217 / 244
Working with the following obsids:
230242186 : jw02079-o004_s000000479_niriss_f115w-gr150r
230242188 : jw02079-o004_s000000452_niriss_f115w-gr150r
230240302 : jw02079-o004_s000000253_niriss_f200w-gr150r
230239957 : jw02079-o004_s000000793_niriss_f115w-gr150r
230239961 : jw02079-o004_s000001170_niriss_f200w-gr150c
INFO: 38 of 71 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 71 rows
Batch #218 / 244
Working with the following obsids:
230239963 : jw02079-o004_s000000658_niriss_f150w-gr150c
230239965 : jw02079-o004_s000000489_niriss_f200w-gr150r
230239966 : jw02079-o004_s000001274_niriss_f150w-gr150r
230242192 : jw02079-o004_s000000979_niriss_f150w-gr150c
230239968 : jw02079-o004_s000000401_niriss_f200w-gr150c
INFO: 7 of 35 products were duplicates. Only downloading 28 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00004_asn.json
jw02079004003_03101_00003_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
Length = 35 rows
Batch #219 / 244
Working with the following obsids:
230239969 : jw02079-o004_s000001218_niriss_f150w-gr150r
230239970 : jw02079-o004_s000000794_niriss_f150w-gr150c
230239971 : jw02079-o004_s000000917_niriss_f200w-gr150c
230240322 : jw02079-o004_s000001406_niriss_f115w-gr150r
230239972 : jw02079-o004_s000000494_niriss_f150w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 47 rows
Batch #220 / 244
Working with the following obsids:
230242197 : jw02079-o004_s000000452_niriss_f150w-gr150r
230239974 : jw02079-o004_s000000805_niriss_f150w-gr150r
230239976 : jw02079-o004_s000000451_niriss_f150w-gr150r
230239978 : jw02079-o004_s000000470_niriss_f150w-gr150r
230242201 : jw02079-o004_s000000058_niriss_f115w-gr150r
INFO: 21 of 47 products were duplicates. Only downloading 26 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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]
Products downloaded:
productFilename
-------------------------------------------------
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 47 rows
Batch #221 / 244
Working with the following obsids:
230239979 : jw02079-o004_s000000519_niriss_f150w-gr150r
230242204 : jw02079-o004_s000000232_niriss_f115w-gr150r
230239980 : jw02079-o004_s000000284_niriss_f150w-gr150c
230239982 : jw02079-o004_s000000735_niriss_f200w-gr150c
231819410 : jw02079-o004_s000001086_niriss_f115w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #222 / 244
Working with the following obsids:
230240094 : jw02079-o004_s000001353_niriss_f200w-gr150r
231819480 : jw02079-o004_s000000825_niriss_f115w-gr150c
230239983 : jw02079-o004_s000000348_niriss_f150w-gr150c
230239984 : jw02079-o004_s000000440_niriss_f150w-gr150r
230239985 : jw02079-o004_s000000548_niriss_f115w-gr150r
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #223 / 244
Working with the following obsids:
230239987 : jw02079-o004_s000000963_niriss_f200w-gr150r
231819637 : jw02079-o004_s000000392_niriss_f115w-gr150c
230239988 : jw02079-o004_s000000080_niriss_f150w-gr150r
230240066 : jw02079-o004_s000001218_niriss_f150w-gr150c
230239990 : jw02079-o004_s000000841_niriss_f150w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #224 / 244
Working with the following obsids:
230239991 : jw02079-o004_s000000269_niriss_f200w-gr150c
230240085 : jw02079-o004_s000000780_niriss_f115w-gr150r
230239993 : jw02079-o004_s000000279_niriss_f150w-gr150r
230239994 : jw02079-o004_s000000735_niriss_f200w-gr150r
230242214 : jw02079-o004_s000001007_niriss_f150w-gr150c
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
Length = 47 rows
Batch #225 / 244
Working with the following obsids:
230240305 : jw02079-o004_s000000504_niriss_f115w-gr150r
230240088 : jw02079-o004_s000000003_niriss_f150w-gr150c
230239996 : jw02079-o004_s000001106_niriss_f200w-gr150r
230239997 : jw02079-o004_s000001243_niriss_f150w-gr150c
230239998 : jw02079-o004_s000000542_niriss_f200w-gr150r
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 47 rows
Batch #226 / 244
Working with the following obsids:
230239999 : jw02079-o004_s000000539_niriss_f150w-gr150r
230240000 : jw02079-o004_s000000873_niriss_f150w-gr150r
230240001 : jw02079-o004_s000000343_niriss_f150w-gr150r
230240002 : jw02079-o004_s000000591_niriss_f200w-gr150c
230240307 : jw02079-o004_s000000504_niriss_f200w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079004003_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00005_asn.json
jw02079004003_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00004_asn.json
jw02079004003_03101_00003_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
Length = 35 rows
Batch #227 / 244
Working with the following obsids:
230240003 : jw02079-o004_s000000539_niriss_f200w-gr150c
230240004 : jw02079-o004_s000001116_niriss_f200w-gr150r
230240005 : jw02079-o004_s000000619_niriss_f150w-gr150c
230240007 : jw02079-o004_s000001000_niriss_f115w-gr150r
230240009 : jw02079-o004_s000000860_niriss_f200w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_11101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
Length = 47 rows
Batch #228 / 244
Working with the following obsids:
230240011 : jw02079-o004_s000001068_niriss_f115w-gr150r
230240012 : jw02079-o004_s000001391_niriss_f200w-gr150r
230242225 : jw02079-o004_s000001117_niriss_f200w-gr150r
230240013 : jw02079-o004_s000000840_niriss_f150w-gr150r
230240014 : jw02079-o004_s000000172_niriss_f200w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
Length = 47 rows
Batch #229 / 244
Working with the following obsids:
231820589 : jw02079-o004_s000000886_niriss_f115w-gr150c
230240015 : jw02079-o004_s000000065_niriss_f115w-gr150r
230240115 : jw02079-o004_s000000564_niriss_f150w-gr150r
230240016 : jw02079-o004_s000000708_niriss_f200w-gr150c
231820763 : jw02079-o004_s000000614_niriss_f115w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #230 / 244
Working with the following obsids:
230240017 : jw02079-o004_s000001234_niriss_f200w-gr150r
230240018 : jw02079-o004_s000000708_niriss_f200w-gr150r
230240089 : jw02079-o004_s000000373_niriss_f200w-gr150r
230240020 : jw02079-o004_s000000885_niriss_f200w-gr150c
230242233 : jw02079-o004_s000000423_niriss_f200w-gr150r
INFO: 21 of 35 products were duplicates. Only downloading 14 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [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_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
jw02079004003_03101_00001_nis_rate.fits
...
jw02079004003_03101_00003_nis_rate.fits
jw02079004003_03101_00003_nis_rate.fits
jw02079004003_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00003_asn.json
jw02079004003_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
Length = 35 rows
Batch #231 / 244
Working with the following obsids:
230242234 : jw02079-o004_s000000330_niriss_f200w-gr150c
230242235 : jw02079-o004_s000001007_niriss_f150w-gr150r
230240022 : jw02079-o004_s000000704_niriss_f200w-gr150r
231821067 : jw02079-o004_s000000789_niriss_f115w-gr150c
231821111 : jw02079-o004_s000000408_niriss_f115w-gr150c
INFO: 19 of 59 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079-o004_20241005t184831_spec2_00025_asn.json
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #232 / 244
Working with the following obsids:
230240024 : jw02079-o004_s000001418_niriss_f200w-gr150c
231821178 : jw02079-o004_s000000421_niriss_f115w-gr150c
230240026 : jw02079-o004_s000000332_niriss_f200w-gr150r
230240028 : jw02079-o004_s000000421_niriss_f115w-gr150r
231821300 : jw02079-o004_s000001354_niriss_f115w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #233 / 244
Working with the following obsids:
230240032 : jw02079-o004_s000001274_niriss_f150w-gr150c
230242238 : jw02079-o004_s000001342_niriss_f150w-gr150r
231821413 : jw02079-o004_s000001431_niriss_f115w-gr150c
230240038 : jw02079-o004_s000001334_niriss_f115w-gr150r
231821512 : jw02079-o004_s000000414_niriss_f115w-gr150c
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #234 / 244
Working with the following obsids:
230240039 : jw02079-o004_s000000671_niriss_f200w-gr150c
231821593 : jw02079-o004_s000000889_niriss_f115w-gr150c
230240041 : jw02079-o004_s000000917_niriss_f200w-gr150r
230240042 : jw02079-o004_s000000280_niriss_f200w-gr150c
230240043 : jw02079-o004_s000000885_niriss_f200w-gr150r
INFO: 14 of 47 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00014_asn.json
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #235 / 244
Working with the following obsids:
230240044 : jw02079-o004_s000001092_niriss_f150w-gr150r
230240046 : jw02079-o004_s000000913_niriss_f150w-gr150c
230240048 : jw02079-o004_s000000847_niriss_f150w-gr150r
230242245 : jw02079-o004_s000001117_niriss_f115w-gr150r
230242247 : jw02079-o004_s000000935_niriss_f115w-gr150r
INFO: 26 of 59 products were duplicates. Only downloading 33 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079-o004_20241005t184831_spec2_00029_asn.json
...
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 59 rows
Batch #236 / 244
Working with the following obsids:
230242249 : jw02079-o004_s000000423_niriss_f200w-gr150c
230242251 : jw02079-o004_s000000330_niriss_f200w-gr150r
230240050 : jw02079-o004_s000000848_niriss_f150w-gr150c
230240051 : jw02079-o004_s000000471_niriss_f150w-gr150c
230242254 : jw02079-o004_s000000624_niriss_f115w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
Length = 47 rows
Batch #237 / 244
Working with the following obsids:
231822083 : jw02079-o004_s000000094_niriss_f115w-gr150c
230240054 : jw02079-o004_s000000753_niriss_f200w-gr150c
231822195 : jw02079-o004_s000000065_niriss_f115w-gr150c
230242257 : jw02079-o004_s000000618_niriss_f200w-gr150c
231822294 : jw02079-o004_s000000402_niriss_f115w-gr150c
INFO: 45 of 71 products were duplicates. Only downloading 26 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_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_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
...
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #238 / 244
Working with the following obsids:
230240056 : jw02079-o004_s000000974_niriss_f150w-gr150r
230240057 : jw02079-o004_s000000746_niriss_f200w-gr150r
231822414 : jw02079-o004_s000000584_niriss_f115w-gr150c
230242263 : jw02079-o004_s000000661_niriss_f115w-gr150r
230240060 : jw02079-o004_s000001314_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079-o004_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079004001_09101_00003_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #239 / 244
Working with the following obsids:
230240119 : jw02079-o004_s000000214_niriss_f200w-gr150c
230240062 : jw02079-o004_s000000332_niriss_f200w-gr150c
230240063 : jw02079-o004_s000000003_niriss_f150w-gr150r
230240064 : jw02079-o004_s000001371_niriss_f200w-gr150r
230240069 : jw02079-o004_s000000402_niriss_f115w-gr150r
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00030_asn.json
jw02079004001_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00024_asn.json
jw02079004001_09101_00001_nis_rate.fits
...
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
Length = 47 rows
Batch #240 / 244
Working with the following obsids:
230240070 : jw02079-o004_s000001203_niriss_f150w-gr150c
230240074 : jw02079-o004_s000000753_niriss_f200w-gr150r
230240077 : jw02079-o004_s000000628_niriss_f150w-gr150c
231822861 : jw02079-o004_s000000299_niriss_f115w-gr150c
230240113 : jw02079-o004_s000001199_niriss_f200w-gr150c
INFO: 7 of 47 products were duplicates. Only downloading 40 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00025_asn.json
jw02079004001_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00021_asn.json
jw02079004001_11101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00020_asn.json
jw02079004001_11101_00002_nis_rate.fits
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 47 rows
Batch #241 / 244
Working with the following obsids:
230240080 : jw02079-o004_s000000995_niriss_f150w-gr150r
230240082 : jw02079-o004_s000000489_niriss_f200w-gr150c
230240084 : jw02079-o004_s000000704_niriss_f200w-gr150c
230240086 : jw02079-o004_s000001393_niriss_f200w-gr150c
230240108 : jw02079-o004_s000000525_niriss_f200w-gr150r
INFO: 14 of 35 products were duplicates. Only downloading 21 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079-o004_20241005t184831_spec2_00001_asn.json
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079004003_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00006_asn.json
jw02079004003_03101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00002_asn.json
jw02079-o004_20241005t184831_spec2_00002_asn.json
...
jw02079004002_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00011_asn.json
jw02079004002_09101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00012_asn.json
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
Length = 35 rows
Batch #242 / 244
Working with the following obsids:
230240091 : jw02079-o004_s000000643_niriss_f200w-gr150r
230240092 : jw02079-o004_s000000707_niriss_f200w-gr150r
231823178 : jw02079-o004_s000000479_niriss_f115w-gr150c
230240096 : jw02079-o004_s000000699_niriss_f200w-gr150c
230240098 : jw02079-o004_s000001282_niriss_f115w-gr150r
INFO: 7 of 59 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 rows
Batch #243 / 244
Working with the following obsids:
231823286 : jw02079-o004_s000000624_niriss_f115w-gr150c
231823321 : jw02079-o004_s000000622_niriss_f115w-gr150c
230240111 : jw02079-o004_s000000525_niriss_f200w-gr150c
230240118 : jw02079-o004_s000000996_niriss_f150w-gr150c
230240319 : jw02079-o004_s000000009_niriss_f115w-gr150r
INFO: 19 of 71 products were duplicates. Only downloading 52 unique product(s). [astroquery.mast.observations]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00007_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00008_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00009_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00003_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079-o004_20241005t184831_spec2_00027_asn.json
...
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00008_asn.json
jw02079004002_11101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00003_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 71 rows
Batch #244 / 244
Working with the following obsids:
230240101 : jw02079-o004_s000000239_niriss_f150w-gr150r
230240321 : jw02079-o004_s000000453_niriss_f115w-gr150r
230240102 : jw02079-o004_s000000643_niriss_f200w-gr150c
231823539 : jw02079-o004_s000000425_niriss_f115w-gr150c
230240112 : jw02079-o004_s000000280_niriss_f200w-gr150r
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00001_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00002_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00003_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00004_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00005_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00006_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00010_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00011_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00012_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00013_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00014_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00015_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00016_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00017_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00018_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00019_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00020_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00021_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00022_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00023_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00024_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00025_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00026_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00027_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00028_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00029_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec2_00030_asn.json with expected size 2051. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00001_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00002_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00004_asn.json with expected size 2387. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_spec3_00005_asn.json with expected size 3929. [astroquery.query]
INFO: Found cached file data/jw02079-o004_20241005t184831_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_20241005t184831_spec2_00028_asn.json
jw02079004001_03101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00026_asn.json
jw02079004001_05101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00022_asn.json
jw02079004001_09101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00027_asn.json
jw02079004001_05101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00029_asn.json
jw02079004001_03101_00002_nis_rate.fits
...
jw02079004002_09101_00001_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00013_asn.json
jw02079004002_05101_00003_nis_rate.fits
jw02079-o004_20241005t184831_spec2_00017_asn.json
jw02079004002_03101_00002_nis_rate.fits
jw02079-o004_20241005t184831_spec3_00004_asn.json
jw02079-o004_20241005t184831_spec3_00001_asn.json
jw02079-o004_20241005t184831_spec3_00002_asn.json
jw02079-o004_20241005t184831_spec3_00006_asn.json
jw02079-o004_20241005t184831_spec3_00005_asn.json
Length = 59 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']}")