Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
a21847c
dfss implemented, and plotting
james-a-f-ross Jun 23, 2026
d490b43
merge with main
james-a-f-ross Jun 24, 2026
f1b7099
adding plots for dfss
james-a-f-ross Jun 24, 2026
4f3ecec
small dfss change
james-a-f-ross Jun 24, 2026
56f813a
adding improver code bits
james-a-f-ross Jul 6, 2026
6e064da
ensure runs in serial if on workflow
james-a-f-ross Jul 6, 2026
a3b4c28
adjust loader ,add recipe
james-a-f-ross Jul 6, 2026
2fd9832
adding to the gui
james-a-f-ross Jul 7, 2026
5a7e22a
formatting
james-a-f-ross Jul 7, 2026
40ec5cd
move dfss stuff to verification section
james-a-f-ross Jul 7, 2026
562f479
tests
james-a-f-ross Jul 7, 2026
f301d92
fixing bugs
james-a-f-ross Jul 7, 2026
d126bf3
fixing bugs
james-a-f-ross Jul 7, 2026
35f666d
remove pycharm stuff
james-a-f-ross Jul 7, 2026
3593419
remove breakpoint
james-a-f-ross Jul 7, 2026
74f23b1
change yaml name
james-a-f-ross Jul 7, 2026
bccc961
generalise the sequence plot
james-a-f-ross Jul 8, 2026
e90d2f4
adjusting the line series plotting
james-a-f-ross Jul 8, 2026
aeb66e7
adding some functionality to deal with unknown units and dfss cube at…
james-a-f-ross Jul 9, 2026
8d5ad5a
add functionality to show method in plots
james-a-f-ross Jul 9, 2026
3c94326
make centile and threshold a list in rose meta
james-a-f-ross Jul 9, 2026
4194fde
fixing yaml
james-a-f-ross Jul 9, 2026
3aa3b1f
merge main into branch and fix conflics
james-a-f-ross Jul 9, 2026
65caefe
only add 0.5 contour for dfss
james-a-f-ross Jul 10, 2026
b8d405a
Merge branch 'main' into 2164-add-dfss-operator-and-plots
james-a-f-ross Jul 10, 2026
adeddd8
fix bug
james-a-f-ross Jul 10, 2026
fbece39
remove .idea folder
james-a-f-ross Jul 10, 2026
16556fd
adding plot tests
james-a-f-ross Jul 13, 2026
8d4c935
plot tests
james-a-f-ross Jul 13, 2026
027289d
more tests
james-a-f-ross Jul 13, 2026
793a4d7
tests
james-a-f-ross Jul 13, 2026
064fd1d
more tests
james-a-f-ross Jul 14, 2026
c85aa74
more tests
james-a-f-ross Jul 14, 2026
7f3c8a3
more tests and exempt imporver code
james-a-f-ross Jul 14, 2026
a301cef
fix typo
james-a-f-ross Jul 14, 2026
a551e11
improving test coverage
james-a-f-ross Jul 14, 2026
53c9f7d
improving test coverage
james-a-f-ross Jul 14, 2026
1222c59
adding plot tests
james-a-f-ross Jul 14, 2026
39b6727
merged with main
james-a-f-ross Jul 14, 2026
b209452
add filter to tests
james-a-f-ross Jul 14, 2026
4129d93
improving test coverage
james-a-f-ross Jul 14, 2026
32339fa
improving test coverage
james-a-f-ross Jul 14, 2026
585e00f
improving test coverage
james-a-f-ross Jul 14, 2026
00c6d75
remove breakpoint
james-a-f-ross Jul 14, 2026
1d90eec
more tests
james-a-f-ross Jul 15, 2026
72fc7b3
fix tests (maybe)
james-a-f-ross Jul 15, 2026
0a311d1
testing breaking tests
james-a-f-ross Jul 15, 2026
af300e5
fix conflicts
james-a-f-ross Jul 15, 2026
f67d1ff
investigating testing problems
james-a-f-ross Jul 15, 2026
0207529
investigating testing problems
james-a-f-ross Jul 15, 2026
84cb0ad
merge main and fix conflicts
james-a-f-ross Jul 16, 2026
06a54a5
update description
james-a-f-ross Jul 16, 2026
58456b4
merge with main
james-a-f-ross Jul 20, 2026
22b8f01
remove loaders stuff
james-a-f-ross Jul 20, 2026
27227b6
remove workflow stuff
james-a-f-ross Jul 20, 2026
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
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ source = ["src"]
# TODO: Figure out how to test loaders. This will likely involve having some
# example configurations and may be part of the effort to test the workflow.
# Omit _netCDF4.pyx to work around https://github.com/conda-forge/netcdf4-feedstock/issues/188
omit = ["__main__.py", "src/CSET/loaders/*.py", "_netCDF4.pyx"]
omit = ["__main__.py", "src/CSET/loaders/*.py", "_netCDF4.pyx", "src/CSET/operators/improver/*.py"]

[tool.codespell]
ignore-words-list = "lazyness,meaned,runn,PRES"
Expand All @@ -84,6 +84,7 @@ skip = "build,*.css,*.ipynb,*.js,*.html,*.svg,*.xml,.git"
[tool.ruff]
line-length = 88
src = ["src", "test"]
exclude = ["src/CSET/operators/improver/*"]

[tool.ruff.lint]
extend-select = ["B", "D", "I"]
Expand Down
2 changes: 2 additions & 0 deletions src/CSET/operators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
collapse,
constraints,
convection,
dfss,
ensembles,
feature,
filters,
Expand Down Expand Up @@ -82,6 +83,7 @@
"transect",
"wind",
"write",
"dfss",
]

# Stop iris giving a warning whenever it loads something.
Expand Down
Loading