Skip to content

Commit 222c771

Browse files
authored
Merge pull request #3514 from esdc-esac-esa-int/ESA_euclid_EUCLIDMNGT-1430_versioning_param
EUCLID: new parameters in `get_observation_products`, `get_product_list`, `get_product `and `get_scientific_product_list ` to retrieve the products by the dataset release
2 parents 53160a4 + 7de7c4e commit 222c771

File tree

5 files changed

+301
-45
lines changed

5 files changed

+301
-45
lines changed

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,8 @@ esa.euclid
173173
products. [#3313]
174174

175175
- New cross-match method [#3386]
176+
- New parameters in the methods get_observation_products, get_product_list, get_product and get_scientific_product_list
177+
to retrieve the products by the dataset release [#3514]
176178

177179
esa.hubble
178180
^^^^^^^^^^

astroquery/esa/euclid/__init__.py

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,22 @@ class Conf(_config.ConfigNamespace):
2525
"ID is given preference. To give name preference, set the value to True:")
2626

2727
ENVIRONMENTS = {'IDR': {'url_server': 'https://easidr.esac.esa.int/', 'main_table': 'catalogue.mer_catalogue',
28-
'main_table_ra_column': 'right_ascension', 'main_table_dec_column': 'declination'},
28+
'main_table_ra_column': 'right_ascension', 'main_table_dec_column': 'declination',
29+
'data_set_release_part1': 'environment', 'data_set_release_part2': 'activity_code',
30+
'data_set_release_part3': 'version'},
2931
'OTF': {'url_server': 'https://easotf.esac.esa.int/', 'main_table': 'catalogue.mer_catalogue',
30-
'main_table_ra_column': 'right_ascension', 'main_table_dec_column': 'declination'},
32+
'main_table_ra_column': 'right_ascension', 'main_table_dec_column': 'declination',
33+
'data_set_release_part1': 'activity_code', 'data_set_release_part2': 'patch_id',
34+
'data_set_release_part3': 'version'},
3135
'REG': {'url_server': 'https://easreg.esac.esa.int/',
3236
'main_table': 'catalogue.mer_final_catalog_fits_file_regreproc1_r2',
33-
'main_table_ra_column': 'right_ascension', 'main_table_dec_column': 'declination'},
37+
'main_table_ra_column': 'right_ascension', 'main_table_dec_column': 'declination',
38+
'data_set_release_part1': 'environment', 'data_set_release_part2': 'activity_code',
39+
'data_set_release_part3': 'version'},
3440
'PDR': {'url_server': 'https://eas.esac.esa.int/', 'main_table': 'catalogue.mer_catalogue',
35-
'main_table_ra_column': 'right_ascension', 'main_table_dec_column': 'declination'}
41+
'main_table_ra_column': 'right_ascension', 'main_table_dec_column': 'declination',
42+
'data_set_release_part1': 'environment', 'data_set_release_part2': 'activity_code',
43+
'data_set_release_part3': 'version'}
3644
}
3745

3846
OBSERVATION_STACK_PRODUCTS = ['DpdNirStackedFrame', 'DpdVisStackedFrame']

0 commit comments

Comments
 (0)