-
-
Notifications
You must be signed in to change notification settings - Fork 408
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
771 additions
and
2,055 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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
# Licensed under a 3-clause BSD style license - see LICENSE.rst | ||
""" | ||
NEOCC Query Tool | ||
================ | ||
@author: C. Álvaro Arroyo | ||
@contact: [email protected] | ||
European Space Agency (ESA) | ||
Created on 16 Jun. 2021 | ||
Last update 22 Aug. 2022 | ||
Module to query the Near Earth Objects Coordination Centre (NEOCC). | ||
""" | ||
|
||
import os | ||
from astropy import config as _config | ||
|
||
|
||
class Conf(_config.ConfigNamespace): | ||
""" | ||
Configuration parameters for 'ESANEOCC' | ||
""" | ||
|
||
BASE_URL = 'https://' + os.getenv('NEOCC_PORTAL_IP', | ||
default='neo.ssa.esa.int') | ||
|
||
|
@@ -30,10 +30,10 @@ class Conf(_config.ConfigNamespace): | |
|
||
TIMEOUT = 60 | ||
|
||
|
||
SSL_CERT_VERIFICATION = bool(int(os.getenv('SSL_CERT_VERIFICATION', | ||
default="1"))) | ||
|
||
|
||
conf = Conf() | ||
|
||
from .core import neocc, ESAneoccClass | ||
|
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
Oops, something went wrong.