Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d194817
Add ESO catalogue functions (#8)
ashleythomasbarnes Feb 13, 2026
5787caa
revert test_eso_remote and remove site_packages
ashleythomasbarnes Feb 13, 2026
22c1cfa
revert eso core formatting
ashleythomasbarnes Feb 13, 2026
8c86e56
putback catalogue query
ashleythomasbarnes Feb 13, 2026
b09b19e
minor change
ashleythomasbarnes Feb 13, 2026
81d609c
code style updates
ashleythomasbarnes Feb 13, 2026
fdd6ca1
more code style updates
ashleythomasbarnes Feb 13, 2026
800de4a
updated changes.rst with PR #
ashleythomasbarnes Feb 13, 2026
0810201
test fixes
ashleythomasbarnes Feb 13, 2026
8f0d0de
test fixes
ashleythomasbarnes Feb 13, 2026
caefff0
test fixes
ashleythomasbarnes Feb 13, 2026
858c58b
test fixes
ashleythomasbarnes Feb 13, 2026
db96c8b
test fixes
ashleythomasbarnes Feb 13, 2026
04c2e78
Updates for TAP1.1 cat
ashleythomasbarnes Feb 26, 2026
a11a480
fixing checks
ashleythomasbarnes Feb 26, 2026
86877ae
included exceptions.MaxResultsWarning
ashleythomasbarnes Mar 1, 2026
539ec33
Update astroquery/eso/core.py
ashleythomasbarnes Apr 10, 2026
cca4066
catalogue -> catalog and which_tap -> tap_endpoint
ashleythomasbarnes Apr 10, 2026
c99d082
_try_download_pyvo_table -> _try_retrieve_pyvo_table
ashleythomasbarnes Apr 10, 2026
0168645
updated tests
ashleythomasbarnes Apr 14, 2026
fe2f196
function to check is schema needed for help TAP1 vs 1.1
ashleythomasbarnes Apr 17, 2026
980c982
updated list_catalogs all version tap
ashleythomasbarnes Apr 17, 2026
55c6bdd
remove tap_endpoint input param in _query_on_allowed_values
ashleythomasbarnes Apr 22, 2026
8f2d723
Update tests
ashleythomasbarnes Apr 22, 2026
5971114
Merge branch 'main' into develop-catalogues
ashleythomasbarnes Apr 22, 2026
462ff78
fixed tests
ashleythomasbarnes Apr 22, 2026
1c13da8
Merge branch 'develop-catalogues' of https://github.com/eso/astroquer…
ashleythomasbarnes Apr 22, 2026
11b518a
Update CHANGES.rst
ashleythomasbarnes Apr 22, 2026
f2a77a6
fixed tests
ashleythomasbarnes Apr 22, 2026
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
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ noirlab
API changes
-----------

eso
^^^

- Add functionality to list and query ESO catalogues. [#8]

Comment on lines +27 to +39
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I seem to remember that this file is normally edited by the astroquery maintainers

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nope, this is correct, preferably the changelog entry is added in the PR by the PR author.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me know if you need more here...

esa.euclid
^^^^^^^^^^

Expand Down
13 changes: 9 additions & 4 deletions astroquery/eso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,21 @@ class Conf(_config.ConfigNamespace):
"""
Configuration parameters for `astroquery.eso`.
"""

MAX_ROW_LIMIT = _config.ConfigItem(
15000000,
'Maximum number of rows allowed by the TAP service.')
ROW_LIMIT = _config.ConfigItem(
1000,
'Maximum number of rows returned (set to -1 for unlimited).')
'Maximum number of rows returned (set to -1 for maximum allowed via TAP service).')
username = _config.ConfigItem(
"",
'Optional default username for ESO archive.')
tap_url = _config.ConfigItem(
tap_obs_url = _config.ConfigItem(
Comment on lines -19 to +21
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is technically an API change; but for now it is acceptable as we haven't yet released the ESO refactor work.

"https://archive.eso.org/tap_obs",
'URL for TAP queries.')
'URL for TAP observation queries.')
tap_cat_url = _config.ConfigItem(
"https://archive.eso.org/tap_cat",
'URL for TAP catalogue queries.')


conf = Conf()
Expand Down
Loading
Loading