Home | Trees | Indices | Help |
|
---|
|
Some, basic definitions, functions and dependencies.
Use env variable PYGEODESY_XPACKAGES
to avoid import of
dependencies geographiclib
, numpy
and/or
scipy
. Set PYGEODESY_XPACKAGES
to a
comma-separated list of package names to be excluded from import.
Version: 24.10.14
Functions | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Variables | |
__all__ = _ALL_LAZY.basics
|
Function Details |
Clip a string to the given length limit.
|
Like
|
Return the value of x as
|
Split a string in 2 halfs.
|
Count the number of 1-bits in an Note:
|
Is
|
Is
|
Is
|
Is
|
Is
|
Is
|
Is
Note:
Both |
Is
|
Is
|
Is
|
Is
|
Is
|
Is
|
Is
|
Is
Note:
Excluding |
Is
|
Is
|
Return the items of
|
Make built-in function
|
Call a single-argument function to each
|
Like Python's Unlike Python 2's built-in
|
Negate
|
Negate all
|
Return
|
Return sign of
|
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)) >>> tuple(splice(list(range(9)), n=5)) ([0, 5], [1, 6], [2, 7], [3, 8], [4]) >>> splice(range(9), n=1) <generator object splice at 0x0...> |
Unsign if
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue Oct 22 17:06:19 2024 | http://epydoc.sourceforge.net |