Skip to content

Commit 91a8572

Browse files
authored
Merge pull request #305 from Deltares/compathelper/new_version/2023-10-05-11-53-02-577-02313901943
CompatHelper: bump compat for NCDatasets to 0.13, (keep existing compat)
2 parents 7f67d90 + e545571 commit 91a8572

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Graphs = "1.4"
3838
IfElse = "0.1"
3939
LoggingExtras = "0.4.6,0.5,1"
4040
LoopVectorization = "0.12"
41-
NCDatasets = "0.12.11"
41+
NCDatasets = "0.13"
4242
Parameters = "0.12"
4343
Polyester = "0.7"
4444
Polynomials = "3,4"

docs/src/changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- Documentation: add leakage term to the wflow\_sbm figure, document external input
1212
parameter `ksathorfrac` and fix description of adding external `inflow` to the kinematic
1313
wave.
14+
- Bump compat for NCDatasets to 0.13.
1415

1516
### Changed
1617
- For cyclic parameters different cyclic time inputs are supported (only one common cyclic

test/horizontal_process.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const ldd_mv = 255
44
# read the staticmaps into memory
55
nc = NCDataset(staticmaps_rhine_path)
66
# helper function to get the axis order and directionality right
7-
read_right(nc, var) = reverse(permutedims(nc[var][:]); dims = 2)
7+
read_right(nc, var) = reverse(permutedims(Array(nc[var])); dims = 2)
88
ldd_2d = read_right(nc, "ldd")
99

1010
inds, _ = Wflow.active_indices(ldd_2d, ldd_mv)

0 commit comments

Comments
 (0)