Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
------------------------------
Expand Down
2 changes: 1 addition & 1 deletion astroquery/vizier/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading