Skip to content

Commit a17bf41

Browse files
authored
Merge pull request #3339 from juanmcloaiza/feature/ISSUE-3138-TAP
2 parents ceb6c1a + 2272c91 commit a17bf41

20 files changed

+1992
-2814
lines changed

CHANGES.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ esa.hubble
6666
- Removal of the deprecated ``query_hst_tap`` method, use ``query_tap`` instead.
6767
[#3367]
6868

69+
eso
70+
^^^
71+
72+
- Deprecated ``open_form`` and ``cache`` in query functions [#3339]
73+
6974
gaia
7075
^^^^
7176

@@ -104,6 +109,15 @@ esa.hubble
104109

105110
- Internal refactor of the module to use to PyVO. [#3367]
106111

112+
eso
113+
^^^
114+
115+
- Switch querying interface from WDB to TAP in querying functions. [#3339]
116+
- Allow plain ADQL queries via ``query_tap`` (with authentication as well). [#3339]
117+
- Cone search using ``cone_ra`, ``cone_dec`, ``cone_radius`` arguments. [#3339]
118+
- Retrieve record count before querying the archive, via ``count_only`` argument. [#3339]
119+
- Ask query functions to print the underlying ADQL queries without issuing them. [#3339]
120+
107121
gaia
108122
^^^^
109123

astroquery/eso/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ class Conf(_config.ConfigNamespace):
1010
Configuration parameters for `astroquery.eso`.
1111
"""
1212

13-
row_limit = _config.ConfigItem(
14-
50,
13+
ROW_LIMIT = _config.ConfigItem(
14+
1000,
1515
'Maximum number of rows returned (set to -1 for unlimited).')
1616
username = _config.ConfigItem(
1717
"",
1818
'Optional default username for ESO archive.')
19-
query_instrument_url = _config.ConfigItem(
20-
"http://archive.eso.org/wdb/wdb/eso",
21-
'Root query URL for main and instrument queries.')
19+
tap_url = _config.ConfigItem(
20+
"https://archive.eso.org/tap_obs",
21+
'URL for TAP queries.')
2222

2323

2424
conf = Conf()

0 commit comments

Comments
 (0)