Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,11 @@ esa.hubble
file is not in Datalabs yet [#3437]
- Update ``get_datalabs_path`` method to check for files for new collections (HLSP and HSLA) [#3578]

esa.euclid
^^^^^^^^^^

- Update the list of supported data products used by the ``get_product_list`` method [#3655]


imcce
^^^^^
Expand Down
16 changes: 8 additions & 8 deletions astroquery/esa/euclid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ class Conf(_config.ConfigNamespace):

MOSAIC_PRODUCTS = ['DpdMerBksMosaic']

BASIC_DOWNLOAD_DATA_PRODUCTS = ['dpdPhzPfOutputForL3', 'dpdPhzPfOutputCatalog', 'dpdMerFinalCatalog',
'dpdSpePfOutputCatalog', 'dpdSheLensMcChains', 'dpdHealpixBitMaskVMPZ',
'dpdHealpixFootprintMaskVMPZ', 'dpdHealpixCoverageVMPZ', 'dpdHealpixDepthMapVMPZ',
'dpdHealpixInfoMapVMPZ', 'dpdSheBiasParams', 'dpdSheLensMcFinalCatalog',
'dpdSheLensMcRawCatalog', 'dpdSheMetaCalFinalCatalog', 'dpdSheMetaCalRawCatalog',
'dpdSleDetectionOutput', 'dpdSleModelOutput']
BASIC_DOWNLOAD_DATA_PRODUCTS = ['DpdPhzPfOutputForL3', 'DpdPhzPfOutputCatalog', 'DpdPhzDeepOutputCatalog',
'DpdMerFinalCatalog', 'DpdSpePfOutputCatalog', 'DpdSheLensMcChains',
'DpdHealpixBitMaskVMPZ', 'DpdHealpixFootprintMaskVMPZ', 'DpdHealpixCoverageVMPZ',
'DpdHealpixDepthMapVMPZ', 'DpdHealpixInfoMapVMPZ', 'DpdSheBiasParams',
'DpdSheLensMcFinalCatalog', 'DpdSheLensMcRawCatalog', 'DpdSheMetaCalFinalCatalog',
'DpdSheMetaCalRawCatalog', 'DpdSleDetectionOutput']

MER_SEGMENTATION_MAP_PRODUCTS = ['DpdMerSegmentationMap']

RAW_FRAME_PRODUCTS = ['dpdVisRawFrame', 'dpdNispRawFrame']
RAW_FRAME_PRODUCTS = ['DpdVisRawFrame', 'DpdNispRawFrame']

CALIBRATED_FRAME_PRODUCTS = ['DpdVisCalibratedQuadFrame', 'DpdNirCalibratedFrame']

Expand All @@ -67,7 +67,7 @@ class Conf(_config.ConfigNamespace):

COMBINED_SPECTRA_PRODUCTS = ['DpdSirCombinedSpectra']

SIR_SCIENCE_FRAME_PRODUCTS = ['dpdSirScienceFrame']
SIR_SCIENCE_FRAME_PRODUCTS = ['DpdSirScienceFrame']

PRODUCT_TYPES = ['observation', 'mosaic']

Expand Down
Loading
Loading