Skip to content
Snippets Groups Projects
Commit 1de5e503 authored by Charlotte Hausman's avatar Charlotte Hausman Committed by Daniel Nemergut
Browse files

initial std. imaging spelunking

parent 2816b52b
No related branches found
No related tags found
2 merge requests!1452Merge 2.8.2 to main,!1383WS-1769 VLA manifest creation
......@@ -72,6 +72,7 @@ class ImageIngestionProductsFinder:
file
for file in self.files_found
if file.name.endswith(FITS)
and TT0 in file.name # make sure tt1 is NOT a sp
and RMS not in file.name
and PB not in file.name
and MASK not in file.name
......@@ -94,7 +95,7 @@ class ImageIngestionProductsFinder:
science_products = []
for file in sp_image_files:
# For the case where there are two image science products, all ancillaries should be attached to only one
if file == sp_image_files[0]:
if TT0 in file.name:
science_products.append(
OutputScienceProduct(
product_type=AncillaryProductType.FITS,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment