Skip to content

Commit d636b24

Browse files
committed
update pkg versions
1 parent bf89a55 commit d636b24

15 files changed

Lines changed: 137 additions & 41 deletions

_includes/footer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
Copyright 2019, Sebastian Müller, Lennart Schüler, Falk Heße
3+
Copyright 2019 - 2020, Sebastian Müller, Lennart Schüler, Falk Heße
44
—
55
[GeoStat-Framework]({{ site.source_link }})
66
—

_posts/2019-01-01-gstools.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ icon: "/docs/source/pics/gs-head.png"
1414
<img src="/docs/source/pics/gs-3d.png" alt="Gau-Model" width="25%">
1515
</p>
1616

17-
### GeoStatTools is a library providing geostatistical tools like random field generation, variogram estimation and **user-defined** covariance models.
17+
### GeoStatTools is a library providing geostatistical tools like kriging, random field generation, variogram estimation and **user-defined** covariance models.
1818

1919
<p align="center">
2020
<table style="margin-left: auto; margin-right: auto; width: 90%;">
@@ -32,7 +32,7 @@ icon: "/docs/source/pics/gs-head.png"
3232
<p><strong>Documentation</strong></p>
3333
</td>
3434
<td style="text-align: left;">
35-
<a href="https://geostat-framework.readthedocs.io/projects/gstools/en/latest/">
35+
<a href="https://gstools.readthedocs.io">
3636
<p>ReadTheDocs</p>
3737
</a>
3838
</td>

_posts/2019-01-02-ogs5py.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ icon: "/docs/source/pics/ogs-head.png"
3030
<p><strong>Documentation</strong></p>
3131
</td>
3232
<td style="text-align: left;">
33-
<a href="https://geostat-framework.readthedocs.io/projects/ogs5py/en/latest/">
33+
<a href="https://ogs5py.readthedocs.io">
3434
<p>ReadTheDocs</p>
3535
</a>
3636
</td>

_posts/2019-01-03-welltestpy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ icon: "/docs/source/pics/wtp-head.png"
3030
<p><strong>Documentation</strong></p>
3131
</td>
3232
<td style="text-align: left;">
33-
<a href="https://geostat-framework.readthedocs.io/projects/welltestpy/en/latest/">
33+
<a href="https://welltestpy.readthedocs.io">
3434
<p>ReadTheDocs</p>
3535
</a>
3636
</td>

_posts/2019-01-04-anaflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ icon: "/docs/source/pics/af-head.png"
3030
<p><strong>Documentation</strong></p>
3131
</td>
3232
<td style="text-align: left;">
33-
<a href="https://geostat-framework.readthedocs.io/projects/anaflow/en/latest/">
33+
<a href="https://anaflow.readthedocs.io">
3434
<p>ReadTheDocs</p>
3535
</a>
3636
</td>

