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,200 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.IntMatrixType
|
class IntMatrixType:
"""
Class type that will handle all 2d int arrays,
inspiration from python cookbook 3rd edition
"""
def from_param(self, param):
if hasattr(param, "__array_interface__"):
return self.from_ndarray(param)
elif isinstance(param, Array):
return param
elif isinstance(param, (list, tuple)):
return self.from_list(param)
else:
raise TypeError(f"Can't convert {type(param)}")
# Cast from lists/tuples
def from_list(self, param):
val = ((c_int * len(param[0])) * len(param))(
*[IntArray.from_param(x) for x in param]
)
return val
# Cast from a numpy array
def from_ndarray(self, param):
# cspice always uses a int size half as big as the float, ie int32 if a float64 system default
return numpc.as_ctypes(
param.astype(numpy.int32, casting="same_kind", copy=False)
)
|
class IntMatrixType:
'''
Class type that will handle all 2d int arrays,
inspiration from python cookbook 3rd edition
'''
def from_param(self, param):
pass
def from_list(self, param):
pass
def from_ndarray(self, param):
pass
| 4 | 1 | 6 | 0 | 6 | 0 | 2 | 0.37 | 0 | 5 | 0 | 0 | 3 | 0 | 3 | 3 | 29 | 3 | 19 | 5 | 15 | 7 | 12 | 5 | 8 | 4 | 0 | 1 | 6 |
5,201 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.Plane
|
class Plane(Structure):
_fields_ = [("_normal", c_double * 3), ("_constant", c_double)]
@property
def normal(self):
return c_vector_to_python(self._normal)
@property
def constant(self):
return self._constant
def __str__(self) -> str:
return f"<SpicePlane: normal={', '.join([str(x) for x in self._normal])}; constant={self._constant}>"
|
class Plane(Structure):
@property
def normal(self):
pass
@property
def constant(self):
pass
def __str__(self) -> str:
pass
| 6 | 0 | 2 | 0 | 2 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 3 | 0 | 3 | 3 | 13 | 3 | 10 | 7 | 4 | 0 | 8 | 5 | 4 | 1 | 1 | 0 | 3 |
5,202 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.SpiceCell
|
class SpiceCell(Structure):
# Most written by DaRasch, see included MIT license at file header
DATATYPES_ENUM = {"char": 0, "double": 1, "int": 2, "time": 3, "bool": 4}
DATATYPES_GET = [_char_getter, _double_getter] + [_int_getter] * 3
baseSize = 6
minCharLen = 6
CTRLBLOCK = 6
_fields_ = [
("dtype", c_int),
("length", c_int),
("size", c_int),
("card", c_int),
("isSet", c_int),
("adjust", c_int),
("init", c_int),
("base", c_void_p),
("data", c_void_p),
]
def __init__(
self,
dtype=None,
length=None,
size=None,
card=None,
isSet=None,
base=None,
data=None,
):
super(SpiceCell, self).__init__()
self.dtype = dtype
self.length = length
self.size = size
self.card = card
self.isSet = isSet
self.adjust = 0 # Always False, because not implemented
self.init = 0 # Always False, because this is the constructor
self.base = base # void pointer
self.data = data
def __str__(self) -> str:
return (
f"<SpiceCell dtype = {self.dtype}, length = {self.length}, size = {self.size}, card = {self.card},"
f" is_set = {self.isSet}, adjust = {self.adjust}, init = {self.init}, base = {self.base}, data = {self.data}>"
)
def is_int(self):
return self.dtype == 2
def is_double(self):
return self.dtype == 1
def is_char(self):
return self.dtype == 0
def is_time(self):
return self.dtype == 3
def is_bool(self):
return self.dtype == 4
def is_set(self):
return self.isSet == 1
@classmethod
def character(cls, size, length):
base = (c_char * ((cls.CTRLBLOCK + size) * length))()
data = (c_char * (size * length)).from_buffer(
base, cls.CTRLBLOCK * BITSIZE["char"] * length
)
instance = cls(
cls.DATATYPES_ENUM["char"],
length,
size,
0,
1,
cast(base, c_void_p),
cast(data, c_void_p),
)
return instance
@classmethod
def integer(cls, size):
base = (c_int * (cls.CTRLBLOCK + size))()
data = (c_int * size).from_buffer(base, cls.CTRLBLOCK * BITSIZE["int"])
instance = cls(
cls.DATATYPES_ENUM["int"],
0,
size,
0,
1,
cast(base, c_void_p),
cast(data, c_void_p),
)
return instance
@classmethod
def double(cls, size):
base = (c_double * (cls.CTRLBLOCK + size))()
data = (c_double * size).from_buffer(base, cls.CTRLBLOCK * BITSIZE["double"])
instance = cls(
cls.DATATYPES_ENUM["double"],
0,
size,
0,
1,
cast(base, c_void_p),
cast(data, c_void_p),
)
return instance
@classmethod
def bool(cls, size):
base = (c_int * (cls.CTRLBLOCK + size))()
data = (c_int * size).from_buffer(base, cls.CTRLBLOCK * BITSIZE["bool"])
instance = cls(
cls.DATATYPES_ENUM["bool"],
0,
size,
0,
1,
cast(base, c_void_p),
cast(data, c_void_p),
)
return instance
@classmethod
def time(cls, size):
base = (c_int * (cls.CTRLBLOCK + size))()
data = (c_int * size).from_buffer(base, cls.CTRLBLOCK * BITSIZE["time"])
instance = cls(
cls.DATATYPES_ENUM["time"],
0,
size,
0,
1,
cast(base, c_void_p),
cast(data, c_void_p),
)
return instance
def __len__(self):
return self.card
def __iter__(self):
getter = SpiceCell.DATATYPES_GET[self.dtype]
length, card, data = self.length, self.card, self.data
for i in range(card):
yield getter(data, i, length)
def __contains__(self, key):
return key in self.__iter__()
def __getitem__(self, key):
getter = SpiceCell.DATATYPES_GET[self.dtype]
if isinstance(key, slice):
# TODO Typechecking
if self.card == 0:
return []
else:
start, stop, step = key.indices(self.card)
return [
getter(self.data, i, self.length) for i in range(start, stop, step)
]
elif key in range(-self.card, self.card):
index = key if key >= 0 else self.card - abs(key)
return getter(self.data, index, self.length)
elif not isinstance(key, int):
raise TypeError(
"SpiceCell indices must be integers, not {}".format(type(key))
)
else:
raise IndexError("SpiceCell index out of range")
def reset(self):
self.card = 0
self.init = 0
def __eq__(self, other):
"""
element wise equality, other can be a list or cell
I think sets should not equal a non set even if
elements are equal... might be a bad idea
:param other:
:return:
"""
if not hasattr(other, "__iter__"):
return False
if len(self) != len(other):
return False
if isinstance(other, SpiceCell):
if other.dtype != self.dtype:
return False
if other.isSet != self.isSet:
return False
for x, y in zip(self, other):
if x != y:
return False
return True
|
class SpiceCell(Structure):
def __init__(
self,
dtype=None,
length=None,
size=None,
card=None,
isSet=None,
base=None,
data=None,
):
pass
def __str__(self) -> str:
pass
def is_int(self):
pass
def is_double(self):
pass
def is_char(self):
pass
def is_time(self):
pass
def is_bool(self):
pass
def is_set(self):
pass
@classmethod
def character(cls, size, length):
pass
@classmethod
def integer(cls, size):
pass
@classmethod
def double(cls, size):
pass
@classmethod
def bool(cls, size):
pass
@classmethod
def time(cls, size):
pass
def __len__(self):
pass
def __iter__(self):
pass
def __contains__(self, key):
pass
def __getitem__(self, key):
pass
def reset(self):
pass
def __eq__(self, other):
'''
element wise equality, other can be a list or cell
I think sets should not equal a non set even if
elements are equal... might be a bad idea
:param other:
:return:
'''
pass
| 25 | 1 | 8 | 0 | 8 | 1 | 2 | 0.07 | 1 | 13 | 0 | 5 | 14 | 9 | 19 | 19 | 199 | 19 | 171 | 71 | 137 | 12 | 94 | 57 | 74 | 8 | 1 | 2 | 32 |
5,203 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.SpiceDLADescr
|
class SpiceDLADescr(Structure):
_fields_ = [
("_bwdptr", c_int),
("_fwdptr", c_int),
("_ibase", c_int),
("_isize", c_int),
("_dbase", c_int),
("_dsize", c_int),
("_cbase", c_int),
("_csize", c_int),
]
@property
def bwdptr(self):
return self._bwdptr
@property
def fwdptr(self):
return self._fwdptr
@property
def ibase(self):
return self._ibase
@property
def isize(self):
return self._isize
@property
def dbase(self):
return self._dbase
@property
def dsize(self):
return self._dsize
@property
def cbase(self):
return self._cbase
@property
def csize(self):
return self._csize
|
class SpiceDLADescr(Structure):
@property
def bwdptr(self):
pass
@property
def fwdptr(self):
pass
@property
def ibase(self):
pass
@property
def isize(self):
pass
@property
def dbase(self):
pass
@property
def dsize(self):
pass
@property
def cbase(self):
pass
@property
def csize(self):
pass
| 17 | 0 | 2 | 0 | 2 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 8 | 0 | 8 | 8 | 43 | 8 | 35 | 18 | 18 | 0 | 18 | 10 | 9 | 1 | 1 | 0 | 8 |
5,204 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.SpiceDSKDescr
|
class SpiceDSKDescr(Structure):
_fields_ = [
("_surfce", c_int),
("_center", c_int),
("_dclass", c_int),
("_dtype", c_int),
("_frmcde", c_int),
("_corsys", c_int),
("_corpar", c_double * 10),
("_co1min", c_double),
("_co1max", c_double),
("_co2min", c_double),
("_co2max", c_double),
("_co3min", c_double),
("_co3max", c_double),
("_start", c_double),
("_stop", c_double),
]
@property
def surfce(self):
return self._surfce
@property
def center(self):
return self._center
@property
def dclass(self):
return self._dclass
@property
def dtype(self):
return self._dtype
@property
def frmcde(self):
return self._frmcde
@property
def corsys(self):
return self._corsys
@property
def corpar(self):
return c_vector_to_python(self._corpar)
@property
def co1min(self):
return self._co1min
@property
def co1max(self):
return self._co1max
@property
def co2min(self):
return self._co2min
@property
def co2max(self):
return self._co2max
@property
def co3min(self):
return self._co3min
@property
def co3max(self):
return self._co3max
@property
def start(self):
return self._start
@property
def stop(self):
return self._stop
|
class SpiceDSKDescr(Structure):
@property
def surfce(self):
pass
@property
def center(self):
pass
@property
def dclass(self):
pass
@property
def dtype(self):
pass
@property
def frmcde(self):
pass
@property
def corsys(self):
pass
@property
def corpar(self):
pass
@property
def co1min(self):
pass
@property
def co1max(self):
pass
@property
def co2min(self):
pass
@property
def co2max(self):
pass
@property
def co3min(self):
pass
@property
def co3max(self):
pass
@property
def start(self):
pass
@property
def stop(self):
pass
| 31 | 0 | 2 | 0 | 2 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 15 | 0 | 15 | 15 | 78 | 15 | 63 | 32 | 32 | 0 | 32 | 17 | 16 | 1 | 1 | 0 | 15 |
5,205 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADCHECKFLAG
|
class SpiceBADCHECKFLAG(SpiceyPyError):
pass
|
class SpiceBADCHECKFLAG(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,206 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.SpiceEKAttDsc
|
class SpiceEKAttDsc(Structure):
_fields_ = [
("_cclass", c_int),
("_dtype", SpiceEKDataType),
("_strlen", c_int),
("_size", c_int),
("_indexd", c_int),
("_nullok", c_int),
]
@property
def cclass(self):
return self._cclass
@property
def dtype(self):
return self._dtype.value
@property
def strlen(self):
return self._strlen
@property
def size(self):
return self._size
@property
def indexd(self):
return bool(self._indexd)
@property
def nullok(self):
return bool(self._nullok)
def __str__(self) -> str:
return (
f"<SpiceEKAttDsc cclass = {self.cclass}, dtype = {self.dtype}, strlen = {self.strlen}, "
f"size = {self.size}, indexd = {self.indexd}, nullok = {self.nullok} >"
)
|
class SpiceEKAttDsc(Structure):
@property
def cclass(self):
pass
@property
def dtype(self):
pass
@property
def strlen(self):
pass
@property
def size(self):
pass
@property
def indexd(self):
pass
@property
def nullok(self):
pass
def __str__(self) -> str:
pass
| 14 | 0 | 2 | 0 | 2 | 0 | 1 | 0 | 1 | 2 | 0 | 0 | 7 | 0 | 7 | 7 | 39 | 7 | 32 | 15 | 18 | 0 | 16 | 9 | 8 | 1 | 1 | 0 | 7 |
5,207 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.SpiceEKExprClass
|
class SpiceEKExprClass(c_int):
_SPICE_EK_EXP_COL = c_int(0)
_SPICE_EK_EXP_FUNC = c_int(1)
_SPICE_EK_EXP_EXPR = c_int(2)
_fields_ = [
("SPICE_EK_EXP_COL", _SPICE_EK_EXP_COL),
("SPICE_EK_EXP_FUNC", _SPICE_EK_EXP_FUNC),
("SPICE_EK_EXP_EXPR", _SPICE_EK_EXP_EXPR),
]
SPICE_EK_EXP_COL = _SPICE_EK_EXP_COL.value
SPICE_EK_EXP_FUNC = _SPICE_EK_EXP_FUNC.value
SPICE_EK_EXP_EXPR = _SPICE_EK_EXP_EXPR.value
|
class SpiceEKExprClass(c_int):
pass
| 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 14 | 2 | 12 | 8 | 11 | 0 | 8 | 8 | 7 | 0 | 2 | 0 | 0 |
5,208 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.SpiceEKSegSum
|
class SpiceEKSegSum(Structure):
_fields_ = [
("_tabnam", c_char * 65),
("_nrows", c_int),
("_ncols", c_int),
("_cnames", (c_char * 100) * 33),
("_cdescrs", SpiceEKAttDsc * 100),
]
@property
def tabnam(self):
return to_python_string(self._tabnam)
@property
def nrows(self):
return self._nrows
@property
def ncols(self):
return self._ncols
@property
def cnames(self):
return c_vector_to_python(self._cnames)[0 : self.ncols]
@property
def cdescrs(self):
return self._cdescrs[0 : self.ncols]
def __str__(self) -> str:
return (
f"<SpiceEKSegSum tabnam = {self.tabnam}, nrows = {self.nrows}, ncols = {self.ncols},"
f" cnames = {self.cnames}, cdescrs = {self.cdescrs} >"
)
|
class SpiceEKSegSum(Structure):
@property
def tabnam(self):
pass
@property
def nrows(self):
pass
@property
def ncols(self):
pass
@property
def cnames(self):
pass
@property
def cdescrs(self):
pass
def __str__(self) -> str:
pass
| 12 | 0 | 3 | 0 | 3 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 6 | 0 | 6 | 6 | 34 | 6 | 28 | 13 | 16 | 0 | 14 | 8 | 7 | 1 | 1 | 0 | 6 |
5,209 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.SpiceSPK18Subtype
|
class SpiceSPK18Subtype(c_int):
_S18TP0 = c_int(0)
_S18TP1 = c_int(1)
S18TP0 = _S18TP0.value
S18TP1 = _S18TP1.value
_fields_ = [("S18TP0", _S18TP0), ("S18TP1", _S18TP1)]
|
class SpiceSPK18Subtype(c_int):
pass
| 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 6 | 0 | 6 | 6 | 5 | 0 | 6 | 6 | 5 | 0 | 2 | 0 | 0 |
5,210 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADANGLEUNITS
|
class SpiceBADANGLEUNITS(SpiceyPyError):
pass
|
class SpiceBADANGLEUNITS(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,211 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADANGRATEERROR
|
class SpiceBADANGRATEERROR(SpiceyPyError):
pass
|
class SpiceBADANGRATEERROR(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,212 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADANGULARRATE
|
class SpiceBADANGULARRATE(SpiceyPyError):
pass
|
class SpiceBADANGULARRATE(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,213 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADANGULARRATEFLAG
|
class SpiceBADANGULARRATEFLAG(SpiceyPyError):
pass
|
class SpiceBADANGULARRATEFLAG(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,214 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.SpiceEKDataType
|
class SpiceEKDataType(c_int):
_SPICE_CHR = c_int(0)
_SPICE_DP = c_int(1)
_SPICE_INT = c_int(2)
_SPICE_TIME = c_int(3)
_SPICE_BOOL = c_int(4)
_fields_ = [
("SPICE_CHR", _SPICE_CHR),
("SPICE_DP", _SPICE_DP),
("SPICE_INT", _SPICE_INT),
("SPICE_TIME", _SPICE_TIME),
("SPICE_BOOL", _SPICE_BOOL),
]
SPICE_CHR = _SPICE_CHR.value
SPICE_DP = _SPICE_DP.value
SPICE_INT = _SPICE_INT.value
SPICE_TIME = _SPICE_TIME.value
SPICE_BOOL = _SPICE_BOOL.value
|
class SpiceEKDataType(c_int):
pass
| 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 20 | 2 | 18 | 12 | 17 | 0 | 12 | 12 | 11 | 0 | 2 | 0 | 0 |
5,215 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADCKTYPESPEC
|
class SpiceBADCKTYPESPEC(SpiceyPyError):
pass
|
class SpiceBADCKTYPESPEC(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,216 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADCOARSEVOXSCALE
|
class SpiceBADCOARSEVOXSCALE(SpiceyPyValueError):
pass
|
class SpiceBADCOARSEVOXSCALE(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,217 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADCOLUMDECL
|
class SpiceBADCOLUMDECL(SpiceyPyError):
pass
|
class SpiceBADCOLUMDECL(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,218 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDIMENSIONS
|
class SpiceBADDIMENSIONS(SpiceyPyError):
pass
|
class SpiceBADDIMENSIONS(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,219 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDIRECTION
|
class SpiceBADDIRECTION(SpiceyPyValueError):
pass
|
class SpiceBADDIRECTION(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,220 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDOUBLEPRECISION
|
class SpiceBADDOUBLEPRECISION(SpiceyPyError):
pass
|
class SpiceBADDOUBLEPRECISION(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,221 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDOWNSAMPLINGTOL
|
class SpiceBADDOWNSAMPLINGTOL(SpiceyPyError):
pass
|
class SpiceBADDOWNSAMPLINGTOL(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,222 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADECCENTRICITY
|
class SpiceBADECCENTRICITY(SpiceyPyValueError):
pass
|
class SpiceBADECCENTRICITY(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,223 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADENDPOINTS
|
class SpiceBADENDPOINTS(SpiceyPyValueError):
pass
|
class SpiceBADENDPOINTS(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,224 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADEULERANGLEUNITS
|
class SpiceBADEULERANGLEUNITS(SpiceyPyError):
pass
|
class SpiceBADEULERANGLEUNITS(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,225 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDESCRTIMES
|
class SpiceBADDESCRTIMES(SpiceyPyValueError):
pass
|
class SpiceBADDESCRTIMES(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,226 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADFILEFORMAT
|
class SpiceBADFILEFORMAT(SpiceyPyError):
pass
|
class SpiceBADFILEFORMAT(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,227 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADFILETYPE
|
class SpiceBADFILETYPE(SpiceyPyIOError):
pass
|
class SpiceBADFILETYPE(SpiceyPyIOError):
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 | 6 | 0 | 0 |
5,228 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADFINEVOXELSCALE
|
class SpiceBADFINEVOXELSCALE(SpiceyPyValueError):
pass
|
class SpiceBADFINEVOXELSCALE(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,229 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADFORMATSPECIFIER
|
class SpiceBADFORMATSPECIFIER(SpiceyPyError):
pass
|
class SpiceBADFORMATSPECIFIER(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,230 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADFORMATSTRING
|
class SpiceBADFORMATSTRING(SpiceyPyError):
pass
|
class SpiceBADFORMATSTRING(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,231 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADFRAME
|
class SpiceBADFRAME(SpiceyPyValueError):
pass
|
class SpiceBADFRAME(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,232 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADFRAMECLASS
|
class SpiceBADFRAMECLASS(SpiceyPyValueError):
pass
|
class SpiceBADFRAMECLASS(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,233 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADFRAMESPEC
|
class SpiceBADFRAMESPEC(SpiceyPyError):
pass
|
class SpiceBADFRAMESPEC(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,234 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADFILENAME
|
class SpiceBADFILENAME(SpiceyPyError):
pass
|
class SpiceBADFILENAME(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,235 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.DoubleMatrixType
|
class DoubleMatrixType:
"""
Class type that will handle all 2d double arrays,
inspiration from python cookbook 3rd edition
"""
def from_param(self, param):
if hasattr(param, "__array_interface__"):
return self.from_ndarray(param)
elif isinstance(param, Array):
return param
elif isinstance(param, (list, tuple)):
return self.from_list(param)
else:
raise TypeError(f"Can't convert {type(param)}")
# Cast from lists/tuples
def from_list(self, param):
val = ((c_double * len(param[0])) * len(param))(
*[DoubleArray.from_param(x) for x in param]
)
return val
# Cast from a numpy array
def from_ndarray(self, param):
return numpc.as_ctypes(
param.astype(numpy.float64, casting="same_kind", copy=False)
)
|
class DoubleMatrixType:
'''
Class type that will handle all 2d double arrays,
inspiration from python cookbook 3rd edition
'''
def from_param(self, param):
pass
def from_list(self, param):
pass
def from_ndarray(self, param):
pass
| 4 | 1 | 6 | 0 | 6 | 0 | 2 | 0.32 | 0 | 5 | 0 | 0 | 3 | 0 | 3 | 3 | 28 | 3 | 19 | 5 | 15 | 6 | 12 | 5 | 8 | 4 | 0 | 1 | 6 |
5,236 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDEFAULTVALUE
|
class SpiceBADDEFAULTVALUE(SpiceyPyValueError):
pass
|
class SpiceBADDEFAULTVALUE(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,237 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDATATYPE
|
class SpiceBADDATATYPE(SpiceyPyError):
pass
|
class SpiceBADDATATYPE(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,238 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADCOLUMNCOUNT
|
class SpiceBADCOLUMNCOUNT(SpiceyPyError):
pass
|
class SpiceBADCOLUMNCOUNT(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,239 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADCOLUMNDECL
|
class SpiceBADCOLUMNDECL(SpiceyPyError):
pass
|
class SpiceBADCOLUMNDECL(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,240 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADCOMMENTAREA
|
class SpiceBADCOMMENTAREA(SpiceyPyIOError):
pass
|
class SpiceBADCOMMENTAREA(SpiceyPyIOError):
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 | 6 | 0 | 0 |
5,241 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADCOMPNUMBER
|
class SpiceBADCOMPNUMBER(SpiceyPyError):
pass
|
class SpiceBADCOMPNUMBER(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,242 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADCOORDBOUNDS
|
class SpiceBADCOORDBOUNDS(SpiceyPyError):
pass
|
class SpiceBADCOORDBOUNDS(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,243 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceNOROTATIONORDER
|
class SpiceNOROTATIONORDER(SpiceyPyError):
pass
|
class SpiceNOROTATIONORDER(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,244 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADCOORDSYS
|
class SpiceBADCOORDSYS(SpiceyPyError):
pass
|
class SpiceBADCOORDSYS(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,245 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDATATYPEFLAG
|
class SpiceBADDATATYPEFLAG(SpiceyPyError):
pass
|
class SpiceBADDATATYPEFLAG(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,246 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADCOORDSYSTEM
|
class SpiceBADCOORDSYSTEM(SpiceyPyIOError):
pass
|
class SpiceBADCOORDSYSTEM(SpiceyPyIOError):
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 | 6 | 0 | 0 |
5,247 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDAFTRANSFERFILE
|
class SpiceBADDAFTRANSFERFILE(SpiceyPyError):
pass
|
class SpiceBADDAFTRANSFERFILE(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,248 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDASCOMMENTAREA
|
class SpiceBADDASCOMMENTAREA(SpiceyPyIOError):
pass
|
class SpiceBADDASCOMMENTAREA(SpiceyPyIOError):
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 | 6 | 0 | 0 |
5,249 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDASDIRECTORY
|
class SpiceBADDASDIRECTORY(SpiceyPyError):
pass
|
class SpiceBADDASDIRECTORY(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,250 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDASFILE
|
class SpiceBADDASFILE(SpiceyPyError):
pass
|
class SpiceBADDASFILE(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,251 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDASTRANSFERFILE
|
class SpiceBADDASTRANSFERFILE(SpiceyPyError):
pass
|
class SpiceBADDASTRANSFERFILE(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,252 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDATALINE
|
class SpiceBADDATALINE(SpiceyPyError):
pass
|
class SpiceBADDATALINE(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,253 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADDATAORDERTOKEN
|
class SpiceBADDATAORDERTOKEN(SpiceyPyError):
pass
|
class SpiceBADDATAORDERTOKEN(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,254 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADCURVETYPE
|
class SpiceBADCURVETYPE(SpiceyPyError):
pass
|
class SpiceBADCURVETYPE(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,255 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.DoubleArrayType
|
class DoubleArrayType:
"""
Class type that will handle all double vectors,
inspiration from python cookbook 3rd edition
"""
def from_param(self, param):
if hasattr(param, "__array_interface__"):
return self.from_ndarray(param)
elif isinstance(param, Array):
return param
elif isinstance(param, (list, tuple)):
return self.from_list(param)
elif isinstance(param, array):
if param.typecode != "d":
raise TypeError("must be an array of doubles")
return self.from_list(param)
else:
raise TypeError(f"Can't convert {type(param)}")
# Cast from lists/tuples
def from_list(self, param):
val = ((c_double) * len(param))(*param)
return val
# Cast from a numpy array,
def from_ndarray(self, param):
# return param.data_as(POINTER(c_double))
# the above older method does not work with
# functions which take vectors of known size
return numpc.as_ctypes(
param.astype(numpy.float64, casting="same_kind", copy=False)
)
|
class DoubleArrayType:
'''
Class type that will handle all double vectors,
inspiration from python cookbook 3rd edition
'''
def from_param(self, param):
pass
def from_list(self, param):
pass
def from_ndarray(self, param):
pass
| 4 | 1 | 8 | 0 | 7 | 1 | 3 | 0.43 | 0 | 6 | 0 | 0 | 3 | 0 | 3 | 3 | 33 | 3 | 21 | 5 | 17 | 9 | 15 | 5 | 11 | 6 | 0 | 2 | 8 |
5,256 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.DataType
|
class DataType(object):
SPICE_CHR = 0
SPICE_DP = 1
SPICE_INT = 2
SPICE_TIME = 3
SPICE_BOOL = 4
CHR = 0
DP = 1
INT = 2
TIME = 3
BOOL = 4
def __init__(self) -> None:
pass
|
class DataType(object):
def __init__(self) -> None:
pass
| 2 | 0 | 2 | 0 | 2 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 14 | 1 | 13 | 12 | 11 | 0 | 13 | 12 | 11 | 1 | 1 | 0 | 1 |
5,257 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/support_types.py
|
spiceypy.utils.support_types.Cell_Time
|
class Cell_Time(SpiceCell):
def __init__(self, size: int) -> None:
"""
Init a Time 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["time"])
super(Cell_Time, self).__init__(
3, 0, size, 0, 1, cast(base, c_void_p), cast(data, c_void_p)
)
|
class Cell_Time(SpiceCell):
def __init__(self, size: int) -> None:
'''
Init a Time 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,258 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNSUPPORTEDMETHOD
|
class SpiceUNSUPPORTEDMETHOD(SpiceyPyError):
pass
|
class SpiceUNSUPPORTEDMETHOD(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,259 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNSUPPORTEDSPEC
|
class SpiceUNSUPPORTEDSPEC(SpiceyPyIOError):
pass
|
class SpiceUNSUPPORTEDSPEC(SpiceyPyIOError):
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 | 6 | 0 | 0 |
5,260 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNSUPPTEXTFORMAT
|
class SpiceUNSUPPTEXTFORMAT(SpiceyPyError):
pass
|
class SpiceUNSUPPTEXTFORMAT(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,261 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNTITLEDHELP
|
class SpiceUNTITLEDHELP(SpiceyPyError):
pass
|
class SpiceUNTITLEDHELP(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,262 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUPDATEPENDING
|
class SpiceUPDATEPENDING(SpiceyPyError):
pass
|
class SpiceUPDATEPENDING(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,263 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUSAGEERROR
|
class SpiceUSAGEERROR(SpiceyPyError):
pass
|
class SpiceUSAGEERROR(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,264 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUTFULL
|
class SpiceUTFULL(SpiceyPyError):
pass
|
class SpiceUTFULL(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,265 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNSUPPORTEDBFF
|
class SpiceUNSUPPORTEDBFF(SpiceyPyIOError):
pass
|
class SpiceUNSUPPORTEDBFF(SpiceyPyIOError):
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 | 6 | 0 | 0 |
5,266 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceVALUEOUTOFRANGE
|
class SpiceVALUEOUTOFRANGE(SpiceyPyValueError):
pass
|
class SpiceVALUEOUTOFRANGE(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,267 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceVARIABLENOTFOUND
|
class SpiceVARIABLENOTFOUND(SpiceyPyKeyError):
pass
|
class SpiceVARIABLENOTFOUND(SpiceyPyKeyError):
pass
| 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 15 | 2 | 0 | 2 | 1 | 1 | 0 | 2 | 1 | 1 | 0 | 6 | 0 | 0 |
5,268 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceVARNAMETOOLONG
|
class SpiceVARNAMETOOLONG(SpiceyPyError):
pass
|
class SpiceVARNAMETOOLONG(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,269 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceVECTORTOOBIG
|
class SpiceVECTORTOOBIG(SpiceyPyValueError):
pass
|
class SpiceVECTORTOOBIG(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,270 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceVERSIONMISMATCH
|
class SpiceVERSIONMISMATCH(SpiceyPyError):
pass
|
class SpiceVERSIONMISMATCH(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,271 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceVERTEXNOTINGRID
|
class SpiceVERTEXNOTINGRID(SpiceyPyError):
pass
|
class SpiceVERTEXNOTINGRID(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,272 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceVOXELGRIDTOOBIG
|
class SpiceVOXELGRIDTOOBIG(SpiceyPyError):
pass
|
class SpiceVOXELGRIDTOOBIG(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,273 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceWIDTHTOOSMALL
|
class SpiceWIDTHTOOSMALL(SpiceyPyError):
pass
|
class SpiceWIDTHTOOSMALL(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,274 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceVALUETABLEFULL
|
class SpiceVALUETABLEFULL(SpiceyPyError):
pass
|
class SpiceVALUETABLEFULL(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,275 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceWINDOWEXCESS
|
class SpiceWINDOWEXCESS(SpiceyPyMemoryError):
pass
|
class SpiceWINDOWEXCESS(SpiceyPyMemoryError):
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,276 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNSUPPORTEDARCH
|
class SpiceUNSUPPORTEDARCH(SpiceyPyError):
pass
|
class SpiceUNSUPPORTEDARCH(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,277 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNRESOLVEDTIMES
|
class SpiceUNRESOLVEDTIMES(SpiceyPyError):
pass
|
class SpiceUNRESOLVEDTIMES(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,278 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNNATURALACT
|
class SpiceUNNATURALACT(SpiceyPyError):
pass
|
class SpiceUNNATURALACT(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,279 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNNATURALRELATION
|
class SpiceUNNATURALRELATION(SpiceyPyError):
pass
|
class SpiceUNNATURALRELATION(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,280 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNORDEREDREFS
|
class SpiceUNORDEREDREFS(SpiceyPyError):
pass
|
class SpiceUNORDEREDREFS(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,281 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNORDEREDTIMES
|
class SpiceUNORDEREDTIMES(SpiceyPyValueError):
pass
|
class SpiceUNORDEREDTIMES(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,282 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNPARSEDQUERY
|
class SpiceUNPARSEDQUERY(SpiceyPyError):
pass
|
class SpiceUNPARSEDQUERY(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,283 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNPARSEDTIME
|
class SpiceUNPARSEDTIME(SpiceyPyValueError):
pass
|
class SpiceUNPARSEDTIME(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,284 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNRECOGNAPPFLAG
|
class SpiceUNRECOGNAPPFLAG(SpiceyPyError):
pass
|
class SpiceUNRECOGNAPPFLAG(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,285 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNSUPPBINARYARCH
|
class SpiceUNSUPPBINARYARCH(SpiceyPyError):
pass
|
class SpiceUNSUPPBINARYARCH(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,286 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNRECOGNDATATYPE
|
class SpiceUNRECOGNDATATYPE(SpiceyPyError):
pass
|
class SpiceUNRECOGNDATATYPE(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,287 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNRECOGNIZABLEFILE
|
class SpiceUNRECOGNIZABLEFILE(SpiceyPyError):
pass
|
class SpiceUNRECOGNIZABLEFILE(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,288 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNRECOGNIZEDACTION
|
class SpiceUNRECOGNIZEDACTION(SpiceyPyError):
pass
|
class SpiceUNRECOGNIZEDACTION(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,289 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNRECOGNIZEDFORMAT
|
class SpiceUNRECOGNIZEDFORMAT(SpiceyPyError):
pass
|
class SpiceUNRECOGNIZEDFORMAT(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,290 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNRECOGNIZEDFRAME
|
class SpiceUNRECOGNIZEDFRAME(SpiceyPyError):
pass
|
class SpiceUNRECOGNIZEDFRAME(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,291 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNRECOGNIZEDTYPE
|
class SpiceUNRECOGNIZEDTYPE(SpiceyPyError):
pass
|
class SpiceUNRECOGNIZEDTYPE(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,292 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNRECOGNPRECTYPE
|
class SpiceUNRECOGNPRECTYPE(SpiceyPyError):
pass
|
class SpiceUNRECOGNPRECTYPE(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,293 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNRESOLVEDNAMES
|
class SpiceUNRESOLVEDNAMES(SpiceyPyError):
pass
|
class SpiceUNRESOLVEDNAMES(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,294 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceUNRECOGNDELIMITER
|
class SpiceUNRECOGNDELIMITER(SpiceyPyError):
pass
|
class SpiceUNRECOGNDELIMITER(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,295 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceBADFROMTIME
|
class SpiceBADFROMTIME(SpiceyPyError):
pass
|
class SpiceBADFROMTIME(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,296 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceWINDOWSTOOSMALL
|
class SpiceWINDOWSTOOSMALL(SpiceyPyError):
pass
|
class SpiceWINDOWSTOOSMALL(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,297 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceWORKSPACETOOSMALL
|
class SpiceWORKSPACETOOSMALL(SpiceyPyMemoryError):
pass
|
class SpiceWORKSPACETOOSMALL(SpiceyPyMemoryError):
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,298 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceZZHOLDDGETFAILED
|
class SpiceZZHOLDDGETFAILED(SpiceyPyError):
pass
|
class SpiceZZHOLDDGETFAILED(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,299 |
AndrewAnnex/SpiceyPy
|
AndrewAnnex_SpiceyPy/src/spiceypy/utils/exceptions.py
|
spiceypy.utils.exceptions.SpiceZZHOLDNOPUT
|
class SpiceZZHOLDNOPUT(SpiceyPyError):
pass
|
class SpiceZZHOLDNOPUT(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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.