Skip to content

Commit 0242cb0

Browse files
authored
Reimplement ESO querying functions to use TAP / ADQL (#2)
1 parent 3aa745e commit 0242cb0

21 files changed

+1763
-2810
lines changed

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ linelists.cdms
2828

2929
- Add a keyword to control writing of new species cache files. This is needed to prevent tests from overwriting those files. [#3297]
3030

31+
eso
32+
^^^
33+
34+
- Use TAP backend instead of WDB. [#3141]
35+
3136
heasarc
3237
^^^^^^^
3338

astroquery/eso/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ class Conf(_config.ConfigNamespace):
1111
"""
1212

1313
row_limit = _config.ConfigItem(
14-
50,
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)