Skip to content

Commit 82136f4

Browse files
authored
Merge pull request #2122 from lvalerom/hsa_support
Hsa support
2 parents f9552ca + 9143453 commit 82136f4

File tree

10 files changed

+1018
-0
lines changed

10 files changed

+1018
-0
lines changed

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ New Tools and Services
55
----------------------
66

77

8+
hsa
9+
^^^
10+
11+
- New module to access ESA Herschel mission. [#2122]
12+
813
Service fixes and enhancements
914
------------------------------
1015

astroquery/esa/hsa/__init__.py

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Licensed under a 3-clause BSD style license - see LICENSE.rst
2+
"""
3+
HSA
4+
-------
5+
6+
The Herschel Science Archive (HSA) is the ESA's archive for the
7+
Herschel mission.
8+
"""
9+
from astropy import config as _config
10+
11+
12+
class Conf(_config.ConfigNamespace):
13+
"""
14+
Configuration parameters for `astroquery.esa.hsa`.
15+
"""
16+
DATA_ACTION = _config.ConfigItem("http://archives.esac.esa.int/hsa/whsa-tap-server/data?",
17+
"Main url for retrieving HSA Data Archive files")
18+
19+
METADATA_ACTION = _config.ConfigItem("http://archives.esac.esa.int/hsa/whsa-tap-server/tap",
20+
"Main url for retrieving HSA Data Archive metadata")
21+
22+
TIMEOUT = 60
23+
24+
25+
conf = Conf()
26+
27+
from .core import HSA, HSAClass
28+
29+
__all__ = ['HSA', 'HSAClass', 'Conf', 'conf']

0 commit comments

Comments
 (0)