Content-Type: text/html; charset=UTF-8 Double Star Calculator - Orbital Elements

Double Star Calculator - Orbit

- Revision: $Rev: 1216 $
- Report created: 2025-07-11 18:15:28

--> -->
 
 
ValueError
Python 3.12.3: /usr/bin/python3
Fri Jul 11 18:15:28 2025

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /var/www/cgi-bin/ds_orbit.py in <module>
    510     incl = float(parsedSixCatalogLine["i"])
    511     Omega = float(parsedSixCatalogLine["Omega"])
=>  512     e = float(parsedSixCatalogLine["e"])
    513 
    514     # Convert and process 'T'
e = '0.0', builtin float = <class 'float'>, parsedSixCatalogLine = {'Omega': '-12.0', 'Omega_err': '1.5', 'P': '76.8 y', 'P_err': '9.2', 'T': '1974.6 y', 'T_err': '6.4', 'a': '1.080 a', 'a_err': '1.516', 'ads': '.', 'code': 'VSP2021a', ...}

ValueError: could not convert string to float: '0.91 3'
      add_note = <built-in method add_note of ValueError object>
      args = ("could not convert string to float: '0.91 3'",)
      with_traceback = <built-in method with_traceback of ValueError object>