Skip to content
Open
Show file tree
Hide file tree
Changes from 8 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
14 changes: 14 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ New Tools and Services
API changes
-----------

eso
^^^

- Deprecated ``open_form`` and ``cache`` in query functions [#3339]

gaia
^^^^

Expand All @@ -30,6 +35,15 @@ esa.euclid
- New method, get_scientific_product_list, to retrieve scientific LE3
products. [#3313]

eso
^^^

- Switch querying interface from WDB to TAP in querying functions. [#3339]
- Allow plain ADQL queries via ``query_tap_service`` (with authentication as well). [#3339]
- Cone search using ``cone_ra`, ``cone_dec`, ``cone_radius`` arguments. [#3339]
- Retrieve record count before querying the archive, via ``count_only`` argument. [#3339]
- Ask query functions to print the underlying ADQL queries without issuing them. [#3339]

gaia
^^^^

Expand Down
8 changes: 4 additions & 4 deletions astroquery/eso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ class Conf(_config.ConfigNamespace):
"""

row_limit = _config.ConfigItem(
50,
1000,
'Maximum number of rows returned (set to -1 for unlimited).')
username = _config.ConfigItem(
"",
'Optional default username for ESO archive.')
query_instrument_url = _config.ConfigItem(
"http://archive.eso.org/wdb/wdb/eso",
'Root query URL for main and instrument queries.')
tap_url = _config.ConfigItem(
"https://archive.eso.org/tap_obs",
'URL for TAP queries.')


conf = Conf()
Expand Down
Loading
Loading