Skip to content
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. [#3531]

Comment on lines 16 to 20
Copy link
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
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
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
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