diff --git a/Project.toml b/Project.toml index 069ba25..dc7d5ac 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "GRIBDatasets" uuid = "82be9cdb-ee19-4151-bdb3-b400788d9abc" authors = ["tcarion and contributors"] -version = "0.3.3" +version = "0.4.0" [deps] CommonDataModel = "1fbeeb36-5f17-413c-809b-666fb144f157" @@ -15,7 +15,7 @@ eccodes_jll = "b04048ba-5ccd-5610-b3f6-85129a548705" CommonDataModel = "0.3.4" DataStructures = "0.18" DiskArrays = "0.3, 0.4" -eccodes_jll = "~2.28" +eccodes_jll = "~2.36" GRIB = "0.3, 0.4" julia = "1" diff --git a/test/dataset.jl b/test/dataset.jl index 76633a4..dab7af6 100644 --- a/test/dataset.jl +++ b/test/dataset.jl @@ -122,9 +122,9 @@ using GRIBDatasets: CDM u = ds2["u"] @test u[:,:, 1, 1] isa AbstractArray{<:Any, 2} @test_throws BoundsError u[:,:,1,2] - u10 = ds2["u10"] + u10 = ds2["avg_10u"] @test GDS._dim_values(GDS._get_dim(u10, "heightAboveGround_2")) == [10] - t2m = ds2["t2m"] + t2m = ds2["mean2t"] @test GDS._dim_values(GDS._get_dim(t2m, "heightAboveGround")) == [2] end diff --git a/test/dimensions.jl b/test/dimensions.jl index 884f63e..1a75534 100644 --- a/test/dimensions.jl +++ b/test/dimensions.jl @@ -79,7 +79,7 @@ using Test @test keys(vertdims) == ["hybrid", "heightAboveGround", "heightAboveGround_2"] - u10 = filter_messages(index, cfVarName = "u10") + u10 = filter_messages(index, cfVarName = "avg_10u") indices = messages_indices(u10, _alldims(u10)) @test indices[1] == [1, 1]