Adam Ginsburg
Adam Ginsburg
Example: ```python >>> Splatalogue.query_lines(1*u.GHz, 2*u.GHz) Traceback (most recent call last): Cell In[239], line 1 Splatalogue.query_lines(1*u.GHz, 2*u.GHz) File ~/repos/astroquery/astroquery/utils/class_or_instance.py:25 in f return self.fn(obj, *args, **kwds) File ~/repos/astroquery/astroquery/utils/process_asyncs.py:29 in newmethod result =...
This is a new tool to query the HiGal image cutout and catalog service. The catalog can be accessed from Vizier and therefore is not necessary, but the image cutout...
The lookuptables used in linelist searches are a little touchy because of lines like `HCO+` and `HOCO+`. You have to escape the `+`'s to get them to work, which means...
This refactor also adds a new method to retrieve the very useful metadata tables rather than just scrape them for download URLs. Solves #2808
As noted in #2918, the current return wavelength unit from NIST depends on the input wavelength. This should be documented better and/or, preferably, should be accommodated through returning a QTable...
There was a feature request on stackoverflow: https://stackoverflow.com/questions/77509022/how-can-i-get-solar-system-body-mass-radius-in-python ```python from astroquery.jplhorizons import Horizons from astropy import units as u object_id = "199" # Mercury obj_id = Horizons(id=object_id, location="0") # Location...
Solves #2232, but very much a WIP. I've gotten the server to return data, finally, but I haven't parsed it yet.
The THOR (HI/OH/RRL) survey of the Galactic plane has an image cutout service. This is a new tool to query that service. WIP: requires tests!
Does the MAST API (and/or, the `Observations` interface) support access to & retrieval of JWST FGS data? I was surprised at this null result: ```python regionCoords = coordinates.SkyCoord(0*u.deg, 0*u.deg, frame='galactic')...