-
-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2358 from emolter/ringnode
ENH: querying tool for the Planetary Ring Node
- Loading branch information
Showing
14 changed files
with
1,236 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ MANIFEST | |
pip-wheel-metadata | ||
.hypothesis | ||
doctests.py | ||
coverage.xml | ||
|
||
# Sphinx | ||
_build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
""" | ||
RingNode | ||
-------- | ||
:author: Ned Molter ([email protected]) | ||
""" | ||
|
||
from astropy import config as _config | ||
|
||
|
||
class Conf(_config.ConfigNamespace): | ||
""" | ||
Configuration parameters for `astroquery.solarsystem.pds`. | ||
""" | ||
|
||
# server settings | ||
url = _config.ConfigItem( | ||
"https://pds-rings.seti.org/cgi-bin/tools/viewer3_xxx.pl?", "Ring Node" | ||
) | ||
|
||
# implement later: other pds tools | ||
|
||
timeout = _config.ConfigItem(30, "Time limit for connecting to PDS servers (seconds).") | ||
|
||
|
||
conf = Conf() | ||
|
||
from .core import RingNode, RingNodeClass | ||
|
||
__all__ = [ | ||
"RingNode", | ||
"RingNodeClass", | ||
"Conf", | ||
"conf", | ||
] |
Oops, something went wrong.