You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a value for "radius" is passed to Gaia.query_object, the value of "columns" is ignored. This does not occur if "radius" is left blank and "width" and "height" are specified instead.
Example:
from astroquery.gaia import Gaia
from astropy import units
from astropy.coordinates import SkyCoord
radius = 10 * units.arcsec
ra = 0 * units.degree
dec = 0 * units.degree
c = SkyCoord(ra=ra, dec=dec)