Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
6 changes: 5 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ esa.emds.einsteinprobe
- New module to access the ESA Einstein Probe Science Archive. [#3511]



API changes
-----------

Expand Down Expand Up @@ -86,6 +85,11 @@ vo_conesearch
Service fixes and enhancements
------------------------------

esa.jwst
^^^^^^^^^^^^^^

- Refactored to use PyVo instead of deprecated TapPlus class [#3592]

esa.xmm_newton
^^^^^^^^^^^^^^

Expand Down
87 changes: 67 additions & 20 deletions astroquery/esa/jwst/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,46 +11,93 @@


from astropy import config as _config
from astropy.config import paths
import os

JWST_COMMON_SERVER = "https://jwst.esac.esa.int/server/"
JWST_TAP_COMMON = "tap"


class Conf(_config.ConfigNamespace):
"""
Configuration parameters for `astroquery.esa.jwst`.
"""

JWST_TAP_SERVER = _config.ConfigItem("https://jwst.esac.esa.int/server/tap", "eJWST TAP Server")
JWST_DATA_SERVER = _config.ConfigItem("https://jwst.esac.esa.int/server/data?", "eJWST Data Server")
JWST_TOKEN = _config.ConfigItem("jwstToken", "eJWST token")
JWST_MESSAGES = _config.ConfigItem("notification?action=GetNotifications", "eJWST Messages")
JWST_DOMAIN_SERVER = (
_config.ConfigItem(JWST_COMMON_SERVER, "eJWST TAP Common Server"))

JWST_TAP_SERVER = (
_config.ConfigItem(JWST_COMMON_SERVER + JWST_TAP_COMMON,
"eJWST TAP Server"))

JWST_DATA_SERVER = (
_config.ConfigItem(JWST_COMMON_SERVER + 'data?',
"eJWST Data Server"))

JWST_TABLES_SERVER = (
_config.ConfigItem(JWST_COMMON_SERVER + JWST_TAP_COMMON + "/tables",
"eJWST TAP Common Server"))

JWST_TARGET_ACTION = (
_config.ConfigItem("servlet/target-resolver?",
"eJWST Target Resolver"))

JWST_MESSAGES = (
_config.ConfigItem("notification?action=GetNotifications",
"JWST Messages"))

JWST_UPLOAD = (
_config.ConfigItem(JWST_COMMON_SERVER + "Upload",
"eJWST Upload Server"))

TIMEOUT = 60

cache_location = os.path.join(paths.get_cache_dir(), 'astroquery/jwst',)

JWST_LOGIN_SERVER = (
_config.ConfigItem(JWST_COMMON_SERVER + 'login', "eJWST Login Server"))

JWST_MAIN_TABLE = _config.ConfigItem("jwst.main", "JWST main table, combination of observation and plane tables.")
JWST_LOGOUT_SERVER = (
_config.ConfigItem(JWST_COMMON_SERVER + 'logout',
"eJWST Logout Server"))

JWST_MAIN_TABLE_RA = _config.ConfigItem("target_ra", "Name of RA parameter in table")
JWST_TOKEN = (
_config.ConfigItem("jwstToken", "eJWST token"))

JWST_MAIN_TABLE_DEC = _config.ConfigItem("target_dec", "Name of Dec parameter in table")
JWST_MAIN_TABLE = (
_config.ConfigItem("jwst.archive",
"JWST main table, combination "
"of observation and plane tables."))

JWST_ARTIFACT_TABLE = _config.ConfigItem("jwst.artifact", "JWST artifacts (data files) table.")
JWST_ARTIFACT_TABLE = (
_config.ConfigItem("jwst.artifact",
"JWST artifacts (data files) table."))

JWST_OBSERVATION_TABLE = _config.ConfigItem("jwst.observation", "JWST observation table")
JWST_OBSERVATION_TABLE = (
_config.ConfigItem("jwst.observation", "JWST observation table"))

JWST_PLANE_TABLE = _config.ConfigItem("jwst.plane", "JWST plane table")
JWST_PLANE_TABLE = (
_config.ConfigItem("jwst.plane",
"JWST plane table"))

JWST_OBS_MEMBER_TABLE = _config.ConfigItem("jwst.observationmember", "JWST observation member table")
JWST_OBS_MEMBER_TABLE = (
_config.ConfigItem("jwst.observationmember",
"JWST observation member table"))

JWST_OBSERVATION_TABLE_RA = _config.ConfigItem("targetposition_coordinates_cval1",
"Name of RA parameter "
"in table")
JWST_OBSERVATION_TABLE_RA = (
_config.ConfigItem("targetposition_coordinates_cval1",
"Name of RA parameter in table"))

JWST_OBSERVATION_TABLE_DEC = _config.ConfigItem("targetposition_coordinates_cval2",
"Name of Dec parameter "
"in table")
JWST_OBSERVATION_TABLE_DEC = (
_config.ConfigItem("targetposition_coordinates_cval2",
"Name of Dec parameter in table"))

JWST_ARCHIVE_TABLE = _config.ConfigItem("jwst.archive", "JWST archive table")
JWST_ARCHIVE_TABLE = (
_config.ConfigItem("jwst.archive", "JWST archive table"))


conf = Conf()

from .core import Jwst, JwstClass
from .data_access import JwstDataHandler

__all__ = ['Jwst', 'JwstClass', 'JwstDataHandler', 'Conf', 'conf']
__all__ = ['Jwst', 'JwstClass', 'Conf', 'conf']
Loading
Loading