obspy.core.inventory.util.Dip
- class Dip(value, **kwargs)[source]
Bases:
FloatWithUncertaintiesFixedUnit
Dip object
Attributes
the imaginary part of a complex number |
|
the real part of a complex number |
|
Public Methods
Return integer ratio. |
|
Return self, the complex conjugate of any float. |
|
Create a floating-point number from a hexadecimal string. |
|
Return a hexadecimal representation of a floating-point number. |
|
Return True if the float is an integer. |
Special Methods
- Dip.__abs__()
abs(self)
- Dip.__add__(value, /)
Return self+value.
- Dip.__bool__()
True if self else False
- Dip.__ceil__()
Return the ceiling as an Integral.
- Dip.__delattr__(name, /)
Implement delattr(self, name).
- Dip.__dir__()
Default dir() implementation.
- Dip.__divmod__(value, /)
Return divmod(self, value).
- Dip.__eq__(value, /)
Return self==value.
- Dip.__float__()
float(self)
- Dip.__floor__()
Return the floor as an Integral.
- Dip.__floordiv__(value, /)
Return self//value.
- Dip.__format__(format_spec, /)
Formats the float according to format_spec.
- Dip.__ge__(value, /)
Return self>=value.
- Dip.__getattribute__(name, /)
Return getattr(self, name).
- Dip.__getformat__()
You probably don’t want to use this function.
- typestr
Must be ‘double’ or ‘float’.
It exists mainly to be used in Python’s test suite.
This function returns whichever of ‘unknown’, ‘IEEE, big-endian’ or ‘IEEE, little-endian’ best describes the format of floating point numbers used by the C type named by typestr.
- Dip.__getnewargs__()
- Dip.__gt__(value, /)
Return self>value.
- Dip.__hash__()
Return hash(self).
- Dip.__iadd__(other)
- Dip.__imul__(other)
- Dip.__init__(value, lower_uncertainty=None, upper_uncertainty=None, measurement_method=None)
- Dip.__init_subclass__()
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- Dip.__int__()
int(self)
- Dip.__le__(value, /)
Return self<=value.
- Dip.__lt__(value, /)
Return self<value.
- Dip.__mod__(value, /)
Return self%value.
- Dip.__mul__(value, /)
Return self*value.
- Dip.__ne__(value, /)
Return self!=value.
- Dip.__neg__()
-self
- static Dip.__new__(cls, value, **kwargs)
- Dip.__pos__()
+self
- Dip.__pow__(value, mod=None, /)
Return pow(self, value, mod).
- Dip.__radd__(value, /)
Return value+self.
- Dip.__rdivmod__(value, /)
Return divmod(value, self).
- Dip.__reduce__()
Helper for pickle.
- Dip.__reduce_ex__(protocol, /)
Helper for pickle.
- Dip.__repr__()
Return repr(self).
- Dip.__rfloordiv__(value, /)
Return value//self.
- Dip.__rmod__(value, /)
Return value%self.
- Dip.__rmul__(value, /)
Return value*self.
- Dip.__round__(ndigits=None, /)
Return the Integral closest to x, rounding half toward even.
When an argument is passed, work like built-in round(x, ndigits).
- Dip.__rpow__(value, mod=None, /)
Return pow(value, self, mod).
- Dip.__rsub__(value, /)
Return value-self.
- Dip.__rtruediv__(value, /)
Return value/self.
- Dip.__setattr__(name, value, /)
Implement setattr(self, name, value).
- Dip.__setformat__(fmt, /)
You probably don’t want to use this function.
- typestr
Must be ‘double’ or ‘float’.
- fmt
Must be one of ‘unknown’, ‘IEEE, big-endian’ or ‘IEEE, little-endian’, and in addition can only be one of the latter two if it appears to match the underlying C reality.
It exists mainly to be used in Python’s test suite.
Override the automatic determination of C-level floating point type. This affects how floats are converted to and from binary strings.
- Dip.__sizeof__()
Size of object in memory, in bytes.
- Dip.__str__()
Return str(self).
- Dip.__sub__(value, /)
Return self-value.
- Dip.__subclasshook__()
Abstract classes can override this to customize issubclass().
This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).
- Dip.__truediv__(value, /)
Return self/value.
- Dip.__trunc__()
Return the Integral closest to x between 0 and x.