@@ -1278,8 +1278,7 @@ def get_datalinks(self, ids, *, linking_parameter='SOURCE_ID', verbose=False):
1278
1278
return self .__eucliddata .get_datalinks (ids = ids , linking_parameter = linking_parameter , verbose = verbose )
1279
1279
1280
1280
def get_scientific_data_product_list (self , * , observation_id = None , tile_index = None , category = None , group = None ,
1281
- product_type = None ,
1282
- release = 'LEVEL_3_RELEASE' , verbose = False ):
1281
+ product_type = None , dataset_release = 'LEVEL_3_RELEASE' , verbose = False ):
1283
1282
""" Gets the LE3 products (the high-level science data products).
1284
1283
1285
1284
Please note that not all combinations of category, group, and product_type are valid.
@@ -1547,7 +1546,7 @@ def get_scientific_data_product_list(self, *, observation_id=None, tile_index=No
1547
1546
#. 'DpdReferenceSample':
1548
1547
#. 'DpdTomographicBins':
1549
1548
1550
- release : str, mandatory.
1549
+ dataset_release : str, mandatory. Default LEVEL_3_RELEASE
1551
1550
Data release from which data should be taken.
1552
1551
verbose : bool, optional, default 'False'
1553
1552
flag to display information about the process
@@ -1564,7 +1563,7 @@ def get_scientific_data_product_list(self, *, observation_id=None, tile_index=No
1564
1563
None ):
1565
1564
raise ValueError ("Include a valid parameter to retrieve a LE3 product." )
1566
1565
1567
- if release is None :
1566
+ if dataset_release is None :
1568
1567
raise ValueError ("The release is required." )
1569
1568
1570
1569
if observation_id is not None and tile_index is not None :
@@ -1671,7 +1670,7 @@ def get_scientific_data_product_list(self, *, observation_id=None, tile_index=No
1671
1670
f"observation_id_list, CAST(basic_download_data.tile_index_list as text) AS tile_index_list, "
1672
1671
f"CAST(basic_download_data.patch_id_list as text) AS patch_id_list, "
1673
1672
f"CAST(basic_download_data.filter_name as text) AS filter_name FROM sedm.basic_download_data WHERE "
1674
- f"release_name='{ release } ' { query_extra_condition } ORDER BY observation_id_list ASC" )
1673
+ f"release_name='{ dataset_release } ' { query_extra_condition } ORDER BY observation_id_list ASC" )
1675
1674
1676
1675
job = super ().launch_job (query = query , output_format = 'votable_plain' , verbose = verbose ,
1677
1676
format_with_results_compressed = ('votable_gzip' ,))
0 commit comments