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).
10
+
In order to find a north-south trend in the data we will compare results from
11
+
regression and universal kriging provided by GSTools.
12
12
13
13
14
14
## Structure
15
15
16
-
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
16
+
The workflow is organized by the following structure:
17
+
-`data/` - downloaded temperature data and german border line
18
+
-`src/`
19
+
-`00_data_download.py` - downloading routines
20
+
-`01_dwd_krige.py` - interpolation and comparison plot generation
21
+
-`results/` - all produced results
22
22
23
23
24
24
## Python environment
25
25
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
-
31
-
32
-
## Workflow
26
+
Main Python dependencies are stored in `requirements.txt`:
33
27
34
-
After finalizing your work, you should tag the repository with a version like `v1.0`.
28
+
```
29
+
gstools==1.3.1
30
+
matplotlib
31
+
cartopy==0.18.0
32
+
geopandas==0.8.1
33
+
wetterdienst==0.13.0
34
+
```
35
35
36
-
Then, a [Zenodo](https://zenodo.org/) release will be created, so you can cite the repository in you publication.
36
+
You can install them with `pip` (potentially in a virtual environment):
37
37
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.
38
+
```bash
39
+
pip install -r requirements.txt
40
+
```
40
41
41
42
42
43
## Contact
@@ -46,4 +47,4 @@ You can contact us via <info@geostat-framework.org>.
0 commit comments