id
int64
0
843k
repository_name
stringlengths
7
55
file_path
stringlengths
9
332
class_name
stringlengths
3
290
human_written_code
stringlengths
12
4.36M
class_skeleton
stringlengths
19
2.2M
total_program_units
int64
1
9.57k
total_doc_str
int64
0
4.2k
AvgCountLine
float64
0
7.89k
AvgCountLineBlank
float64
0
300
AvgCountLineCode
float64
0
7.89k
AvgCountLineComment
float64
0
7.89k
AvgCyclomatic
float64
0
130
CommentToCodeRatio
float64
0
176
CountClassBase
float64
0
48
CountClassCoupled
float64
0
589
CountClassCoupledModified
float64
0
581
CountClassDerived
float64
0
5.37k
CountDeclInstanceMethod
float64
0
4.2k
CountDeclInstanceVariable
float64
0
299
CountDeclMethod
float64
0
4.2k
CountDeclMethodAll
float64
0
4.2k
CountLine
float64
1
115k
CountLineBlank
float64
0
9.01k
CountLineCode
float64
0
94.4k
CountLineCodeDecl
float64
0
46.1k
CountLineCodeExe
float64
0
91.3k
CountLineComment
float64
0
27k
CountStmt
float64
1
93.2k
CountStmtDecl
float64
0
46.1k
CountStmtExe
float64
0
90.2k
MaxCyclomatic
float64
0
759
MaxInheritanceTree
float64
0
16
MaxNesting
float64
0
34
SumCyclomatic
float64
0
6k
5,300
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceyError
class SpiceyError(Exception): """ SpiceyError wraps CSPICE errors for use in Python. """ def __init__( self, short: str = "", explain: str = "", long: str = "", traceback: str = "", found: Union[bool, Iterable[bool], Iterable[int]] = False, ) -> None: """ Base python exception type for SpiceyPy, maintained for backwards compatibilty. More information regarding the error system internal to spice can be found at the naif website. https://naif.jpl.nasa.gov/pub/naif/toolkit_docs/C/req/error.html :param short: A short, descriptive message. :param explain: An expanded form of the short message if present. :param long: Optionally, a long message, possibly containing data. :param traceback: the internal spice sequence of calls leading to the routine that detected the error. :param found: if present """ self.tkvsn = _tkversion self.short = short self.explain = explain self.long = long self.traceback = traceback self.found = found self.message = errorformat.format( tkvsn=self.tkvsn, short=short, explain=explain, long=long, traceback=traceback, ) def __str__(self) -> str: return self.message
class SpiceyError(Exception): ''' SpiceyError wraps CSPICE errors for use in Python. ''' def __init__( self, short: str = "", explain: str = "", long: str = "", traceback: str = "", found: Union[bool, Iterable[bool], Iterable[int]] = False, ) -> None: ''' Base python exception type for SpiceyPy, maintained for backwards compatibilty. More information regarding the error system internal to spice can be found at the naif website. https://naif.jpl.nasa.gov/pub/naif/toolkit_docs/C/req/error.html :param short: A short, descriptive message. :param explain: An expanded form of the short message if present. :param long: Optionally, a long message, possibly containing data. :param traceback: the internal spice sequence of calls leading to the routine that detected the error. :param found: if present ''' pass def __str__(self) -> str: pass
3
2
18
2
12
5
1
0.54
1
3
0
1
2
7
2
12
42
5
24
17
14
13
11
10
8
1
3
0
2
5,301
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceyPyError
class SpiceyPyError(SpiceyError): """ Thin wrapping exception for SpiceyError. In SpiceyPy versions 3.0.2 and prior, the base exception was a SpiceyError SpiceyPyError is a slightly more verbose and correct error name. """ pass
class SpiceyPyError(SpiceyError): ''' Thin wrapping exception for SpiceyError. In SpiceyPy versions 3.0.2 and prior, the base exception was a SpiceyError SpiceyPyError is a slightly more verbose and correct error name. ''' pass
1
1
0
0
0
0
0
2.5
1
0
0
709
0
0
0
12
9
2
2
1
1
5
2
1
1
0
4
0
0
5,302
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceyPyIOError
class SpiceyPyIOError(SpiceyPyError, IOError): """ SpiceyPyError mixed with IOError """ pass
class SpiceyPyIOError(SpiceyPyError, IOError): ''' SpiceyPyError mixed with IOError ''' pass
1
1
0
0
0
0
0
1.5
2
0
0
49
0
0
0
12
6
1
2
1
1
3
2
1
1
0
5
0
0
5,303
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceyPyIndexError
class SpiceyPyIndexError(SpiceyPyError, IndexError): """ SpiceyPyError mixed with IndexError """ pass
class SpiceyPyIndexError(SpiceyPyError, IndexError): ''' SpiceyPyError mixed with IndexError ''' pass
1
1
0
0
0
0
0
1.5
2
0
0
4
0
0
0
14
6
1
2
1
1
3
2
1
1
0
5
0
0
5,304
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceyPyKeyError
class SpiceyPyKeyError(SpiceyPyError, KeyError): """ SpiceyPyError mixed with KeyError """ pass
class SpiceyPyKeyError(SpiceyPyError, KeyError): ''' SpiceyPyError mixed with KeyError ''' pass
1
1
0
0
0
0
0
1.5
2
0
0
10
0
0
0
15
6
1
2
1
1
3
2
1
1
0
5
0
0
5,305
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceZEROVELOCITY
class SpiceZEROVELOCITY(SpiceyPyValueError): pass
class SpiceZEROVELOCITY(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,306
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceyPyMemoryError
class SpiceyPyMemoryError(SpiceyPyError, MemoryError): """ SpiceyPyError mixed with MemoryError """ pass
class SpiceyPyMemoryError(SpiceyPyError, MemoryError): ''' SpiceyPyError mixed with MemoryError ''' pass
1
1
0
0
0
0
0
1.5
2
0
0
31
0
0
0
13
6
1
2
1
1
3
2
1
1
0
5
0
0
5,307
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceyPyTypeError
class SpiceyPyTypeError(SpiceyPyError, TypeError): """ SpiceyPyError mixed with TypeError """ pass
class SpiceyPyTypeError(SpiceyPyError, TypeError): ''' SpiceyPyError mixed with TypeError ''' pass
1
1
0
0
0
0
0
1.5
2
0
0
6
0
0
0
13
6
1
2
1
1
3
2
1
1
0
5
0
0
5,308
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceyPyValueError
class SpiceyPyValueError(SpiceyPyError, ValueError): """ SpiceyPyError mixed with ValueError """ pass
class SpiceyPyValueError(SpiceyPyError, ValueError): ''' SpiceyPyError mixed with ValueError ''' pass
1
1
0
0
0
0
0
1.5
2
0
0
184
0
0
0
13
6
1
2
1
1
3
2
1
1
0
5
0
0
5,309
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceyPyZeroDivisionError
class SpiceyPyZeroDivisionError(SpiceyPyError, ZeroDivisionError): """ SpiceyPyError mixed with ZeroDivisionError """ pass
class SpiceyPyZeroDivisionError(SpiceyPyError, ZeroDivisionError): ''' SpiceyPyError mixed with ZeroDivisionError ''' pass
1
1
0
0
0
0
0
1.5
2
0
0
1
0
0
0
14
6
1
2
1
1
3
2
1
1
0
5
0
0
5,310
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
spiceypy.utils.support_types.Cell_Bool
class Cell_Bool(SpiceCell): def __init__(self, size: int) -> None: """ Init a Bool Spice Cell with a given size and length :param size: number of elements """ base = (c_int * (6 + size))() data = (c_int * size).from_buffer(base, 6 * BITSIZE["bool"]) super(Cell_Bool, self).__init__( 4, 0, size, 0, 1, cast(base, c_void_p), cast(data, c_void_p) )
class Cell_Bool(SpiceCell): def __init__(self, size: int) -> None: ''' Init a Bool Spice Cell with a given size and length :param size: number of elements ''' pass
2
1
10
0
6
4
1
0.57
1
4
0
0
1
0
1
20
11
0
7
4
5
4
5
4
3
1
2
0
1
5,311
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
spiceypy.utils.support_types.Cell_Char
class Cell_Char(SpiceCell): def __init__(self, size: int, length: int) -> None: """ Init a Char Spice Cell with a given size and length :param size: number of elements :param length: width of elements """ base = (c_char * ((6 + size) * length))() data = (c_char * (size * length)).from_buffer( base, 6 * BITSIZE["char"] * length ) super(Cell_Char, self).__init__( 0, length, size, 0, 1, cast(base, c_void_p), cast(data, c_void_p) )
class Cell_Char(SpiceCell): def __init__(self, size: int, length: int) -> None: ''' Init a Char Spice Cell with a given size and length :param size: number of elements :param length: width of elements ''' pass
2
1
13
0
8
5
1
0.56
1
4
0
0
1
0
1
20
14
0
9
4
7
5
5
4
3
1
2
0
1
5,312
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
spiceypy.utils.support_types.Cell_Double
class Cell_Double(SpiceCell): def __init__(self, size: int) -> None: """ Init a Double Spice Cell with a given size and length :param size: number of elements """ base = (c_double * (6 + size))() data = (c_double * size).from_buffer(base, 6 * BITSIZE["double"]) super(Cell_Double, self).__init__( 1, 0, size, 0, 1, cast(base, c_void_p), cast(data, c_void_p) )
class Cell_Double(SpiceCell): def __init__(self, size: int) -> None: ''' Init a Double Spice Cell with a given size and length :param size: number of elements ''' pass
2
1
10
0
6
4
1
0.57
1
4
0
0
1
0
1
20
11
0
7
4
5
4
5
4
3
1
2
0
1
5,313
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
spiceypy.utils.support_types.Cell_Int
class Cell_Int(SpiceCell): def __init__(self, size: int) -> None: """ Init a Int Spice Cell with a given size and length :param size: number of elements """ base = (c_int * (6 + size))() data = (c_int * size).from_buffer(base, 6 * BITSIZE["int"]) super(Cell_Int, self).__init__( 2, 0, size, 0, 1, cast(base, c_void_p), cast(data, c_void_p) )
class Cell_Int(SpiceCell): def __init__(self, size: int) -> None: ''' Init a Int Spice Cell with a given size and length :param size: number of elements ''' pass
2
1
10
0
6
4
1
0.57
1
4
0
0
1
0
1
20
11
0
7
4
5
4
5
4
3
1
2
0
1
5,314
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceyPyRuntimeError
class SpiceyPyRuntimeError(SpiceyPyError, RuntimeError): """ SpiceyPyError mixed with RuntimeError """ pass
class SpiceyPyRuntimeError(SpiceyPyError, RuntimeError): ''' SpiceyPyError mixed with RuntimeError ''' pass
1
1
0
0
0
0
0
1.5
2
0
0
8
0
0
0
13
6
1
2
1
1
3
2
1
1
0
5
0
0
5,315
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceWINDOWTOOSMALL
class SpiceWINDOWTOOSMALL(SpiceyPyValueError): pass
class SpiceWINDOWTOOSMALL(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,316
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceZEROVECTOR
class SpiceZEROVECTOR(SpiceyPyValueError): pass
class SpiceZEROVECTOR(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,317
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceZERORADIUS
class SpiceZERORADIUS(SpiceyPyError): pass
class SpiceZERORADIUS(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,318
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceWRITEERROR
class SpiceWRITEERROR(SpiceyPyError): pass
class SpiceWRITEERROR(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,319
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceWRITEFAILED
class SpiceWRITEFAILED(SpiceyPyError): pass
class SpiceWRITEFAILED(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,320
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceWRONGARCHITECTURE
class SpiceWRONGARCHITECTURE(SpiceyPyError): pass
class SpiceWRONGARCHITECTURE(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,321
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceWRONGCKTYPE
class SpiceWRONGCKTYPE(SpiceyPyError): pass
class SpiceWRONGCKTYPE(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,322
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceWRONGCONIC
class SpiceWRONGCONIC(SpiceyPyError): pass
class SpiceWRONGCONIC(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,323
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceWRONGDATATYPE
class SpiceWRONGDATATYPE(SpiceyPyTypeError): pass
class SpiceWRONGDATATYPE(SpiceyPyTypeError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,324
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceWRONGSEGMENT
class SpiceWRONGSEGMENT(SpiceyPyError): pass
class SpiceWRONGSEGMENT(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,325
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceZEROSTEP
class SpiceZEROSTEP(SpiceyPyError): pass
class SpiceZEROSTEP(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,326
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceWRONGSPKTYPE
class SpiceWRONGSPKTYPE(SpiceyPyError): pass
class SpiceWRONGSPKTYPE(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,327
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceYEAROUTOFRANGE
class SpiceYEAROUTOFRANGE(SpiceyPyValueError): pass
class SpiceYEAROUTOFRANGE(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,328
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceZEROAXISLENGTH
class SpiceZEROAXISLENGTH(SpiceyPyError): pass
class SpiceZEROAXISLENGTH(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,329
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceZEROBOUNDSEXTENT
class SpiceZEROBOUNDSEXTENT(SpiceyPyValueError): pass
class SpiceZEROBOUNDSEXTENT(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,330
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceZEROFRAMEID
class SpiceZEROFRAMEID(SpiceyPyError): pass
class SpiceZEROFRAMEID(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,331
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceZEROLENGTHCOLUMN
class SpiceZEROLENGTHCOLUMN(SpiceyPyValueError): pass
class SpiceZEROLENGTHCOLUMN(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,332
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceZEROPOSITION
class SpiceZEROPOSITION(SpiceyPyValueError): pass
class SpiceZEROPOSITION(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,333
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceZEROQUATERNION
class SpiceZEROQUATERNION(SpiceyPyValueError): pass
class SpiceZEROQUATERNION(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,334
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceYEAROUTOFBOUNDS
class SpiceYEAROUTOFBOUNDS(SpiceyPyError): pass
class SpiceYEAROUTOFBOUNDS(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,335
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADFROMTIMESYSTEM
class SpiceBADFROMTIMESYSTEM(SpiceyPyError): pass
class SpiceBADFROMTIMESYSTEM(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,336
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADFROMTIMETYPE
class SpiceBADFROMTIMETYPE(SpiceyPyError): pass
class SpiceBADFROMTIMETYPE(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,337
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADGEFVERSION
class SpiceBADGEFVERSION(SpiceyPyError): pass
class SpiceBADGEFVERSION(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,338
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSTARINDEX
class SpiceBADSTARINDEX(SpiceyPyError): pass
class SpiceBADSTARINDEX(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,339
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSPICEQUATERNION
class SpiceBADSPICEQUATERNION(SpiceyPyError): pass
class SpiceBADSPICEQUATERNION(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,340
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSOURCERADIUS
class SpiceBADSOURCERADIUS(SpiceyPyError): pass
class SpiceBADSOURCERADIUS(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,341
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSOLTIME
class SpiceBADSOLTIME(SpiceyPyError): pass
class SpiceBADSOLTIME(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,342
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSOLINDEX
class SpiceBADSOLINDEX(SpiceyPyError): pass
class SpiceBADSOLINDEX(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,343
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSOLDAY
class SpiceBADSOLDAY(SpiceyPyError): pass
class SpiceBADSOLDAY(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,344
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSHAPE
class SpiceBADSHAPE(SpiceyPyError): pass
class SpiceBADSHAPE(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,345
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSTARTTIME
class SpiceBADSTARTTIME(SpiceyPyError): pass
class SpiceBADSTARTTIME(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,346
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSEMILATUS
class SpiceBADSEMILATUS(SpiceyPyError): pass
class SpiceBADSEMILATUS(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,347
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSCID
class SpiceBADSCID(SpiceyPyError): pass
class SpiceBADSCID(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,348
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADROWCOUNT
class SpiceBADROWCOUNT(SpiceyPyError): pass
class SpiceBADROWCOUNT(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,349
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADROTAXESFORMAT
class SpiceBADROTAXESFORMAT(SpiceyPyError): pass
class SpiceBADROTAXESFORMAT(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,350
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADROTATIONTYPE
class SpiceBADROTATIONTYPE(SpiceyPyError): pass
class SpiceBADROTATIONTYPE(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,351
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADROTATIONSORDER
class SpiceBADROTATIONSORDER(SpiceyPyError): pass
class SpiceBADROTATIONSORDER(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,352
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADROTATIONAXISXYZ
class SpiceBADROTATIONAXISXYZ(SpiceyPyError): pass
class SpiceBADROTATIONAXISXYZ(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,353
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADREFVECTORSPEC
class SpiceBADREFVECTORSPEC(SpiceyPyValueError): pass
class SpiceBADREFVECTORSPEC(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,354
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSEMIAXIS
class SpiceBADSEMIAXIS(SpiceyPyValueError): pass
class SpiceBADSEMIAXIS(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,355
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADRECORDCOUNT
class SpiceBADRECORDCOUNT(SpiceyPyError): pass
class SpiceBADRECORDCOUNT(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,356
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSTDIONAME
class SpiceBADSTDIONAME(SpiceyPyError): pass
class SpiceBADSTDIONAME(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,357
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSUBSCRIPT
class SpiceBADSUBSCRIPT(SpiceyPyError): pass
class SpiceBADSUBSCRIPT(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,358
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTLECOVERAGEPAD
class SpiceBADTLECOVERAGEPAD(SpiceyPyError): pass
class SpiceBADTLECOVERAGEPAD(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,359
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTLE
class SpiceBADTLE(SpiceyPyError): pass
class SpiceBADTLE(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,360
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTIMETYPEFLAG
class SpiceBADTIMETYPEFLAG(SpiceyPyError): pass
class SpiceBADTIMETYPEFLAG(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,361
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTIMETYPE
class SpiceBADTIMETYPE(SpiceyPyValueError): pass
class SpiceBADTIMETYPE(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,362
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTIMESTRING
class SpiceBADTIMESTRING(SpiceyPyValueError): pass
class SpiceBADTIMESTRING(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,363
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTIMESPEC
class SpiceBADTIMESPEC(SpiceyPyError): pass
class SpiceBADTIMESPEC(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,364
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTIMEOFFSET
class SpiceBADTIMEOFFSET(SpiceyPyError): pass
class SpiceBADTIMEOFFSET(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,365
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSTOPTIME
class SpiceBADSTOPTIME(SpiceyPyValueError): pass
class SpiceBADSTOPTIME(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,366
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTIMEITEM
class SpiceBADTIMEITEM(SpiceyPyValueError): pass
class SpiceBADTIMEITEM(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,367
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTIMECOUNT
class SpiceBADTIMECOUNT(SpiceyPyError): pass
class SpiceBADTIMECOUNT(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,368
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTIMECASE
class SpiceBADTIMECASE(SpiceyPyError): pass
class SpiceBADTIMECASE(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,369
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTERMLOCUSMIX
class SpiceBADTERMLOCUSMIX(SpiceyPyError): pass
class SpiceBADTERMLOCUSMIX(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,370
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTABLEFLAG
class SpiceBADTABLEFLAG(SpiceyPyError): pass
class SpiceBADTABLEFLAG(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,371
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSURFACEMAP
class SpiceBADSURFACEMAP(SpiceyPyError): pass
class SpiceBADSURFACEMAP(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,372
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSUBSTRINGBOUNDS
class SpiceBADSUBSTRINGBOUNDS(SpiceyPyError): pass
class SpiceBADSUBSTRINGBOUNDS(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,373
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADSUBSTR
class SpiceBADSUBSTR(SpiceyPyError): pass
class SpiceBADSUBSTR(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,374
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTIMEFORMAT
class SpiceBADTIMEFORMAT(SpiceyPyError): pass
class SpiceBADTIMEFORMAT(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,375
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADTLEPADS
class SpiceBADTLEPADS(SpiceyPyError): pass
class SpiceBADTLEPADS(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,376
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADRATETHRESHOLD
class SpiceBADRATETHRESHOLD(SpiceyPyError): pass
class SpiceBADRATETHRESHOLD(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,377
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADRADIUSCOUNT
class SpiceBADRADIUSCOUNT(SpiceyPyValueError): pass
class SpiceBADRADIUSCOUNT(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,378
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADOBJECTNAME
class SpiceBADOBJECTNAME(SpiceyPyError): pass
class SpiceBADOBJECTNAME(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,379
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADOBJECTID
class SpiceBADOBJECTID(SpiceyPyError): pass
class SpiceBADOBJECTID(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,380
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADNUMBEROFPOINTS
class SpiceBADNUMBEROFPOINTS(SpiceyPyError): pass
class SpiceBADNUMBEROFPOINTS(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,381
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADNOFSTATES
class SpiceBADNOFSTATES(SpiceyPyError): pass
class SpiceBADNOFSTATES(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,382
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADNOFDIGITS
class SpiceBADNOFDIGITS(SpiceyPyError): pass
class SpiceBADNOFDIGITS(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,383
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADMSOPQUATERNION
class SpiceBADMSOPQUATERNION(SpiceyPyError): pass
class SpiceBADMSOPQUATERNION(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,384
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADMSEMIMAJOR
class SpiceBADMSEMIMAJOR(SpiceyPyError): pass
class SpiceBADMSEMIMAJOR(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,385
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADOFFSETANGLES
class SpiceBADOFFSETANGLES(SpiceyPyError): pass
class SpiceBADOFFSETANGLES(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,386
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADMIDNIGHTTYPE
class SpiceBADMIDNIGHTTYPE(SpiceyPyError): pass
class SpiceBADMIDNIGHTTYPE(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,387
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADMECCENTRICITY
class SpiceBADMECCENTRICITY(SpiceyPyError): pass
class SpiceBADMECCENTRICITY(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,388
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADMEANMOTION
class SpiceBADMEANMOTION(SpiceyPyError): pass
class SpiceBADMEANMOTION(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,389
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADMATRIX
class SpiceBADMATRIX(SpiceyPyError): pass
class SpiceBADMATRIX(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,390
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADLONGITUDERANGE
class SpiceBADLONGITUDERANGE(SpiceyPyError): pass
class SpiceBADLONGITUDERANGE(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,391
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADLISTFILENAME
class SpiceBADLISTFILENAME(SpiceyPyError): pass
class SpiceBADLISTFILENAME(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,392
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADLINEPERRECCOUNT
class SpiceBADLINEPERRECCOUNT(SpiceyPyError): pass
class SpiceBADLINEPERRECCOUNT(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,393
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADLIMBLOCUSMIX
class SpiceBADLIMBLOCUSMIX(SpiceyPyValueError): pass
class SpiceBADLIMBLOCUSMIX(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,394
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADMETHODSYNTAX
class SpiceBADMETHODSYNTAX(SpiceyPyError): pass
class SpiceBADMETHODSYNTAX(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,395
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADRATEFRAMEFLAG
class SpiceBADRATEFRAMEFLAG(SpiceyPyError): pass
class SpiceBADRATEFRAMEFLAG(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,396
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADOFFSETANGUNITS
class SpiceBADOFFSETANGUNITS(SpiceyPyError): pass
class SpiceBADOFFSETANGUNITS(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,397
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADOFFSETAXISXYZ
class SpiceBADOFFSETAXISXYZ(SpiceyPyError): pass
class SpiceBADOFFSETAXISXYZ(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0
5,398
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADRADIUS
class SpiceBADRADIUS(SpiceyPyValueError): pass
class SpiceBADRADIUS(SpiceyPyValueError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
13
2
0
2
1
1
0
2
1
1
0
6
0
0
5,399
AndrewAnnex/SpiceyPy
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
spiceypy.utils.exceptions.SpiceBADQUATTHRESHOLD
class SpiceBADQUATTHRESHOLD(SpiceyPyError): pass
class SpiceBADQUATTHRESHOLD(SpiceyPyError): pass
1
0
0
0
0
0
0
0
1
0
0
0
0
0
0
12
2
0
2
1
1
0
2
1
1
0
5
0
0