Skip to content

Commit 603309f

Browse files
committed
doc: UCAC2 is now tagged as obsolete
1 parent 3f4a051 commit 603309f

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

astroquery/vizier/tests/test_vizier_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def test_asu_tsv_return_type(self):
146146
result = vizier.query_object("HD 226868", catalog=["NOMAD", "UCAC"], return_type='asu-tsv', cache=False)
147147

148148
assert isinstance(result, list)
149-
assert len(result) == 3
149+
assert len(result) == 2
150150

151151
def test_query_constraints(self):
152152
vizier = Vizier(row_limit=3)

docs/vizier/vizier.rst

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -255,11 +255,10 @@ dimension.
255255
... width="30m",
256256
... catalog=["NOMAD", "UCAC"])
257257
>>> print(result)
258-
TableList with 4 tables:
258+
TableList with 3 tables:
259259
'0:I/297/out' with 19 column(s) and 50 row(s)
260-
'1:I/289/out' with 13 column(s) and 50 row(s)
261-
'2:I/322A/out' with 24 column(s) and 50 row(s)
262-
'3:I/340/ucac5' with 20 column(s) and 50 row(s)
260+
'1:I/322A/out' with 24 column(s) and 50 row(s)
261+
'2:I/340/ucac5' with 20 column(s) and 50 row(s)
263262

264263

265264
One more thing to note in the above example is that the coordinates may be
@@ -311,11 +310,10 @@ this Vizier instance:
311310
... column_filters={"Vmag":">10"}, keywords=["optical", "xry"]) # doctest: +IGNORE_WARNINGS
312311
>>> result = v.query_object("HD 226868", catalog=["NOMAD", "UCAC"])
313312
>>> print(result)
314-
TableList with 4 tables:
313+
TableList with 3 tables:
315314
'0:I/297/out' with 3 column(s) and 50 row(s)
316-
'1:I/289/out' with 2 column(s) and 18 row(s)
317-
'2:I/322A/out' with 3 column(s) and 10 row(s)
318-
'3:I/340/ucac5' with 2 column(s) and 26 row(s)
315+
'1:I/322A/out' with 3 column(s) and 10 row(s)
316+
'2:I/340/ucac5' with 2 column(s) and 26 row(s)
319317
>>> print(result['I/322A/out'])
320318
_RAJ2000 _DEJ2000 Vmag
321319
deg deg mag

0 commit comments

Comments
 (0)