Jorge Fernandez-Hernandez

Results 22 comments of Jorge Fernandez-Hernandez

A possible solution to the issue described by @adrn has been implemented in the PR https://github.com/astropy/astroquery/pull/2967

We have checked that all the examples in https://www.cosmos.esa.int/web/gaia-users/archive/programmatic-access#Sect_1_ss1.3 and https://www.cosmos.esa.int/web/gaia-users/archive/programmatic-access#Sect_3_ss3.4 only make use of votables. This is due to the fact of the TAP recommendation (https://www.ivoa.net/documents/TAP/20190927/REC-TAP-1.1.html#tth_sEc2.7.6): "If table upload...

Hi @bsipocz, thanks for your quick reply. So. from you point of view, somewhere in the TapPlus class the build of the astropy table is carried out. Is the project...

> yes, pyvo is separate from core astropy and maintained by several IVOA people atm. A couple of years ago we talked about a roadmap of moving features from tapplus...

We have committed the PR https://github.com/astropy/astroquery/pull/2967 to handle this problem.

Dear @javierggt, in the gaia help page https://www.cosmos.esa.int/web/gaia-users/archive/use-cases#ClusterAnalysisPythonTutorial you can see that right after calling the function `launch_job_async `you can use the method `results = job.get_results()`. The documentation of this...

I think that the only way to know that your table has been created in the system is at the time a message like this is printed > INFO: Created...

You can follow the document https://www.cosmos.esa.int/web/gaia-users/archive/datalink-products#datalink_jntb_get_above_lim to downloand datalink products for >5000 sources "dataLink server threshold: It is not possible to download products for more than 5000 sources in one...

Thank you @retifrav for this information. If you open the json file (the one downloaded by curl) you can show the offending character, if you open it with vi and...

Hi @lonestarchaser, I am afraid, the code is not prepared to handle a list of coordinates: ``` dec_list=[-60,-50] ra_list=[280,270] coord = SkyCoord(ra=ra_list*u.degree, dec=dec_list*u.degree, frame='icrs') coord j = Gaia.cone_search_async(coord, radius=u.Quantity(2.0/360, u.deg),background='true')...