ggebbie / ECCOtour.jl

Take a self-guided tour of the ECCO version 4 release 4 ocean reanalysis product.
MIT License
1 stars 0 forks source link

ECCOtour.maximum not filtering NaNs #33

Closed ggebbie closed 3 years ago

ggebbie commented 3 years ago
problem NaN == NaN is false

replace """ isdry(z) = (z == dryval) """

with

isnan(dryval) ? isdry = isnan : isdry(z) = (z == dryval)

fixed in branch updatepkgs