obspy.core.inventory.util.Angle
- class Angle(value, **kwargs)[source]
Bases:
FloatWithUncertaintiesFixedUnit
Angle 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
- Angle.__abs__()
abs(self)
- Angle.__add__(value, /)
Return self+value.
- Angle.__bool__()
True if self else False
- Angle.__ceil__()
Return the ceiling as an Integral.
- Angle.__delattr__(name, /)
Implement delattr(self, name).
- Angle.__dir__()
Default dir() implementation.
- Angle.__divmod__(value, /)
Return divmod(self, value).
- Angle.__eq__(value, /)
Return self==value.
- Angle.__float__()
float(self)
- Angle.__floor__()
Return the floor as an Integral.
- Angle.__floordiv__(value, /)
Return self//value.
- Angle.__format__(format_spec, /)
Formats the float according to format_spec.
- Angle.__ge__(value, /)
Return self>=value.
- Angle.__getattribute__(name, /)
Return getattr(self, name).
- Angle.__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.
- Angle.__getnewargs__()
- Angle.__gt__(value, /)
Return self>value.
- Angle.__hash__()
Return hash(self).
- Angle.__iadd__(other)
- Angle.__imul__(other)
- Angle.__init__(value, lower_uncertainty=None, upper_uncertainty=None, measurement_method=None)
- Angle.__init_subclass__()
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- Angle.__int__()
int(self)
- Angle.__le__(value, /)
Return self<=value.
- Angle.__lt__(value, /)
Return self<value.
- Angle.__mod__(value, /)
Return self%value.
- Angle.__mul__(value, /)
Return self*value.
- Angle.__ne__(value, /)
Return self!=value.
- Angle.__neg__()
-self
- static Angle.__new__(cls, value, **kwargs)
- Angle.__pos__()
+self
- Angle.__pow__(value, mod=None, /)
Return pow(self, value, mod).
- Angle.__radd__(value, /)
Return value+self.
- Angle.__rdivmod__(value, /)
Return divmod(value, self).
- Angle.__reduce__()
Helper for pickle.
- Angle.__reduce_ex__(protocol, /)
Helper for pickle.
- Angle.__repr__()
Return repr(self).
- Angle.__rfloordiv__(value, /)
Return value//self.
- Angle.__rmod__(value, /)
Return value%self.
- Angle.__rmul__(value, /)
Return value*self.
- Angle.__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).
- Angle.__rpow__(value, mod=None, /)
Return pow(value, self, mod).
- Angle.__rsub__(value, /)
Return value-self.
- Angle.__rtruediv__(value, /)
Return value/self.
- Angle.__setattr__(name, value, /)
Implement setattr(self, name, value).
- Angle.__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.
- Angle.__sizeof__()
Size of object in memory, in bytes.
- Angle.__str__()
Return str(self).
- Angle.__sub__(value, /)
Return self-value.
- Angle.__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).
- Angle.__truediv__(value, /)
Return self/value.
- Angle.__trunc__()
Return the Integral closest to x between 0 and x.