You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can create a new example by simply clicking on "Use this template".
9
-
10
-
The included example is showing the generation of a conditioned random field ensemble
11
-
in 1D taken from [GSTools](https://geostat-framework.readthedocs.io/projects/gstools/en/stable/examples/06_conditioned_fields/00_condition_ensemble.html#sphx-glr-examples-06-conditioned-fields-00-condition-ensemble-py).
8
+
We are going to analyse the Herten aquifer, which is situated in Southern
9
+
Germany. Multiple outcrop faces where surveyed and interpolated to a 3D
10
+
dataset. In these publications, you can find more information about the data:
Please try to organize your example in the given Structure
17
-
-`data/` - here you should place your input data
18
-
-`src/` - here you should place your python scripts
19
-
-`results/` - here your computed results and plots should be stored
20
-
-`README.md` - please describe your example in the readme, potentially showing results
21
-
-`LICENSE` - the default license is MIT, you can use another one if wanted
22
-
21
+
The workflow is organized by the following structure:
23
22
24
-
## Python environment
23
+
-`data/`
24
+
- contains a single realization of the herten aquifer downloaded by `00_download.py`
25
+
-`src/`
26
+
-`00_download.py` - downloading the herten aquifer and deriving a single transmissivity realization
27
+
-`01_herten.py` - analyzing the herten aquifer and generating conditioned random fields
28
+
-`results/` - all produced results
25
29
26
-
To make the example reproducible, it would be a good practice to provide one of
27
-
the following files:
28
-
-`requirements.txt` - requirements for [pip](https://pip.pypa.io/en/stable/user_guide/#requirements-files) to install all needed packages
29
-
-`spec-file.txt` - specification file to create the original [conda environment](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#building-identical-conda-environments)
30
30
31
+
## Python environment
31
32
32
-
## Workflow
33
-
34
-
After finalizing your work, you should tag the repository with a version like `v1.0`.
33
+
Main Python dependencies are stored in `requirements.txt`:
35
34
36
-
Then, a [Zenodo](https://zenodo.org/) release will be created, so you can cite the repository in you publication.
35
+
```
36
+
gstools==1.3.1
37
+
pyvista
38
+
matplotlib
39
+
seaborn
40
+
```
37
41
38
-
Please keep your `master` branch in line with the latest release.
39
-
For further development use the `develop` branch and update `master` with pull-requests.
42
+
You can install them with `pip` (potentially in a virtual environment):
40
43
44
+
```bash
45
+
pip install -r requirements.txt
46
+
```
41
47
42
48
## Contact
43
49
@@ -46,4 +52,4 @@ You can contact us via <info@geostat-framework.org>.
0 commit comments