_posts/2019-01-05-about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This Framework was created within the PhD project of [Sebastian Müller](https:/
1212
You can contact us via <info@geostat-framework.org>.
1313

1414
<p align="center">
15-
<img src="/img/UFZ_LOGO.jpg" alt="UFZ" width="20%">
15+
<img src="/img/UFZ_LOGO.png" alt="UFZ" width="40%">
1616
<img src="/img/dbu.png" alt="DBU" width="20%">
1717
</p>
1818

docs/source/conf.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
# Add any Sphinx extension module names here, as strings. They can be
2828
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
2929
# ones.
30+
import datetime
31+
3032
extensions = [
3133
]
3234

@@ -45,8 +47,9 @@
4547
master_doc = "contents"
4648

4749
# General information about the project.
50+
curr_year = datetime.datetime.now().year
4851
project = "GeoStat Framework"
49-
copyright = u"2018, Sebastian Müller, Lennart Schüler"
52+
copyright = "2018 - {}, Sebastian Müller, Lennart Schüler".format(curr_year)
5053
author = u"Sebastian Müller, Lennart Schüler"
5154

5255
# The version info for the project you're documenting, acts as replacement for
@@ -121,13 +124,16 @@
121124

122125
# Output file base name for HTML help builder.
123126
htmlhelp_basename = "GeoStatFrameworkdoc"
127+
# logos for the page
128+
html_logo = "pics/GeoStat-150.png"
129+
html_favicon = "pics/GeoStat.ico"
124130

125131
# -- Options for manual page output ---------------------------------------
126132

127133
# One entry per manual page. List of tuples
128134
# (source start file, name, description, authors, manual section).
129135
man_pages = [
130-
(master_doc, "geostattools", "GeoStatTools Documentation", [author], 1)
136+
(master_doc, "geostat-framework", "GeoStat-Framework Documentation", [author], 1)
131137
]
132138

133139
suppress_warnings = [

docs/source/index.rst

Lines changed: 122 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
1-
=================
2-
GeoStat Framework
3-
=================
4-
51
.. image:: pics/GeoStat.png
62
:width: 250px
73
:align: center
84

9-
The GeoStat Framework is a Python framework for geostatistical simulations.
5+
.. centered:: **Create your geo-statistical model with Python!**
106

117

128
Included Packages
@@ -18,19 +14,58 @@ The following Python-Packages are part of the GeoStat Framework.
1814
GSTools
1915
-------
2016

21-
GeoStatTools is a library providing geostatistical tools like
22-
random field generation, variogram estimation and covariance models.
17+
GeoStatTools is a library providing geostatistical tools like kriging,
18+
random field generation, variogram estimation, covariance models and much more.
2319

2420
.. image:: pics/gstools.png
2521
:width: 150px
2622
:align: center
2723

28-
:Source:
29-
https://github.com/GeoStat-Framework/GSTools
30-
:Documentation:
31-
https://geostat-framework.readthedocs.io/projects/gstools
32-
:Installation:
33-
``pip install gstools``
24+
.. list-table::
25+
:widths: 33 67
26+
27+
* - **Version**
28+
- .. image:: https://badge.fury.io/py/gstools.svg
29+
:target: https://badge.fury.io/py/gstools
30+
.. image:: https://img.shields.io/conda/vn/conda-forge/gstools.svg
31+
:target: https://anaconda.org/conda-forge/gstools
32+
33+
* - **Installation**
34+
- ``pip install gstools`` *or* ``conda install gstools``
35+
36+
* - **Source**
37+
- https://github.com/GeoStat-Framework/GSTools
38+
39+
* - **Documentation**
40+
- https://gstools.readthedocs.io
41+
42+
43+
PyKrige
44+
-------
45+
46+
PyKrige provides 2D and 3D ordinary and universal kriging.
47+
48+
.. image:: pics/PyKrige.png
49+
:width: 150px
50+
:align: center
51+
52+
.. list-table::
53+
:widths: 33 67
54+
55+
* - **Version**
56+
- .. image:: https://badge.fury.io/py/PyKrige.svg
57+
:target: https://badge.fury.io/py/PyKrige
58+
.. image:: https://img.shields.io/conda/vn/conda-forge/pykrige.svg
59+
:target: https://anaconda.org/conda-forge/pykrige
60+
61+
* - **Installation**
62+
- ``pip install PyKrige`` *or* ``conda install pykrige``
63+
64+
* - **Source**
65+
- https://github.com/GeoStat-Framework/PyKrige
66+
67+
* - **Documentation**
68+
- https://pykrige.readthedocs.io
3469

3570

3671
ogs5py
@@ -42,12 +77,23 @@ ogs5py is a Python-API for the OpenGeoSys 5 scientific modeling package.
4277
:width: 150px
4378
:align: center
4479

45-
:Source:
46-
https://github.com/GeoStat-Framework/ogs5py
47-
:Documentation:
48-
https://geostat-framework.readthedocs.io/projects/ogs5py
49-
:Installation:
50-
``pip install ogs5py``
80+
.. list-table::
81+
:widths: 33 67
82+
83+
* - **Version**
84+
- .. image:: https://badge.fury.io/py/ogs5py.svg
85+
:target: https://badge.fury.io/py/ogs5py
86+
.. image:: https://img.shields.io/conda/vn/conda-forge/ogs5py.svg
87+
:target: https://anaconda.org/conda-forge/ogs5py
88+
89+
* - **Installation**
90+
- ``pip install ogs5py`` *or* ``conda install ogs5py``
91+
92+
* - **Source**
93+
- https://github.com/GeoStat-Framework/ogs5py
94+
95+
* - **Documentation**
96+
- https://ogs5py.readthedocs.io
5197

5298

5399
WellTestPy
@@ -59,13 +105,22 @@ WellTestPy is a python-package for handling well based field campaigns.
59105
:width: 150px
60106
:align: center
61107

62-
:Source:
63-
https://github.com/GeoStat-Framework/welltestpy
64-
:Documentation:
65-
https://geostat-framework.readthedocs.io/projects/welltestpy
66-
:Installation:
67-
``pip install welltestpy``
68-
108+
.. list-table::
109+
:widths: 33 67
110+
111+
* - **Version**
112+
- .. image:: https://badge.fury.io/py/welltestpy.svg
113+
:target: https://badge.fury.io/py/welltestpy
114+
115+
* - **Installation**
116+
- ``pip install welltestpy``
117+
118+
* - **Source**
119+
- https://github.com/GeoStat-Framework/welltestpy
120+
121+
* - **Documentation**
122+
- https://welltestpy.readthedocs.io
123+
69124

70125
AnaFlow
71126
-------
@@ -77,9 +132,44 @@ groundwater-flow-equation.
77132
:width: 150px
78133
:align: center
79134

80-
:Source:
81-
https://github.com/GeoStat-Framework/AnaFlow
82-
:Documentation:
83-
https://geostat-framework.readthedocs.io/projects/anaflow
84-
:Installation:
85-
``pip install anaflow``
135+
.. list-table::
136+
:widths: 33 67
137+
138+
* - **Version**
139+
- .. image:: https://badge.fury.io/py/anaflow.svg
140+
:target: https://badge.fury.io/py/anaflow
141+
142+
* - **Installation**
143+
- ``pip install anaflow``
144+
145+
* - **Source**
146+
- https://github.com/GeoStat-Framework/AnaFlow
147+
148+
* - **Documentation**
149+
- https://anaflow.readthedocs.io
150+
151+
152+
pentapy
153+
-------
154+
155+
pentapy is a toolbox to deal with pentadiagonal matrices in Python.
156+
157+
.. image:: pics/pentapy.png
158+
:width: 150px
159+
:align: center
160+
161+
.. list-table::
162+
:widths: 33 67
163+
164+
* - **Version**
165+
- .. image:: https://badge.fury.io/py/pentapy.svg
166+
:target: https://badge.fury.io/py/pentapy
167+
168+
* - **Installation**
169+
- ``pip install pentapy``
170+
171+
* - **Source**
172+
- https://github.com/GeoStat-Framework/pentapy
173+
174+
* - **Documentation**
175+
- https://pentapy.readthedocs.io

docs/source/pics/GeoStat.ico

4.19 KB
Binary file not shown.

docs/source/pics/PyKrige.png

56.8 KB
Loading

0 commit comments

Comments
 (0)