@@ -43,7 +43,7 @@ class MastMissionsClass(MastQueryWithLogin):
43
43
_list_products = 'post_list_products'
44
44
45
45
# Workaround so that observation_id is returned in ULLYSES queries that do not specify columns
46
- _default_ulysses_cols = ['target_name_ulysses' , 'target_classification' , 'targ_ra' , 'targ_dec' , 'host_galaxy_name' ,
46
+ _default_ullyses_cols = ['target_name_ulysses' , 'target_classification' , 'targ_ra' , 'targ_dec' , 'host_galaxy_name' ,
47
47
'spectral_type' , 'bmv0_mag' , 'u_mag' , 'b_mag' , 'v_mag' , 'gaia_g_mean_mag' , 'star_mass' ,
48
48
'instrument' , 'grating' , 'filter' , 'observation_id' ]
49
49
@@ -192,7 +192,7 @@ def query_region_async(self, coordinates, *, radius=3*u.arcmin, limit=5000, offs
192
192
if select_cols :
193
193
select_cols .append (self .dataset_kwds .get (self .mission , None ))
194
194
elif self .mission == 'ullyses' :
195
- select_cols = self ._default_ulysses_cols
195
+ select_cols = self ._default_ullyses_cols
196
196
197
197
# basic params
198
198
params = {'target' : [f"{ coordinates .ra .deg } { coordinates .dec .deg } " ],
@@ -269,7 +269,7 @@ def query_criteria_async(self, *, coordinates=None, objectname=None, radius=3*u.
269
269
if select_cols :
270
270
select_cols .append (self .dataset_kwds .get (self .mission , None ))
271
271
elif self .mission == 'ullyses' :
272
- select_cols = self ._default_ulysses_cols
272
+ select_cols = self ._default_ullyses_cols
273
273
274
274
# build query
275
275
params = {"limit" : self .limit , "offset" : offset , 'select_cols' : select_cols }
@@ -583,7 +583,7 @@ def download_products(self, products, *, download_dir=None, flat=False,
583
583
flat : bool, optional
584
584
Default is False. If False, puts files into the standard
585
585
directory structure of "mastDownload/<mission>/<dataset ID>/".
586
- If True, places files directly in `download_dir` without subdirectories.
586
+ If True, places files directly in `` download_dir` ` without subdirectories.
587
587
cache : bool, optional
588
588
Default is True. If file is found on disc, it will not be downloaded again.
589
589
extension : string or list, optional
0 commit comments