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
Copy file name to clipboardExpand all lines: README.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@
20
20
21
21
This Python module serves as a collection of different scale- and distribution-based bias correction techniques for climatic research
22
22
23
-
The documentation is available at: [https://python-kraken-sdk.readthedocs.io/en/stable/](https://python-kraken-sdk.readthedocs.io/en/stable/)
23
+
The documentation is available at: [https://python-cmethods.readthedocs.io/en/stable/](https://python-cmethods.readthedocs.io/en/stable/)
24
24
25
25
> ⚠️ For the application of bias corrections on _lage data sets_ it is recomanded to use the command-line tool [BiasAdjustCXX](https://github.com/btschwertfeger/BiasAdjustCXX) since bias corrections are complex statistical transformation which are very slow in Python compared to the C++ implementation.
26
26
@@ -78,6 +78,17 @@ All methods except the `adjust_3d` function requires that the input data sets on
78
78
|`quantile_delta_mapping`| Quantile Delta Mapping (additive and multiplicative) |
79
79
|`adjust_3d`| requires a method name and the respective parameters to adjust all time series of a 3-dimensional data set |
80
80
81
+
Except for the variance scaling, all methods can be applied on stochastic and non-stochastic
82
+
climate variables. Variance scaling can only be applied on non-stochastic climate variables.
83
+
84
+
- Stochastic climate variables are those that are subject to random fluctuations
85
+
and are not predictable. They have no predictable trend or pattern. Examples of
86
+
stochastic climate variables include precipitation, air temperature, and humidity.
87
+
88
+
- Non-stochastic climate variables, on the other hand, have clear trend and pattern histories
89
+
and can be readily predicted. They are often referred to as climate elements and include
90
+
variables such as water temperature and air pressure.
91
+
81
92
---
82
93
83
94
<aname="installation"></a>
@@ -119,7 +130,7 @@ qdm_result = cm.adjust_3d( # 3d = 2 spatial and 1 time dimension
119
130
)
120
131
# to calculate the relative rather than the absolute change,
121
132
# '*' can be used instead of '+' (this is prefered when adjusting
0 commit comments