Home | Trees | Indices | Help |
|
---|
|
Basic constants, definitions and functions.
Version: 20.03.23
Classes | |
LenError Error raised for mis-matching len values.
|
|
LimitError Error raised for lat- or longitudinal deltas exceeding the limit in functions equirectangular and equirectangular_ and nearestOn* and
simplify* functions or methods.
|
|
property_RO |
Functions | |||
bool |
|
||
bool |
|
||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Function Details |
Clip a string to the given length limit.
|
Split a string in 2 halfs.
|
Check for
|
Check for integer type or an integer
|
Check for NEG0, negative 0.0.
|
Check for scalar types.
|
Check for sequence types.
Note:
Excluding |
Check for string types.
|
Check whether a class is a subclass of a super class.
|
Make built-in function
|
Get/set the raising of limit errors.
|
Apply each argument to a single-argument function and return a
|
Apply arguments to a function and return a Unlike Python 2's built-in
|
Decorator for a property with documentation.
Example: >>> @property_doc_("documentation text.") >>> def name(self): >>> ... >>> >>> @name.setter >>> def name(self, value): >>> ... |
Validate a scalar.
|
Split an iterable into
Note:
Each generated slice is a Example: >>> from pygeodesy import splice >>> a, b = splice(range(10)) >>> a, b ((0, 2, 4, 6, 8), (1, 3, 5, 7, 9)) >>> a, b, c = splice(range(10), n=3) >>> a, b, c ((0, 3, 6, 9), (1, 4, 7], [2, 5, 8)) >>> a, b, c = splice(range(10), n=3, fill=-1) >>> a, b, c ((0, 3, 6, 9), (1, 4, 7, -1), (2, 5, 8, -1)) >>> list(splice(range(12), n=5)) [(0, 5, 10), (1, 6, 11), (2, 7), (3, 8), (4, 9)] >>> splice(range(9), n=1) <generator object splice at 0x0...> |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Mar 23 15:10:38 2020 | http://epydoc.sourceforge.net |