Skip to content

Commit dea454c

Browse files
“Javierbsipocz
authored andcommitted
JWSTPCR-254: sync/async methods simplified, comments on PR#2140
1 parent 0849e25 commit dea454c

File tree

11 files changed

+356
-1408
lines changed

11 files changed

+356
-1408
lines changed

astroquery/esa/jwst/__init__.py

Lines changed: 15 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Licensed under a 3-clause BSD style license - see LICENSE.rst
22
"""
3-
=============
4-
JWST TAP plus
5-
=============
3+
==========
4+
eJWST Init
5+
==========
66
77
@author: Raul Gutierrez-Sanchez
88
@@ -24,36 +24,28 @@ class Conf(_config.ConfigNamespace):
2424
Configuration parameters for `astroquery.esa.jwst`.
2525
"""
2626

27-
JWST_MAIN_TABLE = _config.ConfigItem("jwst.main",
28-
"JWST main table, combination of \
29-
observation and plane tables.")
27+
JWST_TAP_SERVER = _config.ConfigItem("http://jwstdummytap.com")
28+
JWST_DATA_SERVER = _config.ConfigItem("http://jwstdummydata.com")
3029

31-
JWST_MAIN_TABLE_RA = _config.ConfigItem("target_ra",
32-
"Name of RA parameter in table")
30+
JWST_MAIN_TABLE = _config.ConfigItem("jwst.main", "JWST main table, combination of observation and plane tables.")
3331

34-
JWST_MAIN_TABLE_DEC = _config.ConfigItem("target_dec",
35-
"Name of Dec parameter in table")
32+
JWST_MAIN_TABLE_RA = _config.ConfigItem("target_ra", "Name of RA parameter in table")
3633

37-
JWST_ARTIFACT_TABLE = _config.ConfigItem("jwst.artifact",
38-
"JWST artifacts "
39-
"(data files) table.")
34+
JWST_MAIN_TABLE_DEC = _config.ConfigItem("target_dec", "Name of Dec parameter in table")
4035

41-
JWST_OBSERVATION_TABLE = _config.ConfigItem("jwst.observation",
42-
"JWST observation table")
36+
JWST_ARTIFACT_TABLE = _config.ConfigItem("jwst.artifact", "JWST artifacts (data files) table.")
4337

44-
JWST_PLANE_TABLE = _config.ConfigItem("jwst.plane",
45-
"JWST plane table")
38+
JWST_OBSERVATION_TABLE = _config.ConfigItem("jwst.observation", "JWST observation table")
4639

47-
JWST_OBS_MEMBER_TABLE = _config.ConfigItem("jwst.observationmember",
48-
"JWST observation member table")
40+
JWST_PLANE_TABLE = _config.ConfigItem("jwst.plane", "JWST plane table")
4941

50-
JWST_OBSERVATION_TABLE_RA = _config.ConfigItem("targetposition_"
51-
"coordinates_cval1",
42+
JWST_OBS_MEMBER_TABLE = _config.ConfigItem("jwst.observationmember", "JWST observation member table")
43+
44+
JWST_OBSERVATION_TABLE_RA = _config.ConfigItem("targetposition_coordinates_cval1",
5245
"Name of RA parameter "
5346
"in table")
5447

55-
JWST_OBSERVATION_TABLE_DEC = _config.ConfigItem("targetposition_"
56-
"coordinates_cval2",
48+
JWST_OBSERVATION_TABLE_DEC = _config.ConfigItem("targetposition_coordinates_cval2",
5749
"Name of Dec parameter "
5850
"in table")
5951

0 commit comments

Comments
 (0)