astroquery
astroquery copied to clipboard
Functions and classes to access online data resources. Maintainers: @keflavich and @bsipocz and @ceb8
Noirlab raises this exception `The astroquery.noirlab module module is expecting an older version of the https://astroarchive.noao.edu API services ` the API is of version 5.0 but the module checks for...
The existing `Irsa` module can query the [public ZTF catalog](https://www.ztf.caltech.edu/page/dr1): ``` from astroquery.irsa import Irsa from astropy.coordinates import SkyCoord sc = SkyCoord('01:53:49.67 +20:20:47.7',unit=(u.hourangle,u.deg)) Irsa.query_region(coordinates=sc,catalog='ztf_objects_dr1', radius=1.5*u.arcsec) ``` However, the returned result...
I've noticed that a lot of caching directories are created for astroquery.mast, mostly due to the fact that there are multiple classes provided in the module (as opposed to other...
The goal is to query the Planetary Ring Node's ephemeris tools at https://pds-rings.seti.org/tools/
Query `Tic` / `Ctl` Catalogs to get a subset of columns with [`query_criteria(columns=...)`](https://astroquery.readthedocs.io/en/latest/api/astroquery.mast.CatalogsClass.html#astroquery.mast.CatalogsClass.query_criteria) does not appear to work. [MAST documentation](https://catalogs.mast.stsci.edu/docs/general_catalog_service.html#selecting-columns) suggests that `columns` is supported. Sample codes: ```python from astroquery.mast...
The following error occurs when running tests on a 32-bit Debian system: ``` ============================= test session starts ============================== platform linux -- Python 3.10.4, pytest-6.2.5, py-1.10.0, pluggy-1.0.0 Running tests with astroquery...
Thomas Dutkiewicz pointed out to me that this method of authorization with the token parameter is deprecated:  Rather, the verification process is now bound to the `login` method, where...
I'm working with Neocp and developing a software for it. Is it possible to query MPC also for Neocp ephemeris?
Hi, I recently found that the Vizier query no longer gives the unit of angular separation `_r` in the result table, which makes error with previous codes I wrote. I'm...