Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correctly interpolate seasons in Grouper #2019

Merged
merged 38 commits into from
Feb 5, 2025
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
e8ba3f0
Correctly interpolate seasonal in Grouper
saschahofmann Dec 11, 2024
26a9b0f
Update Changelog
saschahofmann Dec 11, 2024
8661313
Fix test_make_hourly_temps
saschahofmann Dec 11, 2024
2c18c22
Fix linting
saschahofmann Dec 11, 2024
18687b3
Add comment explaining the factor 1/6
saschahofmann Dec 11, 2024
ca2fc5f
Fix typo in Changelog
saschahofmann Dec 11, 2024
4d8ee67
Merge branch 'main' into fix-#2014
Zeitsperre Dec 11, 2024
0ce6dfa
Merge branch 'main' into fix-#2014
Zeitsperre Dec 11, 2024
c111abd
Change order of params for pip install
saschahofmann Dec 12, 2024
ce8ff0c
Merge branch 'fix-#2014' of github.com:saschahofmann/xclim into fix-#…
saschahofmann Dec 12, 2024
94091fc
Merge branch 'main' into fix-#2014
Zeitsperre Dec 19, 2024
1046620
Fix xp creation when extrapolating on quantiles
saschahofmann Jan 7, 2025
1c7d023
Merge branch 'fix-#2014' of github.com:saschahofmann/xclim into fix-#…
saschahofmann Jan 7, 2025
d130da0
Merge branch 'main' of github.com:saschahofmann/xclim into fix-#2014
saschahofmann Jan 14, 2025
0aebbb4
Add warning log when using linear interp in qdm_adjust
saschahofmann Jan 14, 2025
b93ae6d
Use warnings library instead of logging.warning
saschahofmann Jan 15, 2025
d891929
Merge remote-tracking branch 'upstream/main' into fix-#2014
saschahofmann Jan 15, 2025
90d8345
Fix QDM with 360_day calendar
saschahofmann Jan 16, 2025
2ebd4b8
Merge branch 'main' of https://github.com/Ouranosinc/xclim into fix-#…
saschahofmann Jan 16, 2025
835ee16
Enable seasonal scaling
saschahofmann Jan 16, 2025
43c02a7
Merge branch 'main' of https://github.com/Ouranosinc/xclim into fix-#…
saschahofmann Jan 20, 2025
7c25054
Merge branch 'main' into fix-#2014
Zeitsperre Jan 20, 2025
f410e0a
Aulemahal comments
saschahofmann Jan 22, 2025
ccd3bdc
Merge branch 'main' of https://github.com/Ouranosinc/xclim into fix-#…
saschahofmann Jan 22, 2025
13b9561
Merge branch 'fix-#2014' of github.com:saschahofmann/xclim into fix-#…
saschahofmann Jan 22, 2025
5a4a31f
Add to changelog
saschahofmann Jan 22, 2025
10a4c91
Update CHANGELOG.rst
Zeitsperre Jan 22, 2025
29ab543
Merge branch 'main' of https://github.com/Ouranosinc/xclim into fix-#…
saschahofmann Jan 27, 2025
162bdf8
Merge branch 'fix-#2014' of github.com:saschahofmann/xclim into fix-#…
saschahofmann Jan 27, 2025
4c8a468
Fix real_data test by allowing linear interp for dayofyear
saschahofmann Jan 27, 2025
2aadc73
Merge branch 'main' of https://github.com/Ouranosinc/xclim into fix-#…
saschahofmann Jan 28, 2025
d501a98
Revert allowing linear interp with dayofyear, change test to use nearest
saschahofmann Jan 28, 2025
4ff05c4
Use nearest intero in sdba-advanced EQM adjustment
saschahofmann Jan 29, 2025
cf45fd8
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 29, 2025
b51569c
Merge branch 'main' into fix-#2014
saschahofmann Feb 4, 2025
2849533
remove warning msg for quantile interp
coxipi Feb 4, 2025
f518971
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 4, 2025
a3a98ef
Merge branch 'main' into fix-#2014
saschahofmann Feb 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix linting
saschahofmann committed Dec 11, 2024
commit 2c18c222e680e4b18e397091a8da1165bcf1d92b
4 changes: 2 additions & 2 deletions src/xclim/testing/helpers.py
Original file line number Diff line number Diff line change
@@ -209,8 +209,8 @@ def test_timeseries(
The frequency of the time dimension. Default is daily/"D".
as_dataset : bool
Whether to return a Dataset or a DataArray. Default is False.
cftime : bool
Whether to use cftime or not. Default is False.
calendar : str or None
Whether to use a calendar. If a calendar is provided, cftime is used.

Returns
-------