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
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ A C++ implementation that works way faster can be found here: [https://github.co
13
13
- Linear Scaling
14
14
- Variance Scaling
15
15
- Delta (Change) Method
16
-
- Quantile Mapping
16
+
- Quantile and Detrended Quantile Mapping
17
17
- Quantile Delta Mapping
18
18
____
19
19
## Usage
@@ -39,7 +39,7 @@ ls_result = cm.linear_scaling(
39
39
kind='+'# *
40
40
)
41
41
42
-
qdm_result = cm.adjust_2d(
42
+
qdm_result = cm.adjust_2d(# 2d = 2 spatial and 1 time dimension
43
43
method='quantile_delta_mapping',
44
44
obs= obsh['tas'],
45
45
simh= simh['tas'],
@@ -55,7 +55,7 @@ ____
55
55
56
56
`/examples/examples.ipynb`: Notebook containing different methods and plots
57
57
58
-
`/examples/do_bias_correctino.py`: Example script for adjusting climate data
58
+
`/examples/do_bias_correction.py`: Example script for adjusting climate data
59
59
```bash
60
60
python3 do_bias_correction.py \
61
61
--obs input_data/obs.nc \
@@ -73,4 +73,4 @@ python3 do_bias_correction.py \
73
73
- Data sets should have the same spatial resolutions.
74
74
____
75
75
## Notes:
76
-
- Computation in Python takes some time, so this is only for demonstration. When adjusting large datasets, its best to the C++ implementation mentioned above.
76
+
- Computation in Python takes some time, so this is only for demonstration. When adjusting large datasets, its best to the C++ implementation mentioned above.
Tong, Y., Gao, X., Han, Z. et al. Bias correction of temperature and precipitation over China for RCM simulations using the QM and QDM methods. Clim Dyn 57, 1425–1443 (2021).
584
-
https://doi.org/10.1007/s00382-020-05447-4
603
+
----- R E F E R E N C E S -----
604
+
Tong, Y., Gao, X., Han, Z. et al. Bias correction of temperature and precipitation over China for RCM simulations using the QM and QDM methods. Clim Dyn 57, 1425–1443 (2021).
605
+
https://doi.org/10.1007/s00382-020-05447-4
585
606
586
-
----- N O T E S -----
607
+
----- N O T E S -----
587
608
588
-
@param global_min: float | this parameter can be set when kind == '*' to define a custom lower limit. Otherwise 0.0 is used.
609
+
@param global_min: float | this parameter can be set when kind == '*' to define a custom lower limit. Otherwise 0.0 is used.
0 commit comments