-
-
Notifications
You must be signed in to change notification settings - Fork 429
Open
Description
Hi,
I am working with astroquery 0.4.11 and python 3.10.13 on win 10.
I am trying to obtain the characteristics of eclipsing binaries in the I/358/veb catalog via Vizier.
When I make a request on two different sources (separated by 48"), I obtain the same output twice.
from astroquery.vizier import Vizier
vizier = Vizier()
vizier.ROW_LIMIT = -1
vizier.query_object(['Gaia DR3 5842080147428206848'],catalog='I/358/veb')
Source SolID ... RA_ICRS DE_ICRS
deg deg
int64 int64 ... float64 float64
------------------- ------------------ ... --------------- ---------------
5842080147428206848 375316653866487564 ... 190.56184164609 -72.18392576177
5842080903342462336 375316653866487564 ... 190.57528865037 -72.17043066442
vizier.query_object(['Gaia DR3 5842080903342462336'],catalog='I/358/veb')
Source SolID ... RA_ICRS DE_ICRS
deg deg
int64 int64 ... float64 float64
------------------- ------------------ ... --------------- ---------------
5842080147428206848 375316653866487564 ... 190.56184164609 -72.18392576177
5842080903342462336 375316653866487564 ... 190.57528865037 -72.17043066442
In the second request, the source I asked for is in the second row...
This is weird, right? Shouldn't we have one row if we request one source?
Those two sources are not an isolate case.
On a list of 90 sources, 17% of the requests give doubled results as above.
Is it a misuse from me? (I cleared the cache)
I don't have this issue when I use Vizier's website directly but I would like to keep using astroquery.
Thank you,
Sacha