Skip to content

Commit 14dcf50

Browse files
authoredSep 8, 2022
for netcdf, missingval=nothing when there is not Missing in the type (#308)
* netcdf should have missingval=nothing when there is not Missing in the type * better way to test missing union
1 parent 0180bf2 commit 14dcf50

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed
 

‎src/sources/ncdatasets.jl

+1-2
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,7 @@ function _layermetadata(ds, keys)
171171
NamedTuple{map(Symbol, keys)}(dimtypes)
172172
end
173173

174-
missingval(var::NCD.CFVariable) = missing
175-
missingval(ds::NCD.Dataset) = missing
174+
missingval(var::NCD.CFVariable{T}) where T = missing isa T ? missing : nothing
176175

177176
function layerkeys(ds::NCD.Dataset)
178177
dimkeys = _dimkeys(ds)

‎test/sources/ncdatasets.jl

+9
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,15 @@ stackkeys = (
280280
end
281281
end
282282

283+
@testset "no missing value" begin
284+
write("nomissing.nc", boolmask(ncarray) .* 1)
285+
nomissing = Raster("nomissing.nc")
286+
@test missingval(nomissing) == nothing
287+
rm("nomissing.nc")
288+
@test name(ncarray) == :tos
289+
end
290+
291+
283292
@testset "show" begin
284293
sh = sprint(show, MIME("text/plain"), ncarray)
285294
# Test but don't lock this down too much

0 commit comments

Comments
 (0)
Please sign in to comment.