-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
75 additions
and
17 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ | |
You can adapt this file completely to your liking, but it should at least | ||
contain the root `toctree` directive. | ||
Welcome to HydroBox's documentation! | ||
==================================== | ||
Welcome to HydroBox | ||
=================== | ||
|
||
.. note:: | ||
Major parts of the toolbox are currently re-written. Most interfaces of | ||
|
@@ -14,15 +14,32 @@ Welcome to HydroBox's documentation! | |
this scope, instead of re-implementing functions that are already there. | ||
|
||
.. toctree:: | ||
:hidden: | ||
:maxdepth: 1 | ||
:caption: Contents: | ||
|
||
toolboxes | ||
toolboxes/index | ||
auto_examples/index | ||
|
||
Indices and tables | ||
================== | ||
Installation | ||
============ | ||
|
||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` | ||
PyPI | ||
---- | ||
|
||
Install hydrobox from the Python Pachage Index like: | ||
|
||
.. code-block:: bash | ||
pip install hydrobox | ||
Github | ||
------ | ||
|
||
You can install hydrobox from source like: | ||
|
||
.. code-block:: bash | ||
git clone [email protected]:vforwater/hydrobox | ||
cd hydrobox | ||
pip install -e . |
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
doc/toolboxes/gen_modules/hydrobox.geostat.ext_drift_kriging.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
hydrobox.geostat.ext\_drift\_kriging | ||
==================================== | ||
|
||
.. currentmodule:: hydrobox.geostat | ||
|
||
.. autofunction:: ext_drift_kriging |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
hydrobox.geostat.gridsearch | ||
=========================== | ||
|
||
.. currentmodule:: hydrobox.geostat | ||
|
||
.. autofunction:: gridsearch |
6 changes: 6 additions & 0 deletions
6
doc/toolboxes/gen_modules/hydrobox.geostat.ordinary_kriging.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
hydrobox.geostat.ordinary\_kriging | ||
================================== | ||
|
||
.. currentmodule:: hydrobox.geostat | ||
|
||
.. autofunction:: ordinary_kriging |
6 changes: 6 additions & 0 deletions
6
doc/toolboxes/gen_modules/hydrobox.geostat.simple_kriging.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
hydrobox.geostat.simple\_kriging | ||
================================ | ||
|
||
.. currentmodule:: hydrobox.geostat | ||
|
||
.. autofunction:: simple_kriging |
6 changes: 6 additions & 0 deletions
6
doc/toolboxes/gen_modules/hydrobox.geostat.universal_kriging.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
hydrobox.geostat.universal\_kriging | ||
=================================== | ||
|
||
.. currentmodule:: hydrobox.geostat | ||
|
||
.. autofunction:: universal_kriging |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
hydrobox.geostat.variogram | ||
========================== | ||
|
||
.. currentmodule:: hydrobox.geostat | ||
|
||
.. autofunction:: variogram |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
============= | ||
Geostatistics | ||
============= | ||
|
||
.. automodule:: hydrobox.geostat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
================== | ||
Toolboxes Overview | ||
================== | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: All toolboxes | ||
|
||
geostat |