From 04c211eecd7aa0abc6270287687daa6ec78c9230 Mon Sep 17 00:00:00 2001 From: kraysent Date: Fri, 14 Nov 2025 16:26:01 +0000 Subject: [PATCH 1/2] remove UCD formatter --- astroquery/vizier/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astroquery/vizier/core.py b/astroquery/vizier/core.py index 3531f862e3..980386e52c 100644 --- a/astroquery/vizier/core.py +++ b/astroquery/vizier/core.py @@ -689,7 +689,7 @@ def _args_to_payload(self, *args, **kwargs): for (key, value) in center.items(): body[key] = value # add column metadata: name, unit, UCD1+, and description - body["-out.meta"] = "huUD" + body["-out.meta"] = "huD" # merge tables when a list is queried against a single catalog body["-out.form"] = "mini" # computed position should always be in decimal degrees From 95e7702341556d4af684a75dfc8ecf23b141e676 Mon Sep 17 00:00:00 2001 From: kraysent Date: Mon, 24 Nov 2025 19:13:39 +0000 Subject: [PATCH 2/2] add changes entry --- CHANGES.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 363e160b5d..f1842b0821 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -16,6 +16,10 @@ esa.euclid from the server. Specifically, passing ``'METADATA'`` to this argument will retrieve the extra fields ``datalabs_path``, ``file_name`` and ``hdu_index``. [#3438] +vizier +^^^^^^ +- Methods ``get_catalog``, ``get_catalog_async`` and ``query_*`` now always return UCD1+ instead of UCD1. [#3458] + Service fixes and enhancements ------------------------------