Skip to content

Commit f45a941

Browse files
Bugfix in default inpainting (#483)
* Update Project.toml * Update dataset.jl * Update dataset.jl
1 parent 448fa7c commit f45a941

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "ClimaOcean"
22
uuid = "0376089a-ecfe-4b0e-a64f-9c555d74d754"
33
license = "MIT"
44
authors = ["Climate Modeling Alliance and contributors"]
5-
version = "0.6.3"
5+
version = "0.6.4"
66

77
[deps]
88
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"

src/DataWrangling/dataset.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ end
3232
function default_inpainting(metadata)
3333
if metadata.name in [:temperature, :salinity]
3434
return NearestNeighborInpainting(Inf)
35-
elseif metadata.name in [:sea_ice_fraction, :sea_ice_thickness]
35+
elseif metadata.name in [:sea_ice_thickness, :sea_ice_concentration]
3636
return nothing
3737
else
3838
return NearestNeighborInpainting(5)

0 commit comments

Comments
 (0)