Skip to content

Commit

Permalink
transform: add field, store, process kw to routines; respect normaliz…
Browse files Browse the repository at this point in the history
…er; add wrapper; better checks
  • Loading branch information
MuellerSeb committed Aug 1, 2021
1 parent 21c97fc commit 68267b0
Show file tree
Hide file tree
Showing 3 changed files with 696 additions and 188 deletions.
2 changes: 0 additions & 2 deletions docs/source/transform.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ gstools.transform
=================

.. automodule:: gstools.transform
:members:
:undoc-members:

.. raw:: latex

Expand Down
48 changes: 47 additions & 1 deletion gstools/transform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,20 @@
.. currentmodule:: gstools.transform
Field-Transformations
Wrapper
^^^^^^^
.. autosummary::
:toctree: generated
apply
Field Transformations
^^^^^^^^^^^^^^^^^^^^^
.. autosummary::
:toctree: generated
binary
discrete
boxcox
Expand All @@ -17,11 +27,29 @@
normal_to_uniform
normal_to_arcsin
normal_to_uquad
apply_function
Array Transformations
^^^^^^^^^^^^^^^^^^^^^
.. autosummary::
:toctree: generated
array_discrete
array_boxcox
array_zinnharvey
array_force_moments
array_to_lognormal
array_to_uniform
array_to_arcsin
array_to_uquad
----
"""

from gstools.transform.field import (
apply,
apply_function,
binary,
discrete,
boxcox,
Expand All @@ -31,9 +59,19 @@
normal_to_uniform,
normal_to_arcsin,
normal_to_uquad,
array_discrete,
array_boxcox,
array_zinnharvey,
array_force_moments,
array_to_lognormal,
array_to_uniform,
array_to_arcsin,
array_to_uquad,
)

__all__ = [
"apply",
"apply_function",
"binary",
"discrete",
"boxcox",
Expand All @@ -43,4 +81,12 @@
"normal_to_uniform",
"normal_to_arcsin",
"normal_to_uquad",
"array_discrete",
"array_boxcox",
"array_zinnharvey",
"array_force_moments",
"array_to_lognormal",
"array_to_uniform",
"array_to_arcsin",
"array_to_uquad",
]
Loading

0 comments on commit 68267b0

Please sign in to comment.