Adam Ginsburg
Adam Ginsburg
Pristine (?) astroquery.cfg: ``` [besancon] # Besancon download URL. Changed to modele2003 in 2013. # Options: ftp://sasftp.obs-besancon.fr/modele/modele2003/, ftp://sasftp.obs-besancon.fr/modele/ besancon_download_url = ftp://sasftp.obs-besancon.fr/modele/modele2003/ # Besancon model form URL # Options: http://model.obs-besancon.fr/modele_form.php besancon_model_Form...
Let me know when this is ready. Since you haven't added the config, I assume it's not ready yet?
@jwoillez I've merged in the latest astropy package-template, which seems to require a rebase on your part. I'll still wait for your go-ahead before a merge.
ping @jwoillez let me know if & when this is next ready for review
@jkrick please post the full tracebacks for errors like this. This looks like an upstream error: ```python from astroquery.vizier import Vizier result = Vizier(catalog='IV/38/tic').query_constraints_async(TIC='1402786096') Vizier.response.text.split("\n")[-13:] ``` ``` ['', '', '...
@fgrollier Can you comment on what's going wrong here?
OK one answer to my question is: avoid including too many sources that are just PSF artifacts; it creates a lot of expensive joint solve groups that are junk anyway....
Thanks. Progressbars would be great. It's super helpful to know that the non-iterative PSF photometry tools can just take initial source locations. There are plenty of cases where I just...
My temporary hack for a pbar is: ```python star_list = filtered_finder(filtered_data) group_list = daogroup(star_list) pb = ProgressBar(len(group_list)) lmfitter = LevMarLSQFitter() def fitter(*args, **kwargs): pb.update() return lmfitter(*args, **kwargs) phot = BasicPSFPhotometry(finder=None,...
And I'll add: part of the motivation for the pbar is that it's hard to tell when my code has frozen vs when it's still working - with these larger...