14
14
__all__ = ['SvoFpsClass' , 'SvoFps' ]
15
15
16
16
# Valid query parameters taken from
17
- # http ://svo2.cab.inta-csic.es/theory/fps/index.php?mode=voservice
17
+ # https ://svo2.cab.inta-csic.es/theory/fps/index.php?mode=voservice
18
18
_params_with_range = {"WavelengthRef" , "WavelengthMean" , "WavelengthEff" ,
19
19
"WavelengthMin" , "WavelengthMax" , "WidthEff" , "FWHM" }
20
20
QUERY_PARAMETERS = _params_with_range .copy ()
@@ -45,7 +45,7 @@ def data_from_svo(self, query, *, cache=True, timeout=None,
45
45
Used to create a HTTP query string i.e. send to SVO FPS to get data.
46
46
In dictionary, specify keys as search parameters (str) and
47
47
values as required. Description of search parameters can be found at
48
- http ://svo2.cab.inta-csic.es/theory/fps/index.php?mode=voservice
48
+ https ://svo2.cab.inta-csic.es/theory/fps/index.php?mode=voservice
49
49
error_msg : str, optional
50
50
Error message to be shown in case no table element found in the
51
51
responded VOTable. Use this to make error message verbose in context
@@ -65,7 +65,7 @@ def data_from_svo(self, query, *, cache=True, timeout=None,
65
65
f"parameter{ 's' if len (bad_params ) > 1 else '' } "
66
66
f"{ ', ' .join (bad_params )} { 'are' if len (bad_params ) > 1 else 'is' } "
67
67
f"invalid. For a description of valid query parameters see "
68
- "http ://svo2.cab.inta-csic.es/theory/fps/index.php?mode=voservice"
68
+ "https ://svo2.cab.inta-csic.es/theory/fps/index.php?mode=voservice"
69
69
)
70
70
response = self ._request ("GET" , self .SVO_MAIN_URL , params = query ,
71
71
timeout = timeout or self .TIMEOUT ,
0 commit comments