Skip to content

Commit a304b13

Browse files
Jorge Fernandez HernandezJorge Fernandez Hernandez
authored andcommitted
GAIAMNGT-1700 change signature of the method Gaia.load_data
1 parent bd8f332 commit a304b13

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

astroquery/gaia/core.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,8 @@ def load_data(self, ids, *, data_release=None, data_structure='INDIVIDUAL', retr
217217
the Datalink items tags will not be checked.
218218
format : str, optional, default 'votable'
219219
loading format. Other available formats are 'csv', 'ecsv','votable_plain', 'json' and 'fits'
220-
dump_to_file: boolean, optional, default False
220+
dump_to_file: boolean, optional, default False.
221+
If it is true, a compressed directory named "datalink_output.zip" with all the DataLink files is made
221222
overwrite_output_file : boolean, optional, default False
222223
To overwrite the output_file if it already exists.
223224
verbose : bool, optional, default 'False'
@@ -241,6 +242,8 @@ def load_data(self, ids, *, data_release=None, data_structure='INDIVIDUAL', retr
241242
output_file = 'datalink_output.zip'
242243
output_file_specified = True
243244
output_file = os.path.abspath(output_file)
245+
print(f"DataLink products are stored inside the {output_file} file")
246+
244247
if not overwrite_output_file and os.path.exists(output_file):
245248
print(f"{output_file} file already exists and will be overwritten")
246249

0 commit comments

Comments
 (0)