diff --git a/previews/PR479/404.html b/previews/PR479/404.html index ba775fd8..6d3ef179 100644 --- a/previews/PR479/404.html +++ b/previews/PR479/404.html @@ -9,7 +9,7 @@ - + @@ -19,7 +19,7 @@
- + \ No newline at end of file diff --git a/previews/PR479/UserGuide/cache.html b/previews/PR479/UserGuide/cache.html index 84387d9d..b406b808 100644 --- a/previews/PR479/UserGuide/cache.html +++ b/previews/PR479/UserGuide/cache.html @@ -9,9 +9,9 @@ - + - + @@ -26,7 +26,7 @@ cachesize = 500 #MB cache(ds,maxsize = cachesize)

The above will wrap every array in the dataset into its own cache, where the 500MB are distributed equally across datasets. Alternatively individual caches can be applied to single YAXArrays

julia
yax = ds.avariable
 cache(yax,maxsize = 1000)
- + \ No newline at end of file diff --git a/previews/PR479/UserGuide/chunk.html b/previews/PR479/UserGuide/chunk.html index 97b16607..361a93c8 100644 --- a/previews/PR479/UserGuide/chunk.html +++ b/previews/PR479/UserGuide/chunk.html @@ -9,9 +9,9 @@ - + - + @@ -119,7 +119,7 @@ Variables: x, y, z

Suggestions on how to improve or add to these examples is welcome.

- + \ No newline at end of file diff --git a/previews/PR479/UserGuide/combine.html b/previews/PR479/UserGuide/combine.html index de0819cc..40e468ef 100644 --- a/previews/PR479/UserGuide/combine.html +++ b/previews/PR479/UserGuide/combine.html @@ -9,11 +9,11 @@ - + - + - + @@ -26,9 +26,8 @@ first_half = YAXArray((YAX.time(1:6),), rand(6)) second_half = YAXArray((YAX.time(7:12),), rand(6)) -whole_year = cat(first_half, second_half, dims = 1)
╭────────────────────────────────╮
-│ 12-element YAXArray{Float64,1} │
-├────────────────────────────────┴──────────────────────────────── dims ┐
+whole_year = cat(first_half, second_half, dims = 1)
┌ 12-element YAXArray{Float64, 1} ┐
+├─────────────────────────────────┴─────────────────────────────── dims ┐
   ↓ time Sampled{Int64} [1, 2, …, 11, 12] ForwardOrdered Regular Points
 ├───────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
@@ -41,9 +40,8 @@
 precipitation = YAXArray((YAX.time(1:6),), rand(6))
 cubes = [temperature,precipitation]
 var_axis = Variables(["temp", "prep"])
-combined = concatenatecubes(cubes, var_axis)
╭─────────────────────────╮
-│ 6×2 YAXArray{Float64,2} │
-├─────────────────────────┴───────────────────────────────── dims ┐
+combined = concatenatecubes(cubes, var_axis)
┌ 6×2 YAXArray{Float64, 2} ┐
+├──────────────────────────┴──────────────────────────────── dims ┐
   ↓ time      Sampled{Int64} 1:6 ForwardOrdered Regular Points,
   → Variables Categorical{String} ["temp", "prep"] ReverseOrdered
 ├─────────────────────────────────────────────────────── metadata ┤
@@ -51,7 +49,7 @@
 ├────────────────────────────────────────────────── loaded lazily ┤
   data size: 96.0 bytes
 └─────────────────────────────────────────────────────────────────┘
- + \ No newline at end of file diff --git a/previews/PR479/UserGuide/compute.html b/previews/PR479/UserGuide/compute.html index 50495e4b..69381fa8 100644 --- a/previews/PR479/UserGuide/compute.html +++ b/previews/PR479/UserGuide/compute.html @@ -9,11 +9,11 @@ - + - + - + @@ -32,9 +32,8 @@ ) data = rand(30, 10, 15) properties = Dict(:origin => "user guide") -a = YAXArray(axlist, data, properties)
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+a = YAXArray(axlist, data, properties)
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -43,9 +42,8 @@
   :origin => "user guide"
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 35.16 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.062032476785460866
julia
a[1,2,3] = 42
42
julia
a[1,2,3]
42.0

WARNING

Some arrays, e.g. those saved in a cloud object storage are immutable making any modification of the data impossible.

Arithmetics

Add a value to all elements of an array and save it as a new array:

julia
a2 = a .+ 5
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.053923887690016103
julia
a[1,2,3] = 42
42
julia
a[1,2,3]
42.0

WARNING

Some arrays, e.g. those saved in a cloud object storage are immutable making any modification of the data impossible.

Arithmetics

Add a value to all elements of an array and save it as a new array:

julia
a2 = a .+ 5
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -57,9 +55,8 @@
 └──────────────────────────────────────────────────────────────────────────────┘
julia
a2[1,2,3] == a[1,2,3] + 5
true

map

Apply a function on every element of an array individually:

julia
offset = 5
 map(a) do x
     (x + offset) / 2 * 3
-end
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+end
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -69,18 +66,16 @@
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 35.16 KB
 └──────────────────────────────────────────────────────────────────────────────┘

This keeps all dimensions unchanged. Note, that here we can not access neighboring elements. In this case, we can use mapslices or mapCube instead. Each element of the array is processed individually.

The code runs very fast, because map applies the function lazily. Actual computation will be performed only on demand, e.g. when elements were explicitly requested or further computations were performed.

mapslices

Reduce the time dimension by calculating the average value of all points in time:

julia
import Statistics: mean
-mapslices(mean, a, dims="Time")
╭───────────────────────────────────────────╮
-│ 10×15 YAXArray{Union{Missing, Float64},2} │
-├───────────────────────────────────────────┴──────────────────────────── dims ┐
+mapslices(mean, a, dims="Time")
┌ 10×15 YAXArray{Union{Missing, Float64}, 2} ┐
+├────────────────────────────────────────────┴─────────────────────────── dims ┐
   ↓ lon Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   → lat Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 1.17 KB
-└──────────────────────────────────────────────────────────────────────────────┘

There is no time dimension left, because there is only one value left after averaging all time steps. We can also calculate spatial means resulting in one value per time step:

julia
mapslices(mean, a, dims=("lat", "lon"))
╭────────────────────────────────────────────────╮
-│ 30-element YAXArray{Union{Missing, Float64},1} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

There is no time dimension left, because there is only one value left after averaging all time steps. We can also calculate spatial means resulting in one value per time step:

julia
mapslices(mean, a, dims=("lat", "lon"))
┌ 30-element YAXArray{Union{Missing, Float64}, 1} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
@@ -90,26 +85,23 @@
 using YAXArrays: YAXArrays as YAX
 using Dates

Define function in space and time

julia
f(lo, la, t) = (lo + la + Dates.dayofyear(t))
f (generic function with 1 method)

now, mapCube requires this function to be wrapped as follows

julia
function g(xout, lo, la, t)
     xout .= f.(lo, la, t)
-end
g (generic function with 1 method)

INFO

Note the . after f, this is because we will slice across time, namely, the function is broadcasted along this dimension.

Here, we do create YAXArrays only with the desired dimensions as

julia
julia> lon_yax = YAXArray(lon(range(1, 15)))
╭──────────────────────────────╮
-15-element YAXArray{Int64,1}
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+end
g (generic function with 1 method)

INFO

Note the . after f, this is because we will slice across time, namely, the function is broadcasted along this dimension.

Here, we do create YAXArrays only with the desired dimensions as

julia
julia> lon_yax = YAXArray(lon(range(1, 15)))
15-element YAXArray{Int64, 1}
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
 lon Sampled{Int64} 1:15 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 120.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> lat_yax = YAXArray(lat(range(1, 10)))
╭──────────────────────────────╮
-10-element YAXArray{Int64,1}
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> lat_yax = YAXArray(lat(range(1, 10)))
10-element YAXArray{Int64, 1}
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
 lat Sampled{Int64} 1:10 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 80.0 bytes
 └──────────────────────────────────────────────────────────────────────────────┘

And a time Cube's Axis

julia
tspan = Date("2022-01-01"):Day(1):Date("2022-01-30")
-time_yax = YAXArray(YAX.time(tspan))
╭─────────────────────────────╮
-│ 30-element YAXArray{Date,1} │
-├─────────────────────────────┴────────────────────────────────────────── dims ┐
+time_yax = YAXArray(YAX.time(tspan))
┌ 30-element YAXArray{Date, 1} ┐
+├──────────────────────────────┴───────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
@@ -120,9 +112,8 @@
            outdims = OutDims("time", overwrite=true, path="my_gen_cube.zarr", backend=:zarr,
            outtype = Float32)
            # max_cache=1e9
-       )
╭──────────────────────────────────────────────╮
-30×15×10 YAXArray{Union{Missing, Float32},3}
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+       )
30×15×10 YAXArray{Union{Missing, Float32}, 3}
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
 time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
 lon  Sampled{Int64} 1:15 ForwardOrdered Regular Points,
 lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points
@@ -151,9 +142,8 @@
            outdims = OutDims("lon", overwrite=true, path="my_gen_cube.zarr", backend=:zarr,
            outtype = Float32)
            # max_cache=1e9
-       )
╭──────────────────────────────────────────────╮
-15×10×30 YAXArray{Union{Missing, Float32},3}
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+       )
15×10×30 YAXArray{Union{Missing, Float32}, 3}
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
 lon  Sampled{Int64} 1:15 ForwardOrdered Regular Points,
 lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
 time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points
@@ -194,9 +184,8 @@
 data = rand(1:5, 5, 4, 3, 2)
 
 properties = Dict("description" => "multi dimensional test cube")
-yax_test = YAXArray(axlist, data, properties)
╭───────────────────────────╮
-│ 5×4×3×2 YAXArray{Int64,4} │
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+yax_test = YAXArray(axlist, data, properties)
┌ 5×4×3×2 YAXArray{Int64, 4} ┐
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
   ↓ time      Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-05") ForwardOrdered Regular Points,
   → lon       Sampled{Float64} 1.0:1.0:4.0 ForwardOrdered Regular Points,
   ↗ lat       Sampled{Float64} 1.0:1.0:3.0 ForwardOrdered Regular Points,
@@ -223,9 +212,8 @@
 outdims_two = OutDims("Time"; properties=properties_two)
 outdims_flat = OutDims(;) # it will get the default `layer` name if open as dataset
OutDims((), :auto, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), false, Array, :input, 1)
julia
ds = mapCube(one_to_many, yax_test,
     indims = indims_one,
-    outdims = (outdims_one, outdims_two, outdims_flat));

let's see the second output

julia
ds[2]
╭───────────────────────────────────────────╮
-│ 5×4×3×2 YAXArray{Union{Missing, Int64},4} │
-├───────────────────────────────────────────┴──────────────────────────── dims ┐
+    outdims = (outdims_one, outdims_two, outdims_flat));

let's see the second output

julia
ds[2]
┌ 5×4×3×2 YAXArray{Union{Missing, Int64}, 4} ┐
+├────────────────────────────────────────────┴─────────────────────────── dims ┐
   ↓ time      Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-05") ForwardOrdered Regular Points,
   → lon       Sampled{Float64} 1.0:1.0:4.0 ForwardOrdered Regular Points,
   ↗ lat       Sampled{Float64} 1.0:1.0:3.0 ForwardOrdered Regular Points,
@@ -236,9 +224,8 @@
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 960.0 bytes
 └──────────────────────────────────────────────────────────────────────────────┘

Many InDims to many OutDims

Let's consider a second test set

julia
properties_2d = Dict("description" => "2d dimensional test cube")
-yax_2d = YAXArray(axlist[2:end], rand(-1:1, 4, 3, 2), properties_2d)
╭─────────────────────────╮
-│ 4×3×2 YAXArray{Int64,3} │
-├─────────────────────────┴───────────────────────────────────────── dims ┐
+yax_2d = YAXArray(axlist[2:end], rand(-1:1, 4, 3, 2), properties_2d)
┌ 4×3×2 YAXArray{Int64, 3} ┐
+├──────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ lon       Sampled{Float64} 1.0:1.0:4.0 ForwardOrdered Regular Points,
   → lat       Sampled{Float64} 1.0:1.0:3.0 ForwardOrdered Regular Points,
   ↗ Variables Categorical{String} ["a", "b"] ForwardOrdered
@@ -271,9 +258,8 @@
 data = rand(3.0:5.0, 5, 4, 3)
 
 axlist = (lon(1:4), lat(1:3), Dim{:depth}(1:7),)
-yax_2d = YAXArray(axlist, rand(-3.0:0.0, 4, 3, 7))
╭───────────────────────────╮
-│ 4×3×7 YAXArray{Float64,3} │
-├───────────────────────────┴───────────────────────── dims ┐
+yax_2d = YAXArray(axlist, rand(-3.0:0.0, 4, 3, 7))
┌ 4×3×7 YAXArray{Float64, 3} ┐
+├────────────────────────────┴──────────────────────── dims ┐
   ↓ lon   Sampled{Int64} 1:4 ForwardOrdered Regular Points,
   → lat   Sampled{Int64} 1:3 ForwardOrdered Regular Points,
   ↗ depth Sampled{Int64} 1:7 ForwardOrdered Regular Points
@@ -288,9 +274,8 @@
     lon(1:4), lat(1:3),)
 
 properties = Dict("description" => "multi dimensional test cube")
-yax_test = YAXArray(axlist, data, properties)
╭───────────────────────────╮
-│ 5×4×3 YAXArray{Float64,3} │
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+yax_test = YAXArray(axlist, data, properties)
┌ 5×4×3 YAXArray{Float64, 3} ┐
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-05") ForwardOrdered Regular Points,
   → lon  Sampled{Int64} 1:4 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Int64} 1:3 ForwardOrdered Regular Points
@@ -310,9 +295,8 @@
     return nothing
 end
time_depth (generic function with 1 method)

with the final mapCube operation as follows

julia
ds = mapCube(time_depth, (yax_test, yax_2d),
     indims = (InDims("Time"), InDims("depth")), # ? anchor dimensions and then map over the others.
-    outdims = OutDims("Time"))
╭───────────────────────────────────────────╮
-│ 5×4×3 YAXArray{Union{Missing, Float64},3} │
-├───────────────────────────────────────────┴──────────────────────────── dims ┐
+    outdims = OutDims("Time"))
┌ 5×4×3 YAXArray{Union{Missing, Float64}, 3} ┐
+├────────────────────────────────────────────┴─────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-05") ForwardOrdered Regular Points,
   → lon  Sampled{Int64} 1:4 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Int64} 1:3 ForwardOrdered Regular Points
@@ -331,9 +315,8 @@
     lat(range(1, 5, length=15)),
 )
 data = rand(30, 10, 15)
-raster_arr = YAXArray(axlist, data)
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+raster_arr = YAXArray(axlist, data)
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -347,9 +330,8 @@
     10 <= lon < 15 && 1 <= lat < 5 && return "C"
     return "D"
 end
-regions_mat = DimArray(regions_mat, (raster_arr.lon, raster_arr.lat))
╭──────────────────────────╮
-│ 10×15 DimArray{String,2} │
-├──────────────────────────┴───────────────────────────────────────────── dims ┐
+regions_mat = DimArray(regions_mat, (raster_arr.lon, raster_arr.lat))
┌ 10×15 DimArray{String, 2} ┐
+├───────────────────────────┴──────────────────────────────────────────── dims ┐
   ↓ lon Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   → lat Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
 └──────────────────────────────────────────────────────────────────────────────┘
@@ -363,9 +345,8 @@
   7.0   "A"   "A"      "A"      "A"         "A"      "A"      "A"      "B"
   8.0   "A"   "A"      "A"      "A"         "A"      "A"      "A"      "B"
   9.0   "A"   "A"      "A"      "A"         "A"      "A"      "A"      "B"
- 10.0   "C"   "C"      "C"      "C"     …   "C"      "C"      "C"      "D"

which has the same spatial dimensions as the raster array at any given point in time:

julia
DimArray(raster_arr[time = 1])
╭───────────────────────────╮
-│ 10×15 DimArray{Float64,2} │
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+ 10.0   "C"   "C"      "C"      "C"     …   "C"      "C"      "C"      "D"

which has the same spatial dimensions as the raster array at any given point in time:

julia
DimArray(raster_arr[time = 1])
┌ 10×15 DimArray{Float64, 2} ┐
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
   ↓ lon Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   → lat Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -394,9 +375,8 @@
         # aggregate values of points in the current region at the current date
         xout[region_pos] = sum(view(xin, points))
     end
-end
╭──────────────────────────────────────────╮
-│ 4×30 YAXArray{Union{Missing, Float64},2} │
-├──────────────────────────────────────────┴───────────────────────────── dims ┐
+end
┌ 4×30 YAXArray{Union{Missing, Float64}, 2} ┐
+├───────────────────────────────────────────┴──────────────────────────── dims ┐
   ↓ region Categorical{String} ["A", "B", "C", "D"] ForwardOrdered,
   → time   Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -433,7 +413,7 @@
 mapCube(mymean, a, indims=InDims("time"), outdims=OutDims())

In the last example, mapCube was used to map the mymean function. mapslices is a convenient function that can replace mapCube, where you can omit defining an extra function with the output argument as an input (e.g. mymean). It is possible to simply use mapslice

julia
mapslices(mean  skipmissing, a, dims="time")

It is also possible to distribute easily the workload on a cluster, with little modification to the code. To do so, we use the ClusterManagers package.

julia
using Distributed
 using ClusterManagers
 addprocs(SlurmManager(10))
- + \ No newline at end of file diff --git a/previews/PR479/UserGuide/convert.html b/previews/PR479/UserGuide/convert.html index cbaba2b1..95538123 100644 --- a/previews/PR479/UserGuide/convert.html +++ b/previews/PR479/UserGuide/convert.html @@ -9,11 +9,11 @@ - + - + - + @@ -24,9 +24,8 @@
Skip to content

Convert YAXArrays

This section describes how to convert variables from types of other Julia packages into YAXArrays and vice versa.

WARNING

YAXArrays is designed to work with large datasets that are way larger than the memory. However, most types are designed to work in memory. Those conversions are only possible if the entire dataset fits into memory. In addition, metadata might be lost during conversion.

Convert Base.Array

Convert Base.Array to YAXArray:

julia
using YAXArrays
 
 m = rand(5,10)
-a = YAXArray(m)
╭──────────────────────────╮
-│ 5×10 YAXArray{Float64,2} │
-├──────────────────────────┴──────────────────────────────────── dims ┐
+a = YAXArray(m)
┌ 5×10 YAXArray{Float64, 2} ┐
+├───────────────────────────┴─────────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────── metadata ┤
@@ -47,18 +46,16 @@
 using YAXArrayBase
 
 dim_arr = rand(X(1:5), Y(10.0:15.0), metadata = Dict{String, Any}())
-a = yaxconvert(YAXArray, dim_arr)
╭─────────────────────────╮
-│ 5×6 YAXArray{Float64,2} │
-├─────────────────────────┴────────────────────────────────── dims ┐
+a = yaxconvert(YAXArray, dim_arr)
┌ 5×6 YAXArray{Float64, 2} ┐
+├──────────────────────────┴───────────────────────────────── dims ┐
   ↓ X Sampled{Int64} 1:5 ForwardOrdered Regular Points,
   → Y Sampled{Float64} 10.0:1.0:15.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────── loaded in memory ┤
   data size: 240.0 bytes
-└──────────────────────────────────────────────────────────────────┘

Convert YAXArray to DimArray:

julia
dim_arr2 = yaxconvert(DimArray, a)
╭─────────────────────────╮
-│ 5×6 DimArray{Float64,2} │
-├─────────────────────────┴────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────┘

Convert YAXArray to DimArray:

julia
dim_arr2 = yaxconvert(DimArray, a)
┌ 5×6 DimArray{Float64, 2} ┐
+├──────────────────────────┴───────────────────────────────── dims ┐
   ↓ X Sampled{Int64} 1:5 ForwardOrdered Regular Points,
   → Y Sampled{Float64} 10.0:1.0:15.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────── metadata ┤
@@ -70,7 +67,7 @@
  3     0.492817   0.718667    0.0702532   0.926096   0.225542   0.100622
  4     0.268675   0.0566881   0.916686    0.973332   0.744521   0.052264
  5     0.540514   0.215973    0.617023    0.796375   0.13205    0.366625

INFO

At the moment there is no support to save a DimArray directly into disk as a NetCDF or a Zarr file.

- + \ No newline at end of file diff --git a/previews/PR479/UserGuide/create.html b/previews/PR479/UserGuide/create.html index 1e5584aa..8f2a83fd 100644 --- a/previews/PR479/UserGuide/create.html +++ b/previews/PR479/UserGuide/create.html @@ -9,11 +9,11 @@ - + - + - + @@ -24,9 +24,8 @@
Skip to content

Create YAXArrays and Datasets

This section describes how to create arrays and datasets by filling values directly.

Create a YAXArray

We can create a new YAXArray by filling the values directly:

julia
using YAXArrays
 using YAXArrays: YAXArrays as YAX
 
-a1 = YAXArray(rand(10, 20, 5))
╭─────────────────────────────╮
-│ 10×20×5 YAXArray{Float64,3} │
-├─────────────────────────────┴────────────────────────────────── dims ┐
+a1 = YAXArray(rand(10, 20, 5))
┌ 10×20×5 YAXArray{Float64, 3} ┐
+├──────────────────────────────┴───────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(20) ForwardOrdered Regular Points,
   ↗ Dim_3 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points
@@ -43,9 +42,8 @@
 )
 data2 = rand(30, 10, 15)
 properties = Dict(:origin => "user guide")
-a2 = YAXArray(axlist, data2, properties)
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+a2 = YAXArray(axlist, data2, properties)
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -71,7 +69,7 @@
 a2, a3
 
 Properties: Dict(:origin => "user guide")
- + \ No newline at end of file diff --git a/previews/PR479/UserGuide/faq.html b/previews/PR479/UserGuide/faq.html index 86400016..782d56ad 100644 --- a/previews/PR479/UserGuide/faq.html +++ b/previews/PR479/UserGuide/faq.html @@ -9,11 +9,11 @@ - + - + - + @@ -22,9 +22,8 @@
Skip to content

Frequently Asked Questions (FAQ)

The purpose of this section is to do a collection of small convinient pieces of code on how to do simple things.

Extract the axes names from a Cube

julia
using YAXArrays
-using DimensionalData
julia
julia> c = YAXArray(rand(10, 10, 5))
╭─────────────────────────────╮
-10×10×5 YAXArray{Float64,3}
-├─────────────────────────────┴────────────────────────────────────────── dims ┐
+using DimensionalData
julia
julia> c = YAXArray(rand(10, 10, 5))
10×10×5 YAXArray{Float64, 3}
+├──────────────────────────────┴───────────────────────────────────────── dims ┐
 Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
 Dim_3 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points
@@ -39,27 +38,24 @@
 Dim_3 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points)

INFO

Also, use DD.rebuild(c, values) to copy axes from c and build a new cube but with different values.

rebuild

As an example let's consider the following

julia
using YAXArrays
 using DimensionalData
 
-c = YAXArray(ones(Int, 10,10))
╭─────────────────────────╮
-│ 10×10 YAXArray{Int64,2} │
-├─────────────────────────┴────────────────────────────────────── dims ┐
+c = YAXArray(ones(Int, 10,10))
┌ 10×10 YAXArray{Int64, 2} ┐
+├──────────────────────────┴───────────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────── loaded in memory ┤
   data size: 800.0 bytes
-└──────────────────────────────────────────────────────────────────────┘

then creating a new c with the same structure (axes) but different values is done by

julia
julia> new_c = rebuild(c, rand(10,10))
╭───────────────────────────╮
-10×10 YAXArray{Float64,2}
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────┘

then creating a new c with the same structure (axes) but different values is done by

julia
julia> new_c = rebuild(c, rand(10,10))
10×10 YAXArray{Float64, 2}
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
 Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 800.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

note that the type is now Float64. Or, we could create a new structure but using the dimensions from yax explicitly

julia
julia> c_c = YAXArray(dims(c), rand(10,10))
╭───────────────────────────╮
-10×10 YAXArray{Float64,2}
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

note that the type is now Float64. Or, we could create a new structure but using the dimensions from yax explicitly

julia
julia> c_c = YAXArray(dims(c), rand(10,10))
10×10 YAXArray{Float64, 2}
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
 Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -77,9 +73,8 @@
   7
   8
   9
- 10

to collect data from a cube works exactly the same as doing it from an array

julia
julia> c[:, :, 1]
╭─────────────────────────╮
-10×10 YAXArray{Int64,2}
-├─────────────────────────┴────────────────────────────────────────────── dims ┐
+ 10

to collect data from a cube works exactly the same as doing it from an array

julia
julia> c[:, :, 1]
10×10 YAXArray{Int64, 2}
+├──────────────────────────┴───────────────────────────────────────────── dims ┐
 Dim_1 Sampled{Int64} 1:10 ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} 1:10 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -99,9 +94,8 @@
 ds1 = YAXArray(axlist, data1)
 
 data2 = rand(20, 10, 15)
-ds2 = YAXArray(axlist, data2)

Now we can concatenate ds1 and ds2:

julia
julia> dsfinal = concatenatecubes([ds1, ds2], Dim{:Variables}(["var1", "var2"]))
╭────────────────────────────────╮
-20×10×15×2 YAXArray{Float64,4}
-├────────────────────────────────┴─────────────────────────────────────── dims ┐
+ds2 = YAXArray(axlist, data2)

Now we can concatenate ds1 and ds2:

julia
julia> dsfinal = concatenatecubes([ds1, ds2], Dim{:Variables}(["var1", "var2"]))
20×10×15×2 YAXArray{Float64, 4}
+├─────────────────────────────────┴────────────────────────────────────── dims ┐
 time      Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points,
 lon       Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat       Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points,
@@ -114,9 +108,8 @@
 using Dates # To generate the dates of the time axis
 using DimensionalData # To use the "Between" option for selecting data, however the intervals notation should be used instead, i.e. `a .. b`.

Define the time span of the YAXArray

julia
t = Date("2020-01-01"):Month(1):Date("2022-12-31")
Date("2020-01-01"):Dates.Month(1):Date("2022-12-01")

create YAXArray axes

julia
axes = (Lon(1:10), Lat(1:10), YAX.Time(t))
(↓ Lon  1:10,
 → Lat  1:10,
-↗ Time Date("2020-01-01"):Dates.Month(1):Date("2022-12-01"))

create the YAXArray

julia
y = YAXArray(axes, reshape(1:3600, (10, 10, 36)))
╭────────────────────────────╮
-│ 10×10×36 YAXArray{Int64,3} │
-├────────────────────────────┴─────────────────────────────────────────── dims ┐
+↗ Time Date("2020-01-01"):Dates.Month(1):Date("2022-12-01"))

create the YAXArray

julia
y = YAXArray(axes, reshape(1:3600, (10, 10, 36)))
┌ 10×10×36 YAXArray{Int64, 3} ┐
+├─────────────────────────────┴────────────────────────────────────────── dims ┐
   ↓ Lon  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   → Lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   ↗ Time Sampled{Date} Date("2020-01-01"):Dates.Month(1):Date("2022-12-01") ForwardOrdered Regular Points
@@ -124,9 +117,8 @@
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 28.12 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Now we subset the YAXArray by any dimension.

Subset YAXArray by years

julia
ytime = y[Time=Between(Date(2021,1,1), Date(2021,12,31))]
╭────────────────────────────╮
-│ 10×10×12 YAXArray{Int64,3} │
-├────────────────────────────┴─────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Now we subset the YAXArray by any dimension.

Subset YAXArray by years

julia
ytime = y[Time=Between(Date(2021,1,1), Date(2021,12,31))]
┌ 10×10×12 YAXArray{Int64, 3} ┐
+├─────────────────────────────┴────────────────────────────────────────── dims ┐
   ↓ Lon  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   → Lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   ↗ Time Sampled{Date} Date("2021-01-01"):Dates.Month(1):Date("2021-12-01") ForwardOrdered Regular Points
@@ -134,18 +126,16 @@
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 9.38 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Subset YAXArray by a specific date

julia
ytime2 = y[Time=At(Date("2021-05-01"))]
╭─────────────────────────╮
-│ 10×10 YAXArray{Int64,2} │
-├─────────────────────────┴────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Subset YAXArray by a specific date

julia
ytime2 = y[Time=At(Date("2021-05-01"))]
┌ 10×10 YAXArray{Int64, 2} ┐
+├──────────────────────────┴───────────────────────── dims ┐
   ↓ Lon Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   → Lat Sampled{Int64} 1:10 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────── loaded in memory ┤
   data size: 800.0 bytes
-└──────────────────────────────────────────────────────────┘

Subset YAXArray by a date range

julia
ytime3 = y[Time=Date("2021-05-01") .. Date("2021-12-01")]
╭───────────────────────────╮
-│ 10×10×8 YAXArray{Int64,3} │
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────┘

Subset YAXArray by a date range

julia
ytime3 = y[Time=Date("2021-05-01") .. Date("2021-12-01")]
┌ 10×10×8 YAXArray{Int64, 3} ┐
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
   ↓ Lon  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   → Lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   ↗ Time Sampled{Date} Date("2021-05-01"):Dates.Month(1):Date("2021-12-01") ForwardOrdered Regular Points
@@ -153,9 +143,8 @@
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 6.25 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Subset YAXArray by longitude and latitude

julia
ylonlat = y[Lon=1 .. 5, Lat=5 .. 10]
╭──────────────────────────╮
-│ 5×6×36 YAXArray{Int64,3} │
-├──────────────────────────┴───────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Subset YAXArray by longitude and latitude

julia
ylonlat = y[Lon=1 .. 5, Lat=5 .. 10]
┌ 5×6×36 YAXArray{Int64, 3} ┐
+├───────────────────────────┴──────────────────────────────────────────── dims ┐
   ↓ Lon  Sampled{Int64} 1:5 ForwardOrdered Regular Points,
   → Lat  Sampled{Int64} 5:10 ForwardOrdered Regular Points,
   ↗ Time Sampled{Date} Date("2020-01-01"):Dates.Month(1):Date("2022-12-01") ForwardOrdered Regular Points
@@ -221,7 +210,7 @@
   Additional Axes: 
   (↓ points Sampled{Int64} [2, 4, …, 96, 98] ForwardOrdered Irregular Points)
   Variables: 
-  longitudes
+  latitudes
 
   Additional Axes: 
   (↓ points Sampled{Int64} [2, 4, …, 96, 98] ForwardOrdered Irregular Points,
@@ -232,7 +221,7 @@
   Additional Axes: 
   (↓ points Sampled{Int64} [2, 4, …, 96, 98] ForwardOrdered Irregular Points)
   Variables: 
-  latitudes

If your dataset has been read from a file with Cube it is not loaded into memory, and you have to load the latitudes and longitudes YAXArrays into memory:

julia
latitudes_yasxa  = readcubedata(ds["latitudes"])
+  longitudes

If your dataset has been read from a file with Cube it is not loaded into memory, and you have to load the latitudes and longitudes YAXArrays into memory:

julia
latitudes_yasxa  = readcubedata(ds["latitudes"])
 longitudes_yasxa = readcubedata(ds["longitudes"])
 ds_subset = ds[points = Where(p-> latitudes_yasxa[p]  >= 20 && latitudes_yasxa[p]  <= 80 &&
                              longitudes_yasxa[p] >= 0  && longitudes_yasxa[p] <= 180
@@ -255,9 +244,8 @@
   Additional Axes: 
   (↓ points Sampled{Int64} [2, 4, …, 96, 98] ForwardOrdered Irregular Points)
   Variables: 
-  longitudes

How do I apply map algebra?

Our next step is map algebra computations. This can be done effectively using the 'map' function. For example:

Multiplying cubes with only spatio-temporal dimensions

julia
julia> map((x, y) -> x * y, ds1, ds2)
╭──────────────────────────────╮
-20×10×15 YAXArray{Float64,3}
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+  longitudes

How do I apply map algebra?

Our next step is map algebra computations. This can be done effectively using the 'map' function. For example:

Multiplying cubes with only spatio-temporal dimensions

julia
julia> map((x, y) -> x * y, ds1, ds2)
20×10×15 YAXArray{Float64, 3}
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
 time Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points,
 lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -265,9 +253,8 @@
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 23.44 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Cubes with more than 3 dimensions

julia
julia> map((x, y) -> x * y, dsfinal[Variables=At("var1")], dsfinal[Variables=At("var2")])
╭──────────────────────────────╮
-20×10×15 YAXArray{Float64,3}
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Cubes with more than 3 dimensions

julia
julia> map((x, y) -> x * y, dsfinal[Variables=At("var1")], dsfinal[Variables=At("var2")])
20×10×15 YAXArray{Float64, 3}
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
 time Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points,
 lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -277,9 +264,8 @@
   data size: 23.44 KB
 └──────────────────────────────────────────────────────────────────────────────┘

To add some complexity, we will multiply each value for π and then divided for the sum of each time step. We will use the ds1 cube for this purpose.

julia
julia> mapslices(ds1, dims=("Lon", "Lat")) do xin
            (xin * π) ./ maximum(skipmissing(xin))
-       end
╭──────────────────────────────────────────────╮
-10×15×20 YAXArray{Union{Missing, Float64},3}
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+       end
10×15×20 YAXArray{Union{Missing, Float64}, 3}
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
 lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points,
 time Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points
@@ -287,9 +273,8 @@
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 23.44 KB
-└──────────────────────────────────────────────────────────────────────────────┘

How do I use the CubeTable function?

The function "CubeTable" creates an iterable table and the result is a DataCube. It is therefore very handy for grouping data and computing statistics by class. It uses OnlineStats.jl to calculate statistics, and weighted statistics can be calculated as well.

Here we will use the ds1 Cube defined previously and we create a mask for data classification.

Cube containing a mask with classes 1, 2 and 3.

julia
julia> classes = YAXArray((getAxis("lon", dsfinal), getAxis("lat", dsfinal)), rand(1:3, 10, 15))
╭─────────────────────────╮
-10×15 YAXArray{Int64,2}
-├─────────────────────────┴────────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

How do I use the CubeTable function?

The function "CubeTable" creates an iterable table and the result is a DataCube. It is therefore very handy for grouping data and computing statistics by class. It uses OnlineStats.jl to calculate statistics, and weighted statistics can be calculated as well.

Here we will use the ds1 Cube defined previously and we create a mask for data classification.

Cube containing a mask with classes 1, 2 and 3.

julia
julia> classes = YAXArray((getAxis("lon", dsfinal), getAxis("lat", dsfinal)), rand(1:3, 10, 15))
10×15 YAXArray{Int64, 2}
+├──────────────────────────┴───────────────────────────────────────────── dims ┐
 lon Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -306,17 +291,15 @@
 using OnlineStats
 ## visualization of the CubeTable
 c_tbl = DataFrame(t[1])
-first(c_tbl, 5)

In this line we calculate the Mean for each class

julia
julia> fitcube = cubefittable(t, Mean, :values, by=(:classes))
╭───────────────────────────────────────────────╮
-3-element YAXArray{Union{Missing, Float64},1}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+first(c_tbl, 5)

In this line we calculate the Mean for each class

julia
julia> fitcube = cubefittable(t, Mean, :values, by=(:classes))
3-element YAXArray{Union{Missing, Float64}, 1}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 classes Sampled{Int64} [1, 2, 3] ForwardOrdered Irregular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 24.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

We can also use more than one criteria for grouping the values. In the next example, the mean is calculated for each class and timestep.

julia
julia> fitcube = cubefittable(t, Mean, :values, by=(:classes, :time))
╭──────────────────────────────────────────╮
-3×20 YAXArray{Union{Missing, Float64},2}
-├──────────────────────────────────────────┴───────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

We can also use more than one criteria for grouping the values. In the next example, the mean is calculated for each class and timestep.

julia
julia> fitcube = cubefittable(t, Mean, :values, by=(:classes, :time))
3×20 YAXArray{Union{Missing, Float64}, 2}
+├───────────────────────────────────────────┴──────────────────────────── dims ┐
 classes Sampled{Int64} [1, 2, 3] ForwardOrdered Irregular Points,
 time    Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -334,15 +317,15 @@
 None
 Variables with additional axes:
   Additional Axes: 
-  (Dim_1 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points,
-Dim_2 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points)
+  (Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points)
   Variables: 
-  c
+  a
 
   Additional Axes: 
-  (Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points)
+  (Dim_1 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points,
+Dim_2 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points)
   Variables: 
-  a
+  c
 
   Additional Axes: 
   (Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
@@ -365,7 +348,7 @@
   (time      Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 Variables Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
   Variables: 
-  Stock3
+  Stock1
 
   Additional Axes: 
   (time      Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
@@ -377,16 +360,15 @@
   (time      Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 Variables Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
   Variables: 
-  Stock1

and, it looks like there some small differences in the axes, they are being printed independently although they should be the same. Well, they are at least at the == level but not at ===. We could use the axes from one YAXArray as reference and rebuild all the others

julia
yax_list = [rebuild(yax_list[1], values(stocks[k])) for k in d_keys];

and voilà

julia
julia> ds = Dataset(; (d_keys .=> yax_list)...)
YAXArray Dataset
+  Stock3

and, it looks like there some small differences in the axes, they are being printed independently although they should be the same. Well, they are at least at the == level but not at ===. We could use the axes from one YAXArray as reference and rebuild all the others

julia
yax_list = [rebuild(yax_list[1], values(stocks[k])) for k in d_keys];

and voilà

julia
julia> ds = Dataset(; (d_keys .=> yax_list)...)
YAXArray Dataset
 Shared Axes:
   (time      Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 Variables Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
 
 Variables: 
 Stock1, Stock2, Stock3

now they are printed together, showing that is exactly the same axis structure for all variables.

Create a YAXArray with unions containing Strings

julia
test_x = stack(Vector{Union{Int,String}}[[1, "Test"], [2, "Test2"]])
-yax_string = YAXArray(test_x)
╭──────────────────────────────────────╮
-│ 2×2 YAXArray{Union{Int64, String},2} │
-├──────────────────────────────────────┴──────────────────────── dims ┐
+yax_string = YAXArray(test_x)
┌ 2×2 YAXArray{Union{Int64, String}, 2} ┐
+├───────────────────────────────────────┴─────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────── metadata ┤
@@ -394,9 +376,8 @@
 ├─────────────────────────────────────────────────── loaded in memory ┤
   summarysize: 121.0 bytes
 └─────────────────────────────────────────────────────────────────────┘

or simply with an Any type

julia
test_bool = ["Test1" 1 false; 2 "Test2" true; 1 2f0 1f2]
-yax_bool = YAXArray(test_bool)
╭─────────────────────╮
-│ 3×3 YAXArray{Any,2} │
-├─────────────────────┴───────────────────────────────────────── dims ┐
+yax_bool = YAXArray(test_bool)
┌ 3×3 YAXArray{Any, 2} ┐
+├──────────────────────┴──────────────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(3) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(3) ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────── metadata ┤
@@ -404,7 +385,7 @@
 ├─────────────────────────────────────────────────── loaded in memory ┤
   summarysize: 172.0 bytes
 └─────────────────────────────────────────────────────────────────────┘

WARNING

Note that although their creation is allowed, it is not possible to save these types into Zarr or NetCDF.

- + \ No newline at end of file diff --git a/previews/PR479/UserGuide/group.html b/previews/PR479/UserGuide/group.html index 844d8a69..6dc3742f 100644 --- a/previews/PR479/UserGuide/group.html +++ b/previews/PR479/UserGuide/group.html @@ -9,11 +9,11 @@ - + - + - + @@ -28,12 +28,40 @@ using Dates using Statistics
[ Info: new driver key :netcdf, updating backendlist.

Seasonal Averages from Time Series of Monthly Means

The following reproduces the example in xarray by Joe Hamman.

Where the goal is to calculate the seasonal average. And in order to do this properly, is necessary to calculate the weighted average considering that each month has a different number of days.

Download the data

julia
url_path = "https://github.com/pydata/xarray-data/raw/master/rasm.nc"
 filename = Downloads.download(url_path, "rasm.nc")
-ds_o = Cube(filename)

WARNING

The following rebuild should not be necessary in the future, plus is unpractical to use for large data sets. Out of memory groupby currently is work in progress. Related to https://github.com/rafaqz/DimensionalData.jl/issues/642

julia
axs = dims(ds_o) # get the dimensions
-data = ds_o.data[:,:,:] # read the data
-_FillValue = ds_o.properties["_FillValue"]
-data = replace(data, _FillValue => NaN)
-# create new YAXArray
-ds = YAXArray(axs, data)

GroupBy: seasons

function weighted_seasons(ds) ... end
julia
function weighted_seasons(ds)
+ds_o = Cube(filename)
┌ 275×205×36 YAXArray{Float64, 3} ┐
+├─────────────────────────────────┴────────────────────────────────────── dims ┐
+  ↓ x    Sampled{Int64} 1:275 ForwardOrdered Regular Points,
+  → y    Sampled{Int64} 1:205 ForwardOrdered Regular Points,
+  ↗ time Sampled{CFTime.DateTimeNoLeap} [CFTime.DateTimeNoLeap(1980-09-16T12:00:00), …, CFTime.DateTimeNoLeap(1983-08-17T00:00:00)] ForwardOrdered Irregular Points
+├──────────────────────────────────────────────────────────────────── metadata ┤
+  Dict{String, Any} with 7 entries:
+  "units"          => "C"
+  "coordinates"    => "yc xc"
+  "name"           => "Tair"
+  "long_name"      => "Surface air temperature"
+  "type_preferred" => "double"
+  "_FillValue"     => 9.96921e36
+  "time_rep"       => "instantaneous"
+├─────────────────────────────────────────────────────────────── loaded lazily ┤
+  data size: 15.48 MB
+└──────────────────────────────────────────────────────────────────────────────┘

WARNING

The following rebuild should not be necessary in the future, plus is unpractical to use for large data sets. Out of memory groupby currently is work in progress. Related to https://github.com/rafaqz/DimensionalData.jl/issues/642

julia
_FillValue = ds_o.properties["_FillValue"]
+ds = replace(ds_o[:,:,:], _FillValue => NaN) # load into memory and replace _FillValue by NaN
┌ 275×205×36 YAXArray{Float64, 3} ┐
+├─────────────────────────────────┴────────────────────────────────────── dims ┐
+  ↓ x    Sampled{Int64} 1:275 ForwardOrdered Regular Points,
+  → y    Sampled{Int64} 1:205 ForwardOrdered Regular Points,
+  ↗ time Sampled{CFTime.DateTimeNoLeap} [CFTime.DateTimeNoLeap(1980-09-16T12:00:00), …, CFTime.DateTimeNoLeap(1983-08-17T00:00:00)] ForwardOrdered Irregular Points
+├──────────────────────────────────────────────────────────────────── metadata ┤
+  Dict{String, Any} with 7 entries:
+  "units"          => "C"
+  "coordinates"    => "yc xc"
+  "name"           => "Tair"
+  "long_name"      => "Surface air temperature"
+  "type_preferred" => "double"
+  "_FillValue"     => 9.96921e36
+  "time_rep"       => "instantaneous"
+├──────────────────────────────────────────────────────────── loaded in memory ┤
+  data size: 15.48 MB
+└──────────────────────────────────────────────────────────────────────────────┘

GroupBy: seasons

function weighted_seasons(ds) ... end
julia
function weighted_seasons(ds)
     # calculate weights 
     tempo = dims(ds, :time)
     month_length = YAXArray((tempo,), daysinmonth.(tempo))
@@ -52,8 +80,7 @@
     diff_g = map(.-, weighted_g, mean_g)
     seasons_g = lookup(mean_g, :time)
     return mean_g, weighted_g, diff_g, seasons_g
-end

Now, we continue with the groupby operations as usual

julia
julia> g_ds = groupby(ds, YAX.time => seasons(; start=December))
╭──────────────────────────────────────────────────╮
-4-element DimGroupByArray{YAXArray{Float64,2},1}
+end

Now, we continue with the groupby operations as usual

julia
julia> g_ds = groupby(ds, YAX.time => seasons(; start=December))
4-element DimGroupByArray{YAXArray{Float64,2},1}
 ├──────────────────────────────────────────────────┴───────────────────── dims ┐
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -65,8 +92,7 @@
  :Dec_Jan_Feb  275×205×9 YAXArray
  :Mar_Apr_May  275×205×9 YAXArray
  :Jun_Jul_Aug  275×205×9 YAXArray
- :Sep_Oct_Nov  275×205×9 YAXArray

And the mean per season is calculated as follows

julia
julia> mean_g = mean.(g_ds, dims=:time)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 3, Array{Float64, 3}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}},1}
+ :Sep_Oct_Nov  275×205×9 YAXArray

Note how we are referencing the `time` dimension via `YAX.time`. This approach is used to avoid name clashes with `time` (`Time`) from `Base` (`Dates`). For convenience, we have defined the `Dimensions` `time` and `Time` in `YAXArrays.jl`, which are only accessible when explicitly called.

And the mean per season is calculated as follows

julia
julia> mean_g = mean.(g_ds, dims=:time)
4-element DimArray{YAXArray{Float64, 3, Array{Float64, 3}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -76,8 +102,7 @@
  :Dec_Jan_Feb  …  [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 11.1372 11.3835; NaN NaN … 11.3252 11.5843;;;]
  :Mar_Apr_May     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.1363 21.018; NaN NaN … 21.4325 21.1762;;;]
  :Jun_Jul_Aug     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 28.2818 27.9432; NaN NaN … 28.619 28.0537;;;]
- :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.7119 21.7158; NaN NaN … 21.9682 21.9404;;;]

dropdims

Note that now the time dimension has length one, we can use dropdims to remove it

julia
julia> mean_g = dropdims.(mean_g, dims=:time)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}},1}
+ :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.7119 21.7158; NaN NaN … 21.9682 21.9404;;;]

dropdims

Note that now the time dimension has length one, we can use dropdims to remove it

julia
julia> mean_g = dropdims.(mean_g, dims=:time)
4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -93,16 +118,14 @@
  :Mar_Apr_May
  :Jun_Jul_Aug
  :Sep_Oct_Nov

Next, we will weight this grouping by days/month in each group.

GroupBy: weight

Create a YAXArray for the month length

julia
tempo = dims(ds, :time)
-month_length = YAXArray((tempo,), daysinmonth.(tempo))
╭──────────────────────────────╮
-│ 36-element YAXArray{Int64,1} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+month_length = YAXArray((tempo,), daysinmonth.(tempo))
┌ 36-element YAXArray{Int64, 1} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{CFTime.DateTimeNoLeap} [CFTime.DateTimeNoLeap(1980-09-16T12:00:00), …, CFTime.DateTimeNoLeap(1983-08-17T00:00:00)] ForwardOrdered Irregular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 288.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

Now group it by season

julia
julia> g_tempo = groupby(month_length, YAX.time => seasons(; start=December))
╭────────────────────────────────────────────────╮
-4-element DimGroupByArray{YAXArray{Int64,0},1}
+└──────────────────────────────────────────────────────────────────────────────┘

Now group it by season

julia
julia> g_tempo = groupby(month_length, YAX.time => seasons(; start=December))
4-element DimGroupByArray{YAXArray{Int64,0},1}
 ├────────────────────────────────────────────────┴─────────────────────── dims ┐
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -114,8 +137,7 @@
  :Dec_Jan_Feb  9-element YAXArray
  :Mar_Apr_May  9-element YAXArray
  :Jun_Jul_Aug  9-element YAXArray
- :Sep_Oct_Nov  9-element YAXArray

Get the number of days per season

julia
julia> sum_days = sum.(g_tempo, dims=:time)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Int64, 1, Vector{Int64}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}},1}
+ :Sep_Oct_Nov  9-element YAXArray

Get the number of days per season

julia
julia> sum_days = sum.(g_tempo, dims=:time)
4-element DimArray{YAXArray{Int64, 1, DimensionalData.DimVector{Int64, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Tuple{}, Vector{Int64}, Symbol, DimensionalData.Dimensions.Lookups.NoMetadata}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -125,8 +147,7 @@
  :Dec_Jan_Feb  [270]
  :Mar_Apr_May  [276]
  :Jun_Jul_Aug  [276]
- :Sep_Oct_Nov  [273]

weights

Weight the seasonal groups by sum_days

julia
julia> weights = map(./, g_tempo, sum_days)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 1, Vector{Float64}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}},1} groupby
+ :Sep_Oct_Nov  [273]

weights

Weight the seasonal groups by sum_days

julia
julia> weights = map(./, g_tempo, sum_days)
4-element DimArray{YAXArray{Float64, 1, Vector{Float64}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}}, 1} groupby
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -136,9 +157,8 @@
  :Dec_Jan_Feb  …  [0.114815, 0.114815, 0.103704, 0.114815, 0.114815, 0.103704, 0.114815, 0.114815, 0.103704]
  :Mar_Apr_May     [0.112319, 0.108696, 0.112319, 0.112319, 0.108696, 0.112319, 0.112319, 0.108696, 0.112319]
  :Jun_Jul_Aug     [0.108696, 0.112319, 0.112319, 0.108696, 0.112319, 0.112319, 0.108696, 0.112319, 0.112319]
- :Sep_Oct_Nov     [0.10989, 0.113553, 0.10989, 0.10989, 0.113553, 0.10989, 0.10989, 0.113553, 0.10989]

Verify that the sum per season is 1

julia
julia> sum.(weights)
╭───────────────────────────────╮
-4-element DimArray{Float64,1}
-├───────────────────────────────┴──────────────────────────────────────── dims ┐
+ :Sep_Oct_Nov     [0.10989, 0.113553, 0.10989, 0.10989, 0.113553, 0.10989, 0.10989, 0.113553, 0.10989]

Verify that the sum per season is 1

julia
julia> sum.(weights)
4-element DimArray{Float64, 1}
+├────────────────────────────────┴─────────────────────────────────────── dims ┐
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{Symbol, Any} with 1 entry:
@@ -147,8 +167,7 @@
  :Dec_Jan_Feb  1.0
  :Mar_Apr_May  1.0
  :Jun_Jul_Aug  1.0
- :Sep_Oct_Nov  1.0

weighted seasons

Now, let's weight the seasons

julia
julia> g_dsW = broadcast_dims.(*, weights, g_ds)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 3, Array{Float64, 3}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata},1}
+ :Sep_Oct_Nov  1.0

weighted seasons

Now, let's weight the seasons

julia
julia> g_dsW = broadcast_dims.(*, weights, g_ds)
4-element DimArray{YAXArray{Float64, 3, Array{Float64, 3}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -160,8 +179,7 @@
  :Jun_Jul_Aug     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; … ;;; NaN NaN … 3.21209 3.25153; NaN NaN … 3.23 3.28008; … ; NaN NaN … 3.12575 3.15532; NaN NaN … 3.2434 3.26274;;; NaN NaN … 3.17434 3.21699; NaN NaN … 3.18892 3.24375; … ; NaN NaN … 3.06755 3.1083; NaN NaN … 3.19241 3.22211;;; NaN NaN … 3.1437 3.15644; NaN NaN … 3.16631 3.18583; … ; NaN NaN … 3.03361 3.05846; NaN NaN … 3.16581 3.16824]
  :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; … ;;; NaN NaN … 2.97047 3.00388; NaN NaN … 2.77587 2.80759; … ; NaN NaN … 2.60175 2.60918; NaN NaN … 1.4947 1.52419;;; NaN NaN … 2.94534 2.97649; NaN NaN … 2.75891 2.79502; … ; NaN NaN … 2.57695 2.59212; NaN NaN … 1.46506 1.49909;;; NaN NaN … 2.9192 2.93743; NaN NaN … 2.7593 2.77687; … ; NaN NaN … 2.57873 2.63006; NaN NaN … 1.48367 1.50089]

apply a sum over the time dimension and drop it

julia
julia> weighted_g = sum.(g_dsW, dims = :time);
 
-julia> weighted_g = dropdims.(weighted_g, dims=:time)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata},1}
+julia> weighted_g = dropdims.(weighted_g, dims=:time)
4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -171,8 +189,7 @@
  :Dec_Jan_Feb  …  [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 11.1181 11.372; NaN NaN … 11.3069 11.5743]
  :Mar_Apr_May     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.1242 21.0057; NaN NaN … 21.4198 21.1644]
  :Jun_Jul_Aug     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 28.2747 27.9362; NaN NaN … 28.6122 28.0465]
- :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.73 21.7341; NaN NaN … 21.986 21.959]

Calculate the differences

julia
julia> diff_g = map(.-, weighted_g, mean_g)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata},1}
+ :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.73 21.7341; NaN NaN … 21.986 21.959]

Calculate the differences

julia
julia> diff_g = map(.-, weighted_g, mean_g)
4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -212,7 +229,7 @@
     rowgap!(fig.layout, 5)
     fig
 end

which shows a good agreement with the results first published by Joe Hamman.

- + \ No newline at end of file diff --git a/previews/PR479/UserGuide/read.html b/previews/PR479/UserGuide/read.html index c455293e..b7604066 100644 --- a/previews/PR479/UserGuide/read.html +++ b/previews/PR479/UserGuide/read.html @@ -9,11 +9,11 @@ - + - + - + @@ -39,9 +39,8 @@ Variables: tas -Properties: Dict{String, Any}("initialization_index" => 1, "realm" => "atmos", "variable_id" => "tas", "external_variables" => "areacella", "branch_time_in_child" => 60265.0, "data_specs_version" => "01.00.30", "history" => "2019-07-21T06:26:13Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.", "forcing_index" => 1, "parent_variant_label" => "r1i1p1f1", "table_id" => "3hr"…)

We can set path to a URL, a local directory, or in this case to a cloud object storage path.

A zarr store may contain multiple arrays. Individual arrays can be accessed using subsetting:

julia
ds.tas
╭────────────────────────────────────╮
-│ 384×192×251288 YAXArray{Float32,3} │
-├────────────────────────────────────┴─────────────────────────────────── dims ┐
+Properties: Dict{String, Any}("initialization_index" => 1, "realm" => "atmos", "variable_id" => "tas", "external_variables" => "areacella", "branch_time_in_child" => 60265.0, "data_specs_version" => "01.00.30", "history" => "2019-07-21T06:26:13Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.", "forcing_index" => 1, "parent_variant_label" => "r1i1p1f1", "table_id" => "3hr"…)

We can set path to a URL, a local directory, or in this case to a cloud object storage path.

A zarr store may contain multiple arrays. Individual arrays can be accessed using subsetting:

julia
ds.tas
┌ 384×192×251288 YAXArray{Float32, 3} ┐
+├─────────────────────────────────────┴────────────────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 0.0:0.9375:359.0625 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} [-89.28422753251364, -88.35700351866494, …, 88.35700351866494, 89.28422753251364] ForwardOrdered Irregular Points,
   ↗ time Sampled{DateTime} [2015-01-01T03:00:00, …, 2101-01-01T00:00:00] ForwardOrdered Irregular Points
@@ -73,9 +72,8 @@
 Variables: 
 tos
 
-Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

A NetCDF file may contain multiple arrays. Individual arrays can be accessed using subsetting:

julia
ds.tos
╭────────────────────────────────────────────────╮
-│ 180×170×24 YAXArray{Union{Missing, Float32},3} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

A NetCDF file may contain multiple arrays. Individual arrays can be accessed using subsetting:

julia
ds.tos
┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -118,9 +116,8 @@
 Variables: 
 Blue, Green, Red
 
-Properties: Dict{String, Any}("projection" => "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AXIS[\"Latitude\",NORTH],AXIS[\"Longitude\",EAST],AUTHORITY[\"EPSG\",\"4326\"]]")

Load data into memory

For datasets or variables that could fit in RAM, you might want to load them completely into memory. This can be done using the readcubedata function. As an example, let's use the NetCDF workflow; the same should be true for other cases.

readcubedata

julia
readcubedata(ds.tos)
╭────────────────────────────────────────────────╮
-│ 180×170×24 YAXArray{Union{Missing, Float32},3} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+Properties: Dict{String, Any}("projection" => "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AXIS[\"Latitude\",NORTH],AXIS[\"Longitude\",EAST],AUTHORITY[\"EPSG\",\"4326\"]]")

Load data into memory

For datasets or variables that could fit in RAM, you might want to load them completely into memory. This can be done using the readcubedata function. As an example, let's use the NetCDF workflow; the same should be true for other cases.

readcubedata

julia
readcubedata(ds.tos)
┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -139,7 +136,7 @@
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 2.8 MB
 └──────────────────────────────────────────────────────────────────────────────┘

Note how the loading status changes from loaded lazily to loaded in memory.

- + \ No newline at end of file diff --git a/previews/PR479/UserGuide/select.html b/previews/PR479/UserGuide/select.html index c06397ea..a80650f4 100644 --- a/previews/PR479/UserGuide/select.html +++ b/previews/PR479/UserGuide/select.html @@ -9,11 +9,11 @@ - + - + - + @@ -35,9 +35,8 @@ Variables: tos -Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Select a YAXArray

Get the sea surface temperature of the Dataset:

julia
tos = ds.tos
╭────────────────────────────────────────────────╮
-│ 180×170×24 YAXArray{Union{Missing, Float32},3} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Select a YAXArray

Get the sea surface temperature of the Dataset:

julia
tos = ds.tos
┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -55,9 +54,8 @@
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 2.8 MB
-└──────────────────────────────────────────────────────────────────────────────┘

which is the same as:

julia
tos = ds.cubes[:tos]
╭────────────────────────────────────────────────╮
-│ 180×170×24 YAXArray{Union{Missing, Float32},3} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

which is the same as:

julia
tos = ds.cubes[:tos]
┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -75,9 +73,8 @@
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 2.8 MB
-└──────────────────────────────────────────────────────────────────────────────┘

Select elements

Using positional integer indexing:

julia
tos[lon = 1, lat = 1]
╭────────────────────────────────────────────────╮
-│ 24-element YAXArray{Union{Missing, Float32},1} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Select elements

Using positional integer indexing:

julia
tos[lon = 1, lat = 1]
┌ 24-element YAXArray{Union{Missing, Float32}, 1} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any} with 10 entries:
@@ -93,9 +90,8 @@
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 96.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

Same but using named indexing:

julia
tos[lon = At(1), lat = At(-79.5)]
╭────────────────────────────────────────────────╮
-│ 24-element YAXArray{Union{Missing, Float32},1} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Same but using named indexing:

julia
tos[lon = At(1), lat = At(-79.5)]
┌ 24-element YAXArray{Union{Missing, Float32}, 1} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any} with 10 entries:
@@ -113,9 +109,8 @@
   data size: 96.0 bytes
 └──────────────────────────────────────────────────────────────────────────────┘

Using special types:

julia
using CFTime
 time1 = DateTime360Day(2001,01,16)
-tos[time = At(time1)]
╭─────────────────────────────────────────────╮
-│ 180×170 YAXArray{Union{Missing, Float32},2} │
-├─────────────────────────────────────────────┴───────────────── dims ┐
+tos[time = At(time1)]
┌ 180×170 YAXArray{Union{Missing, Float32}, 2} ┐
+├──────────────────────────────────────────────┴──────────────── dims ┐
   ↓ lon Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,
   → lat Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────────────────┴ metadata ┐
@@ -132,9 +127,8 @@
   "original_name"  => "sosstsst"
 ├───────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 119.53 KB
-└────────────────────────────────────────────────────────────────────────────────┘

Select ranges

Here we subset an interval of a dimension using positional integer indexing.

julia
tos[lon = 1:10, lat = 1:10]
╭──────────────────────────────────────────────╮
-│ 10×10×24 YAXArray{Union{Missing, Float32},3} │
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+└────────────────────────────────────────────────────────────────────────────────┘

Select ranges

Here we subset an interval of a dimension using positional integer indexing.

julia
tos[lon = 1:10, lat = 1:10]
┌ 10×10×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 1.0:2.0:19.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:-70.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -152,9 +146,8 @@
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 9.38 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Same but using named indexing:

julia
tos[lon = At(1.0:2:19), lat = At(-79.5:1:-70.5)]
╭──────────────────────────────────────────────╮
-│ 10×10×24 YAXArray{Union{Missing, Float32},3} │
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Same but using named indexing:

julia
tos[lon = At(1.0:2:19), lat = At(-79.5:1:-70.5)]
┌ 10×10×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
   ↓ lon  Sampled{Float64} [1.0, 3.0, …, 17.0, 19.0] ForwardOrdered Irregular Points,
   → lat  Sampled{Float64} [-79.5, -78.5, …, -71.5, -70.5] ForwardOrdered Irregular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -172,9 +165,8 @@
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 9.38 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Read more about the At selector in the package DimensionalData. Get values within a tolerances:

julia
tos[lon = At(1:10; atol = 1)]
╭───────────────────────────────────────────────╮
-│ 10×170×24 YAXArray{Union{Missing, Float32},3} │
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Read more about the At selector in the package DimensionalData. Get values within a tolerances:

julia
tos[lon = At(1:10; atol = 1)]
┌ 10×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
   ↓ lon  Sampled{Float64} [1.0, 1.0, …, 9.0, 9.0] ForwardOrdered Irregular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -192,9 +184,8 @@
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 159.38 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Closed and open intervals

Although a Between(a,b) function is available in DimensionalData, is recommended to use instead the a .. b notation:

julia
tos[lon = 90 .. 180]
╭───────────────────────────────────────────────╮
-│ 45×170×24 YAXArray{Union{Missing, Float32},3} │
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Closed and open intervals

Although a Between(a,b) function is available in DimensionalData, is recommended to use instead the a .. b notation:

julia
tos[lon = 90 .. 180]
┌ 45×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -212,9 +203,8 @@
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘

This describes a closed interval in which all points were included. More selectors from DimensionalData are available, such as Touches, Near, Where and Contains.

julia
using IntervalSets
julia
julia> tos[lon = OpenInterval(90, 180)]
╭───────────────────────────────────────────────╮
-45×170×24 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

This describes a closed interval in which all points were included. More selectors from DimensionalData are available, such as Touches, Near, Where and Contains.

julia
using IntervalSets
julia
julia> tos[lon = OpenInterval(90, 180)]
45×170×24 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
 time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -232,9 +222,8 @@
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon = ClosedInterval(90, 180)]
╭───────────────────────────────────────────────╮
-45×170×24 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon = ClosedInterval(90, 180)]
45×170×24 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
 time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -252,9 +241,8 @@
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon =Interval{:open,:closed}(90,180)]
╭───────────────────────────────────────────────╮
-45×170×24 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon =Interval{:open,:closed}(90,180)]
45×170×24 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
 time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -272,9 +260,8 @@
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon =Interval{:closed,:open}(90,180)]
╭───────────────────────────────────────────────╮
-45×170×24 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon =Interval{:closed,:open}(90,180)]
45×170×24 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
 time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -292,30 +279,25 @@
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘

See tutorials for use cases.

Get a dimension

Get values, .e.g., axis tick labels, of a dimension that can be used for subseting:

julia
collect(tos.lat)
170-element Vector{Float64}:
- -79.5
- -78.5
- -77.5
- -76.5
- -75.5
- -74.5
- -73.5
- -72.5
- -71.5
- -70.5
-
-  81.5
-  82.5
-  83.5
-  84.5
-  85.5
-  86.5
-  87.5
-  88.5
-  89.5

These values are defined as lookups in the package DimensionalData:

julia
lookup(tos, :lon)
Sampled{Float64} ForwardOrdered Regular DimensionalData.Dimensions.Lookups.Points
+└──────────────────────────────────────────────────────────────────────────────┘

See tutorials for use cases.

Get a dimension

Get values, .e.g., axis tick labels, of a dimension that can be used for subseting:

julia
collect(tos.lat)
┌ 170-element DimArray{Float64, 1} ┐
+├──────────────────────────────────┴──────────────────────────── dims ┐
+  ↓ lat Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points
+└─────────────────────────────────────────────────────────────────────┘
+ -79.5  -79.5
+ -78.5  -78.5
+ -77.5  -77.5
+ -76.5  -76.5
+ -75.5  -75.5
+ -74.5  -74.5
+
+  85.5   85.5
+  86.5   86.5
+  87.5   87.5
+  88.5   88.5
+  89.5   89.5

These values are defined as lookups in the package DimensionalData:

julia
lookup(tos, :lon)
Sampled{Float64} ForwardOrdered Regular DimensionalData.Dimensions.Lookups.Points
 wrapping: 1.0:2.0:359.0

which is equivalent to:

julia
tos.lon.val
Sampled{Float64} ForwardOrdered Regular DimensionalData.Dimensions.Lookups.Points
 wrapping: 1.0:2.0:359.0
- + \ No newline at end of file diff --git a/previews/PR479/UserGuide/types.html b/previews/PR479/UserGuide/types.html index 0b2cf7f2..e4199c6c 100644 --- a/previews/PR479/UserGuide/types.html +++ b/previews/PR479/UserGuide/types.html @@ -9,9 +9,9 @@ - + - + @@ -22,7 +22,7 @@
Skip to content

Types

This section describes the data structures used to work with n-dimensional arrays in YAXArrays.

YAXArray

An Array stores a sequence of ordered elements of the same type usually across multiple dimensions or axes. For example, one can measure temperature across all time points of the time dimension or brightness values of a picture across X and Y dimensions. A one dimensional array is called Vector and a two dimensional array is called a Matrix. In many Machine Learning libraries, arrays are also called tensors. Arrays are designed to store dense spatial-temporal data stored in a grid, whereas a collection of sparse points is usually stored in data frames or relational databases.

A DimArray as defined by DimensionalData.jl adds names to the dimensions and their axes ticks for a given Array. These names can be used to access the data, e.g., by date instead of just by integer position.

A YAXArray is a subtype of a AbstractDimArray and adds functions to load and process the named arrays. For example, it can also handle very large arrays stored on disk that are too big to fit in memory. In addition, it provides functions for parallel computation.

Dataset

A Dataset is an ordered dictionary of YAXArrays that usually share dimensions. For example, it can bundle arrays storing temperature and precipitation that are measured at the same time points and the same locations. One also can store a picture in a Dataset with three arrays containing brightness values for red green and blue, respectively. Internally, those arrays are still separated allowing to chose different element types for each array. Analog to the (NetCDF Data Model)[https://docs.unidata.ucar.edu/netcdf-c/current/netcdf_data_model.html], a Dataset usually represents variables belonging to the same group.

(Data) Cube

A (Data) Cube is just a YAXArray in which arrays from a dataset are combined together by introducing a new dimension containing labels of which array the corresponding element came from. Unlike a Dataset, all arrays must have the same element type to be converted into a cube. This data structure is useful when we want to use all variables at once. For example, the arrays temperature and precipitation which are measured at the same locations and dates can be combined into a single cube. A more formal definition of Data Cubes are given in Mahecha et al. 2020

Dimension

A Dimension or axis as defined by DimensionalData.jl adds tick labels, e.g., to each row or column of an array. It's name is used to access particular subsets of that array.

- + \ No newline at end of file diff --git a/previews/PR479/UserGuide/write.html b/previews/PR479/UserGuide/write.html index 8e85e230..8a736c2b 100644 --- a/previews/PR479/UserGuide/write.html +++ b/previews/PR479/UserGuide/write.html @@ -9,11 +9,11 @@ - + - + - + @@ -43,7 +43,7 @@ savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

julia
savedataset(ds, path="ds.nc", driver=:netcdf)

netcdf compression

Save a dataset to NetCDF format with compression:

julia
n = 7 # compression level, number between 0 (no compression) and 9 (max compression)
 savedataset(ds, path="ds_c.nc", driver=:netcdf, compress=n)

Comparing it to the default saved file

julia
ds_info = stat("ds.nc")
 ds_c_info = stat("ds_c.nc")
-println("File size: ", "default: ", ds_info.size, " bytes", ", compress: ", ds_c_info.size, " bytes")
File size: default: 2963860 bytes, compress: 1159916 bytes

Overwrite a Dataset

If a path already exists, an error will be thrown. Set overwrite=true to delete the existing dataset

julia
savedataset(ds, path="ds.zarr", driver=:zarr, overwrite=true)

DANGER

Again, setting overwrite will delete all your previous saved data.

Look at the doc string for more information

YAXArrays.Datasets.savedataset Function

savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)

Saves a Dataset into a file at path with the format given by driver, i.e., driver=:netcdf or driver=:zarr.

Warning

overwrite = true, deletes ALL your data and it will create a new file.

source

Append to a Dataset

New variables can be added to an existing dataset using the append=true keyword.

julia
ds2 = Dataset(z = YAXArray(rand(10,20,5)))
+println("File size: ", "default: ", ds_info.size, " bytes", ", compress: ", ds_c_info.size, " bytes")
File size: default: 2963860 bytes, compress: 1159916 bytes

Overwrite a Dataset

If a path already exists, an error will be thrown. Set overwrite=true to delete the existing dataset

julia
savedataset(ds, path="ds.zarr", driver=:zarr, overwrite=true)

DANGER

Again, setting overwrite will delete all your previous saved data.

Look at the doc string for more information

YAXArrays.Datasets.savedataset Function
julia
savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)

Saves a Dataset into a file at path with the format given by driver, i.e., driver=:netcdf or driver=:zarr.

Warning

overwrite = true, deletes ALL your data and it will create a new file.

source

Append to a Dataset

New variables can be added to an existing dataset using the append=true keyword.

julia
ds2 = Dataset(z = YAXArray(rand(10,20,5)))
 savedataset(ds2, path="ds.zarr", backend=:zarr, append=true)
julia
julia> open_dataset("ds.zarr", driver=:zarr)
YAXArray Dataset
 Shared Axes:
 None
@@ -62,9 +62,8 @@
   Variables: 
   z
 
-Properties: Dict{String, Any}("cmor_version" => 0.96, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "Conventions" => "CF-1.0", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Save Skeleton

Sometimes one merely wants to create a datacube "Skeleton" on disk and gradually fill it with data. Here we make use of FillArrays to create a YAXArray and write only the axis data and array metadata to disk, while no actual array data is copied:

julia
using YAXArrays, Zarr, FillArrays

create the Zeros array

julia
julia> a = YAXArray(Zeros(Union{Missing, Float32},  5, 4, 5))
╭───────────────────────────────────────────╮
-5×4×5 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────┴──────────────────────────── dims ┐
+Properties: Dict{String, Any}("cmor_version" => 0.96, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "Conventions" => "CF-1.0", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Save Skeleton

Sometimes one merely wants to create a datacube "Skeleton" on disk and gradually fill it with data. Here we make use of FillArrays to create a YAXArray and write only the axis data and array metadata to disk, while no actual array data is copied:

julia
using YAXArrays, Zarr, FillArrays

create the Zeros array

julia
julia> a = YAXArray(Zeros(Union{Missing, Float32},  5, 4, 5))
5×4×5 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────┴─────────────────────────── dims ┐
 Dim_1 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} Base.OneTo(4) ForwardOrdered Regular Points,
 Dim_3 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points
@@ -93,7 +92,7 @@
  0.891257  0.0887544  0.630526  0.782494
  0.948244  0.195437   0.102333  0.669125
  0.102816  0.781572   0.527401  0.719692

indeed, those entries had been updated.

- + \ No newline at end of file diff --git a/previews/PR479/api.html b/previews/PR479/api.html index 30902db9..469a5f5e 100644 --- a/previews/PR479/api.html +++ b/previews/PR479/api.html @@ -9,11 +9,11 @@ - + - + - + @@ -21,22 +21,15 @@ -
Skip to content

API Reference

This section describes all available functions of this package.

Public API

YAXArrays.getAxis Method
julia
getAxis(desc, c)

Given an Axis description and a cube, returns the corresponding axis of the cube. The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

YAXArrays.Cubes Module

The functions provided by YAXArrays are supposed to work on different types of cubes. This module defines the interface for all Data types that

source

YAXArrays.Cubes.YAXArray Type
julia
YAXArray{T,N}

An array labelled with named axes that have values associated with them. It can wrap normal arrays or, more typically DiskArrays.

Fields

  • axes: Tuple of Dimensions containing the Axes of the Cube

  • data: length(axes)-dimensional array which holds the data, this can be a lazy DiskArray

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

  • cleaner: Cleaner objects to track which objects to tidy up when the YAXArray goes out of scope

source

YAXArrays.Cubes.caxes Function

Returns the axes of a Cube

source

YAXArrays.Cubes.caxes Method
julia
caxes

Embeds Cube inside a new Cube

source

YAXArrays.Cubes.concatenatecubes Method
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

Concatenates a vector of datacubes that have identical axes to a new single cube along the new axis cataxis

source

YAXArrays.Cubes.readcubedata Method
julia
readcubedata(cube)

Given any array implementing the YAXArray interface it returns an in-memory YAXArray from it.

source

YAXArrays.Cubes.setchunks Method
julia
setchunks(c::YAXArray,chunks)

Resets the chunks of a YAXArray and returns a new YAXArray. Note that this will not change the chunking of the underlying data itself, it will just make the data "look" like it had a different chunking. If you need a persistent on-disk representation of this chunking, use savecube on the resulting array. The chunks argument can take one of the following forms:

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

  • an AbstractDict or NamedTuple mapping one or more axis names to chunk sizes

source

YAXArrays.Cubes.subsetcube Function

This function calculates a subset of a cube's data

source

YAXArrays.DAT.InDims Type
julia
InDims(axisdesc...;...)

Creates a description of an Input Data Cube for cube operations. Takes a single or multiple axis descriptions as first arguments. Alternatively a MovingWindow(@ref) struct can be passed to include neighbour slices of one or more axes in the computation. Axes can be specified by their name (String), through an Axis type, or by passing a concrete axis.

Keyword arguments

  • artype how shall the array be represented in the inner function. Defaults to Array, alternatives are DataFrame or AsAxisArray

  • filter define some filter to skip the computation, e.g. when all values are missing. Defaults to AllMissing(), possible values are AnyMissing(), AnyOcean(), StdZero(), NValid(n) (for at least n non-missing elements). It is also possible to provide a custom one-argument function that takes the array and returns true if the compuation shall be skipped and false otherwise.

  • window_oob_value if one of the input dimensions is a MowingWindow, this value will be used to fill out-of-bounds areas

source

YAXArrays.DAT.MovingWindow Type
julia
MovingWindow(desc, pre, after)

Constructs a MovingWindow object to be passed to an InDims constructor to define that the axis in desc shall participate in the inner function (i.e. shall be looped over), but inside the inner function pre values before and after values after the center value will be passed as well.

For example passing MovingWindow("Time", 2, 0) will loop over the time axis and always pass the current time step plus the 2 previous steps. So in the inner function the array will have an additional dimension of size 3.

source

YAXArrays.DAT.OutDims Method
julia
OutDims(axisdesc;...)

Creates a description of an Output Data Cube for cube operations. Takes a single or a Vector/Tuple of axes as first argument. Axes can be specified by their name (String), through an Axis type, or by passing a concrete axis.

  • axisdesc: List of input axis names

  • backend : specifies the dataset backend to write data to, must be either :auto or a key in YAXArrayBase.backendlist

  • update : specifies wether the function operates inplace or if an output is returned

  • artype : specifies the Array type inside the inner function that is mapped over

  • chunksize: A Dict specifying the chunksizes for the output dimensions of the cube, or :input to copy chunksizes from input cube axes or :max to not chunk the inner dimensions

  • outtype: force the output type to a specific type, defaults to Any which means that the element type of the first input cube is used

source

YAXArrays.DAT.CubeTable Method
julia
CubeTable()

Function to turn a DataCube object into an iterable table. Takes a list of as arguments, specified as a name=cube expression. For example CubeTable(data=cube1,country=cube2) would generate a Table with the entries data and country, where data contains the values of cube1 and country the values of cube2. The cubes are matched and broadcasted along their axes like in mapCube.

source

YAXArrays.DAT.cubefittable Method
julia
cubefittable(tab,o,fitsym;post=getpostfunction(o),kwargs...)

Executes fittable on the CubeTable tab with the (Weighted-)OnlineStat o, looping through the values specified by fitsym. Finally, writes the results from the TableAggregator to an output data cube.

source

YAXArrays.DAT.fittable Method
julia
fittable(tab,o,fitsym;by=(),weight=nothing)

Loops through an iterable table tab and thereby fitting an OnlineStat o with the values specified through fitsym. Optionally one can specify a field (or tuple) to group by. Any groupby specifier can either be a symbol denoting the entry to group by or an anynymous function calculating the group from a table row.

For example the following would caluclate a weighted mean over a cube weighted by grid cell area and grouped by country and month:

julia
fittable(iter,WeightedMean,:tair,weight=(i->abs(cosd(i.lat))),by=(i->month(i.time),:country))

source

YAXArrays.DAT.mapCube Method
julia
mapCube(fun, cube, addargs...;kwargs...)
-
-Map a given function `fun` over slices of all cubes of the dataset `ds`. 
-Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.
-For Datasets, only one output cube can be specified.
-In contrast to the mapCube function for cubes, additional arguments for the inner function should be set as keyword arguments.
-
-For the specific keyword arguments see the docstring of the mapCube function for cubes.

source

YAXArrays.DAT.mapCube Method
julia
mapCube(fun, cube, addargs...;kwargs...)

Map a given function fun over slices of the data cube cube. The additional arguments addargs will be forwarded to the inner function fun. Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.

Keyword arguments

  • max_cache=YAXDefaults.max_cache Float64 maximum size of blocks that are read into memory in bits e.g. max_cache=5.0e8. Or String. e.g. max_cache="10MB" ormax_cache=1GB``` defaults to approx 10Mb.

  • indims::InDims List of input cube descriptors of type InDims for each input data cube.

  • outdims::OutDims List of output cube descriptors of type OutDims for each output cube.

  • inplace does the function write to an output array inplace or return a single value> defaults to true

  • ispar boolean to determine if parallelisation should be applied, defaults to true if workers are available.

  • showprog boolean indicating if a ProgressMeter shall be shown

  • include_loopvars boolean to indicate if the varoables looped over should be added as function arguments

  • nthreads number of threads for the computation, defaults to Threads.nthreads for every worker.

  • loopchunksize determines the chunk sizes of variables which are looped over, a dict

  • kwargs additional keyword arguments are passed to the inner function

The first argument is always the function to be applied, the second is the input cube or a tuple of input cubes if needed.

source

YAXArrays.Datasets.Dataset Type
julia
Dataset object which stores an `OrderedDict` of YAXArrays with Symbol keys.
+    
Skip to content

API Reference

This section describes all available functions of this package.

Public API

YAXArrays.getAxis Method
julia
getAxis(desc, c)

Given an Axis description and a cube, returns the corresponding axis of the cube. The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

YAXArrays.Cubes Module

The functions provided by YAXArrays are supposed to work on different types of cubes. This module defines the interface for all Data types that

source

YAXArrays.Cubes.YAXArray Type
julia
YAXArray{T,N}

An array labelled with named axes that have values associated with them. It can wrap normal arrays or, more typically DiskArrays.

Fields

  • axes: Tuple of Dimensions containing the Axes of the Cube

  • data: length(axes)-dimensional array which holds the data, this can be a lazy DiskArray

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

  • cleaner: Cleaner objects to track which objects to tidy up when the YAXArray goes out of scope

source

YAXArrays.Cubes.caxes Function

Returns the axes of a Cube

source

YAXArrays.Cubes.caxes Method
julia
caxes

Embeds Cube inside a new Cube

source

YAXArrays.Cubes.concatenatecubes Method
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

Concatenates a vector of datacubes that have identical axes to a new single cube along the new axis cataxis

source

YAXArrays.Cubes.readcubedata Method
julia
readcubedata(cube)

Given any array implementing the YAXArray interface it returns an in-memory YAXArray from it.

source

YAXArrays.Cubes.setchunks Method
julia
setchunks(c::YAXArray,chunks)

Resets the chunks of a YAXArray and returns a new YAXArray. Note that this will not change the chunking of the underlying data itself, it will just make the data "look" like it had a different chunking. If you need a persistent on-disk representation of this chunking, use savecube on the resulting array. The chunks argument can take one of the following forms:

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

  • an AbstractDict or NamedTuple mapping one or more axis names to chunk sizes

source

YAXArrays.Cubes.subsetcube Function

This function calculates a subset of a cube's data

source

YAXArrays.DAT.InDims Type
julia
InDims(axisdesc...;...)

Creates a description of an Input Data Cube for cube operations. Takes a single or multiple axis descriptions as first arguments. Alternatively a MovingWindow(@ref) struct can be passed to include neighbour slices of one or more axes in the computation. Axes can be specified by their name (String), through an Axis type, or by passing a concrete axis.

Keyword arguments

  • artype how shall the array be represented in the inner function. Defaults to Array, alternatives are DataFrame or AsAxisArray

  • filter define some filter to skip the computation, e.g. when all values are missing. Defaults to AllMissing(), possible values are AnyMissing(), AnyOcean(), StdZero(), NValid(n) (for at least n non-missing elements). It is also possible to provide a custom one-argument function that takes the array and returns true if the compuation shall be skipped and false otherwise.

  • window_oob_value if one of the input dimensions is a MowingWindow, this value will be used to fill out-of-bounds areas

source

YAXArrays.DAT.MovingWindow Type
julia
MovingWindow(desc, pre, after)

Constructs a MovingWindow object to be passed to an InDims constructor to define that the axis in desc shall participate in the inner function (i.e. shall be looped over), but inside the inner function pre values before and after values after the center value will be passed as well.

For example passing MovingWindow("Time", 2, 0) will loop over the time axis and always pass the current time step plus the 2 previous steps. So in the inner function the array will have an additional dimension of size 3.

source

YAXArrays.DAT.OutDims Method
julia
OutDims(axisdesc;...)

Creates a description of an Output Data Cube for cube operations. Takes a single or a Vector/Tuple of axes as first argument. Axes can be specified by their name (String), through an Axis type, or by passing a concrete axis.

  • axisdesc: List of input axis names

  • backend : specifies the dataset backend to write data to, must be either :auto or a key in YAXArrayBase.backendlist

  • update : specifies wether the function operates inplace or if an output is returned

  • artype : specifies the Array type inside the inner function that is mapped over

  • chunksize: A Dict specifying the chunksizes for the output dimensions of the cube, or :input to copy chunksizes from input cube axes or :max to not chunk the inner dimensions

  • outtype: force the output type to a specific type, defaults to Any which means that the element type of the first input cube is used

source

YAXArrays.DAT.CubeTable Method
julia
CubeTable()

Function to turn a DataCube object into an iterable table. Takes a list of as arguments, specified as a name=cube expression. For example CubeTable(data=cube1,country=cube2) would generate a Table with the entries data and country, where data contains the values of cube1 and country the values of cube2. The cubes are matched and broadcasted along their axes like in mapCube.

source

YAXArrays.DAT.cubefittable Method
julia
cubefittable(tab,o,fitsym;post=getpostfunction(o),kwargs...)

Executes fittable on the CubeTable tab with the (Weighted-)OnlineStat o, looping through the values specified by fitsym. Finally, writes the results from the TableAggregator to an output data cube.

source

YAXArrays.DAT.fittable Method
julia
fittable(tab,o,fitsym;by=(),weight=nothing)

Loops through an iterable table tab and thereby fitting an OnlineStat o with the values specified through fitsym. Optionally one can specify a field (or tuple) to group by. Any groupby specifier can either be a symbol denoting the entry to group by or an anynymous function calculating the group from a table row.

For example the following would caluclate a weighted mean over a cube weighted by grid cell area and grouped by country and month:

julia
fittable(iter,WeightedMean,:tair,weight=(i->abs(cosd(i.lat))),by=(i->month(i.time),:country))

source

YAXArrays.DAT.mapCube Method
julia
mapCube(fun, cube, addargs...;kwargs...)

Map a given function fun over slices of all cubes of the dataset ds. Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.

For Datasets, only one output cube can be specified. In contrast to the mapCube function for cubes, additional arguments for the inner function should be set as keyword arguments.

For the specific keyword arguments see the docstring of the mapCube function for cubes.

source

YAXArrays.DAT.mapCube Method
julia
mapCube(fun, cube, addargs...;kwargs...)

Map a given function fun over slices of the data cube cube. The additional arguments addargs will be forwarded to the inner function fun. Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.

Keyword arguments

  • max_cache=YAXDefaults.max_cache Float64 maximum size of blocks that are read into memory in bits e.g. max_cache=5.0e8. Or String. e.g. max_cache="10MB" ormax_cache=1GB``` defaults to approx 10Mb.

  • indims::InDims List of input cube descriptors of type InDims for each input data cube.

  • outdims::OutDims List of output cube descriptors of type OutDims for each output cube.

  • inplace does the function write to an output array inplace or return a single value> defaults to true

  • ispar boolean to determine if parallelisation should be applied, defaults to true if workers are available.

  • showprog boolean indicating if a ProgressMeter shall be shown

  • include_loopvars boolean to indicate if the varoables looped over should be added as function arguments

  • nthreads number of threads for the computation, defaults to Threads.nthreads for every worker.

  • loopchunksize determines the chunk sizes of variables which are looped over, a dict

  • kwargs additional keyword arguments are passed to the inner function

The first argument is always the function to be applied, the second is the input cube or a tuple of input cubes if needed.

source

YAXArrays.Datasets.Dataset Type
julia
Dataset object which stores an `OrderedDict` of YAXArrays with Symbol keys.
 a dictionary of CubeAxes and a Dictionary of general properties.
-A dictionary can hold cubes with differing axes. But it will share the common axes between the subcubes.

source

YAXArrays.Datasets.Dataset Method

Dataset(; properties = Dict{String,Any}, cubes...)

Construct a YAXArray Dataset with global attributes properties a and a list of named YAXArrays cubes...

source

YAXArrays.Datasets.Cube Method
julia
Cube(ds::Dataset; joinname="Variables")

Construct a single YAXArray from the dataset ds by concatenating the cubes in the datset on the joinname dimension.

source

YAXArrays.Datasets.open_dataset Method

open_dataset(g; driver=:all)

Open the dataset at g with the given driver. The default driver will search for available drivers and tries to detect the useable driver from the filename extension.

source

YAXArrays.Datasets.open_mfdataset Method
julia
open_mfdataset(files::DD.DimVector{<:AbstractString}; kwargs...)

Opens and concatenates a list of dataset paths along the dimension specified in files. This method can be used when the generic glob-based version of open_mfdataset fails or is too slow. For example, to concatenate a list of annual NetCDF files along the time dimension, one can use:

julia
files = ["1990.nc","1991.nc","1992.nc"]
+A dictionary can hold cubes with differing axes. But it will share the common axes between the subcubes.

source

YAXArrays.Datasets.Dataset Method
julia
Dataset(; properties = Dict{String,Any}, cubes...)

Construct a YAXArray Dataset with global attributes properties a and a list of named YAXArrays cubes...

source

YAXArrays.Datasets.Cube Method
julia
Cube(ds::Dataset; joinname="Variables")

Construct a single YAXArray from the dataset ds by concatenating the cubes in the datset on the joinname dimension.

source

YAXArrays.Datasets.open_dataset Method
julia
open_dataset(g; driver=:all)

Open the dataset at g with the given driver. The default driver will search for available drivers and tries to detect the useable driver from the filename extension.

source

YAXArrays.Datasets.open_mfdataset Method
julia
open_mfdataset(files::DD.DimVector{<:AbstractString}; kwargs...)

Opens and concatenates a list of dataset paths along the dimension specified in files. This method can be used when the generic glob-based version of open_mfdataset fails or is too slow. For example, to concatenate a list of annual NetCDF files along the time dimension, one can use:

julia
files = ["1990.nc","1991.nc","1992.nc"]
 open_mfdataset(DD.DimArray(files, YAX.time()))

alternatively, if the dimension to concatenate along does not exist yet, the dimension provided in the input arg is used:

julia
files = ["a.nc", "b.nc", "c.nc"]
-open_mfdataset(DD.DimArray(files, DD.Dim{:NewDim}(["a","b","c"])))

source

YAXArrays.Datasets.savecube Method
julia
savecube(cube,name::String)

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

  • datasetaxis="Variables" special treatment of a categorical axis that gets written into separate zarr arrays

  • max_cache: The number of bits that are used as cache for the data handling.

  • backend: The backend, that is used to save the data. Falls back to searching the backend according to the extension of the path.

  • driver: The same setting as backend.

  • overwrite::Bool=false overwrite cube if it already exists

source

YAXArrays.Datasets.savedataset Method

savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)

Saves a Dataset into a file at path with the format given by driver, i.e., driver=:netcdf or driver=:zarr.

Warning

overwrite = true, deletes ALL your data and it will create a new file.

source

YAXArrays.Datasets.to_dataset Method

to_dataset(c;datasetaxis = "Variables", layername = "layer")

Convert a Data Cube into a Dataset. It is possible to treat one of the Cube's axes as a "DatasetAxis" i.e. the cube will be split into different parts that become variables in the Dataset. If no such axis is specified or found, there will only be a single variable in the dataset with the name layername

source

Internal API

YAXArrays.YAXDefaults Constant

Default configuration for YAXArrays, has the following fields:

  • workdir[]::String = "./" The default location for temporary cubes.

  • recal[]::Bool = false set to true if you want @loadOrGenerate to always recalculate the results.

  • chunksize[]::Any = :input Set the default output chunksize.

  • max_cache[]::Float64 = 1e8 The maximum cache used by mapCube.

  • cubedir[]::"" the default location for Cube() without an argument.

  • subsetextensions::Array{Any} = [] List of registered functions, that convert subsetting input into dimension boundaries.

source

YAXArrays.findAxis Method
julia
findAxis(desc, c)

Internal function

Extended Help

Given an Axis description and a cube return the index of the Axis.

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

YAXArrays.getOutAxis Method
julia
getOutAxis

source

YAXArrays.get_descriptor Method
julia
get_descriptor(a)

Get the descriptor of an Axis. This is used to dispatch on the descriptor.

source

YAXArrays.match_axis Method
julia
match_axis

Internal function

Extended Help

Match the Axis based on the AxisDescriptor.
+open_mfdataset(DD.DimArray(files, DD.Dim{:NewDim}(["a","b","c"])))

source

YAXArrays.Datasets.savecube Method
julia
savecube(cube,name::String)

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

  • datasetaxis="Variables" special treatment of a categorical axis that gets written into separate zarr arrays

  • max_cache: The number of bits that are used as cache for the data handling.

  • backend: The backend, that is used to save the data. Falls back to searching the backend according to the extension of the path.

  • driver: The same setting as backend.

  • overwrite::Bool=false overwrite cube if it already exists

source

YAXArrays.Datasets.savedataset Method
julia
savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)

Saves a Dataset into a file at path with the format given by driver, i.e., driver=:netcdf or driver=:zarr.

Warning

overwrite = true, deletes ALL your data and it will create a new file.

source

YAXArrays.Datasets.to_dataset Method
julia
to_dataset(c;datasetaxis = "Variables", layername = "layer")

Convert a Data Cube into a Dataset. It is possible to treat one of the Cube's axes as a "DatasetAxis" i.e. the cube will be split into different parts that become variables in the Dataset. If no such axis is specified or found, there will only be a single variable in the dataset with the name layername

source

Internal API

YAXArrays.YAXDefaults Constant

Default configuration for YAXArrays, has the following fields:

  • workdir[]::String = "./" The default location for temporary cubes.

  • recal[]::Bool = false set to true if you want @loadOrGenerate to always recalculate the results.

  • chunksize[]::Any = :input Set the default output chunksize.

  • max_cache[]::Float64 = 1e8 The maximum cache used by mapCube.

  • cubedir[]::"" the default location for Cube() without an argument.

  • subsetextensions::Array{Any} = [] List of registered functions, that convert subsetting input into dimension boundaries.

source

YAXArrays.findAxis Method
julia
findAxis(desc, c)

Internal function

Extended Help

Given an Axis description and a cube return the index of the Axis.

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

YAXArrays.getOutAxis Method
julia
getOutAxis

source

YAXArrays.get_descriptor Method
julia
get_descriptor(a)

Get the descriptor of an Axis. This is used to dispatch on the descriptor.

source

YAXArrays.match_axis Method
julia
match_axis

Internal function

Extended Help

Match the Axis based on the AxisDescriptor.
 This is used to find different axes and to make certain axis description the same.
-For example to disregard differences of captialisation.

source

YAXArrays.Cubes.CleanMe Type
julia
mutable struct CleanMe

Struct which describes data paths and their persistency. Non-persistend paths/files are removed at finalize step

source

YAXArrays.Cubes.clean Method
julia
clean(c::CleanMe)

finalizer function for CleanMe struct. The main process removes all directories/files which are not persistent.

source

YAXArrays.Cubes.copydata Method
julia
copydata(outar, inar, copybuf)

Internal function which copies the data from the input inar into the output outar at the copybuf positions.

source

YAXArrays.Cubes.optifunc Method
julia
optifunc(s, maxbuf, incs, outcs, insize, outsize, writefac)

Internal

This function is going to be minimized to detect the best possible chunk setting for the rechunking of the data.

source

YAXArrays.DAT.DATConfig Type

Configuration object of a DAT process. This holds all necessary information to perform the calculations. It contains the following fields:

  • incubes::NTuple{NIN, YAXArrays.DAT.InputCube} where NIN: The input data cubes

  • outcubes::NTuple{NOUT, YAXArrays.DAT.OutputCube} where NOUT: The output data cubes

  • allInAxes::Vector: List of all axes of the input cubes

  • LoopAxes::Vector: List of axes that are looped through

  • ispar::Bool: Flag whether the computation is parallelized

  • loopcachesize::Vector{Int64}:

  • allow_irregular_chunks::Bool:

  • max_cache::Any: Maximal size of the in memory cache

  • fu::Any: Inner function which is computed

  • inplace::Bool: Flag whether the computation happens in place

  • include_loopvars::Bool:

  • ntr::Any:

  • do_gc::Bool: Flag if GC should be called explicitly. Probably necessary for many runs in Julia 1.9

  • addargs::Any: Additional arguments for the inner function

  • kwargs::Any: Additional keyword arguments for the inner function

source

YAXArrays.DAT.InputCube Type

Internal representation of an input cube for DAT operations

  • cube: The input data

  • desc: The input description given by the user/registration

  • axesSmall: List of axes that were actually selected through the description

  • icolon

  • colonperm

  • loopinds: Indices of loop axes that this cube does not contain, i.e. broadcasts

  • cachesize: Number of elements to keep in cache along each axis

  • window

  • iwindow

  • windowloopinds

  • iall

source

YAXArrays.DAT.OutputCube Type

Internal representation of an output cube for DAT operations

Fields

  • cube: The actual outcube cube, once it is generated

  • cube_unpermuted: The unpermuted output cube

  • desc: The description of the output axes as given by users or registration

  • axesSmall: The list of output axes determined through the description

  • allAxes: List of all the axes of the cube

  • loopinds: Index of the loop axes that are broadcasted for this output cube

  • innerchunks

  • outtype: Elementtype of the outputcube

source

YAXArrays.DAT.YAXColumn Type
julia
YAXColumn

A struct representing a single column of a YAXArray partitioned Table # Fields

  • inarBC

  • inds

source

YAXArrays.DAT.cmpcachmisses Method

Function that compares two cache miss specifiers by their importance

source

YAXArrays.DAT.getFrontPerm Method

Calculate an axis permutation that brings the wanted dimensions to the front

source

YAXArrays.DAT.getLoopCacheSize Method

Calculate optimal Cache size to DAT operation

source

YAXArrays.DAT.getOuttype Method
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source

YAXArrays.DAT.getloopchunks Method
julia
getloopchunks(dc::DATConfig)

Internal function

Returns the chunks that can be looped over toghether for all dimensions.
-This computation of the size of the chunks is handled by [`DiskArrays.approx_chunksize`](@ref)

source

YAXArrays.DAT.permuteloopaxes Method
julia
permuteloopaxes(dc)

Internal function

Permute the dimensions of the cube, so that the axes that are looped through are in the first positions. This is necessary for a faster looping through the data.

source

YAXArrays.Cubes.setchunks Method
julia
setchunks(c::Dataset,chunks)

Resets the chunks of all or a subset YAXArrays in the dataset and returns a new Dataset. Note that this will not change the chunking of the underlying data itself, it will just make the data "look" like it had a different chunking. If you need a persistent on-disk representation of this chunking, use savedataset on the resulting array. The chunks argument can take one of the following forms:

  • a NamedTuple or AbstractDict mapping from variable name to a description of the desired variable chunks

  • a NamedTuple or AbstractDict mapping from dimension name to a description of the desired variable chunks

  • a description of the desired variable chunks applied to all members of the Dataset

where a description of the desired variable chunks can take one of the following forms:

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

  • an AbstractDict or NamedTuple mapping one or more axis names to chunk sizes

source

YAXArrays.Datasets.collectfromhandle Method

Extracts a YAXArray from a dataset handle that was just created from a arrayinfo

source

YAXArrays.Datasets.createdataset Method

function createdataset(DS::Type,axlist; kwargs...)

Creates a new dataset with axes specified in axlist. Each axis must be a subtype of CubeAxis. A new empty Zarr array will be created and can serve as a sink for mapCube operations.

Keyword arguments

  • path="" location where the new cube is stored

  • T=Union{Float32,Missing} data type of the target cube

  • chunksize = ntuple(i->length(axlist[i]),length(axlist)) chunk sizes of the array

  • chunkoffset = ntuple(i->0,length(axlist)) offsets of the chunks

  • persist::Bool=true shall the disk data be garbage-collected when the cube goes out of scope?

  • overwrite::Bool=false overwrite cube if it already exists

  • properties=Dict{String,Any}() additional cube properties

  • globalproperties=Dict{String,Any} global attributes to be added to the dataset

  • fillvalue= T>:Missing ? defaultfillval(Base.nonmissingtype(T)) : nothing fill value

  • datasetaxis="Variables" special treatment of a categorical axis that gets written into separate zarr arrays

  • layername="layer" Fallback name of the variable stored in the dataset if no datasetaxis is found

source

YAXArrays.Datasets.getarrayinfo Method

Extract necessary information to create a YAXArrayBase dataset from a name and YAXArray pair

source

YAXArrays.Datasets.testrange Method

Test if data in x can be approximated by a step range

source

- +For example to disregard differences of captialisation.

source

YAXArrays.Cubes.CleanMe Type
julia
mutable struct CleanMe

Struct which describes data paths and their persistency. Non-persistend paths/files are removed at finalize step

source

YAXArrays.Cubes.clean Method
julia
clean(c::CleanMe)

finalizer function for CleanMe struct. The main process removes all directories/files which are not persistent.

source

YAXArrays.Cubes.copydata Method
julia
copydata(outar, inar, copybuf)

Internal function which copies the data from the input inar into the output outar at the copybuf positions.

source

YAXArrays.Cubes.optifunc Method
julia
optifunc(s, maxbuf, incs, outcs, insize, outsize, writefac)

Internal

This function is going to be minimized to detect the best possible chunk setting for the rechunking of the data.

source

YAXArrays.DAT.DATConfig Type

Configuration object of a DAT process. This holds all necessary information to perform the calculations. It contains the following fields:

  • incubes::NTuple{NIN, YAXArrays.DAT.InputCube} where NIN: The input data cubes

  • outcubes::NTuple{NOUT, YAXArrays.DAT.OutputCube} where NOUT: The output data cubes

  • allInAxes::Vector: List of all axes of the input cubes

  • LoopAxes::Vector: List of axes that are looped through

  • ispar::Bool: Flag whether the computation is parallelized

  • loopcachesize::Vector{Int64}:

  • allow_irregular_chunks::Bool:

  • max_cache::Any: Maximal size of the in memory cache

  • fu::Any: Inner function which is computed

  • inplace::Bool: Flag whether the computation happens in place

  • include_loopvars::Bool:

  • ntr::Any:

  • do_gc::Bool: Flag if GC should be called explicitly. Probably necessary for many runs in Julia 1.9

  • addargs::Any: Additional arguments for the inner function

  • kwargs::Any: Additional keyword arguments for the inner function

source

YAXArrays.DAT.InputCube Type

Internal representation of an input cube for DAT operations

  • cube: The input data

  • desc: The input description given by the user/registration

  • axesSmall: List of axes that were actually selected through the description

  • icolon

  • colonperm

  • loopinds: Indices of loop axes that this cube does not contain, i.e. broadcasts

  • cachesize: Number of elements to keep in cache along each axis

  • window

  • iwindow

  • windowloopinds

  • iall

source

YAXArrays.DAT.OutputCube Type

Internal representation of an output cube for DAT operations

Fields

  • cube: The actual outcube cube, once it is generated

  • cube_unpermuted: The unpermuted output cube

  • desc: The description of the output axes as given by users or registration

  • axesSmall: The list of output axes determined through the description

  • allAxes: List of all the axes of the cube

  • loopinds: Index of the loop axes that are broadcasted for this output cube

  • innerchunks

  • outtype: Elementtype of the outputcube

source

YAXArrays.DAT.YAXColumn Type
julia
YAXColumn

A struct representing a single column of a YAXArray partitioned Table # Fields

  • inarBC

  • inds

source

YAXArrays.DAT.cmpcachmisses Method

Function that compares two cache miss specifiers by their importance

source

YAXArrays.DAT.getFrontPerm Method

Calculate an axis permutation that brings the wanted dimensions to the front

source

YAXArrays.DAT.getLoopCacheSize Method

Calculate optimal Cache size to DAT operation

source

YAXArrays.DAT.getOuttype Method
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source

YAXArrays.DAT.getloopchunks Method
julia
getloopchunks(dc::DATConfig)

Internal function

Returns the chunks that can be looped over toghether for all dimensions.
+This computation of the size of the chunks is handled by [`DiskArrays.approx_chunksize`](@ref)

source

YAXArrays.DAT.permuteloopaxes Method
julia
permuteloopaxes(dc)

Internal function

Permute the dimensions of the cube, so that the axes that are looped through are in the first positions. This is necessary for a faster looping through the data.

source

YAXArrays.Cubes.setchunks Method
julia
setchunks(c::Dataset,chunks)

Resets the chunks of all or a subset YAXArrays in the dataset and returns a new Dataset. Note that this will not change the chunking of the underlying data itself, it will just make the data "look" like it had a different chunking. If you need a persistent on-disk representation of this chunking, use savedataset on the resulting array. The chunks argument can take one of the following forms:

  • a NamedTuple or AbstractDict mapping from variable name to a description of the desired variable chunks

  • a NamedTuple or AbstractDict mapping from dimension name to a description of the desired variable chunks

  • a description of the desired variable chunks applied to all members of the Dataset

where a description of the desired variable chunks can take one of the following forms:

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

  • an AbstractDict or NamedTuple mapping one or more axis names to chunk sizes

source

YAXArrays.Datasets.collectfromhandle Method

Extracts a YAXArray from a dataset handle that was just created from a arrayinfo

source

YAXArrays.Datasets.createdataset Method
julia
function createdataset(DS::Type,axlist; kwargs...)

Creates a new dataset with axes specified in axlist. Each axis must be a subtype of CubeAxis. A new empty Zarr array will be created and can serve as a sink for mapCube operations.

Keyword arguments

  • path="" location where the new cube is stored

  • T=Union{Float32,Missing} data type of the target cube

  • chunksize = ntuple(i->length(axlist[i]),length(axlist)) chunk sizes of the array

  • chunkoffset = ntuple(i->0,length(axlist)) offsets of the chunks

  • persist::Bool=true shall the disk data be garbage-collected when the cube goes out of scope?

  • overwrite::Bool=false overwrite cube if it already exists

  • properties=Dict{String,Any}() additional cube properties

  • globalproperties=Dict{String,Any} global attributes to be added to the dataset

  • fillvalue= T>:Missing ? defaultfillval(Base.nonmissingtype(T)) : nothing fill value

  • datasetaxis="Variables" special treatment of a categorical axis that gets written into separate zarr arrays

  • layername="layer" Fallback name of the variable stored in the dataset if no datasetaxis is found

source

YAXArrays.Datasets.getarrayinfo Method

Extract necessary information to create a YAXArrayBase dataset from a name and YAXArray pair

source

YAXArrays.Datasets.testrange Method

Test if data in x can be approximated by a step range

source

+ \ No newline at end of file diff --git a/previews/PR479/assets/UserGuide_combine.md.B3kKJwRR.js b/previews/PR479/assets/UserGuide_combine.md.BYUU3tRz.js similarity index 94% rename from previews/PR479/assets/UserGuide_combine.md.B3kKJwRR.js rename to previews/PR479/assets/UserGuide_combine.md.BYUU3tRz.js index 796b2629..d9450c3b 100644 --- a/previews/PR479/assets/UserGuide_combine.md.B3kKJwRR.js +++ b/previews/PR479/assets/UserGuide_combine.md.BYUU3tRz.js @@ -1,11 +1,10 @@ -import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const E=JSON.parse('{"title":"Combine YAXArrays","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/combine.md","filePath":"UserGuide/combine.md","lastUpdated":null}'),t={name:"UserGuide/combine.md"};function p(l,s,h,k,r,d){return e(),a("div",null,s[0]||(s[0]=[n(`

Combine YAXArrays

Data is often scattered across multiple files and corresponding arrays, e.g. one file per time step. This section describes methods on how to combine them into a single YAXArray.

cat along an existing dimension

Here we use cat to combine two arrays consisting of data from the first and the second half of a year into one single array containing the whole year. We glue the arrays along the first dimension using dims = 1: The resulting array whole_year still has one dimension, i.e. time, but with 12 instead of 6 elements.

julia
using YAXArrays
+import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const E=JSON.parse('{"title":"Combine YAXArrays","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/combine.md","filePath":"UserGuide/combine.md","lastUpdated":null}'),t={name:"UserGuide/combine.md"};function h(l,s,p,k,r,d){return e(),a("div",null,s[0]||(s[0]=[n(`

Combine YAXArrays

Data is often scattered across multiple files and corresponding arrays, e.g. one file per time step. This section describes methods on how to combine them into a single YAXArray.

cat along an existing dimension

Here we use cat to combine two arrays consisting of data from the first and the second half of a year into one single array containing the whole year. We glue the arrays along the first dimension using dims = 1: The resulting array whole_year still has one dimension, i.e. time, but with 12 instead of 6 elements.

julia
using YAXArrays
 using YAXArrays: YAXArrays as YAX
 
 first_half = YAXArray((YAX.time(1:6),), rand(6))
 second_half = YAXArray((YAX.time(7:12),), rand(6))
-whole_year = cat(first_half, second_half, dims = 1)
╭────────────────────────────────╮
-│ 12-element YAXArray{Float64,1} │
-├────────────────────────────────┴──────────────────────────────── dims ┐
+whole_year = cat(first_half, second_half, dims = 1)
┌ 12-element YAXArray{Float64, 1} ┐
+├─────────────────────────────────┴─────────────────────────────── dims ┐
   ↓ time Sampled{Int64} [1, 2, …, 11, 12] ForwardOrdered Regular Points
 ├───────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
@@ -18,13 +17,12 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const E
 precipitation = YAXArray((YAX.time(1:6),), rand(6))
 cubes = [temperature,precipitation]
 var_axis = Variables(["temp", "prep"])
-combined = concatenatecubes(cubes, var_axis)
╭─────────────────────────╮
-│ 6×2 YAXArray{Float64,2} │
-├─────────────────────────┴───────────────────────────────── dims ┐
+combined = concatenatecubes(cubes, var_axis)
┌ 6×2 YAXArray{Float64, 2} ┐
+├──────────────────────────┴──────────────────────────────── dims ┐
   ↓ time      Sampled{Int64} 1:6 ForwardOrdered Regular Points,
   → Variables Categorical{String} ["temp", "prep"] ReverseOrdered
 ├─────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├────────────────────────────────────────────────── loaded lazily ┤
   data size: 96.0 bytes
-└─────────────────────────────────────────────────────────────────┘
`,10)]))}const c=i(t,[["render",p]]);export{E as __pageData,c as default}; +└─────────────────────────────────────────────────────────────────┘
`,10)]))}const g=i(t,[["render",h]]);export{E as __pageData,g as default}; diff --git a/previews/PR479/assets/UserGuide_combine.md.B3kKJwRR.lean.js b/previews/PR479/assets/UserGuide_combine.md.BYUU3tRz.lean.js similarity index 94% rename from previews/PR479/assets/UserGuide_combine.md.B3kKJwRR.lean.js rename to previews/PR479/assets/UserGuide_combine.md.BYUU3tRz.lean.js index 796b2629..d9450c3b 100644 --- a/previews/PR479/assets/UserGuide_combine.md.B3kKJwRR.lean.js +++ b/previews/PR479/assets/UserGuide_combine.md.BYUU3tRz.lean.js @@ -1,11 +1,10 @@ -import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const E=JSON.parse('{"title":"Combine YAXArrays","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/combine.md","filePath":"UserGuide/combine.md","lastUpdated":null}'),t={name:"UserGuide/combine.md"};function p(l,s,h,k,r,d){return e(),a("div",null,s[0]||(s[0]=[n(`

Combine YAXArrays

Data is often scattered across multiple files and corresponding arrays, e.g. one file per time step. This section describes methods on how to combine them into a single YAXArray.

cat along an existing dimension

Here we use cat to combine two arrays consisting of data from the first and the second half of a year into one single array containing the whole year. We glue the arrays along the first dimension using dims = 1: The resulting array whole_year still has one dimension, i.e. time, but with 12 instead of 6 elements.

julia
using YAXArrays
+import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const E=JSON.parse('{"title":"Combine YAXArrays","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/combine.md","filePath":"UserGuide/combine.md","lastUpdated":null}'),t={name:"UserGuide/combine.md"};function h(l,s,p,k,r,d){return e(),a("div",null,s[0]||(s[0]=[n(`

Combine YAXArrays

Data is often scattered across multiple files and corresponding arrays, e.g. one file per time step. This section describes methods on how to combine them into a single YAXArray.

cat along an existing dimension

Here we use cat to combine two arrays consisting of data from the first and the second half of a year into one single array containing the whole year. We glue the arrays along the first dimension using dims = 1: The resulting array whole_year still has one dimension, i.e. time, but with 12 instead of 6 elements.

julia
using YAXArrays
 using YAXArrays: YAXArrays as YAX
 
 first_half = YAXArray((YAX.time(1:6),), rand(6))
 second_half = YAXArray((YAX.time(7:12),), rand(6))
-whole_year = cat(first_half, second_half, dims = 1)
╭────────────────────────────────╮
-│ 12-element YAXArray{Float64,1} │
-├────────────────────────────────┴──────────────────────────────── dims ┐
+whole_year = cat(first_half, second_half, dims = 1)
┌ 12-element YAXArray{Float64, 1} ┐
+├─────────────────────────────────┴─────────────────────────────── dims ┐
   ↓ time Sampled{Int64} [1, 2, …, 11, 12] ForwardOrdered Regular Points
 ├───────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
@@ -18,13 +17,12 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const E
 precipitation = YAXArray((YAX.time(1:6),), rand(6))
 cubes = [temperature,precipitation]
 var_axis = Variables(["temp", "prep"])
-combined = concatenatecubes(cubes, var_axis)
╭─────────────────────────╮
-│ 6×2 YAXArray{Float64,2} │
-├─────────────────────────┴───────────────────────────────── dims ┐
+combined = concatenatecubes(cubes, var_axis)
┌ 6×2 YAXArray{Float64, 2} ┐
+├──────────────────────────┴──────────────────────────────── dims ┐
   ↓ time      Sampled{Int64} 1:6 ForwardOrdered Regular Points,
   → Variables Categorical{String} ["temp", "prep"] ReverseOrdered
 ├─────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├────────────────────────────────────────────────── loaded lazily ┤
   data size: 96.0 bytes
-└─────────────────────────────────────────────────────────────────┘
`,10)]))}const c=i(t,[["render",p]]);export{E as __pageData,c as default}; +└─────────────────────────────────────────────────────────────────┘
`,10)]))}const g=i(t,[["render",h]]);export{E as __pageData,g as default}; diff --git a/previews/PR479/assets/UserGuide_compute.md.GnwBFM_7.js b/previews/PR479/assets/UserGuide_compute.md.CEww8r0_.js similarity index 95% rename from previews/PR479/assets/UserGuide_compute.md.GnwBFM_7.js rename to previews/PR479/assets/UserGuide_compute.md.CEww8r0_.js index b6407648..9a292e9e 100644 --- a/previews/PR479/assets/UserGuide_compute.md.GnwBFM_7.js +++ b/previews/PR479/assets/UserGuide_compute.md.CEww8r0_.js @@ -9,9 +9,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g ) data = rand(30, 10, 15) properties = Dict(:origin => "user guide") -a = YAXArray(axlist, data, properties)
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+a = YAXArray(axlist, data, properties)
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -20,9 +19,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
   :origin => "user guide"
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 35.16 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.062032476785460866
julia
a[1,2,3] = 42
42
julia
a[1,2,3]
42.0

WARNING

Some arrays, e.g. those saved in a cloud object storage are immutable making any modification of the data impossible.

Arithmetics

Add a value to all elements of an array and save it as a new array:

julia
a2 = a .+ 5
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.053923887690016103
julia
a[1,2,3] = 42
42
julia
a[1,2,3]
42.0

WARNING

Some arrays, e.g. those saved in a cloud object storage are immutable making any modification of the data impossible.

Arithmetics

Add a value to all elements of an array and save it as a new array:

julia
a2 = a .+ 5
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -34,9 +32,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 └──────────────────────────────────────────────────────────────────────────────┘
julia
a2[1,2,3] == a[1,2,3] + 5
true

map

Apply a function on every element of an array individually:

julia
offset = 5
 map(a) do x
     (x + offset) / 2 * 3
-end
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+end
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -46,18 +43,16 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 35.16 KB
 └──────────────────────────────────────────────────────────────────────────────┘

This keeps all dimensions unchanged. Note, that here we can not access neighboring elements. In this case, we can use mapslices or mapCube instead. Each element of the array is processed individually.

The code runs very fast, because map applies the function lazily. Actual computation will be performed only on demand, e.g. when elements were explicitly requested or further computations were performed.

mapslices

Reduce the time dimension by calculating the average value of all points in time:

julia
import Statistics: mean
-mapslices(mean, a, dims="Time")
╭───────────────────────────────────────────╮
-│ 10×15 YAXArray{Union{Missing, Float64},2} │
-├───────────────────────────────────────────┴──────────────────────────── dims ┐
+mapslices(mean, a, dims="Time")
┌ 10×15 YAXArray{Union{Missing, Float64}, 2} ┐
+├────────────────────────────────────────────┴─────────────────────────── dims ┐
   ↓ lon Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   → lat Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 1.17 KB
-└──────────────────────────────────────────────────────────────────────────────┘

There is no time dimension left, because there is only one value left after averaging all time steps. We can also calculate spatial means resulting in one value per time step:

julia
mapslices(mean, a, dims=("lat", "lon"))
╭────────────────────────────────────────────────╮
-│ 30-element YAXArray{Union{Missing, Float64},1} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

There is no time dimension left, because there is only one value left after averaging all time steps. We can also calculate spatial means resulting in one value per time step:

julia
mapslices(mean, a, dims=("lat", "lon"))
┌ 30-element YAXArray{Union{Missing, Float64}, 1} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
@@ -67,26 +62,23 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 using YAXArrays: YAXArrays as YAX
 using Dates

Define function in space and time

julia
f(lo, la, t) = (lo + la + Dates.dayofyear(t))
f (generic function with 1 method)

now, mapCube requires this function to be wrapped as follows

julia
function g(xout, lo, la, t)
     xout .= f.(lo, la, t)
-end
g (generic function with 1 method)

INFO

Note the . after f, this is because we will slice across time, namely, the function is broadcasted along this dimension.

Here, we do create YAXArrays only with the desired dimensions as

julia
julia> lon_yax = YAXArray(lon(range(1, 15)))
╭──────────────────────────────╮
-15-element YAXArray{Int64,1}
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+end
g (generic function with 1 method)

INFO

Note the . after f, this is because we will slice across time, namely, the function is broadcasted along this dimension.

Here, we do create YAXArrays only with the desired dimensions as

julia
julia> lon_yax = YAXArray(lon(range(1, 15)))
15-element YAXArray{Int64, 1}
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
 lon Sampled{Int64} 1:15 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 120.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> lat_yax = YAXArray(lat(range(1, 10)))
╭──────────────────────────────╮
-10-element YAXArray{Int64,1}
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> lat_yax = YAXArray(lat(range(1, 10)))
10-element YAXArray{Int64, 1}
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
 lat Sampled{Int64} 1:10 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 80.0 bytes
 └──────────────────────────────────────────────────────────────────────────────┘

And a time Cube's Axis

julia
tspan = Date("2022-01-01"):Day(1):Date("2022-01-30")
-time_yax = YAXArray(YAX.time(tspan))
╭─────────────────────────────╮
-│ 30-element YAXArray{Date,1} │
-├─────────────────────────────┴────────────────────────────────────────── dims ┐
+time_yax = YAXArray(YAX.time(tspan))
┌ 30-element YAXArray{Date, 1} ┐
+├──────────────────────────────┴───────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
@@ -97,9 +89,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
            outdims = OutDims("time", overwrite=true, path="my_gen_cube.zarr", backend=:zarr,
            outtype = Float32)
            # max_cache=1e9
-       )
╭──────────────────────────────────────────────╮
-30×15×10 YAXArray{Union{Missing, Float32},3}
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+       )
30×15×10 YAXArray{Union{Missing, Float32}, 3}
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
 time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
 lon  Sampled{Int64} 1:15 ForwardOrdered Regular Points,
 lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points
@@ -128,9 +119,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
            outdims = OutDims("lon", overwrite=true, path="my_gen_cube.zarr", backend=:zarr,
            outtype = Float32)
            # max_cache=1e9
-       )
╭──────────────────────────────────────────────╮
-15×10×30 YAXArray{Union{Missing, Float32},3}
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+       )
15×10×30 YAXArray{Union{Missing, Float32}, 3}
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
 lon  Sampled{Int64} 1:15 ForwardOrdered Regular Points,
 lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
 time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points
@@ -171,9 +161,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 data = rand(1:5, 5, 4, 3, 2)
 
 properties = Dict("description" => "multi dimensional test cube")
-yax_test = YAXArray(axlist, data, properties)
╭───────────────────────────╮
-│ 5×4×3×2 YAXArray{Int64,4} │
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+yax_test = YAXArray(axlist, data, properties)
┌ 5×4×3×2 YAXArray{Int64, 4} ┐
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
   ↓ time      Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-05") ForwardOrdered Regular Points,
   → lon       Sampled{Float64} 1.0:1.0:4.0 ForwardOrdered Regular Points,
   ↗ lat       Sampled{Float64} 1.0:1.0:3.0 ForwardOrdered Regular Points,
@@ -200,9 +189,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 outdims_two = OutDims("Time"; properties=properties_two)
 outdims_flat = OutDims(;) # it will get the default \`layer\` name if open as dataset
OutDims((), :auto, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), false, Array, :input, 1)
julia
ds = mapCube(one_to_many, yax_test,
     indims = indims_one,
-    outdims = (outdims_one, outdims_two, outdims_flat));

let's see the second output

julia
ds[2]
╭───────────────────────────────────────────╮
-│ 5×4×3×2 YAXArray{Union{Missing, Int64},4} │
-├───────────────────────────────────────────┴──────────────────────────── dims ┐
+    outdims = (outdims_one, outdims_two, outdims_flat));

let's see the second output

julia
ds[2]
┌ 5×4×3×2 YAXArray{Union{Missing, Int64}, 4} ┐
+├────────────────────────────────────────────┴─────────────────────────── dims ┐
   ↓ time      Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-05") ForwardOrdered Regular Points,
   → lon       Sampled{Float64} 1.0:1.0:4.0 ForwardOrdered Regular Points,
   ↗ lat       Sampled{Float64} 1.0:1.0:3.0 ForwardOrdered Regular Points,
@@ -213,9 +201,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 960.0 bytes
 └──────────────────────────────────────────────────────────────────────────────┘

Many InDims to many OutDims

Let's consider a second test set

julia
properties_2d = Dict("description" => "2d dimensional test cube")
-yax_2d = YAXArray(axlist[2:end], rand(-1:1, 4, 3, 2), properties_2d)
╭─────────────────────────╮
-│ 4×3×2 YAXArray{Int64,3} │
-├─────────────────────────┴───────────────────────────────────────── dims ┐
+yax_2d = YAXArray(axlist[2:end], rand(-1:1, 4, 3, 2), properties_2d)
┌ 4×3×2 YAXArray{Int64, 3} ┐
+├──────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ lon       Sampled{Float64} 1.0:1.0:4.0 ForwardOrdered Regular Points,
   → lat       Sampled{Float64} 1.0:1.0:3.0 ForwardOrdered Regular Points,
   ↗ Variables Categorical{String} ["a", "b"] ForwardOrdered
@@ -248,9 +235,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 data = rand(3.0:5.0, 5, 4, 3)
 
 axlist = (lon(1:4), lat(1:3), Dim{:depth}(1:7),)
-yax_2d = YAXArray(axlist, rand(-3.0:0.0, 4, 3, 7))
╭───────────────────────────╮
-│ 4×3×7 YAXArray{Float64,3} │
-├───────────────────────────┴───────────────────────── dims ┐
+yax_2d = YAXArray(axlist, rand(-3.0:0.0, 4, 3, 7))
┌ 4×3×7 YAXArray{Float64, 3} ┐
+├────────────────────────────┴──────────────────────── dims ┐
   ↓ lon   Sampled{Int64} 1:4 ForwardOrdered Regular Points,
   → lat   Sampled{Int64} 1:3 ForwardOrdered Regular Points,
   ↗ depth Sampled{Int64} 1:7 ForwardOrdered Regular Points
@@ -265,9 +251,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
     lon(1:4), lat(1:3),)
 
 properties = Dict("description" => "multi dimensional test cube")
-yax_test = YAXArray(axlist, data, properties)
╭───────────────────────────╮
-│ 5×4×3 YAXArray{Float64,3} │
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+yax_test = YAXArray(axlist, data, properties)
┌ 5×4×3 YAXArray{Float64, 3} ┐
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-05") ForwardOrdered Regular Points,
   → lon  Sampled{Int64} 1:4 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Int64} 1:3 ForwardOrdered Regular Points
@@ -287,9 +272,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
     return nothing
 end
time_depth (generic function with 1 method)

with the final mapCube operation as follows

julia
ds = mapCube(time_depth, (yax_test, yax_2d),
     indims = (InDims("Time"), InDims("depth")), # ? anchor dimensions and then map over the others.
-    outdims = OutDims("Time"))
╭───────────────────────────────────────────╮
-│ 5×4×3 YAXArray{Union{Missing, Float64},3} │
-├───────────────────────────────────────────┴──────────────────────────── dims ┐
+    outdims = OutDims("Time"))
┌ 5×4×3 YAXArray{Union{Missing, Float64}, 3} ┐
+├────────────────────────────────────────────┴─────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-05") ForwardOrdered Regular Points,
   → lon  Sampled{Int64} 1:4 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Int64} 1:3 ForwardOrdered Regular Points
@@ -308,9 +292,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
     lat(range(1, 5, length=15)),
 )
 data = rand(30, 10, 15)
-raster_arr = YAXArray(axlist, data)
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+raster_arr = YAXArray(axlist, data)
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -324,9 +307,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
     10 <= lon < 15 && 1 <= lat < 5 && return "C"
     return "D"
 end
-regions_mat = DimArray(regions_mat, (raster_arr.lon, raster_arr.lat))
╭──────────────────────────╮
-│ 10×15 DimArray{String,2} │
-├──────────────────────────┴───────────────────────────────────────────── dims ┐
+regions_mat = DimArray(regions_mat, (raster_arr.lon, raster_arr.lat))
┌ 10×15 DimArray{String, 2} ┐
+├───────────────────────────┴──────────────────────────────────────────── dims ┐
   ↓ lon Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   → lat Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
 └──────────────────────────────────────────────────────────────────────────────┘
@@ -340,9 +322,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
   7.0   "A"   "A"      "A"      "A"         "A"      "A"      "A"      "B"
   8.0   "A"   "A"      "A"      "A"         "A"      "A"      "A"      "B"
   9.0   "A"   "A"      "A"      "A"         "A"      "A"      "A"      "B"
- 10.0   "C"   "C"      "C"      "C"     …   "C"      "C"      "C"      "D"

which has the same spatial dimensions as the raster array at any given point in time:

julia
DimArray(raster_arr[time = 1])
╭───────────────────────────╮
-│ 10×15 DimArray{Float64,2} │
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+ 10.0   "C"   "C"      "C"      "C"     …   "C"      "C"      "C"      "D"

which has the same spatial dimensions as the raster array at any given point in time:

julia
DimArray(raster_arr[time = 1])
┌ 10×15 DimArray{Float64, 2} ┐
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
   ↓ lon Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   → lat Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -371,9 +352,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
         # aggregate values of points in the current region at the current date
         xout[region_pos] = sum(view(xin, points))
     end
-end
╭──────────────────────────────────────────╮
-│ 4×30 YAXArray{Union{Missing, Float64},2} │
-├──────────────────────────────────────────┴───────────────────────────── dims ┐
+end
┌ 4×30 YAXArray{Union{Missing, Float64}, 2} ┐
+├───────────────────────────────────────────┴──────────────────────────── dims ┐
   ↓ region Categorical{String} ["A", "B", "C", "D"] ForwardOrdered,
   → time   Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
diff --git a/previews/PR479/assets/UserGuide_compute.md.GnwBFM_7.lean.js b/previews/PR479/assets/UserGuide_compute.md.CEww8r0_.lean.js
similarity index 95%
rename from previews/PR479/assets/UserGuide_compute.md.GnwBFM_7.lean.js
rename to previews/PR479/assets/UserGuide_compute.md.CEww8r0_.lean.js
index b6407648..9a292e9e 100644
--- a/previews/PR479/assets/UserGuide_compute.md.GnwBFM_7.lean.js
+++ b/previews/PR479/assets/UserGuide_compute.md.CEww8r0_.lean.js
@@ -9,9 +9,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 )
 data = rand(30, 10, 15)
 properties = Dict(:origin => "user guide")
-a = YAXArray(axlist, data, properties)
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+a = YAXArray(axlist, data, properties)
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -20,9 +19,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
   :origin => "user guide"
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 35.16 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.062032476785460866
julia
a[1,2,3] = 42
42
julia
a[1,2,3]
42.0

WARNING

Some arrays, e.g. those saved in a cloud object storage are immutable making any modification of the data impossible.

Arithmetics

Add a value to all elements of an array and save it as a new array:

julia
a2 = a .+ 5
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.053923887690016103
julia
a[1,2,3] = 42
42
julia
a[1,2,3]
42.0

WARNING

Some arrays, e.g. those saved in a cloud object storage are immutable making any modification of the data impossible.

Arithmetics

Add a value to all elements of an array and save it as a new array:

julia
a2 = a .+ 5
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -34,9 +32,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 └──────────────────────────────────────────────────────────────────────────────┘
julia
a2[1,2,3] == a[1,2,3] + 5
true

map

Apply a function on every element of an array individually:

julia
offset = 5
 map(a) do x
     (x + offset) / 2 * 3
-end
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+end
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -46,18 +43,16 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 35.16 KB
 └──────────────────────────────────────────────────────────────────────────────┘

This keeps all dimensions unchanged. Note, that here we can not access neighboring elements. In this case, we can use mapslices or mapCube instead. Each element of the array is processed individually.

The code runs very fast, because map applies the function lazily. Actual computation will be performed only on demand, e.g. when elements were explicitly requested or further computations were performed.

mapslices

Reduce the time dimension by calculating the average value of all points in time:

julia
import Statistics: mean
-mapslices(mean, a, dims="Time")
╭───────────────────────────────────────────╮
-│ 10×15 YAXArray{Union{Missing, Float64},2} │
-├───────────────────────────────────────────┴──────────────────────────── dims ┐
+mapslices(mean, a, dims="Time")
┌ 10×15 YAXArray{Union{Missing, Float64}, 2} ┐
+├────────────────────────────────────────────┴─────────────────────────── dims ┐
   ↓ lon Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   → lat Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 1.17 KB
-└──────────────────────────────────────────────────────────────────────────────┘

There is no time dimension left, because there is only one value left after averaging all time steps. We can also calculate spatial means resulting in one value per time step:

julia
mapslices(mean, a, dims=("lat", "lon"))
╭────────────────────────────────────────────────╮
-│ 30-element YAXArray{Union{Missing, Float64},1} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

There is no time dimension left, because there is only one value left after averaging all time steps. We can also calculate spatial means resulting in one value per time step:

julia
mapslices(mean, a, dims=("lat", "lon"))
┌ 30-element YAXArray{Union{Missing, Float64}, 1} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
@@ -67,26 +62,23 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 using YAXArrays: YAXArrays as YAX
 using Dates

Define function in space and time

julia
f(lo, la, t) = (lo + la + Dates.dayofyear(t))
f (generic function with 1 method)

now, mapCube requires this function to be wrapped as follows

julia
function g(xout, lo, la, t)
     xout .= f.(lo, la, t)
-end
g (generic function with 1 method)

INFO

Note the . after f, this is because we will slice across time, namely, the function is broadcasted along this dimension.

Here, we do create YAXArrays only with the desired dimensions as

julia
julia> lon_yax = YAXArray(lon(range(1, 15)))
╭──────────────────────────────╮
-15-element YAXArray{Int64,1}
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+end
g (generic function with 1 method)

INFO

Note the . after f, this is because we will slice across time, namely, the function is broadcasted along this dimension.

Here, we do create YAXArrays only with the desired dimensions as

julia
julia> lon_yax = YAXArray(lon(range(1, 15)))
15-element YAXArray{Int64, 1}
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
 lon Sampled{Int64} 1:15 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 120.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> lat_yax = YAXArray(lat(range(1, 10)))
╭──────────────────────────────╮
-10-element YAXArray{Int64,1}
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> lat_yax = YAXArray(lat(range(1, 10)))
10-element YAXArray{Int64, 1}
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
 lat Sampled{Int64} 1:10 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 80.0 bytes
 └──────────────────────────────────────────────────────────────────────────────┘

And a time Cube's Axis

julia
tspan = Date("2022-01-01"):Day(1):Date("2022-01-30")
-time_yax = YAXArray(YAX.time(tspan))
╭─────────────────────────────╮
-│ 30-element YAXArray{Date,1} │
-├─────────────────────────────┴────────────────────────────────────────── dims ┐
+time_yax = YAXArray(YAX.time(tspan))
┌ 30-element YAXArray{Date, 1} ┐
+├──────────────────────────────┴───────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
@@ -97,9 +89,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
            outdims = OutDims("time", overwrite=true, path="my_gen_cube.zarr", backend=:zarr,
            outtype = Float32)
            # max_cache=1e9
-       )
╭──────────────────────────────────────────────╮
-30×15×10 YAXArray{Union{Missing, Float32},3}
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+       )
30×15×10 YAXArray{Union{Missing, Float32}, 3}
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
 time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
 lon  Sampled{Int64} 1:15 ForwardOrdered Regular Points,
 lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points
@@ -128,9 +119,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
            outdims = OutDims("lon", overwrite=true, path="my_gen_cube.zarr", backend=:zarr,
            outtype = Float32)
            # max_cache=1e9
-       )
╭──────────────────────────────────────────────╮
-15×10×30 YAXArray{Union{Missing, Float32},3}
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+       )
15×10×30 YAXArray{Union{Missing, Float32}, 3}
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
 lon  Sampled{Int64} 1:15 ForwardOrdered Regular Points,
 lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
 time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points
@@ -171,9 +161,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 data = rand(1:5, 5, 4, 3, 2)
 
 properties = Dict("description" => "multi dimensional test cube")
-yax_test = YAXArray(axlist, data, properties)
╭───────────────────────────╮
-│ 5×4×3×2 YAXArray{Int64,4} │
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+yax_test = YAXArray(axlist, data, properties)
┌ 5×4×3×2 YAXArray{Int64, 4} ┐
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
   ↓ time      Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-05") ForwardOrdered Regular Points,
   → lon       Sampled{Float64} 1.0:1.0:4.0 ForwardOrdered Regular Points,
   ↗ lat       Sampled{Float64} 1.0:1.0:3.0 ForwardOrdered Regular Points,
@@ -200,9 +189,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 outdims_two = OutDims("Time"; properties=properties_two)
 outdims_flat = OutDims(;) # it will get the default \`layer\` name if open as dataset
OutDims((), :auto, Base.Pairs{Symbol, Union{}, Tuple{}, @NamedTuple{}}(), false, Array, :input, 1)
julia
ds = mapCube(one_to_many, yax_test,
     indims = indims_one,
-    outdims = (outdims_one, outdims_two, outdims_flat));

let's see the second output

julia
ds[2]
╭───────────────────────────────────────────╮
-│ 5×4×3×2 YAXArray{Union{Missing, Int64},4} │
-├───────────────────────────────────────────┴──────────────────────────── dims ┐
+    outdims = (outdims_one, outdims_two, outdims_flat));

let's see the second output

julia
ds[2]
┌ 5×4×3×2 YAXArray{Union{Missing, Int64}, 4} ┐
+├────────────────────────────────────────────┴─────────────────────────── dims ┐
   ↓ time      Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-05") ForwardOrdered Regular Points,
   → lon       Sampled{Float64} 1.0:1.0:4.0 ForwardOrdered Regular Points,
   ↗ lat       Sampled{Float64} 1.0:1.0:3.0 ForwardOrdered Regular Points,
@@ -213,9 +201,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 960.0 bytes
 └──────────────────────────────────────────────────────────────────────────────┘

Many InDims to many OutDims

Let's consider a second test set

julia
properties_2d = Dict("description" => "2d dimensional test cube")
-yax_2d = YAXArray(axlist[2:end], rand(-1:1, 4, 3, 2), properties_2d)
╭─────────────────────────╮
-│ 4×3×2 YAXArray{Int64,3} │
-├─────────────────────────┴───────────────────────────────────────── dims ┐
+yax_2d = YAXArray(axlist[2:end], rand(-1:1, 4, 3, 2), properties_2d)
┌ 4×3×2 YAXArray{Int64, 3} ┐
+├──────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ lon       Sampled{Float64} 1.0:1.0:4.0 ForwardOrdered Regular Points,
   → lat       Sampled{Float64} 1.0:1.0:3.0 ForwardOrdered Regular Points,
   ↗ Variables Categorical{String} ["a", "b"] ForwardOrdered
@@ -248,9 +235,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 data = rand(3.0:5.0, 5, 4, 3)
 
 axlist = (lon(1:4), lat(1:3), Dim{:depth}(1:7),)
-yax_2d = YAXArray(axlist, rand(-3.0:0.0, 4, 3, 7))
╭───────────────────────────╮
-│ 4×3×7 YAXArray{Float64,3} │
-├───────────────────────────┴───────────────────────── dims ┐
+yax_2d = YAXArray(axlist, rand(-3.0:0.0, 4, 3, 7))
┌ 4×3×7 YAXArray{Float64, 3} ┐
+├────────────────────────────┴──────────────────────── dims ┐
   ↓ lon   Sampled{Int64} 1:4 ForwardOrdered Regular Points,
   → lat   Sampled{Int64} 1:3 ForwardOrdered Regular Points,
   ↗ depth Sampled{Int64} 1:7 ForwardOrdered Regular Points
@@ -265,9 +251,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
     lon(1:4), lat(1:3),)
 
 properties = Dict("description" => "multi dimensional test cube")
-yax_test = YAXArray(axlist, data, properties)
╭───────────────────────────╮
-│ 5×4×3 YAXArray{Float64,3} │
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+yax_test = YAXArray(axlist, data, properties)
┌ 5×4×3 YAXArray{Float64, 3} ┐
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-05") ForwardOrdered Regular Points,
   → lon  Sampled{Int64} 1:4 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Int64} 1:3 ForwardOrdered Regular Points
@@ -287,9 +272,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
     return nothing
 end
time_depth (generic function with 1 method)

with the final mapCube operation as follows

julia
ds = mapCube(time_depth, (yax_test, yax_2d),
     indims = (InDims("Time"), InDims("depth")), # ? anchor dimensions and then map over the others.
-    outdims = OutDims("Time"))
╭───────────────────────────────────────────╮
-│ 5×4×3 YAXArray{Union{Missing, Float64},3} │
-├───────────────────────────────────────────┴──────────────────────────── dims ┐
+    outdims = OutDims("Time"))
┌ 5×4×3 YAXArray{Union{Missing, Float64}, 3} ┐
+├────────────────────────────────────────────┴─────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-05") ForwardOrdered Regular Points,
   → lon  Sampled{Int64} 1:4 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Int64} 1:3 ForwardOrdered Regular Points
@@ -308,9 +292,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
     lat(range(1, 5, length=15)),
 )
 data = rand(30, 10, 15)
-raster_arr = YAXArray(axlist, data)
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+raster_arr = YAXArray(axlist, data)
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -324,9 +307,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
     10 <= lon < 15 && 1 <= lat < 5 && return "C"
     return "D"
 end
-regions_mat = DimArray(regions_mat, (raster_arr.lon, raster_arr.lat))
╭──────────────────────────╮
-│ 10×15 DimArray{String,2} │
-├──────────────────────────┴───────────────────────────────────────────── dims ┐
+regions_mat = DimArray(regions_mat, (raster_arr.lon, raster_arr.lat))
┌ 10×15 DimArray{String, 2} ┐
+├───────────────────────────┴──────────────────────────────────────────── dims ┐
   ↓ lon Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   → lat Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
 └──────────────────────────────────────────────────────────────────────────────┘
@@ -340,9 +322,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
   7.0   "A"   "A"      "A"      "A"         "A"      "A"      "A"      "B"
   8.0   "A"   "A"      "A"      "A"         "A"      "A"      "A"      "B"
   9.0   "A"   "A"      "A"      "A"         "A"      "A"      "A"      "B"
- 10.0   "C"   "C"      "C"      "C"     …   "C"      "C"      "C"      "D"

which has the same spatial dimensions as the raster array at any given point in time:

julia
DimArray(raster_arr[time = 1])
╭───────────────────────────╮
-│ 10×15 DimArray{Float64,2} │
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+ 10.0   "C"   "C"      "C"      "C"     …   "C"      "C"      "C"      "D"

which has the same spatial dimensions as the raster array at any given point in time:

julia
DimArray(raster_arr[time = 1])
┌ 10×15 DimArray{Float64, 2} ┐
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
   ↓ lon Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   → lat Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -371,9 +352,8 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
         # aggregate values of points in the current region at the current date
         xout[region_pos] = sum(view(xin, points))
     end
-end
╭──────────────────────────────────────────╮
-│ 4×30 YAXArray{Union{Missing, Float64},2} │
-├──────────────────────────────────────────┴───────────────────────────── dims ┐
+end
┌ 4×30 YAXArray{Union{Missing, Float64}, 2} ┐
+├───────────────────────────────────────────┴──────────────────────────── dims ┐
   ↓ region Categorical{String} ["A", "B", "C", "D"] ForwardOrdered,
   → time   Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
diff --git a/previews/PR479/assets/UserGuide_convert.md.CObFCPzI.js b/previews/PR479/assets/UserGuide_convert.md.mv4euI22.js
similarity index 95%
rename from previews/PR479/assets/UserGuide_convert.md.CObFCPzI.js
rename to previews/PR479/assets/UserGuide_convert.md.mv4euI22.js
index 304bd862..564bc7af 100644
--- a/previews/PR479/assets/UserGuide_convert.md.CObFCPzI.js
+++ b/previews/PR479/assets/UserGuide_convert.md.mv4euI22.js
@@ -1,9 +1,8 @@
-import{_ as a,c as i,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const c=JSON.parse('{"title":"Convert YAXArrays","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/convert.md","filePath":"UserGuide/convert.md","lastUpdated":null}'),p={name:"UserGuide/convert.md"};function t(l,s,h,r,k,d){return e(),i("div",null,s[0]||(s[0]=[n(`

Convert YAXArrays

This section describes how to convert variables from types of other Julia packages into YAXArrays and vice versa.

WARNING

YAXArrays is designed to work with large datasets that are way larger than the memory. However, most types are designed to work in memory. Those conversions are only possible if the entire dataset fits into memory. In addition, metadata might be lost during conversion.

Convert Base.Array

Convert Base.Array to YAXArray:

julia
using YAXArrays
+import{_ as a,c as i,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const c=JSON.parse('{"title":"Convert YAXArrays","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/convert.md","filePath":"UserGuide/convert.md","lastUpdated":null}'),t={name:"UserGuide/convert.md"};function p(l,s,h,r,k,d){return e(),i("div",null,s[0]||(s[0]=[n(`

Convert YAXArrays

This section describes how to convert variables from types of other Julia packages into YAXArrays and vice versa.

WARNING

YAXArrays is designed to work with large datasets that are way larger than the memory. However, most types are designed to work in memory. Those conversions are only possible if the entire dataset fits into memory. In addition, metadata might be lost during conversion.

Convert Base.Array

Convert Base.Array to YAXArray:

julia
using YAXArrays
 
 m = rand(5,10)
-a = YAXArray(m)
╭──────────────────────────╮
-│ 5×10 YAXArray{Float64,2} │
-├──────────────────────────┴──────────────────────────────────── dims ┐
+a = YAXArray(m)
┌ 5×10 YAXArray{Float64, 2} ┐
+├───────────────────────────┴─────────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────── metadata ┤
@@ -24,18 +23,16 @@ import{_ as a,c as i,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const c
 using YAXArrayBase
 
 dim_arr = rand(X(1:5), Y(10.0:15.0), metadata = Dict{String, Any}())
-a = yaxconvert(YAXArray, dim_arr)
╭─────────────────────────╮
-│ 5×6 YAXArray{Float64,2} │
-├─────────────────────────┴────────────────────────────────── dims ┐
+a = yaxconvert(YAXArray, dim_arr)
┌ 5×6 YAXArray{Float64, 2} ┐
+├──────────────────────────┴───────────────────────────────── dims ┐
   ↓ X Sampled{Int64} 1:5 ForwardOrdered Regular Points,
   → Y Sampled{Float64} 10.0:1.0:15.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────── loaded in memory ┤
   data size: 240.0 bytes
-└──────────────────────────────────────────────────────────────────┘

Convert YAXArray to DimArray:

julia
dim_arr2 = yaxconvert(DimArray, a)
╭─────────────────────────╮
-│ 5×6 DimArray{Float64,2} │
-├─────────────────────────┴────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────┘

Convert YAXArray to DimArray:

julia
dim_arr2 = yaxconvert(DimArray, a)
┌ 5×6 DimArray{Float64, 2} ┐
+├──────────────────────────┴───────────────────────────────── dims ┐
   ↓ X Sampled{Int64} 1:5 ForwardOrdered Regular Points,
   → Y Sampled{Float64} 10.0:1.0:15.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────── metadata ┤
@@ -46,4 +43,4 @@ import{_ as a,c as i,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const c
  2     0.203714   0.770949    0.731779    0.71314    0.687891   0.435994
  3     0.492817   0.718667    0.0702532   0.926096   0.225542   0.100622
  4     0.268675   0.0566881   0.916686    0.973332   0.744521   0.052264
- 5     0.540514   0.215973    0.617023    0.796375   0.13205    0.366625

INFO

At the moment there is no support to save a DimArray directly into disk as a NetCDF or a Zarr file.

`,23)]))}const g=a(p,[["render",t]]);export{c as __pageData,g as default}; + 5 0.540514 0.215973 0.617023 0.796375 0.13205 0.366625

INFO

At the moment there is no support to save a DimArray directly into disk as a NetCDF or a Zarr file.

`,23)]))}const g=a(t,[["render",p]]);export{c as __pageData,g as default}; diff --git a/previews/PR479/assets/UserGuide_convert.md.CObFCPzI.lean.js b/previews/PR479/assets/UserGuide_convert.md.mv4euI22.lean.js similarity index 95% rename from previews/PR479/assets/UserGuide_convert.md.CObFCPzI.lean.js rename to previews/PR479/assets/UserGuide_convert.md.mv4euI22.lean.js index 304bd862..564bc7af 100644 --- a/previews/PR479/assets/UserGuide_convert.md.CObFCPzI.lean.js +++ b/previews/PR479/assets/UserGuide_convert.md.mv4euI22.lean.js @@ -1,9 +1,8 @@ -import{_ as a,c as i,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const c=JSON.parse('{"title":"Convert YAXArrays","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/convert.md","filePath":"UserGuide/convert.md","lastUpdated":null}'),p={name:"UserGuide/convert.md"};function t(l,s,h,r,k,d){return e(),i("div",null,s[0]||(s[0]=[n(`

Convert YAXArrays

This section describes how to convert variables from types of other Julia packages into YAXArrays and vice versa.

WARNING

YAXArrays is designed to work with large datasets that are way larger than the memory. However, most types are designed to work in memory. Those conversions are only possible if the entire dataset fits into memory. In addition, metadata might be lost during conversion.

Convert Base.Array

Convert Base.Array to YAXArray:

julia
using YAXArrays
+import{_ as a,c as i,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const c=JSON.parse('{"title":"Convert YAXArrays","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/convert.md","filePath":"UserGuide/convert.md","lastUpdated":null}'),t={name:"UserGuide/convert.md"};function p(l,s,h,r,k,d){return e(),i("div",null,s[0]||(s[0]=[n(`

Convert YAXArrays

This section describes how to convert variables from types of other Julia packages into YAXArrays and vice versa.

WARNING

YAXArrays is designed to work with large datasets that are way larger than the memory. However, most types are designed to work in memory. Those conversions are only possible if the entire dataset fits into memory. In addition, metadata might be lost during conversion.

Convert Base.Array

Convert Base.Array to YAXArray:

julia
using YAXArrays
 
 m = rand(5,10)
-a = YAXArray(m)
╭──────────────────────────╮
-│ 5×10 YAXArray{Float64,2} │
-├──────────────────────────┴──────────────────────────────────── dims ┐
+a = YAXArray(m)
┌ 5×10 YAXArray{Float64, 2} ┐
+├───────────────────────────┴─────────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────── metadata ┤
@@ -24,18 +23,16 @@ import{_ as a,c as i,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const c
 using YAXArrayBase
 
 dim_arr = rand(X(1:5), Y(10.0:15.0), metadata = Dict{String, Any}())
-a = yaxconvert(YAXArray, dim_arr)
╭─────────────────────────╮
-│ 5×6 YAXArray{Float64,2} │
-├─────────────────────────┴────────────────────────────────── dims ┐
+a = yaxconvert(YAXArray, dim_arr)
┌ 5×6 YAXArray{Float64, 2} ┐
+├──────────────────────────┴───────────────────────────────── dims ┐
   ↓ X Sampled{Int64} 1:5 ForwardOrdered Regular Points,
   → Y Sampled{Float64} 10.0:1.0:15.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────── loaded in memory ┤
   data size: 240.0 bytes
-└──────────────────────────────────────────────────────────────────┘

Convert YAXArray to DimArray:

julia
dim_arr2 = yaxconvert(DimArray, a)
╭─────────────────────────╮
-│ 5×6 DimArray{Float64,2} │
-├─────────────────────────┴────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────┘

Convert YAXArray to DimArray:

julia
dim_arr2 = yaxconvert(DimArray, a)
┌ 5×6 DimArray{Float64, 2} ┐
+├──────────────────────────┴───────────────────────────────── dims ┐
   ↓ X Sampled{Int64} 1:5 ForwardOrdered Regular Points,
   → Y Sampled{Float64} 10.0:1.0:15.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────── metadata ┤
@@ -46,4 +43,4 @@ import{_ as a,c as i,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const c
  2     0.203714   0.770949    0.731779    0.71314    0.687891   0.435994
  3     0.492817   0.718667    0.0702532   0.926096   0.225542   0.100622
  4     0.268675   0.0566881   0.916686    0.973332   0.744521   0.052264
- 5     0.540514   0.215973    0.617023    0.796375   0.13205    0.366625

INFO

At the moment there is no support to save a DimArray directly into disk as a NetCDF or a Zarr file.

`,23)]))}const g=a(p,[["render",t]]);export{c as __pageData,g as default}; + 5 0.540514 0.215973 0.617023 0.796375 0.13205 0.366625

INFO

At the moment there is no support to save a DimArray directly into disk as a NetCDF or a Zarr file.

`,23)]))}const g=a(t,[["render",p]]);export{c as __pageData,g as default}; diff --git a/previews/PR479/assets/UserGuide_create.md.C7ebbtn2.js b/previews/PR479/assets/UserGuide_create.md.ClN01XDL.js similarity index 96% rename from previews/PR479/assets/UserGuide_create.md.C7ebbtn2.js rename to previews/PR479/assets/UserGuide_create.md.ClN01XDL.js index 304d7f74..cffa1253 100644 --- a/previews/PR479/assets/UserGuide_create.md.C7ebbtn2.js +++ b/previews/PR479/assets/UserGuide_create.md.ClN01XDL.js @@ -1,9 +1,8 @@ import{_ as a,c as i,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g=JSON.parse('{"title":"Create YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/create.md","filePath":"UserGuide/create.md","lastUpdated":null}'),e={name:"UserGuide/create.md"};function p(l,s,h,k,r,d){return t(),i("div",null,s[0]||(s[0]=[n(`

Create YAXArrays and Datasets

This section describes how to create arrays and datasets by filling values directly.

Create a YAXArray

We can create a new YAXArray by filling the values directly:

julia
using YAXArrays
 using YAXArrays: YAXArrays as YAX
 
-a1 = YAXArray(rand(10, 20, 5))
╭─────────────────────────────╮
-│ 10×20×5 YAXArray{Float64,3} │
-├─────────────────────────────┴────────────────────────────────── dims ┐
+a1 = YAXArray(rand(10, 20, 5))
┌ 10×20×5 YAXArray{Float64, 3} ┐
+├──────────────────────────────┴───────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(20) ForwardOrdered Regular Points,
   ↗ Dim_3 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points
@@ -20,9 +19,8 @@ import{_ as a,c as i,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 )
 data2 = rand(30, 10, 15)
 properties = Dict(:origin => "user guide")
-a2 = YAXArray(axlist, data2, properties)
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+a2 = YAXArray(axlist, data2, properties)
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
diff --git a/previews/PR479/assets/UserGuide_create.md.C7ebbtn2.lean.js b/previews/PR479/assets/UserGuide_create.md.ClN01XDL.lean.js
similarity index 96%
rename from previews/PR479/assets/UserGuide_create.md.C7ebbtn2.lean.js
rename to previews/PR479/assets/UserGuide_create.md.ClN01XDL.lean.js
index 304d7f74..cffa1253 100644
--- a/previews/PR479/assets/UserGuide_create.md.C7ebbtn2.lean.js
+++ b/previews/PR479/assets/UserGuide_create.md.ClN01XDL.lean.js
@@ -1,9 +1,8 @@
 import{_ as a,c as i,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g=JSON.parse('{"title":"Create YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/create.md","filePath":"UserGuide/create.md","lastUpdated":null}'),e={name:"UserGuide/create.md"};function p(l,s,h,k,r,d){return t(),i("div",null,s[0]||(s[0]=[n(`

Create YAXArrays and Datasets

This section describes how to create arrays and datasets by filling values directly.

Create a YAXArray

We can create a new YAXArray by filling the values directly:

julia
using YAXArrays
 using YAXArrays: YAXArrays as YAX
 
-a1 = YAXArray(rand(10, 20, 5))
╭─────────────────────────────╮
-│ 10×20×5 YAXArray{Float64,3} │
-├─────────────────────────────┴────────────────────────────────── dims ┐
+a1 = YAXArray(rand(10, 20, 5))
┌ 10×20×5 YAXArray{Float64, 3} ┐
+├──────────────────────────────┴───────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(20) ForwardOrdered Regular Points,
   ↗ Dim_3 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points
@@ -20,9 +19,8 @@ import{_ as a,c as i,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const g
 )
 data2 = rand(30, 10, 15)
 properties = Dict(:origin => "user guide")
-a2 = YAXArray(axlist, data2, properties)
╭──────────────────────────────╮
-│ 30×10×15 YAXArray{Float64,3} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+a2 = YAXArray(axlist, data2, properties)
┌ 30×10×15 YAXArray{Float64, 3} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{Date} Date("2022-01-01"):Dates.Day(1):Date("2022-01-30") ForwardOrdered Regular Points,
   → lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
diff --git a/previews/PR479/assets/UserGuide_faq.md.C9UN1j4H.js b/previews/PR479/assets/UserGuide_faq.md.Co6gBYzG.js
similarity index 93%
rename from previews/PR479/assets/UserGuide_faq.md.C9UN1j4H.js
rename to previews/PR479/assets/UserGuide_faq.md.Co6gBYzG.js
index aa9cfc23..f2bc8f7d 100644
--- a/previews/PR479/assets/UserGuide_faq.md.C9UN1j4H.js
+++ b/previews/PR479/assets/UserGuide_faq.md.Co6gBYzG.js
@@ -1,7 +1,6 @@
 import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t="/YAXArrays.jl/previews/PR479/assets/utzwahn.DldUI1n7.jpeg",o=JSON.parse('{"title":"Frequently Asked Questions (FAQ)","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/faq.md","filePath":"UserGuide/faq.md","lastUpdated":null}'),l={name:"UserGuide/faq.md"};function h(p,s,k,d,r,g){return e(),a("div",null,s[0]||(s[0]=[n(`

Frequently Asked Questions (FAQ)

The purpose of this section is to do a collection of small convinient pieces of code on how to do simple things.

Extract the axes names from a Cube

julia
using YAXArrays
-using DimensionalData
julia
julia> c = YAXArray(rand(10, 10, 5))
╭─────────────────────────────╮
-10×10×5 YAXArray{Float64,3}
-├─────────────────────────────┴────────────────────────────────────────── dims ┐
+using DimensionalData
julia
julia> c = YAXArray(rand(10, 10, 5))
10×10×5 YAXArray{Float64, 3}
+├──────────────────────────────┴───────────────────────────────────────── dims ┐
 Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
 Dim_3 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points
@@ -16,27 +15,24 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
 Dim_3 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points)

INFO

Also, use DD.rebuild(c, values) to copy axes from c and build a new cube but with different values.

rebuild

As an example let's consider the following

julia
using YAXArrays
 using DimensionalData
 
-c = YAXArray(ones(Int, 10,10))
╭─────────────────────────╮
-│ 10×10 YAXArray{Int64,2} │
-├─────────────────────────┴────────────────────────────────────── dims ┐
+c = YAXArray(ones(Int, 10,10))
┌ 10×10 YAXArray{Int64, 2} ┐
+├──────────────────────────┴───────────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────── loaded in memory ┤
   data size: 800.0 bytes
-└──────────────────────────────────────────────────────────────────────┘

then creating a new c with the same structure (axes) but different values is done by

julia
julia> new_c = rebuild(c, rand(10,10))
╭───────────────────────────╮
-10×10 YAXArray{Float64,2}
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────┘

then creating a new c with the same structure (axes) but different values is done by

julia
julia> new_c = rebuild(c, rand(10,10))
10×10 YAXArray{Float64, 2}
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
 Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 800.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

note that the type is now Float64. Or, we could create a new structure but using the dimensions from yax explicitly

julia
julia> c_c = YAXArray(dims(c), rand(10,10))
╭───────────────────────────╮
-10×10 YAXArray{Float64,2}
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

note that the type is now Float64. Or, we could create a new structure but using the dimensions from yax explicitly

julia
julia> c_c = YAXArray(dims(c), rand(10,10))
10×10 YAXArray{Float64, 2}
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
 Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -54,9 +50,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   7
   8
   9
- 10

to collect data from a cube works exactly the same as doing it from an array

julia
julia> c[:, :, 1]
╭─────────────────────────╮
-10×10 YAXArray{Int64,2}
-├─────────────────────────┴────────────────────────────────────────────── dims ┐
+ 10

to collect data from a cube works exactly the same as doing it from an array

julia
julia> c[:, :, 1]
10×10 YAXArray{Int64, 2}
+├──────────────────────────┴───────────────────────────────────────────── dims ┐
 Dim_1 Sampled{Int64} 1:10 ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} 1:10 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -76,9 +71,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
 ds1 = YAXArray(axlist, data1)
 
 data2 = rand(20, 10, 15)
-ds2 = YAXArray(axlist, data2)

Now we can concatenate ds1 and ds2:

julia
julia> dsfinal = concatenatecubes([ds1, ds2], Dim{:Variables}(["var1", "var2"]))
╭────────────────────────────────╮
-20×10×15×2 YAXArray{Float64,4}
-├────────────────────────────────┴─────────────────────────────────────── dims ┐
+ds2 = YAXArray(axlist, data2)

Now we can concatenate ds1 and ds2:

julia
julia> dsfinal = concatenatecubes([ds1, ds2], Dim{:Variables}(["var1", "var2"]))
20×10×15×2 YAXArray{Float64, 4}
+├─────────────────────────────────┴────────────────────────────────────── dims ┐
 time      Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points,
 lon       Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat       Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points,
@@ -91,9 +85,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
 using Dates # To generate the dates of the time axis
 using DimensionalData # To use the "Between" option for selecting data, however the intervals notation should be used instead, i.e. \`a .. b\`.

Define the time span of the YAXArray

julia
t = Date("2020-01-01"):Month(1):Date("2022-12-31")
Date("2020-01-01"):Dates.Month(1):Date("2022-12-01")

create YAXArray axes

julia
axes = (Lon(1:10), Lat(1:10), YAX.Time(t))
(↓ Lon  1:10,
 → Lat  1:10,
-↗ Time Date("2020-01-01"):Dates.Month(1):Date("2022-12-01"))

create the YAXArray

julia
y = YAXArray(axes, reshape(1:3600, (10, 10, 36)))
╭────────────────────────────╮
-│ 10×10×36 YAXArray{Int64,3} │
-├────────────────────────────┴─────────────────────────────────────────── dims ┐
+↗ Time Date("2020-01-01"):Dates.Month(1):Date("2022-12-01"))

create the YAXArray

julia
y = YAXArray(axes, reshape(1:3600, (10, 10, 36)))
┌ 10×10×36 YAXArray{Int64, 3} ┐
+├─────────────────────────────┴────────────────────────────────────────── dims ┐
   ↓ Lon  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   → Lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   ↗ Time Sampled{Date} Date("2020-01-01"):Dates.Month(1):Date("2022-12-01") ForwardOrdered Regular Points
@@ -101,9 +94,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 28.12 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Now we subset the YAXArray by any dimension.

Subset YAXArray by years

julia
ytime = y[Time=Between(Date(2021,1,1), Date(2021,12,31))]
╭────────────────────────────╮
-│ 10×10×12 YAXArray{Int64,3} │
-├────────────────────────────┴─────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Now we subset the YAXArray by any dimension.

Subset YAXArray by years

julia
ytime = y[Time=Between(Date(2021,1,1), Date(2021,12,31))]
┌ 10×10×12 YAXArray{Int64, 3} ┐
+├─────────────────────────────┴────────────────────────────────────────── dims ┐
   ↓ Lon  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   → Lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   ↗ Time Sampled{Date} Date("2021-01-01"):Dates.Month(1):Date("2021-12-01") ForwardOrdered Regular Points
@@ -111,18 +103,16 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 9.38 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Subset YAXArray by a specific date

julia
ytime2 = y[Time=At(Date("2021-05-01"))]
╭─────────────────────────╮
-│ 10×10 YAXArray{Int64,2} │
-├─────────────────────────┴────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Subset YAXArray by a specific date

julia
ytime2 = y[Time=At(Date("2021-05-01"))]
┌ 10×10 YAXArray{Int64, 2} ┐
+├──────────────────────────┴───────────────────────── dims ┐
   ↓ Lon Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   → Lat Sampled{Int64} 1:10 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────── loaded in memory ┤
   data size: 800.0 bytes
-└──────────────────────────────────────────────────────────┘

Subset YAXArray by a date range

julia
ytime3 = y[Time=Date("2021-05-01") .. Date("2021-12-01")]
╭───────────────────────────╮
-│ 10×10×8 YAXArray{Int64,3} │
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────┘

Subset YAXArray by a date range

julia
ytime3 = y[Time=Date("2021-05-01") .. Date("2021-12-01")]
┌ 10×10×8 YAXArray{Int64, 3} ┐
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
   ↓ Lon  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   → Lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   ↗ Time Sampled{Date} Date("2021-05-01"):Dates.Month(1):Date("2021-12-01") ForwardOrdered Regular Points
@@ -130,9 +120,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 6.25 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Subset YAXArray by longitude and latitude

julia
ylonlat = y[Lon=1 .. 5, Lat=5 .. 10]
╭──────────────────────────╮
-│ 5×6×36 YAXArray{Int64,3} │
-├──────────────────────────┴───────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Subset YAXArray by longitude and latitude

julia
ylonlat = y[Lon=1 .. 5, Lat=5 .. 10]
┌ 5×6×36 YAXArray{Int64, 3} ┐
+├───────────────────────────┴──────────────────────────────────────────── dims ┐
   ↓ Lon  Sampled{Int64} 1:5 ForwardOrdered Regular Points,
   → Lat  Sampled{Int64} 5:10 ForwardOrdered Regular Points,
   ↗ Time Sampled{Date} Date("2020-01-01"):Dates.Month(1):Date("2022-12-01") ForwardOrdered Regular Points
@@ -198,7 +187,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Additional Axes: 
   (↓ points Sampled{Int64} [2, 4, …, 96, 98] ForwardOrdered Irregular Points)
   Variables: 
-  longitudes
+  latitudes
 
   Additional Axes: 
   (↓ points Sampled{Int64} [2, 4, …, 96, 98] ForwardOrdered Irregular Points,
@@ -209,7 +198,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Additional Axes: 
   (↓ points Sampled{Int64} [2, 4, …, 96, 98] ForwardOrdered Irregular Points)
   Variables: 
-  latitudes

If your dataset has been read from a file with Cube it is not loaded into memory, and you have to load the latitudes and longitudes YAXArrays into memory:

julia
latitudes_yasxa  = readcubedata(ds["latitudes"])
+  longitudes

If your dataset has been read from a file with Cube it is not loaded into memory, and you have to load the latitudes and longitudes YAXArrays into memory:

julia
latitudes_yasxa  = readcubedata(ds["latitudes"])
 longitudes_yasxa = readcubedata(ds["longitudes"])
 ds_subset = ds[points = Where(p-> latitudes_yasxa[p]  >= 20 && latitudes_yasxa[p]  <= 80 &&
                              longitudes_yasxa[p] >= 0  && longitudes_yasxa[p] <= 180
@@ -232,9 +221,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Additional Axes: 
   (↓ points Sampled{Int64} [2, 4, …, 96, 98] ForwardOrdered Irregular Points)
   Variables: 
-  longitudes

How do I apply map algebra?

Our next step is map algebra computations. This can be done effectively using the 'map' function. For example:

Multiplying cubes with only spatio-temporal dimensions

julia
julia> map((x, y) -> x * y, ds1, ds2)
╭──────────────────────────────╮
-20×10×15 YAXArray{Float64,3}
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+  longitudes

How do I apply map algebra?

Our next step is map algebra computations. This can be done effectively using the 'map' function. For example:

Multiplying cubes with only spatio-temporal dimensions

julia
julia> map((x, y) -> x * y, ds1, ds2)
20×10×15 YAXArray{Float64, 3}
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
 time Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points,
 lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -242,9 +230,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 23.44 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Cubes with more than 3 dimensions

julia
julia> map((x, y) -> x * y, dsfinal[Variables=At("var1")], dsfinal[Variables=At("var2")])
╭──────────────────────────────╮
-20×10×15 YAXArray{Float64,3}
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Cubes with more than 3 dimensions

julia
julia> map((x, y) -> x * y, dsfinal[Variables=At("var1")], dsfinal[Variables=At("var2")])
20×10×15 YAXArray{Float64, 3}
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
 time Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points,
 lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -254,9 +241,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   data size: 23.44 KB
 └──────────────────────────────────────────────────────────────────────────────┘

To add some complexity, we will multiply each value for π and then divided for the sum of each time step. We will use the ds1 cube for this purpose.

julia
julia> mapslices(ds1, dims=("Lon", "Lat")) do xin
            (xin * π) ./ maximum(skipmissing(xin))
-       end
╭──────────────────────────────────────────────╮
-10×15×20 YAXArray{Union{Missing, Float64},3}
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+       end
10×15×20 YAXArray{Union{Missing, Float64}, 3}
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
 lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points,
 time Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points
@@ -264,9 +250,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 23.44 KB
-└──────────────────────────────────────────────────────────────────────────────┘

How do I use the CubeTable function?

The function "CubeTable" creates an iterable table and the result is a DataCube. It is therefore very handy for grouping data and computing statistics by class. It uses OnlineStats.jl to calculate statistics, and weighted statistics can be calculated as well.

Here we will use the ds1 Cube defined previously and we create a mask for data classification.

Cube containing a mask with classes 1, 2 and 3.

julia
julia> classes = YAXArray((getAxis("lon", dsfinal), getAxis("lat", dsfinal)), rand(1:3, 10, 15))
╭─────────────────────────╮
-10×15 YAXArray{Int64,2}
-├─────────────────────────┴────────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

How do I use the CubeTable function?

The function "CubeTable" creates an iterable table and the result is a DataCube. It is therefore very handy for grouping data and computing statistics by class. It uses OnlineStats.jl to calculate statistics, and weighted statistics can be calculated as well.

Here we will use the ds1 Cube defined previously and we create a mask for data classification.

Cube containing a mask with classes 1, 2 and 3.

julia
julia> classes = YAXArray((getAxis("lon", dsfinal), getAxis("lat", dsfinal)), rand(1:3, 10, 15))
10×15 YAXArray{Int64, 2}
+├──────────────────────────┴───────────────────────────────────────────── dims ┐
 lon Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -283,17 +268,15 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
 using OnlineStats
 ## visualization of the CubeTable
 c_tbl = DataFrame(t[1])
-first(c_tbl, 5)

In this line we calculate the Mean for each class

julia
julia> fitcube = cubefittable(t, Mean, :values, by=(:classes))
╭───────────────────────────────────────────────╮
-3-element YAXArray{Union{Missing, Float64},1}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+first(c_tbl, 5)

In this line we calculate the Mean for each class

julia
julia> fitcube = cubefittable(t, Mean, :values, by=(:classes))
3-element YAXArray{Union{Missing, Float64}, 1}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 classes Sampled{Int64} [1, 2, 3] ForwardOrdered Irregular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 24.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

We can also use more than one criteria for grouping the values. In the next example, the mean is calculated for each class and timestep.

julia
julia> fitcube = cubefittable(t, Mean, :values, by=(:classes, :time))
╭──────────────────────────────────────────╮
-3×20 YAXArray{Union{Missing, Float64},2}
-├──────────────────────────────────────────┴───────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

We can also use more than one criteria for grouping the values. In the next example, the mean is calculated for each class and timestep.

julia
julia> fitcube = cubefittable(t, Mean, :values, by=(:classes, :time))
3×20 YAXArray{Union{Missing, Float64}, 2}
+├───────────────────────────────────────────┴──────────────────────────── dims ┐
 classes Sampled{Int64} [1, 2, 3] ForwardOrdered Irregular Points,
 time    Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -311,15 +294,15 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
 None
 Variables with additional axes:
   Additional Axes: 
-  (Dim_1 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points,
-Dim_2 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points)
+  (Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points)
   Variables: 
-  c
+  a
 
   Additional Axes: 
-  (Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points)
+  (Dim_1 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points,
+Dim_2 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points)
   Variables: 
-  a
+  c
 
   Additional Axes: 
   (Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
@@ -342,7 +325,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   (time      Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 Variables Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
   Variables: 
-  Stock3
+  Stock1
 
   Additional Axes: 
   (time      Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
@@ -354,16 +337,15 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   (time      Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 Variables Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
   Variables: 
-  Stock1

and, it looks like there some small differences in the axes, they are being printed independently although they should be the same. Well, they are at least at the == level but not at ===. We could use the axes from one YAXArray as reference and rebuild all the others

julia
yax_list = [rebuild(yax_list[1], values(stocks[k])) for k in d_keys];

and voilà

julia
julia> ds = Dataset(; (d_keys .=> yax_list)...)
YAXArray Dataset
+  Stock3

and, it looks like there some small differences in the axes, they are being printed independently although they should be the same. Well, they are at least at the == level but not at ===. We could use the axes from one YAXArray as reference and rebuild all the others

julia
yax_list = [rebuild(yax_list[1], values(stocks[k])) for k in d_keys];

and voilà

julia
julia> ds = Dataset(; (d_keys .=> yax_list)...)
YAXArray Dataset
 Shared Axes:
   (time      Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 Variables Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
 
 Variables: 
 Stock1, Stock2, Stock3

now they are printed together, showing that is exactly the same axis structure for all variables.

Create a YAXArray with unions containing Strings

julia
test_x = stack(Vector{Union{Int,String}}[[1, "Test"], [2, "Test2"]])
-yax_string = YAXArray(test_x)
╭──────────────────────────────────────╮
-│ 2×2 YAXArray{Union{Int64, String},2} │
-├──────────────────────────────────────┴──────────────────────── dims ┐
+yax_string = YAXArray(test_x)
┌ 2×2 YAXArray{Union{Int64, String}, 2} ┐
+├───────────────────────────────────────┴─────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────── metadata ┤
@@ -371,9 +353,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
 ├─────────────────────────────────────────────────── loaded in memory ┤
   summarysize: 121.0 bytes
 └─────────────────────────────────────────────────────────────────────┘

or simply with an Any type

julia
test_bool = ["Test1" 1 false; 2 "Test2" true; 1 2f0 1f2]
-yax_bool = YAXArray(test_bool)
╭─────────────────────╮
-│ 3×3 YAXArray{Any,2} │
-├─────────────────────┴───────────────────────────────────────── dims ┐
+yax_bool = YAXArray(test_bool)
┌ 3×3 YAXArray{Any, 2} ┐
+├──────────────────────┴──────────────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(3) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(3) ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────── metadata ┤
diff --git a/previews/PR479/assets/UserGuide_faq.md.C9UN1j4H.lean.js b/previews/PR479/assets/UserGuide_faq.md.Co6gBYzG.lean.js
similarity index 93%
rename from previews/PR479/assets/UserGuide_faq.md.C9UN1j4H.lean.js
rename to previews/PR479/assets/UserGuide_faq.md.Co6gBYzG.lean.js
index aa9cfc23..f2bc8f7d 100644
--- a/previews/PR479/assets/UserGuide_faq.md.C9UN1j4H.lean.js
+++ b/previews/PR479/assets/UserGuide_faq.md.Co6gBYzG.lean.js
@@ -1,7 +1,6 @@
 import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t="/YAXArrays.jl/previews/PR479/assets/utzwahn.DldUI1n7.jpeg",o=JSON.parse('{"title":"Frequently Asked Questions (FAQ)","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/faq.md","filePath":"UserGuide/faq.md","lastUpdated":null}'),l={name:"UserGuide/faq.md"};function h(p,s,k,d,r,g){return e(),a("div",null,s[0]||(s[0]=[n(`

Frequently Asked Questions (FAQ)

The purpose of this section is to do a collection of small convinient pieces of code on how to do simple things.

Extract the axes names from a Cube

julia
using YAXArrays
-using DimensionalData
julia
julia> c = YAXArray(rand(10, 10, 5))
╭─────────────────────────────╮
-10×10×5 YAXArray{Float64,3}
-├─────────────────────────────┴────────────────────────────────────────── dims ┐
+using DimensionalData
julia
julia> c = YAXArray(rand(10, 10, 5))
10×10×5 YAXArray{Float64, 3}
+├──────────────────────────────┴───────────────────────────────────────── dims ┐
 Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
 Dim_3 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points
@@ -16,27 +15,24 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
 Dim_3 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points)

INFO

Also, use DD.rebuild(c, values) to copy axes from c and build a new cube but with different values.

rebuild

As an example let's consider the following

julia
using YAXArrays
 using DimensionalData
 
-c = YAXArray(ones(Int, 10,10))
╭─────────────────────────╮
-│ 10×10 YAXArray{Int64,2} │
-├─────────────────────────┴────────────────────────────────────── dims ┐
+c = YAXArray(ones(Int, 10,10))
┌ 10×10 YAXArray{Int64, 2} ┐
+├──────────────────────────┴───────────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────── loaded in memory ┤
   data size: 800.0 bytes
-└──────────────────────────────────────────────────────────────────────┘

then creating a new c with the same structure (axes) but different values is done by

julia
julia> new_c = rebuild(c, rand(10,10))
╭───────────────────────────╮
-10×10 YAXArray{Float64,2}
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────┘

then creating a new c with the same structure (axes) but different values is done by

julia
julia> new_c = rebuild(c, rand(10,10))
10×10 YAXArray{Float64, 2}
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
 Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 800.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

note that the type is now Float64. Or, we could create a new structure but using the dimensions from yax explicitly

julia
julia> c_c = YAXArray(dims(c), rand(10,10))
╭───────────────────────────╮
-10×10 YAXArray{Float64,2}
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

note that the type is now Float64. Or, we could create a new structure but using the dimensions from yax explicitly

julia
julia> c_c = YAXArray(dims(c), rand(10,10))
10×10 YAXArray{Float64, 2}
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
 Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -54,9 +50,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   7
   8
   9
- 10

to collect data from a cube works exactly the same as doing it from an array

julia
julia> c[:, :, 1]
╭─────────────────────────╮
-10×10 YAXArray{Int64,2}
-├─────────────────────────┴────────────────────────────────────────────── dims ┐
+ 10

to collect data from a cube works exactly the same as doing it from an array

julia
julia> c[:, :, 1]
10×10 YAXArray{Int64, 2}
+├──────────────────────────┴───────────────────────────────────────────── dims ┐
 Dim_1 Sampled{Int64} 1:10 ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} 1:10 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -76,9 +71,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
 ds1 = YAXArray(axlist, data1)
 
 data2 = rand(20, 10, 15)
-ds2 = YAXArray(axlist, data2)

Now we can concatenate ds1 and ds2:

julia
julia> dsfinal = concatenatecubes([ds1, ds2], Dim{:Variables}(["var1", "var2"]))
╭────────────────────────────────╮
-20×10×15×2 YAXArray{Float64,4}
-├────────────────────────────────┴─────────────────────────────────────── dims ┐
+ds2 = YAXArray(axlist, data2)

Now we can concatenate ds1 and ds2:

julia
julia> dsfinal = concatenatecubes([ds1, ds2], Dim{:Variables}(["var1", "var2"]))
20×10×15×2 YAXArray{Float64, 4}
+├─────────────────────────────────┴────────────────────────────────────── dims ┐
 time      Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points,
 lon       Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat       Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points,
@@ -91,9 +85,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
 using Dates # To generate the dates of the time axis
 using DimensionalData # To use the "Between" option for selecting data, however the intervals notation should be used instead, i.e. \`a .. b\`.

Define the time span of the YAXArray

julia
t = Date("2020-01-01"):Month(1):Date("2022-12-31")
Date("2020-01-01"):Dates.Month(1):Date("2022-12-01")

create YAXArray axes

julia
axes = (Lon(1:10), Lat(1:10), YAX.Time(t))
(↓ Lon  1:10,
 → Lat  1:10,
-↗ Time Date("2020-01-01"):Dates.Month(1):Date("2022-12-01"))

create the YAXArray

julia
y = YAXArray(axes, reshape(1:3600, (10, 10, 36)))
╭────────────────────────────╮
-│ 10×10×36 YAXArray{Int64,3} │
-├────────────────────────────┴─────────────────────────────────────────── dims ┐
+↗ Time Date("2020-01-01"):Dates.Month(1):Date("2022-12-01"))

create the YAXArray

julia
y = YAXArray(axes, reshape(1:3600, (10, 10, 36)))
┌ 10×10×36 YAXArray{Int64, 3} ┐
+├─────────────────────────────┴────────────────────────────────────────── dims ┐
   ↓ Lon  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   → Lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   ↗ Time Sampled{Date} Date("2020-01-01"):Dates.Month(1):Date("2022-12-01") ForwardOrdered Regular Points
@@ -101,9 +94,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 28.12 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Now we subset the YAXArray by any dimension.

Subset YAXArray by years

julia
ytime = y[Time=Between(Date(2021,1,1), Date(2021,12,31))]
╭────────────────────────────╮
-│ 10×10×12 YAXArray{Int64,3} │
-├────────────────────────────┴─────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Now we subset the YAXArray by any dimension.

Subset YAXArray by years

julia
ytime = y[Time=Between(Date(2021,1,1), Date(2021,12,31))]
┌ 10×10×12 YAXArray{Int64, 3} ┐
+├─────────────────────────────┴────────────────────────────────────────── dims ┐
   ↓ Lon  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   → Lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   ↗ Time Sampled{Date} Date("2021-01-01"):Dates.Month(1):Date("2021-12-01") ForwardOrdered Regular Points
@@ -111,18 +103,16 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 9.38 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Subset YAXArray by a specific date

julia
ytime2 = y[Time=At(Date("2021-05-01"))]
╭─────────────────────────╮
-│ 10×10 YAXArray{Int64,2} │
-├─────────────────────────┴────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Subset YAXArray by a specific date

julia
ytime2 = y[Time=At(Date("2021-05-01"))]
┌ 10×10 YAXArray{Int64, 2} ┐
+├──────────────────────────┴───────────────────────── dims ┐
   ↓ Lon Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   → Lat Sampled{Int64} 1:10 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────── loaded in memory ┤
   data size: 800.0 bytes
-└──────────────────────────────────────────────────────────┘

Subset YAXArray by a date range

julia
ytime3 = y[Time=Date("2021-05-01") .. Date("2021-12-01")]
╭───────────────────────────╮
-│ 10×10×8 YAXArray{Int64,3} │
-├───────────────────────────┴──────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────┘

Subset YAXArray by a date range

julia
ytime3 = y[Time=Date("2021-05-01") .. Date("2021-12-01")]
┌ 10×10×8 YAXArray{Int64, 3} ┐
+├────────────────────────────┴─────────────────────────────────────────── dims ┐
   ↓ Lon  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   → Lat  Sampled{Int64} 1:10 ForwardOrdered Regular Points,
   ↗ Time Sampled{Date} Date("2021-05-01"):Dates.Month(1):Date("2021-12-01") ForwardOrdered Regular Points
@@ -130,9 +120,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 6.25 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Subset YAXArray by longitude and latitude

julia
ylonlat = y[Lon=1 .. 5, Lat=5 .. 10]
╭──────────────────────────╮
-│ 5×6×36 YAXArray{Int64,3} │
-├──────────────────────────┴───────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Subset YAXArray by longitude and latitude

julia
ylonlat = y[Lon=1 .. 5, Lat=5 .. 10]
┌ 5×6×36 YAXArray{Int64, 3} ┐
+├───────────────────────────┴──────────────────────────────────────────── dims ┐
   ↓ Lon  Sampled{Int64} 1:5 ForwardOrdered Regular Points,
   → Lat  Sampled{Int64} 5:10 ForwardOrdered Regular Points,
   ↗ Time Sampled{Date} Date("2020-01-01"):Dates.Month(1):Date("2022-12-01") ForwardOrdered Regular Points
@@ -198,7 +187,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Additional Axes: 
   (↓ points Sampled{Int64} [2, 4, …, 96, 98] ForwardOrdered Irregular Points)
   Variables: 
-  longitudes
+  latitudes
 
   Additional Axes: 
   (↓ points Sampled{Int64} [2, 4, …, 96, 98] ForwardOrdered Irregular Points,
@@ -209,7 +198,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Additional Axes: 
   (↓ points Sampled{Int64} [2, 4, …, 96, 98] ForwardOrdered Irregular Points)
   Variables: 
-  latitudes

If your dataset has been read from a file with Cube it is not loaded into memory, and you have to load the latitudes and longitudes YAXArrays into memory:

julia
latitudes_yasxa  = readcubedata(ds["latitudes"])
+  longitudes

If your dataset has been read from a file with Cube it is not loaded into memory, and you have to load the latitudes and longitudes YAXArrays into memory:

julia
latitudes_yasxa  = readcubedata(ds["latitudes"])
 longitudes_yasxa = readcubedata(ds["longitudes"])
 ds_subset = ds[points = Where(p-> latitudes_yasxa[p]  >= 20 && latitudes_yasxa[p]  <= 80 &&
                              longitudes_yasxa[p] >= 0  && longitudes_yasxa[p] <= 180
@@ -232,9 +221,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Additional Axes: 
   (↓ points Sampled{Int64} [2, 4, …, 96, 98] ForwardOrdered Irregular Points)
   Variables: 
-  longitudes

How do I apply map algebra?

Our next step is map algebra computations. This can be done effectively using the 'map' function. For example:

Multiplying cubes with only spatio-temporal dimensions

julia
julia> map((x, y) -> x * y, ds1, ds2)
╭──────────────────────────────╮
-20×10×15 YAXArray{Float64,3}
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+  longitudes

How do I apply map algebra?

Our next step is map algebra computations. This can be done effectively using the 'map' function. For example:

Multiplying cubes with only spatio-temporal dimensions

julia
julia> map((x, y) -> x * y, ds1, ds2)
20×10×15 YAXArray{Float64, 3}
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
 time Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points,
 lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -242,9 +230,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 23.44 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Cubes with more than 3 dimensions

julia
julia> map((x, y) -> x * y, dsfinal[Variables=At("var1")], dsfinal[Variables=At("var2")])
╭──────────────────────────────╮
-20×10×15 YAXArray{Float64,3}
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Cubes with more than 3 dimensions

julia
julia> map((x, y) -> x * y, dsfinal[Variables=At("var1")], dsfinal[Variables=At("var2")])
20×10×15 YAXArray{Float64, 3}
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
 time Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points,
 lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
@@ -254,9 +241,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   data size: 23.44 KB
 └──────────────────────────────────────────────────────────────────────────────┘

To add some complexity, we will multiply each value for π and then divided for the sum of each time step. We will use the ds1 cube for this purpose.

julia
julia> mapslices(ds1, dims=("Lon", "Lat")) do xin
            (xin * π) ./ maximum(skipmissing(xin))
-       end
╭──────────────────────────────────────────────╮
-10×15×20 YAXArray{Union{Missing, Float64},3}
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+       end
10×15×20 YAXArray{Union{Missing, Float64}, 3}
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
 lon  Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points,
 time Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points
@@ -264,9 +250,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 23.44 KB
-└──────────────────────────────────────────────────────────────────────────────┘

How do I use the CubeTable function?

The function "CubeTable" creates an iterable table and the result is a DataCube. It is therefore very handy for grouping data and computing statistics by class. It uses OnlineStats.jl to calculate statistics, and weighted statistics can be calculated as well.

Here we will use the ds1 Cube defined previously and we create a mask for data classification.

Cube containing a mask with classes 1, 2 and 3.

julia
julia> classes = YAXArray((getAxis("lon", dsfinal), getAxis("lat", dsfinal)), rand(1:3, 10, 15))
╭─────────────────────────╮
-10×15 YAXArray{Int64,2}
-├─────────────────────────┴────────────────────────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

How do I use the CubeTable function?

The function "CubeTable" creates an iterable table and the result is a DataCube. It is therefore very handy for grouping data and computing statistics by class. It uses OnlineStats.jl to calculate statistics, and weighted statistics can be calculated as well.

Here we will use the ds1 Cube defined previously and we create a mask for data classification.

Cube containing a mask with classes 1, 2 and 3.

julia
julia> classes = YAXArray((getAxis("lon", dsfinal), getAxis("lat", dsfinal)), rand(1:3, 10, 15))
10×15 YAXArray{Int64, 2}
+├──────────────────────────┴───────────────────────────────────────────── dims ┐
 lon Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
 lat Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -283,17 +268,15 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
 using OnlineStats
 ## visualization of the CubeTable
 c_tbl = DataFrame(t[1])
-first(c_tbl, 5)

In this line we calculate the Mean for each class

julia
julia> fitcube = cubefittable(t, Mean, :values, by=(:classes))
╭───────────────────────────────────────────────╮
-3-element YAXArray{Union{Missing, Float64},1}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+first(c_tbl, 5)

In this line we calculate the Mean for each class

julia
julia> fitcube = cubefittable(t, Mean, :values, by=(:classes))
3-element YAXArray{Union{Missing, Float64}, 1}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 classes Sampled{Int64} [1, 2, 3] ForwardOrdered Irregular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 24.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

We can also use more than one criteria for grouping the values. In the next example, the mean is calculated for each class and timestep.

julia
julia> fitcube = cubefittable(t, Mean, :values, by=(:classes, :time))
╭──────────────────────────────────────────╮
-3×20 YAXArray{Union{Missing, Float64},2}
-├──────────────────────────────────────────┴───────────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

We can also use more than one criteria for grouping the values. In the next example, the mean is calculated for each class and timestep.

julia
julia> fitcube = cubefittable(t, Mean, :values, by=(:classes, :time))
3×20 YAXArray{Union{Missing, Float64}, 2}
+├───────────────────────────────────────────┴──────────────────────────── dims ┐
 classes Sampled{Int64} [1, 2, 3] ForwardOrdered Irregular Points,
 time    Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -311,15 +294,15 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
 None
 Variables with additional axes:
   Additional Axes: 
-  (Dim_1 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points,
-Dim_2 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points)
+  (Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points)
   Variables: 
-  c
+  a
 
   Additional Axes: 
-  (Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points)
+  (Dim_1 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points,
+Dim_2 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points)
   Variables: 
-  a
+  c
 
   Additional Axes: 
   (Dim_1 Sampled{Int64} Base.OneTo(10) ForwardOrdered Regular Points,
@@ -342,7 +325,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   (time      Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 Variables Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
   Variables: 
-  Stock3
+  Stock1
 
   Additional Axes: 
   (time      Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
@@ -354,16 +337,15 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
   (time      Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 Variables Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
   Variables: 
-  Stock1

and, it looks like there some small differences in the axes, they are being printed independently although they should be the same. Well, they are at least at the == level but not at ===. We could use the axes from one YAXArray as reference and rebuild all the others

julia
yax_list = [rebuild(yax_list[1], values(stocks[k])) for k in d_keys];

and voilà

julia
julia> ds = Dataset(; (d_keys .=> yax_list)...)
YAXArray Dataset
+  Stock3

and, it looks like there some small differences in the axes, they are being printed independently although they should be the same. Well, they are at least at the == level but not at ===. We could use the axes from one YAXArray as reference and rebuild all the others

julia
yax_list = [rebuild(yax_list[1], values(stocks[k])) for k in d_keys];

and voilà

julia
julia> ds = Dataset(; (d_keys .=> yax_list)...)
YAXArray Dataset
 Shared Axes:
   (time      Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 Variables Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
 
 Variables: 
 Stock1, Stock2, Stock3

now they are printed together, showing that is exactly the same axis structure for all variables.

Create a YAXArray with unions containing Strings

julia
test_x = stack(Vector{Union{Int,String}}[[1, "Test"], [2, "Test2"]])
-yax_string = YAXArray(test_x)
╭──────────────────────────────────────╮
-│ 2×2 YAXArray{Union{Int64, String},2} │
-├──────────────────────────────────────┴──────────────────────── dims ┐
+yax_string = YAXArray(test_x)
┌ 2×2 YAXArray{Union{Int64, String}, 2} ┐
+├───────────────────────────────────────┴─────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────── metadata ┤
@@ -371,9 +353,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
 ├─────────────────────────────────────────────────── loaded in memory ┤
   summarysize: 121.0 bytes
 └─────────────────────────────────────────────────────────────────────┘

or simply with an Any type

julia
test_bool = ["Test1" 1 false; 2 "Test2" true; 1 2f0 1f2]
-yax_bool = YAXArray(test_bool)
╭─────────────────────╮
-│ 3×3 YAXArray{Any,2} │
-├─────────────────────┴───────────────────────────────────────── dims ┐
+yax_bool = YAXArray(test_bool)
┌ 3×3 YAXArray{Any, 2} ┐
+├──────────────────────┴──────────────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(3) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(3) ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────── metadata ┤
diff --git a/previews/PR479/assets/UserGuide_group.md.C2yVVeKj.js b/previews/PR479/assets/UserGuide_group.md.CyxshSz7.js
similarity index 83%
rename from previews/PR479/assets/UserGuide_group.md.C2yVVeKj.js
rename to previews/PR479/assets/UserGuide_group.md.CyxshSz7.js
index be8edb3d..215173c6 100644
--- a/previews/PR479/assets/UserGuide_group.md.C2yVVeKj.js
+++ b/previews/PR479/assets/UserGuide_group.md.CyxshSz7.js
@@ -1,16 +1,44 @@
-import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t="/YAXArrays.jl/previews/PR479/assets/lhmmpxn.BJNzQY3Z.png",y=JSON.parse('{"title":"Group YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/group.md","filePath":"UserGuide/group.md","lastUpdated":null}'),h={name:"UserGuide/group.md"};function l(p,s,k,d,r,g){return e(),a("div",null,s[0]||(s[0]=[n(`

Group YAXArrays and Datasets

The following examples will use the groupby function to calculate temporal and spatial averages.

julia
using YAXArrays, DimensionalData
+import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t="/YAXArrays.jl/previews/PR479/assets/lhmmpxn.BJNzQY3Z.png",y=JSON.parse('{"title":"Group YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/group.md","filePath":"UserGuide/group.md","lastUpdated":null}'),l={name:"UserGuide/group.md"};function p(h,s,k,d,r,g){return e(),a("div",null,s[0]||(s[0]=[n(`

Group YAXArrays and Datasets

The following examples will use the groupby function to calculate temporal and spatial averages.

julia
using YAXArrays, DimensionalData
 using YAXArrays: YAXArrays as YAX
 using NetCDF
 using Downloads
 using Dates
 using Statistics
[ Info: new driver key :netcdf, updating backendlist.

Seasonal Averages from Time Series of Monthly Means

The following reproduces the example in xarray by Joe Hamman.

Where the goal is to calculate the seasonal average. And in order to do this properly, is necessary to calculate the weighted average considering that each month has a different number of days.

Download the data

julia
url_path = "https://github.com/pydata/xarray-data/raw/master/rasm.nc"
 filename = Downloads.download(url_path, "rasm.nc")
-ds_o = Cube(filename)

WARNING

The following rebuild should not be necessary in the future, plus is unpractical to use for large data sets. Out of memory groupby currently is work in progress. Related to https://github.com/rafaqz/DimensionalData.jl/issues/642

julia
axs = dims(ds_o) # get the dimensions
-data = ds_o.data[:,:,:] # read the data
-_FillValue = ds_o.properties["_FillValue"]
-data = replace(data, _FillValue => NaN)
-# create new YAXArray
-ds = YAXArray(axs, data)

GroupBy: seasons

function weighted_seasons(ds) ... end
julia
function weighted_seasons(ds)
+ds_o = Cube(filename)
┌ 275×205×36 YAXArray{Float64, 3} ┐
+├─────────────────────────────────┴────────────────────────────────────── dims ┐
+  ↓ x    Sampled{Int64} 1:275 ForwardOrdered Regular Points,
+  → y    Sampled{Int64} 1:205 ForwardOrdered Regular Points,
+  ↗ time Sampled{CFTime.DateTimeNoLeap} [CFTime.DateTimeNoLeap(1980-09-16T12:00:00), …, CFTime.DateTimeNoLeap(1983-08-17T00:00:00)] ForwardOrdered Irregular Points
+├──────────────────────────────────────────────────────────────────── metadata ┤
+  Dict{String, Any} with 7 entries:
+  "units"          => "C"
+  "coordinates"    => "yc xc"
+  "name"           => "Tair"
+  "long_name"      => "Surface air temperature"
+  "type_preferred" => "double"
+  "_FillValue"     => 9.96921e36
+  "time_rep"       => "instantaneous"
+├─────────────────────────────────────────────────────────────── loaded lazily ┤
+  data size: 15.48 MB
+└──────────────────────────────────────────────────────────────────────────────┘

WARNING

The following rebuild should not be necessary in the future, plus is unpractical to use for large data sets. Out of memory groupby currently is work in progress. Related to https://github.com/rafaqz/DimensionalData.jl/issues/642

julia
_FillValue = ds_o.properties["_FillValue"]
+ds = replace(ds_o[:,:,:], _FillValue => NaN) # load into memory and replace _FillValue by NaN
┌ 275×205×36 YAXArray{Float64, 3} ┐
+├─────────────────────────────────┴────────────────────────────────────── dims ┐
+  ↓ x    Sampled{Int64} 1:275 ForwardOrdered Regular Points,
+  → y    Sampled{Int64} 1:205 ForwardOrdered Regular Points,
+  ↗ time Sampled{CFTime.DateTimeNoLeap} [CFTime.DateTimeNoLeap(1980-09-16T12:00:00), …, CFTime.DateTimeNoLeap(1983-08-17T00:00:00)] ForwardOrdered Irregular Points
+├──────────────────────────────────────────────────────────────────── metadata ┤
+  Dict{String, Any} with 7 entries:
+  "units"          => "C"
+  "coordinates"    => "yc xc"
+  "name"           => "Tair"
+  "long_name"      => "Surface air temperature"
+  "type_preferred" => "double"
+  "_FillValue"     => 9.96921e36
+  "time_rep"       => "instantaneous"
+├──────────────────────────────────────────────────────────── loaded in memory ┤
+  data size: 15.48 MB
+└──────────────────────────────────────────────────────────────────────────────┘

GroupBy: seasons

function weighted_seasons(ds) ... end
julia
function weighted_seasons(ds)
     # calculate weights 
     tempo = dims(ds, :time)
     month_length = YAXArray((tempo,), daysinmonth.(tempo))
@@ -29,8 +57,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
     diff_g = map(.-, weighted_g, mean_g)
     seasons_g = lookup(mean_g, :time)
     return mean_g, weighted_g, diff_g, seasons_g
-end

Now, we continue with the groupby operations as usual

julia
julia> g_ds = groupby(ds, YAX.time => seasons(; start=December))
╭──────────────────────────────────────────────────╮
-4-element DimGroupByArray{YAXArray{Float64,2},1}
+end

Now, we continue with the groupby operations as usual

julia
julia> g_ds = groupby(ds, YAX.time => seasons(; start=December))
4-element DimGroupByArray{YAXArray{Float64,2},1}
 ├──────────────────────────────────────────────────┴───────────────────── dims ┐
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -42,8 +69,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  275×205×9 YAXArray
  :Mar_Apr_May  275×205×9 YAXArray
  :Jun_Jul_Aug  275×205×9 YAXArray
- :Sep_Oct_Nov  275×205×9 YAXArray

And the mean per season is calculated as follows

julia
julia> mean_g = mean.(g_ds, dims=:time)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 3, Array{Float64, 3}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}},1}
+ :Sep_Oct_Nov  275×205×9 YAXArray

Note how we are referencing the \`time\` dimension via \`YAX.time\`. This approach is used to avoid name clashes with \`time\` (\`Time\`) from \`Base\` (\`Dates\`). For convenience, we have defined the \`Dimensions\` \`time\` and \`Time\` in \`YAXArrays.jl\`, which are only accessible when explicitly called.

And the mean per season is calculated as follows

julia
julia> mean_g = mean.(g_ds, dims=:time)
4-element DimArray{YAXArray{Float64, 3, Array{Float64, 3}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -53,8 +79,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  …  [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 11.1372 11.3835; NaN NaN … 11.3252 11.5843;;;]
  :Mar_Apr_May     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.1363 21.018; NaN NaN … 21.4325 21.1762;;;]
  :Jun_Jul_Aug     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 28.2818 27.9432; NaN NaN … 28.619 28.0537;;;]
- :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.7119 21.7158; NaN NaN … 21.9682 21.9404;;;]

dropdims

Note that now the time dimension has length one, we can use dropdims to remove it

julia
julia> mean_g = dropdims.(mean_g, dims=:time)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}},1}
+ :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.7119 21.7158; NaN NaN … 21.9682 21.9404;;;]

dropdims

Note that now the time dimension has length one, we can use dropdims to remove it

julia
julia> mean_g = dropdims.(mean_g, dims=:time)
4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -70,16 +95,14 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Mar_Apr_May
  :Jun_Jul_Aug
  :Sep_Oct_Nov

Next, we will weight this grouping by days/month in each group.

GroupBy: weight

Create a YAXArray for the month length

julia
tempo = dims(ds, :time)
-month_length = YAXArray((tempo,), daysinmonth.(tempo))
╭──────────────────────────────╮
-│ 36-element YAXArray{Int64,1} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+month_length = YAXArray((tempo,), daysinmonth.(tempo))
┌ 36-element YAXArray{Int64, 1} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{CFTime.DateTimeNoLeap} [CFTime.DateTimeNoLeap(1980-09-16T12:00:00), …, CFTime.DateTimeNoLeap(1983-08-17T00:00:00)] ForwardOrdered Irregular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 288.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

Now group it by season

julia
julia> g_tempo = groupby(month_length, YAX.time => seasons(; start=December))
╭────────────────────────────────────────────────╮
-4-element DimGroupByArray{YAXArray{Int64,0},1}
+└──────────────────────────────────────────────────────────────────────────────┘

Now group it by season

julia
julia> g_tempo = groupby(month_length, YAX.time => seasons(; start=December))
4-element DimGroupByArray{YAXArray{Int64,0},1}
 ├────────────────────────────────────────────────┴─────────────────────── dims ┐
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -91,8 +114,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  9-element YAXArray
  :Mar_Apr_May  9-element YAXArray
  :Jun_Jul_Aug  9-element YAXArray
- :Sep_Oct_Nov  9-element YAXArray

Get the number of days per season

julia
julia> sum_days = sum.(g_tempo, dims=:time)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Int64, 1, Vector{Int64}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}},1}
+ :Sep_Oct_Nov  9-element YAXArray

Get the number of days per season

julia
julia> sum_days = sum.(g_tempo, dims=:time)
4-element DimArray{YAXArray{Int64, 1, DimensionalData.DimVector{Int64, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Tuple{}, Vector{Int64}, Symbol, DimensionalData.Dimensions.Lookups.NoMetadata}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -102,8 +124,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  [270]
  :Mar_Apr_May  [276]
  :Jun_Jul_Aug  [276]
- :Sep_Oct_Nov  [273]

weights

Weight the seasonal groups by sum_days

julia
julia> weights = map(./, g_tempo, sum_days)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 1, Vector{Float64}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}},1} groupby
+ :Sep_Oct_Nov  [273]

weights

Weight the seasonal groups by sum_days

julia
julia> weights = map(./, g_tempo, sum_days)
4-element DimArray{YAXArray{Float64, 1, Vector{Float64}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}}, 1} groupby
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -113,9 +134,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  …  [0.114815, 0.114815, 0.103704, 0.114815, 0.114815, 0.103704, 0.114815, 0.114815, 0.103704]
  :Mar_Apr_May     [0.112319, 0.108696, 0.112319, 0.112319, 0.108696, 0.112319, 0.112319, 0.108696, 0.112319]
  :Jun_Jul_Aug     [0.108696, 0.112319, 0.112319, 0.108696, 0.112319, 0.112319, 0.108696, 0.112319, 0.112319]
- :Sep_Oct_Nov     [0.10989, 0.113553, 0.10989, 0.10989, 0.113553, 0.10989, 0.10989, 0.113553, 0.10989]

Verify that the sum per season is 1

julia
julia> sum.(weights)
╭───────────────────────────────╮
-4-element DimArray{Float64,1}
-├───────────────────────────────┴──────────────────────────────────────── dims ┐
+ :Sep_Oct_Nov     [0.10989, 0.113553, 0.10989, 0.10989, 0.113553, 0.10989, 0.10989, 0.113553, 0.10989]

Verify that the sum per season is 1

julia
julia> sum.(weights)
4-element DimArray{Float64, 1}
+├────────────────────────────────┴─────────────────────────────────────── dims ┐
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{Symbol, Any} with 1 entry:
@@ -124,8 +144,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  1.0
  :Mar_Apr_May  1.0
  :Jun_Jul_Aug  1.0
- :Sep_Oct_Nov  1.0

weighted seasons

Now, let's weight the seasons

julia
julia> g_dsW = broadcast_dims.(*, weights, g_ds)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 3, Array{Float64, 3}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata},1}
+ :Sep_Oct_Nov  1.0

weighted seasons

Now, let's weight the seasons

julia
julia> g_dsW = broadcast_dims.(*, weights, g_ds)
4-element DimArray{YAXArray{Float64, 3, Array{Float64, 3}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -137,8 +156,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Jun_Jul_Aug     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; … ;;; NaN NaN … 3.21209 3.25153; NaN NaN … 3.23 3.28008; … ; NaN NaN … 3.12575 3.15532; NaN NaN … 3.2434 3.26274;;; NaN NaN … 3.17434 3.21699; NaN NaN … 3.18892 3.24375; … ; NaN NaN … 3.06755 3.1083; NaN NaN … 3.19241 3.22211;;; NaN NaN … 3.1437 3.15644; NaN NaN … 3.16631 3.18583; … ; NaN NaN … 3.03361 3.05846; NaN NaN … 3.16581 3.16824]
  :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; … ;;; NaN NaN … 2.97047 3.00388; NaN NaN … 2.77587 2.80759; … ; NaN NaN … 2.60175 2.60918; NaN NaN … 1.4947 1.52419;;; NaN NaN … 2.94534 2.97649; NaN NaN … 2.75891 2.79502; … ; NaN NaN … 2.57695 2.59212; NaN NaN … 1.46506 1.49909;;; NaN NaN … 2.9192 2.93743; NaN NaN … 2.7593 2.77687; … ; NaN NaN … 2.57873 2.63006; NaN NaN … 1.48367 1.50089]

apply a sum over the time dimension and drop it

julia
julia> weighted_g = sum.(g_dsW, dims = :time);
 
-julia> weighted_g = dropdims.(weighted_g, dims=:time)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata},1}
+julia> weighted_g = dropdims.(weighted_g, dims=:time)
4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -148,8 +166,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  …  [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 11.1181 11.372; NaN NaN … 11.3069 11.5743]
  :Mar_Apr_May     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.1242 21.0057; NaN NaN … 21.4198 21.1644]
  :Jun_Jul_Aug     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 28.2747 27.9362; NaN NaN … 28.6122 28.0465]
- :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.73 21.7341; NaN NaN … 21.986 21.959]

Calculate the differences

julia
julia> diff_g = map(.-, weighted_g, mean_g)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata},1}
+ :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.73 21.7341; NaN NaN … 21.986 21.959]

Calculate the differences

julia
julia> diff_g = map(.-, weighted_g, mean_g)
4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -188,4 +205,4 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
     colgap!(fig.layout, 5)
     rowgap!(fig.layout, 5)
     fig
-end

which shows a good agreement with the results first published by Joe Hamman.

',63)]))}const N=i(h,[["render",l]]);export{y as __pageData,N as default}; +end

which shows a good agreement with the results first published by Joe Hamman.

',66)]))}const N=i(l,[["render",p]]);export{y as __pageData,N as default}; diff --git a/previews/PR479/assets/UserGuide_group.md.C2yVVeKj.lean.js b/previews/PR479/assets/UserGuide_group.md.CyxshSz7.lean.js similarity index 83% rename from previews/PR479/assets/UserGuide_group.md.C2yVVeKj.lean.js rename to previews/PR479/assets/UserGuide_group.md.CyxshSz7.lean.js index be8edb3d..215173c6 100644 --- a/previews/PR479/assets/UserGuide_group.md.C2yVVeKj.lean.js +++ b/previews/PR479/assets/UserGuide_group.md.CyxshSz7.lean.js @@ -1,16 +1,44 @@ -import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t="/YAXArrays.jl/previews/PR479/assets/lhmmpxn.BJNzQY3Z.png",y=JSON.parse('{"title":"Group YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/group.md","filePath":"UserGuide/group.md","lastUpdated":null}'),h={name:"UserGuide/group.md"};function l(p,s,k,d,r,g){return e(),a("div",null,s[0]||(s[0]=[n(`

Group YAXArrays and Datasets

The following examples will use the groupby function to calculate temporal and spatial averages.

julia
using YAXArrays, DimensionalData
+import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t="/YAXArrays.jl/previews/PR479/assets/lhmmpxn.BJNzQY3Z.png",y=JSON.parse('{"title":"Group YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/group.md","filePath":"UserGuide/group.md","lastUpdated":null}'),l={name:"UserGuide/group.md"};function p(h,s,k,d,r,g){return e(),a("div",null,s[0]||(s[0]=[n(`

Group YAXArrays and Datasets

The following examples will use the groupby function to calculate temporal and spatial averages.

julia
using YAXArrays, DimensionalData
 using YAXArrays: YAXArrays as YAX
 using NetCDF
 using Downloads
 using Dates
 using Statistics
[ Info: new driver key :netcdf, updating backendlist.

Seasonal Averages from Time Series of Monthly Means

The following reproduces the example in xarray by Joe Hamman.

Where the goal is to calculate the seasonal average. And in order to do this properly, is necessary to calculate the weighted average considering that each month has a different number of days.

Download the data

julia
url_path = "https://github.com/pydata/xarray-data/raw/master/rasm.nc"
 filename = Downloads.download(url_path, "rasm.nc")
-ds_o = Cube(filename)

WARNING

The following rebuild should not be necessary in the future, plus is unpractical to use for large data sets. Out of memory groupby currently is work in progress. Related to https://github.com/rafaqz/DimensionalData.jl/issues/642

julia
axs = dims(ds_o) # get the dimensions
-data = ds_o.data[:,:,:] # read the data
-_FillValue = ds_o.properties["_FillValue"]
-data = replace(data, _FillValue => NaN)
-# create new YAXArray
-ds = YAXArray(axs, data)

GroupBy: seasons

function weighted_seasons(ds) ... end
julia
function weighted_seasons(ds)
+ds_o = Cube(filename)
┌ 275×205×36 YAXArray{Float64, 3} ┐
+├─────────────────────────────────┴────────────────────────────────────── dims ┐
+  ↓ x    Sampled{Int64} 1:275 ForwardOrdered Regular Points,
+  → y    Sampled{Int64} 1:205 ForwardOrdered Regular Points,
+  ↗ time Sampled{CFTime.DateTimeNoLeap} [CFTime.DateTimeNoLeap(1980-09-16T12:00:00), …, CFTime.DateTimeNoLeap(1983-08-17T00:00:00)] ForwardOrdered Irregular Points
+├──────────────────────────────────────────────────────────────────── metadata ┤
+  Dict{String, Any} with 7 entries:
+  "units"          => "C"
+  "coordinates"    => "yc xc"
+  "name"           => "Tair"
+  "long_name"      => "Surface air temperature"
+  "type_preferred" => "double"
+  "_FillValue"     => 9.96921e36
+  "time_rep"       => "instantaneous"
+├─────────────────────────────────────────────────────────────── loaded lazily ┤
+  data size: 15.48 MB
+└──────────────────────────────────────────────────────────────────────────────┘

WARNING

The following rebuild should not be necessary in the future, plus is unpractical to use for large data sets. Out of memory groupby currently is work in progress. Related to https://github.com/rafaqz/DimensionalData.jl/issues/642

julia
_FillValue = ds_o.properties["_FillValue"]
+ds = replace(ds_o[:,:,:], _FillValue => NaN) # load into memory and replace _FillValue by NaN
┌ 275×205×36 YAXArray{Float64, 3} ┐
+├─────────────────────────────────┴────────────────────────────────────── dims ┐
+  ↓ x    Sampled{Int64} 1:275 ForwardOrdered Regular Points,
+  → y    Sampled{Int64} 1:205 ForwardOrdered Regular Points,
+  ↗ time Sampled{CFTime.DateTimeNoLeap} [CFTime.DateTimeNoLeap(1980-09-16T12:00:00), …, CFTime.DateTimeNoLeap(1983-08-17T00:00:00)] ForwardOrdered Irregular Points
+├──────────────────────────────────────────────────────────────────── metadata ┤
+  Dict{String, Any} with 7 entries:
+  "units"          => "C"
+  "coordinates"    => "yc xc"
+  "name"           => "Tair"
+  "long_name"      => "Surface air temperature"
+  "type_preferred" => "double"
+  "_FillValue"     => 9.96921e36
+  "time_rep"       => "instantaneous"
+├──────────────────────────────────────────────────────────── loaded in memory ┤
+  data size: 15.48 MB
+└──────────────────────────────────────────────────────────────────────────────┘

GroupBy: seasons

function weighted_seasons(ds) ... end
julia
function weighted_seasons(ds)
     # calculate weights 
     tempo = dims(ds, :time)
     month_length = YAXArray((tempo,), daysinmonth.(tempo))
@@ -29,8 +57,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
     diff_g = map(.-, weighted_g, mean_g)
     seasons_g = lookup(mean_g, :time)
     return mean_g, weighted_g, diff_g, seasons_g
-end

Now, we continue with the groupby operations as usual

julia
julia> g_ds = groupby(ds, YAX.time => seasons(; start=December))
╭──────────────────────────────────────────────────╮
-4-element DimGroupByArray{YAXArray{Float64,2},1}
+end

Now, we continue with the groupby operations as usual

julia
julia> g_ds = groupby(ds, YAX.time => seasons(; start=December))
4-element DimGroupByArray{YAXArray{Float64,2},1}
 ├──────────────────────────────────────────────────┴───────────────────── dims ┐
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -42,8 +69,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  275×205×9 YAXArray
  :Mar_Apr_May  275×205×9 YAXArray
  :Jun_Jul_Aug  275×205×9 YAXArray
- :Sep_Oct_Nov  275×205×9 YAXArray

And the mean per season is calculated as follows

julia
julia> mean_g = mean.(g_ds, dims=:time)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 3, Array{Float64, 3}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}},1}
+ :Sep_Oct_Nov  275×205×9 YAXArray

Note how we are referencing the \`time\` dimension via \`YAX.time\`. This approach is used to avoid name clashes with \`time\` (\`Time\`) from \`Base\` (\`Dates\`). For convenience, we have defined the \`Dimensions\` \`time\` and \`Time\` in \`YAXArrays.jl\`, which are only accessible when explicitly called.

And the mean per season is calculated as follows

julia
julia> mean_g = mean.(g_ds, dims=:time)
4-element DimArray{YAXArray{Float64, 3, Array{Float64, 3}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -53,8 +79,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  …  [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 11.1372 11.3835; NaN NaN … 11.3252 11.5843;;;]
  :Mar_Apr_May     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.1363 21.018; NaN NaN … 21.4325 21.1762;;;]
  :Jun_Jul_Aug     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 28.2818 27.9432; NaN NaN … 28.619 28.0537;;;]
- :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.7119 21.7158; NaN NaN … 21.9682 21.9404;;;]

dropdims

Note that now the time dimension has length one, we can use dropdims to remove it

julia
julia> mean_g = dropdims.(mean_g, dims=:time)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}},1}
+ :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.7119 21.7158; NaN NaN … 21.9682 21.9404;;;]

dropdims

Note that now the time dimension has length one, we can use dropdims to remove it

julia
julia> mean_g = dropdims.(mean_g, dims=:time)
4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -70,16 +95,14 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Mar_Apr_May
  :Jun_Jul_Aug
  :Sep_Oct_Nov

Next, we will weight this grouping by days/month in each group.

GroupBy: weight

Create a YAXArray for the month length

julia
tempo = dims(ds, :time)
-month_length = YAXArray((tempo,), daysinmonth.(tempo))
╭──────────────────────────────╮
-│ 36-element YAXArray{Int64,1} │
-├──────────────────────────────┴───────────────────────────────────────── dims ┐
+month_length = YAXArray((tempo,), daysinmonth.(tempo))
┌ 36-element YAXArray{Int64, 1} ┐
+├───────────────────────────────┴──────────────────────────────────────── dims ┐
   ↓ time Sampled{CFTime.DateTimeNoLeap} [CFTime.DateTimeNoLeap(1980-09-16T12:00:00), …, CFTime.DateTimeNoLeap(1983-08-17T00:00:00)] ForwardOrdered Irregular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 ├──────────────────────────────────────────────────────────── loaded in memory ┤
   data size: 288.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

Now group it by season

julia
julia> g_tempo = groupby(month_length, YAX.time => seasons(; start=December))
╭────────────────────────────────────────────────╮
-4-element DimGroupByArray{YAXArray{Int64,0},1}
+└──────────────────────────────────────────────────────────────────────────────┘

Now group it by season

julia
julia> g_tempo = groupby(month_length, YAX.time => seasons(; start=December))
4-element DimGroupByArray{YAXArray{Int64,0},1}
 ├────────────────────────────────────────────────┴─────────────────────── dims ┐
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -91,8 +114,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  9-element YAXArray
  :Mar_Apr_May  9-element YAXArray
  :Jun_Jul_Aug  9-element YAXArray
- :Sep_Oct_Nov  9-element YAXArray

Get the number of days per season

julia
julia> sum_days = sum.(g_tempo, dims=:time)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Int64, 1, Vector{Int64}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}},1}
+ :Sep_Oct_Nov  9-element YAXArray

Get the number of days per season

julia
julia> sum_days = sum.(g_tempo, dims=:time)
4-element DimArray{YAXArray{Int64, 1, DimensionalData.DimVector{Int64, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Tuple{}, Vector{Int64}, Symbol, DimensionalData.Dimensions.Lookups.NoMetadata}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -102,8 +124,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  [270]
  :Mar_Apr_May  [276]
  :Jun_Jul_Aug  [276]
- :Sep_Oct_Nov  [273]

weights

Weight the seasonal groups by sum_days

julia
julia> weights = map(./, g_tempo, sum_days)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 1, Vector{Float64}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}},1} groupby
+ :Sep_Oct_Nov  [273]

weights

Weight the seasonal groups by sum_days

julia
julia> weights = map(./, g_tempo, sum_days)
4-element DimArray{YAXArray{Float64, 1, Vector{Float64}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, Dict{String, Any}}, 1} groupby
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -113,9 +134,8 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  …  [0.114815, 0.114815, 0.103704, 0.114815, 0.114815, 0.103704, 0.114815, 0.114815, 0.103704]
  :Mar_Apr_May     [0.112319, 0.108696, 0.112319, 0.112319, 0.108696, 0.112319, 0.112319, 0.108696, 0.112319]
  :Jun_Jul_Aug     [0.108696, 0.112319, 0.112319, 0.108696, 0.112319, 0.112319, 0.108696, 0.112319, 0.112319]
- :Sep_Oct_Nov     [0.10989, 0.113553, 0.10989, 0.10989, 0.113553, 0.10989, 0.10989, 0.113553, 0.10989]

Verify that the sum per season is 1

julia
julia> sum.(weights)
╭───────────────────────────────╮
-4-element DimArray{Float64,1}
-├───────────────────────────────┴──────────────────────────────────────── dims ┐
+ :Sep_Oct_Nov     [0.10989, 0.113553, 0.10989, 0.10989, 0.113553, 0.10989, 0.10989, 0.113553, 0.10989]

Verify that the sum per season is 1

julia
julia> sum.(weights)
4-element DimArray{Float64, 1}
+├────────────────────────────────┴─────────────────────────────────────── dims ┐
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{Symbol, Any} with 1 entry:
@@ -124,8 +144,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  1.0
  :Mar_Apr_May  1.0
  :Jun_Jul_Aug  1.0
- :Sep_Oct_Nov  1.0

weighted seasons

Now, let's weight the seasons

julia
julia> g_dsW = broadcast_dims.(*, weights, g_ds)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 3, Array{Float64, 3}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata},1}
+ :Sep_Oct_Nov  1.0

weighted seasons

Now, let's weight the seasons

julia
julia> g_dsW = broadcast_dims.(*, weights, g_ds)
4-element DimArray{YAXArray{Float64, 3, Array{Float64, 3}, Tuple{YAXArrays.time{DimensionalData.Dimensions.Lookups.Sampled{CFTime.DateTimeNoLeap, Vector{CFTime.DateTimeNoLeap}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Irregular{Tuple{Nothing, Nothing}}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -137,8 +156,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Jun_Jul_Aug     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; … ;;; NaN NaN … 3.21209 3.25153; NaN NaN … 3.23 3.28008; … ; NaN NaN … 3.12575 3.15532; NaN NaN … 3.2434 3.26274;;; NaN NaN … 3.17434 3.21699; NaN NaN … 3.18892 3.24375; … ; NaN NaN … 3.06755 3.1083; NaN NaN … 3.19241 3.22211;;; NaN NaN … 3.1437 3.15644; NaN NaN … 3.16631 3.18583; … ; NaN NaN … 3.03361 3.05846; NaN NaN … 3.16581 3.16824]
  :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … NaN NaN; NaN NaN … NaN NaN;;; … ;;; NaN NaN … 2.97047 3.00388; NaN NaN … 2.77587 2.80759; … ; NaN NaN … 2.60175 2.60918; NaN NaN … 1.4947 1.52419;;; NaN NaN … 2.94534 2.97649; NaN NaN … 2.75891 2.79502; … ; NaN NaN … 2.57695 2.59212; NaN NaN … 1.46506 1.49909;;; NaN NaN … 2.9192 2.93743; NaN NaN … 2.7593 2.77687; … ; NaN NaN … 2.57873 2.63006; NaN NaN … 1.48367 1.50089]

apply a sum over the time dimension and drop it

julia
julia> weighted_g = sum.(g_dsW, dims = :time);
 
-julia> weighted_g = dropdims.(weighted_g, dims=:time)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata},1}
+julia> weighted_g = dropdims.(weighted_g, dims=:time)
4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -148,8 +166,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
  :Dec_Jan_Feb  …  [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 11.1181 11.372; NaN NaN … 11.3069 11.5743]
  :Mar_Apr_May     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.1242 21.0057; NaN NaN … 21.4198 21.1644]
  :Jun_Jul_Aug     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 28.2747 27.9362; NaN NaN … 28.6122 28.0465]
- :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.73 21.7341; NaN NaN … 21.986 21.959]

Calculate the differences

julia
julia> diff_g = map(.-, weighted_g, mean_g)
╭──────────────────────────────────────────────────────────────────────────────╮
-4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata},1}
+ :Sep_Oct_Nov     [NaN NaN … NaN NaN; NaN NaN … NaN NaN; … ; NaN NaN … 21.73 21.7341; NaN NaN … 21.986 21.959]

Calculate the differences

julia
julia> diff_g = map(.-, weighted_g, mean_g)
4-element DimArray{YAXArray{Float64, 2, Matrix{Float64}, Tuple{Dim{:x, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}, Dim{:y, DimensionalData.Dimensions.Lookups.Sampled{Int64, UnitRange{Int64}, DimensionalData.Dimensions.Lookups.ForwardOrdered, DimensionalData.Dimensions.Lookups.Regular{Int64}, DimensionalData.Dimensions.Lookups.Points, DimensionalData.Dimensions.Lookups.NoMetadata}}}, DimensionalData.Dimensions.Lookups.NoMetadata}, 1}
 ├──────────────────────────────────────────────────────────────────────── dims ┤
 time Categorical{Symbol} [:Dec_Jan_Feb, :Mar_Apr_May, :Jun_Jul_Aug, :Sep_Oct_Nov] Unordered
 ├──────────────────────────────────────────────────────────────────── metadata ┤
@@ -188,4 +205,4 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const t
     colgap!(fig.layout, 5)
     rowgap!(fig.layout, 5)
     fig
-end

which shows a good agreement with the results first published by Joe Hamman.

',63)]))}const N=i(h,[["render",l]]);export{y as __pageData,N as default}; +end

which shows a good agreement with the results first published by Joe Hamman.

',66)]))}const N=i(l,[["render",p]]);export{y as __pageData,N as default}; diff --git a/previews/PR479/assets/UserGuide_read.md.De0OvTWP.js b/previews/PR479/assets/UserGuide_read.md.m9LR7MXT.js similarity index 95% rename from previews/PR479/assets/UserGuide_read.md.De0OvTWP.js rename to previews/PR479/assets/UserGuide_read.md.m9LR7MXT.js index b1e8ce1e..4f0ecda4 100644 --- a/previews/PR479/assets/UserGuide_read.md.De0OvTWP.js +++ b/previews/PR479/assets/UserGuide_read.md.m9LR7MXT.js @@ -16,9 +16,8 @@ import{_ as o,c as r,a2 as d,G as i,w as e,j as s,a,B as l,o as h}from"./chunks/ Variables: tas -Properties: Dict{String, Any}("initialization_index" => 1, "realm" => "atmos", "variable_id" => "tas", "external_variables" => "areacella", "branch_time_in_child" => 60265.0, "data_specs_version" => "01.00.30", "history" => "2019-07-21T06:26:13Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.", "forcing_index" => 1, "parent_variant_label" => "r1i1p1f1", "table_id" => "3hr"…)

We can set path to a URL, a local directory, or in this case to a cloud object storage path.

A zarr store may contain multiple arrays. Individual arrays can be accessed using subsetting:

julia
ds.tas
╭────────────────────────────────────╮
-│ 384×192×251288 YAXArray{Float32,3} │
-├────────────────────────────────────┴─────────────────────────────────── dims ┐
+Properties: Dict{String, Any}("initialization_index" => 1, "realm" => "atmos", "variable_id" => "tas", "external_variables" => "areacella", "branch_time_in_child" => 60265.0, "data_specs_version" => "01.00.30", "history" => "2019-07-21T06:26:13Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.", "forcing_index" => 1, "parent_variant_label" => "r1i1p1f1", "table_id" => "3hr"…)

We can set path to a URL, a local directory, or in this case to a cloud object storage path.

A zarr store may contain multiple arrays. Individual arrays can be accessed using subsetting:

julia
ds.tas
┌ 384×192×251288 YAXArray{Float32, 3} ┐
+├─────────────────────────────────────┴────────────────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 0.0:0.9375:359.0625 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} [-89.28422753251364, -88.35700351866494, …, 88.35700351866494, 89.28422753251364] ForwardOrdered Irregular Points,
   ↗ time Sampled{DateTime} [2015-01-01T03:00:00, …, 2101-01-01T00:00:00] ForwardOrdered Irregular Points
@@ -50,9 +49,8 @@ import{_ as o,c as r,a2 as d,G as i,w as e,j as s,a,B as l,o as h}from"./chunks/
 Variables: 
 tos
 
-Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

A NetCDF file may contain multiple arrays. Individual arrays can be accessed using subsetting:

julia
ds.tos
╭────────────────────────────────────────────────╮
-│ 180×170×24 YAXArray{Union{Missing, Float32},3} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

A NetCDF file may contain multiple arrays. Individual arrays can be accessed using subsetting:

julia
ds.tos
┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -95,9 +93,8 @@ import{_ as o,c as r,a2 as d,G as i,w as e,j as s,a,B as l,o as h}from"./chunks/
 Variables: 
 Blue, Green, Red
 
-Properties: Dict{String, Any}("projection" => "GEOGCS[\\"WGS 84\\",DATUM[\\"WGS_1984\\",SPHEROID[\\"WGS 84\\",6378137,298.257223563,AUTHORITY[\\"EPSG\\",\\"7030\\"]],AUTHORITY[\\"EPSG\\",\\"6326\\"]],PRIMEM[\\"Greenwich\\",0,AUTHORITY[\\"EPSG\\",\\"8901\\"]],UNIT[\\"degree\\",0.0174532925199433,AUTHORITY[\\"EPSG\\",\\"9122\\"]],AXIS[\\"Latitude\\",NORTH],AXIS[\\"Longitude\\",EAST],AUTHORITY[\\"EPSG\\",\\"4326\\"]]")

Load data into memory

For datasets or variables that could fit in RAM, you might want to load them completely into memory. This can be done using the readcubedata function. As an example, let's use the NetCDF workflow; the same should be true for other cases.

readcubedata

`,28)),i(p,null,{default:e(()=>[i(t,{label:"single variable"},{default:e(()=>n[0]||(n[0]=[s("div",{class:"language-julia vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"},"julia"),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#005CC5","--shiki-dark":"#79B8FF"}},"readcubedata"),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"(ds"),s("span",{style:{"--shiki-light":"#D73A49","--shiki-dark":"#F97583"}},"."),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"tos)")])])])],-1),s("div",{class:"language- vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"}),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",null,"╭────────────────────────────────────────────────╮")]),a(` -`),s("span",{class:"line"},[s("span",null,"│ 180×170×24 YAXArray{Union{Missing, Float32},3} │")]),a(` -`),s("span",{class:"line"},[s("span",null,"├────────────────────────────────────────────────┴─────────────────────── dims ┐")]),a(` +Properties: Dict{String, Any}("projection" => "GEOGCS[\\"WGS 84\\",DATUM[\\"WGS_1984\\",SPHEROID[\\"WGS 84\\",6378137,298.257223563,AUTHORITY[\\"EPSG\\",\\"7030\\"]],AUTHORITY[\\"EPSG\\",\\"6326\\"]],PRIMEM[\\"Greenwich\\",0,AUTHORITY[\\"EPSG\\",\\"8901\\"]],UNIT[\\"degree\\",0.0174532925199433,AUTHORITY[\\"EPSG\\",\\"9122\\"]],AXIS[\\"Latitude\\",NORTH],AXIS[\\"Longitude\\",EAST],AUTHORITY[\\"EPSG\\",\\"4326\\"]]")

Load data into memory

For datasets or variables that could fit in RAM, you might want to load them completely into memory. This can be done using the readcubedata function. As an example, let's use the NetCDF workflow; the same should be true for other cases.

readcubedata

`,28)),i(p,null,{default:e(()=>[i(t,{label:"single variable"},{default:e(()=>n[0]||(n[0]=[s("div",{class:"language-julia vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"},"julia"),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#005CC5","--shiki-dark":"#79B8FF"}},"readcubedata"),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"(ds"),s("span",{style:{"--shiki-light":"#D73A49","--shiki-dark":"#F97583"}},"."),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"tos)")])])])],-1),s("div",{class:"language- vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"}),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",null,"┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐")]),a(` +`),s("span",{class:"line"},[s("span",null,"├─────────────────────────────────────────────────┴────────────────────── dims ┐")]),a(` `),s("span",{class:"line"},[s("span",null," ↓ lon Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,")]),a(` `),s("span",{class:"line"},[s("span",null," → lat Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,")]),a(` `),s("span",{class:"line"},[s("span",null," ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points")]),a(` @@ -115,9 +112,8 @@ import{_ as o,c as r,a2 as d,G as i,w as e,j as s,a,B as l,o as h}from"./chunks/ `),s("span",{class:"line"},[s("span",null,' "original_name" => "sosstsst"')]),a(` `),s("span",{class:"line"},[s("span",null,"├──────────────────────────────────────────────────────────── loaded in memory ┤")]),a(` `),s("span",{class:"line"},[s("span",null," data size: 2.8 MB")]),a(` -`),s("span",{class:"line"},[s("span",null,"└──────────────────────────────────────────────────────────────────────────────┘")])])])],-1)])),_:1}),i(t,{label:"with the `:` operator"},{default:e(()=>n[1]||(n[1]=[s("div",{class:"language-julia vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"},"julia"),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"ds"),s("span",{style:{"--shiki-light":"#D73A49","--shiki-dark":"#F97583"}},"."),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"tos[:, :, :]")])])])],-1),s("div",{class:"language- vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"}),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",null,"╭────────────────────────────────────────────────╮")]),a(` -`),s("span",{class:"line"},[s("span",null,"│ 180×170×24 YAXArray{Union{Missing, Float32},3} │")]),a(` -`),s("span",{class:"line"},[s("span",null,"├────────────────────────────────────────────────┴─────────────────────── dims ┐")]),a(` +`),s("span",{class:"line"},[s("span",null,"└──────────────────────────────────────────────────────────────────────────────┘")])])])],-1)])),_:1}),i(t,{label:"with the `:` operator"},{default:e(()=>n[1]||(n[1]=[s("div",{class:"language-julia vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"},"julia"),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"ds"),s("span",{style:{"--shiki-light":"#D73A49","--shiki-dark":"#F97583"}},"."),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"tos[:, :, :]")])])])],-1),s("div",{class:"language- vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"}),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",null,"┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐")]),a(` +`),s("span",{class:"line"},[s("span",null,"├─────────────────────────────────────────────────┴────────────────────── dims ┐")]),a(` `),s("span",{class:"line"},[s("span",null," ↓ lon Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,")]),a(` `),s("span",{class:"line"},[s("span",null," → lat Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,")]),a(` `),s("span",{class:"line"},[s("span",null," ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points")]),a(` @@ -136,9 +132,8 @@ import{_ as o,c as r,a2 as d,G as i,w as e,j as s,a,B as l,o as h}from"./chunks/ `),s("span",{class:"line"},[s("span",null,"├──────────────────────────────────────────────────────────── loaded in memory ┤")]),a(` `),s("span",{class:"line"},[s("span",null," data size: 2.8 MB")]),a(` `),s("span",{class:"line"},[s("span",null,"└──────────────────────────────────────────────────────────────────────────────┘")])])])],-1),s("p",null,"In this case, you should know in advance how many dimensions there are and how long they are, which shouldn't be hard to determine since this information is already displayed when querying such variables.",-1)])),_:1}),i(t,{label:"Complete Dataset"},{default:e(()=>n[2]||(n[2]=[s("div",{class:"language-julia vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"},"julia"),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"ds_loaded "),s("span",{style:{"--shiki-light":"#D73A49","--shiki-dark":"#F97583"}},"="),s("span",{style:{"--shiki-light":"#005CC5","--shiki-dark":"#79B8FF"}}," readcubedata"),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"(ds)")]),a(` -`),s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"ds_loaded["),s("span",{style:{"--shiki-light":"#032F62","--shiki-dark":"#9ECBFF"}},'"tos"'),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"] "),s("span",{style:{"--shiki-light":"#6A737D","--shiki-dark":"#6A737D"}},"# Load the variable of interest; the loaded status is shown for each variable.")])])])],-1),s("div",{class:"language- vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"}),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",null,"╭────────────────────────────────────────────────╮")]),a(` -`),s("span",{class:"line"},[s("span",null,"│ 180×170×24 YAXArray{Union{Missing, Float32},3} │")]),a(` -`),s("span",{class:"line"},[s("span",null,"├────────────────────────────────────────────────┴─────────────────────── dims ┐")]),a(` +`),s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"ds_loaded["),s("span",{style:{"--shiki-light":"#032F62","--shiki-dark":"#9ECBFF"}},'"tos"'),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"] "),s("span",{style:{"--shiki-light":"#6A737D","--shiki-dark":"#6A737D"}},"# Load the variable of interest; the loaded status is shown for each variable.")])])])],-1),s("div",{class:"language- vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"}),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",null,"┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐")]),a(` +`),s("span",{class:"line"},[s("span",null,"├─────────────────────────────────────────────────┴────────────────────── dims ┐")]),a(` `),s("span",{class:"line"},[s("span",null," ↓ lon Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,")]),a(` `),s("span",{class:"line"},[s("span",null," → lat Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,")]),a(` `),s("span",{class:"line"},[s("span",null," ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points")]),a(` diff --git a/previews/PR479/assets/UserGuide_read.md.De0OvTWP.lean.js b/previews/PR479/assets/UserGuide_read.md.m9LR7MXT.lean.js similarity index 95% rename from previews/PR479/assets/UserGuide_read.md.De0OvTWP.lean.js rename to previews/PR479/assets/UserGuide_read.md.m9LR7MXT.lean.js index b1e8ce1e..4f0ecda4 100644 --- a/previews/PR479/assets/UserGuide_read.md.De0OvTWP.lean.js +++ b/previews/PR479/assets/UserGuide_read.md.m9LR7MXT.lean.js @@ -16,9 +16,8 @@ import{_ as o,c as r,a2 as d,G as i,w as e,j as s,a,B as l,o as h}from"./chunks/ Variables: tas -Properties: Dict{String, Any}("initialization_index" => 1, "realm" => "atmos", "variable_id" => "tas", "external_variables" => "areacella", "branch_time_in_child" => 60265.0, "data_specs_version" => "01.00.30", "history" => "2019-07-21T06:26:13Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.", "forcing_index" => 1, "parent_variant_label" => "r1i1p1f1", "table_id" => "3hr"…)

We can set path to a URL, a local directory, or in this case to a cloud object storage path.

A zarr store may contain multiple arrays. Individual arrays can be accessed using subsetting:

julia
ds.tas
╭────────────────────────────────────╮
-│ 384×192×251288 YAXArray{Float32,3} │
-├────────────────────────────────────┴─────────────────────────────────── dims ┐
+Properties: Dict{String, Any}("initialization_index" => 1, "realm" => "atmos", "variable_id" => "tas", "external_variables" => "areacella", "branch_time_in_child" => 60265.0, "data_specs_version" => "01.00.30", "history" => "2019-07-21T06:26:13Z ; CMOR rewrote data to be consistent with CMIP6, CF-1.7 CMIP-6.2 and CF standards.", "forcing_index" => 1, "parent_variant_label" => "r1i1p1f1", "table_id" => "3hr"…)

We can set path to a URL, a local directory, or in this case to a cloud object storage path.

A zarr store may contain multiple arrays. Individual arrays can be accessed using subsetting:

julia
ds.tas
┌ 384×192×251288 YAXArray{Float32, 3} ┐
+├─────────────────────────────────────┴────────────────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 0.0:0.9375:359.0625 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} [-89.28422753251364, -88.35700351866494, …, 88.35700351866494, 89.28422753251364] ForwardOrdered Irregular Points,
   ↗ time Sampled{DateTime} [2015-01-01T03:00:00, …, 2101-01-01T00:00:00] ForwardOrdered Irregular Points
@@ -50,9 +49,8 @@ import{_ as o,c as r,a2 as d,G as i,w as e,j as s,a,B as l,o as h}from"./chunks/
 Variables: 
 tos
 
-Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

A NetCDF file may contain multiple arrays. Individual arrays can be accessed using subsetting:

julia
ds.tos
╭────────────────────────────────────────────────╮
-│ 180×170×24 YAXArray{Union{Missing, Float32},3} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

A NetCDF file may contain multiple arrays. Individual arrays can be accessed using subsetting:

julia
ds.tos
┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -95,9 +93,8 @@ import{_ as o,c as r,a2 as d,G as i,w as e,j as s,a,B as l,o as h}from"./chunks/
 Variables: 
 Blue, Green, Red
 
-Properties: Dict{String, Any}("projection" => "GEOGCS[\\"WGS 84\\",DATUM[\\"WGS_1984\\",SPHEROID[\\"WGS 84\\",6378137,298.257223563,AUTHORITY[\\"EPSG\\",\\"7030\\"]],AUTHORITY[\\"EPSG\\",\\"6326\\"]],PRIMEM[\\"Greenwich\\",0,AUTHORITY[\\"EPSG\\",\\"8901\\"]],UNIT[\\"degree\\",0.0174532925199433,AUTHORITY[\\"EPSG\\",\\"9122\\"]],AXIS[\\"Latitude\\",NORTH],AXIS[\\"Longitude\\",EAST],AUTHORITY[\\"EPSG\\",\\"4326\\"]]")

Load data into memory

For datasets or variables that could fit in RAM, you might want to load them completely into memory. This can be done using the readcubedata function. As an example, let's use the NetCDF workflow; the same should be true for other cases.

readcubedata

`,28)),i(p,null,{default:e(()=>[i(t,{label:"single variable"},{default:e(()=>n[0]||(n[0]=[s("div",{class:"language-julia vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"},"julia"),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#005CC5","--shiki-dark":"#79B8FF"}},"readcubedata"),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"(ds"),s("span",{style:{"--shiki-light":"#D73A49","--shiki-dark":"#F97583"}},"."),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"tos)")])])])],-1),s("div",{class:"language- vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"}),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",null,"╭────────────────────────────────────────────────╮")]),a(` -`),s("span",{class:"line"},[s("span",null,"│ 180×170×24 YAXArray{Union{Missing, Float32},3} │")]),a(` -`),s("span",{class:"line"},[s("span",null,"├────────────────────────────────────────────────┴─────────────────────── dims ┐")]),a(` +Properties: Dict{String, Any}("projection" => "GEOGCS[\\"WGS 84\\",DATUM[\\"WGS_1984\\",SPHEROID[\\"WGS 84\\",6378137,298.257223563,AUTHORITY[\\"EPSG\\",\\"7030\\"]],AUTHORITY[\\"EPSG\\",\\"6326\\"]],PRIMEM[\\"Greenwich\\",0,AUTHORITY[\\"EPSG\\",\\"8901\\"]],UNIT[\\"degree\\",0.0174532925199433,AUTHORITY[\\"EPSG\\",\\"9122\\"]],AXIS[\\"Latitude\\",NORTH],AXIS[\\"Longitude\\",EAST],AUTHORITY[\\"EPSG\\",\\"4326\\"]]")

Load data into memory

For datasets or variables that could fit in RAM, you might want to load them completely into memory. This can be done using the readcubedata function. As an example, let's use the NetCDF workflow; the same should be true for other cases.

readcubedata

`,28)),i(p,null,{default:e(()=>[i(t,{label:"single variable"},{default:e(()=>n[0]||(n[0]=[s("div",{class:"language-julia vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"},"julia"),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#005CC5","--shiki-dark":"#79B8FF"}},"readcubedata"),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"(ds"),s("span",{style:{"--shiki-light":"#D73A49","--shiki-dark":"#F97583"}},"."),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"tos)")])])])],-1),s("div",{class:"language- vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"}),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",null,"┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐")]),a(` +`),s("span",{class:"line"},[s("span",null,"├─────────────────────────────────────────────────┴────────────────────── dims ┐")]),a(` `),s("span",{class:"line"},[s("span",null," ↓ lon Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,")]),a(` `),s("span",{class:"line"},[s("span",null," → lat Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,")]),a(` `),s("span",{class:"line"},[s("span",null," ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points")]),a(` @@ -115,9 +112,8 @@ import{_ as o,c as r,a2 as d,G as i,w as e,j as s,a,B as l,o as h}from"./chunks/ `),s("span",{class:"line"},[s("span",null,' "original_name" => "sosstsst"')]),a(` `),s("span",{class:"line"},[s("span",null,"├──────────────────────────────────────────────────────────── loaded in memory ┤")]),a(` `),s("span",{class:"line"},[s("span",null," data size: 2.8 MB")]),a(` -`),s("span",{class:"line"},[s("span",null,"└──────────────────────────────────────────────────────────────────────────────┘")])])])],-1)])),_:1}),i(t,{label:"with the `:` operator"},{default:e(()=>n[1]||(n[1]=[s("div",{class:"language-julia vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"},"julia"),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"ds"),s("span",{style:{"--shiki-light":"#D73A49","--shiki-dark":"#F97583"}},"."),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"tos[:, :, :]")])])])],-1),s("div",{class:"language- vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"}),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",null,"╭────────────────────────────────────────────────╮")]),a(` -`),s("span",{class:"line"},[s("span",null,"│ 180×170×24 YAXArray{Union{Missing, Float32},3} │")]),a(` -`),s("span",{class:"line"},[s("span",null,"├────────────────────────────────────────────────┴─────────────────────── dims ┐")]),a(` +`),s("span",{class:"line"},[s("span",null,"└──────────────────────────────────────────────────────────────────────────────┘")])])])],-1)])),_:1}),i(t,{label:"with the `:` operator"},{default:e(()=>n[1]||(n[1]=[s("div",{class:"language-julia vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"},"julia"),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"ds"),s("span",{style:{"--shiki-light":"#D73A49","--shiki-dark":"#F97583"}},"."),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"tos[:, :, :]")])])])],-1),s("div",{class:"language- vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"}),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",null,"┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐")]),a(` +`),s("span",{class:"line"},[s("span",null,"├─────────────────────────────────────────────────┴────────────────────── dims ┐")]),a(` `),s("span",{class:"line"},[s("span",null," ↓ lon Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,")]),a(` `),s("span",{class:"line"},[s("span",null," → lat Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,")]),a(` `),s("span",{class:"line"},[s("span",null," ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points")]),a(` @@ -136,9 +132,8 @@ import{_ as o,c as r,a2 as d,G as i,w as e,j as s,a,B as l,o as h}from"./chunks/ `),s("span",{class:"line"},[s("span",null,"├──────────────────────────────────────────────────────────── loaded in memory ┤")]),a(` `),s("span",{class:"line"},[s("span",null," data size: 2.8 MB")]),a(` `),s("span",{class:"line"},[s("span",null,"└──────────────────────────────────────────────────────────────────────────────┘")])])])],-1),s("p",null,"In this case, you should know in advance how many dimensions there are and how long they are, which shouldn't be hard to determine since this information is already displayed when querying such variables.",-1)])),_:1}),i(t,{label:"Complete Dataset"},{default:e(()=>n[2]||(n[2]=[s("div",{class:"language-julia vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"},"julia"),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"ds_loaded "),s("span",{style:{"--shiki-light":"#D73A49","--shiki-dark":"#F97583"}},"="),s("span",{style:{"--shiki-light":"#005CC5","--shiki-dark":"#79B8FF"}}," readcubedata"),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"(ds)")]),a(` -`),s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"ds_loaded["),s("span",{style:{"--shiki-light":"#032F62","--shiki-dark":"#9ECBFF"}},'"tos"'),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"] "),s("span",{style:{"--shiki-light":"#6A737D","--shiki-dark":"#6A737D"}},"# Load the variable of interest; the loaded status is shown for each variable.")])])])],-1),s("div",{class:"language- vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"}),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",null,"╭────────────────────────────────────────────────╮")]),a(` -`),s("span",{class:"line"},[s("span",null,"│ 180×170×24 YAXArray{Union{Missing, Float32},3} │")]),a(` -`),s("span",{class:"line"},[s("span",null,"├────────────────────────────────────────────────┴─────────────────────── dims ┐")]),a(` +`),s("span",{class:"line"},[s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"ds_loaded["),s("span",{style:{"--shiki-light":"#032F62","--shiki-dark":"#9ECBFF"}},'"tos"'),s("span",{style:{"--shiki-light":"#24292E","--shiki-dark":"#E1E4E8"}},"] "),s("span",{style:{"--shiki-light":"#6A737D","--shiki-dark":"#6A737D"}},"# Load the variable of interest; the loaded status is shown for each variable.")])])])],-1),s("div",{class:"language- vp-adaptive-theme"},[s("button",{title:"Copy Code",class:"copy"}),s("span",{class:"lang"}),s("pre",{class:"shiki shiki-themes github-light github-dark vp-code",tabindex:"0"},[s("code",null,[s("span",{class:"line"},[s("span",null,"┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐")]),a(` +`),s("span",{class:"line"},[s("span",null,"├─────────────────────────────────────────────────┴────────────────────── dims ┐")]),a(` `),s("span",{class:"line"},[s("span",null," ↓ lon Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,")]),a(` `),s("span",{class:"line"},[s("span",null," → lat Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,")]),a(` `),s("span",{class:"line"},[s("span",null," ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points")]),a(` diff --git a/previews/PR479/assets/UserGuide_select.md.rxBehFDA.js b/previews/PR479/assets/UserGuide_select.md.wOOEByPV.js similarity index 89% rename from previews/PR479/assets/UserGuide_select.md.rxBehFDA.js rename to previews/PR479/assets/UserGuide_select.md.wOOEByPV.js index acae7330..f97e0189 100644 --- a/previews/PR479/assets/UserGuide_select.md.rxBehFDA.js +++ b/previews/PR479/assets/UserGuide_select.md.wOOEByPV.js @@ -1,4 +1,4 @@ -import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u=JSON.parse('{"title":"Select YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/select.md","filePath":"UserGuide/select.md","lastUpdated":null}'),t={name:"UserGuide/select.md"};function p(l,s,h,o,d,k){return e(),n("div",null,s[0]||(s[0]=[i(`

Select YAXArrays and Datasets

The dimensions or axes of an YAXArray are named making it easier to subset or query certain ranges of an array. Let's open an example Dataset used to select certain elements:

julia
using YAXArrays
+import{_ as a,c as i,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const u=JSON.parse('{"title":"Select YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/select.md","filePath":"UserGuide/select.md","lastUpdated":null}'),t={name:"UserGuide/select.md"};function p(l,s,h,o,d,k){return e(),i("div",null,s[0]||(s[0]=[n(`

Select YAXArrays and Datasets

The dimensions or axes of an YAXArray are named making it easier to subset or query certain ranges of an array. Let's open an example Dataset used to select certain elements:

julia
using YAXArrays
 using NetCDF
 using Downloads: download
 
@@ -12,9 +12,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
 Variables: 
 tos
 
-Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Select a YAXArray

Get the sea surface temperature of the Dataset:

julia
tos = ds.tos
╭────────────────────────────────────────────────╮
-│ 180×170×24 YAXArray{Union{Missing, Float32},3} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Select a YAXArray

Get the sea surface temperature of the Dataset:

julia
tos = ds.tos
┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -32,9 +31,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 2.8 MB
-└──────────────────────────────────────────────────────────────────────────────┘

which is the same as:

julia
tos = ds.cubes[:tos]
╭────────────────────────────────────────────────╮
-│ 180×170×24 YAXArray{Union{Missing, Float32},3} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

which is the same as:

julia
tos = ds.cubes[:tos]
┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -52,9 +50,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 2.8 MB
-└──────────────────────────────────────────────────────────────────────────────┘

Select elements

Using positional integer indexing:

julia
tos[lon = 1, lat = 1]
╭────────────────────────────────────────────────╮
-│ 24-element YAXArray{Union{Missing, Float32},1} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Select elements

Using positional integer indexing:

julia
tos[lon = 1, lat = 1]
┌ 24-element YAXArray{Union{Missing, Float32}, 1} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any} with 10 entries:
@@ -70,9 +67,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 96.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

Same but using named indexing:

julia
tos[lon = At(1), lat = At(-79.5)]
╭────────────────────────────────────────────────╮
-│ 24-element YAXArray{Union{Missing, Float32},1} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Same but using named indexing:

julia
tos[lon = At(1), lat = At(-79.5)]
┌ 24-element YAXArray{Union{Missing, Float32}, 1} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any} with 10 entries:
@@ -90,9 +86,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   data size: 96.0 bytes
 └──────────────────────────────────────────────────────────────────────────────┘

Using special types:

julia
using CFTime
 time1 = DateTime360Day(2001,01,16)
-tos[time = At(time1)]
╭─────────────────────────────────────────────╮
-│ 180×170 YAXArray{Union{Missing, Float32},2} │
-├─────────────────────────────────────────────┴───────────────── dims ┐
+tos[time = At(time1)]
┌ 180×170 YAXArray{Union{Missing, Float32}, 2} ┐
+├──────────────────────────────────────────────┴──────────────── dims ┐
   ↓ lon Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,
   → lat Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────────────────┴ metadata ┐
@@ -109,9 +104,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├───────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 119.53 KB
-└────────────────────────────────────────────────────────────────────────────────┘

Select ranges

Here we subset an interval of a dimension using positional integer indexing.

julia
tos[lon = 1:10, lat = 1:10]
╭──────────────────────────────────────────────╮
-│ 10×10×24 YAXArray{Union{Missing, Float32},3} │
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+└────────────────────────────────────────────────────────────────────────────────┘

Select ranges

Here we subset an interval of a dimension using positional integer indexing.

julia
tos[lon = 1:10, lat = 1:10]
┌ 10×10×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 1.0:2.0:19.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:-70.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -129,9 +123,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 9.38 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Same but using named indexing:

julia
tos[lon = At(1.0:2:19), lat = At(-79.5:1:-70.5)]
╭──────────────────────────────────────────────╮
-│ 10×10×24 YAXArray{Union{Missing, Float32},3} │
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Same but using named indexing:

julia
tos[lon = At(1.0:2:19), lat = At(-79.5:1:-70.5)]
┌ 10×10×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
   ↓ lon  Sampled{Float64} [1.0, 3.0, …, 17.0, 19.0] ForwardOrdered Irregular Points,
   → lat  Sampled{Float64} [-79.5, -78.5, …, -71.5, -70.5] ForwardOrdered Irregular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -149,9 +142,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 9.38 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Read more about the At selector in the package DimensionalData. Get values within a tolerances:

julia
tos[lon = At(1:10; atol = 1)]
╭───────────────────────────────────────────────╮
-│ 10×170×24 YAXArray{Union{Missing, Float32},3} │
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Read more about the At selector in the package DimensionalData. Get values within a tolerances:

julia
tos[lon = At(1:10; atol = 1)]
┌ 10×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
   ↓ lon  Sampled{Float64} [1.0, 1.0, …, 9.0, 9.0] ForwardOrdered Irregular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -169,9 +161,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 159.38 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Closed and open intervals

Although a Between(a,b) function is available in DimensionalData, is recommended to use instead the a .. b notation:

julia
tos[lon = 90 .. 180]
╭───────────────────────────────────────────────╮
-│ 45×170×24 YAXArray{Union{Missing, Float32},3} │
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Closed and open intervals

Although a Between(a,b) function is available in DimensionalData, is recommended to use instead the a .. b notation:

julia
tos[lon = 90 .. 180]
┌ 45×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -189,9 +180,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘

This describes a closed interval in which all points were included. More selectors from DimensionalData are available, such as Touches, Near, Where and Contains.

julia
using IntervalSets
julia
julia> tos[lon = OpenInterval(90, 180)]
╭───────────────────────────────────────────────╮
-45×170×24 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

This describes a closed interval in which all points were included. More selectors from DimensionalData are available, such as Touches, Near, Where and Contains.

julia
using IntervalSets
julia
julia> tos[lon = OpenInterval(90, 180)]
45×170×24 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
 time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -209,9 +199,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon = ClosedInterval(90, 180)]
╭───────────────────────────────────────────────╮
-45×170×24 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon = ClosedInterval(90, 180)]
45×170×24 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
 time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -229,9 +218,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon =Interval{:open,:closed}(90,180)]
╭───────────────────────────────────────────────╮
-45×170×24 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon =Interval{:open,:closed}(90,180)]
45×170×24 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
 time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -249,9 +237,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon =Interval{:closed,:open}(90,180)]
╭───────────────────────────────────────────────╮
-45×170×24 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon =Interval{:closed,:open}(90,180)]
45×170×24 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
 time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -269,26 +256,21 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘

See tutorials for use cases.

Get a dimension

Get values, .e.g., axis tick labels, of a dimension that can be used for subseting:

julia
collect(tos.lat)
170-element Vector{Float64}:
- -79.5
- -78.5
- -77.5
- -76.5
- -75.5
- -74.5
- -73.5
- -72.5
- -71.5
- -70.5
-
-  81.5
-  82.5
-  83.5
-  84.5
-  85.5
-  86.5
-  87.5
-  88.5
-  89.5

These values are defined as lookups in the package DimensionalData:

julia
lookup(tos, :lon)
Sampled{Float64} ForwardOrdered Regular DimensionalData.Dimensions.Lookups.Points
+└──────────────────────────────────────────────────────────────────────────────┘

See tutorials for use cases.

Get a dimension

Get values, .e.g., axis tick labels, of a dimension that can be used for subseting:

julia
collect(tos.lat)
┌ 170-element DimArray{Float64, 1} ┐
+├──────────────────────────────────┴──────────────────────────── dims ┐
+  ↓ lat Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points
+└─────────────────────────────────────────────────────────────────────┘
+ -79.5  -79.5
+ -78.5  -78.5
+ -77.5  -77.5
+ -76.5  -76.5
+ -75.5  -75.5
+ -74.5  -74.5
+
+  85.5   85.5
+  86.5   86.5
+  87.5   87.5
+  88.5   88.5
+  89.5   89.5

These values are defined as lookups in the package DimensionalData:

julia
lookup(tos, :lon)
Sampled{Float64} ForwardOrdered Regular DimensionalData.Dimensions.Lookups.Points
 wrapping: 1.0:2.0:359.0

which is equivalent to:

julia
tos.lon.val
Sampled{Float64} ForwardOrdered Regular DimensionalData.Dimensions.Lookups.Points
 wrapping: 1.0:2.0:359.0
`,56)]))}const g=a(t,[["render",p]]);export{u as __pageData,g as default}; diff --git a/previews/PR479/assets/UserGuide_select.md.rxBehFDA.lean.js b/previews/PR479/assets/UserGuide_select.md.wOOEByPV.lean.js similarity index 89% rename from previews/PR479/assets/UserGuide_select.md.rxBehFDA.lean.js rename to previews/PR479/assets/UserGuide_select.md.wOOEByPV.lean.js index acae7330..f97e0189 100644 --- a/previews/PR479/assets/UserGuide_select.md.rxBehFDA.lean.js +++ b/previews/PR479/assets/UserGuide_select.md.wOOEByPV.lean.js @@ -1,4 +1,4 @@ -import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u=JSON.parse('{"title":"Select YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/select.md","filePath":"UserGuide/select.md","lastUpdated":null}'),t={name:"UserGuide/select.md"};function p(l,s,h,o,d,k){return e(),n("div",null,s[0]||(s[0]=[i(`

Select YAXArrays and Datasets

The dimensions or axes of an YAXArray are named making it easier to subset or query certain ranges of an array. Let's open an example Dataset used to select certain elements:

julia
using YAXArrays
+import{_ as a,c as i,a2 as n,o as e}from"./chunks/framework.DYY3HcdR.js";const u=JSON.parse('{"title":"Select YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/select.md","filePath":"UserGuide/select.md","lastUpdated":null}'),t={name:"UserGuide/select.md"};function p(l,s,h,o,d,k){return e(),i("div",null,s[0]||(s[0]=[n(`

Select YAXArrays and Datasets

The dimensions or axes of an YAXArray are named making it easier to subset or query certain ranges of an array. Let's open an example Dataset used to select certain elements:

julia
using YAXArrays
 using NetCDF
 using Downloads: download
 
@@ -12,9 +12,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
 Variables: 
 tos
 
-Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Select a YAXArray

Get the sea surface temperature of the Dataset:

julia
tos = ds.tos
╭────────────────────────────────────────────────╮
-│ 180×170×24 YAXArray{Union{Missing, Float32},3} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Select a YAXArray

Get the sea surface temperature of the Dataset:

julia
tos = ds.tos
┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -32,9 +31,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 2.8 MB
-└──────────────────────────────────────────────────────────────────────────────┘

which is the same as:

julia
tos = ds.cubes[:tos]
╭────────────────────────────────────────────────╮
-│ 180×170×24 YAXArray{Union{Missing, Float32},3} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

which is the same as:

julia
tos = ds.cubes[:tos]
┌ 180×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -52,9 +50,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 2.8 MB
-└──────────────────────────────────────────────────────────────────────────────┘

Select elements

Using positional integer indexing:

julia
tos[lon = 1, lat = 1]
╭────────────────────────────────────────────────╮
-│ 24-element YAXArray{Union{Missing, Float32},1} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Select elements

Using positional integer indexing:

julia
tos[lon = 1, lat = 1]
┌ 24-element YAXArray{Union{Missing, Float32}, 1} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any} with 10 entries:
@@ -70,9 +67,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 96.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

Same but using named indexing:

julia
tos[lon = At(1), lat = At(-79.5)]
╭────────────────────────────────────────────────╮
-│ 24-element YAXArray{Union{Missing, Float32},1} │
-├────────────────────────────────────────────────┴─────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Same but using named indexing:

julia
tos[lon = At(1), lat = At(-79.5)]
┌ 24-element YAXArray{Union{Missing, Float32}, 1} ┐
+├─────────────────────────────────────────────────┴────────────────────── dims ┐
   ↓ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any} with 10 entries:
@@ -90,9 +86,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   data size: 96.0 bytes
 └──────────────────────────────────────────────────────────────────────────────┘

Using special types:

julia
using CFTime
 time1 = DateTime360Day(2001,01,16)
-tos[time = At(time1)]
╭─────────────────────────────────────────────╮
-│ 180×170 YAXArray{Union{Missing, Float32},2} │
-├─────────────────────────────────────────────┴───────────────── dims ┐
+tos[time = At(time1)]
┌ 180×170 YAXArray{Union{Missing, Float32}, 2} ┐
+├──────────────────────────────────────────────┴──────────────── dims ┐
   ↓ lon Sampled{Float64} 1.0:2.0:359.0 ForwardOrdered Regular Points,
   → lat Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────────────────┴ metadata ┐
@@ -109,9 +104,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├───────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 119.53 KB
-└────────────────────────────────────────────────────────────────────────────────┘

Select ranges

Here we subset an interval of a dimension using positional integer indexing.

julia
tos[lon = 1:10, lat = 1:10]
╭──────────────────────────────────────────────╮
-│ 10×10×24 YAXArray{Union{Missing, Float32},3} │
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+└────────────────────────────────────────────────────────────────────────────────┘

Select ranges

Here we subset an interval of a dimension using positional integer indexing.

julia
tos[lon = 1:10, lat = 1:10]
┌ 10×10×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 1.0:2.0:19.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:-70.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -129,9 +123,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 9.38 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Same but using named indexing:

julia
tos[lon = At(1.0:2:19), lat = At(-79.5:1:-70.5)]
╭──────────────────────────────────────────────╮
-│ 10×10×24 YAXArray{Union{Missing, Float32},3} │
-├──────────────────────────────────────────────┴───────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Same but using named indexing:

julia
tos[lon = At(1.0:2:19), lat = At(-79.5:1:-70.5)]
┌ 10×10×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├───────────────────────────────────────────────┴──────────────────────── dims ┐
   ↓ lon  Sampled{Float64} [1.0, 3.0, …, 17.0, 19.0] ForwardOrdered Irregular Points,
   → lat  Sampled{Float64} [-79.5, -78.5, …, -71.5, -70.5] ForwardOrdered Irregular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -149,9 +142,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 9.38 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Read more about the At selector in the package DimensionalData. Get values within a tolerances:

julia
tos[lon = At(1:10; atol = 1)]
╭───────────────────────────────────────────────╮
-│ 10×170×24 YAXArray{Union{Missing, Float32},3} │
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Read more about the At selector in the package DimensionalData. Get values within a tolerances:

julia
tos[lon = At(1:10; atol = 1)]
┌ 10×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
   ↓ lon  Sampled{Float64} [1.0, 1.0, …, 9.0, 9.0] ForwardOrdered Irregular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -169,9 +161,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 159.38 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Closed and open intervals

Although a Between(a,b) function is available in DimensionalData, is recommended to use instead the a .. b notation:

julia
tos[lon = 90 .. 180]
╭───────────────────────────────────────────────╮
-│ 45×170×24 YAXArray{Union{Missing, Float32},3} │
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

Closed and open intervals

Although a Between(a,b) function is available in DimensionalData, is recommended to use instead the a .. b notation:

julia
tos[lon = 90 .. 180]
┌ 45×170×24 YAXArray{Union{Missing, Float32}, 3} ┐
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
   ↓ lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
   → lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
   ↗ time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -189,9 +180,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘

This describes a closed interval in which all points were included. More selectors from DimensionalData are available, such as Touches, Near, Where and Contains.

julia
using IntervalSets
julia
julia> tos[lon = OpenInterval(90, 180)]
╭───────────────────────────────────────────────╮
-45×170×24 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘

This describes a closed interval in which all points were included. More selectors from DimensionalData are available, such as Touches, Near, Where and Contains.

julia
using IntervalSets
julia
julia> tos[lon = OpenInterval(90, 180)]
45×170×24 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
 time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -209,9 +199,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon = ClosedInterval(90, 180)]
╭───────────────────────────────────────────────╮
-45×170×24 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon = ClosedInterval(90, 180)]
45×170×24 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
 time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -229,9 +218,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon =Interval{:open,:closed}(90,180)]
╭───────────────────────────────────────────────╮
-45×170×24 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon =Interval{:open,:closed}(90,180)]
45×170×24 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
 time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -249,9 +237,8 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon =Interval{:closed,:open}(90,180)]
╭───────────────────────────────────────────────╮
-45×170×24 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────────┴──────────────────────── dims ┐
+└──────────────────────────────────────────────────────────────────────────────┘
julia
julia> tos[lon =Interval{:closed,:open}(90,180)]
45×170×24 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────────┴─────────────────────── dims ┐
 lon  Sampled{Float64} 91.0:2.0:179.0 ForwardOrdered Regular Points,
 lat  Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points,
 time Sampled{CFTime.DateTime360Day} [CFTime.DateTime360Day(2001-01-16T00:00:00), …, CFTime.DateTime360Day(2002-12-16T00:00:00)] ForwardOrdered Irregular Points
@@ -269,26 +256,21 @@ import{_ as a,c as n,a2 as i,o as e}from"./chunks/framework.DYY3HcdR.js";const u
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────── loaded lazily ┤
   data size: 717.19 KB
-└──────────────────────────────────────────────────────────────────────────────┘

See tutorials for use cases.

Get a dimension

Get values, .e.g., axis tick labels, of a dimension that can be used for subseting:

julia
collect(tos.lat)
170-element Vector{Float64}:
- -79.5
- -78.5
- -77.5
- -76.5
- -75.5
- -74.5
- -73.5
- -72.5
- -71.5
- -70.5
-
-  81.5
-  82.5
-  83.5
-  84.5
-  85.5
-  86.5
-  87.5
-  88.5
-  89.5

These values are defined as lookups in the package DimensionalData:

julia
lookup(tos, :lon)
Sampled{Float64} ForwardOrdered Regular DimensionalData.Dimensions.Lookups.Points
+└──────────────────────────────────────────────────────────────────────────────┘

See tutorials for use cases.

Get a dimension

Get values, .e.g., axis tick labels, of a dimension that can be used for subseting:

julia
collect(tos.lat)
┌ 170-element DimArray{Float64, 1} ┐
+├──────────────────────────────────┴──────────────────────────── dims ┐
+  ↓ lat Sampled{Float64} -79.5:1.0:89.5 ForwardOrdered Regular Points
+└─────────────────────────────────────────────────────────────────────┘
+ -79.5  -79.5
+ -78.5  -78.5
+ -77.5  -77.5
+ -76.5  -76.5
+ -75.5  -75.5
+ -74.5  -74.5
+
+  85.5   85.5
+  86.5   86.5
+  87.5   87.5
+  88.5   88.5
+  89.5   89.5

These values are defined as lookups in the package DimensionalData:

julia
lookup(tos, :lon)
Sampled{Float64} ForwardOrdered Regular DimensionalData.Dimensions.Lookups.Points
 wrapping: 1.0:2.0:359.0

which is equivalent to:

julia
tos.lon.val
Sampled{Float64} ForwardOrdered Regular DimensionalData.Dimensions.Lookups.Points
 wrapping: 1.0:2.0:359.0
`,56)]))}const g=a(t,[["render",p]]);export{u as __pageData,g as default}; diff --git a/previews/PR479/assets/UserGuide_write.md.CslDCk8B.js b/previews/PR479/assets/UserGuide_write.md.BMZhOtZh.js similarity index 86% rename from previews/PR479/assets/UserGuide_write.md.CslDCk8B.js rename to previews/PR479/assets/UserGuide_write.md.BMZhOtZh.js index 178553f5..6f051ace 100644 --- a/previews/PR479/assets/UserGuide_write.md.CslDCk8B.js +++ b/previews/PR479/assets/UserGuide_write.md.BMZhOtZh.js @@ -1,4 +1,4 @@ -import{_ as n,c as l,a2 as t,j as i,a,G as p,B as h,o as k}from"./chunks/framework.DYY3HcdR.js";const v=JSON.parse('{"title":"Write YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/write.md","filePath":"UserGuide/write.md","lastUpdated":null}'),d={name:"UserGuide/write.md"},r={class:"jldocstring custom-block",open:""};function o(g,s,c,y,E,u){const e=h("Badge");return k(),l("div",null,[s[6]||(s[6]=t(`

Write YAXArrays and Datasets

Create an example Dataset:

julia
using YAXArrays
+import{_ as e,c as n,a2 as a,j as i,a as l,G as p,B as h,o as k}from"./chunks/framework.DYY3HcdR.js";const C=JSON.parse('{"title":"Write YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/write.md","filePath":"UserGuide/write.md","lastUpdated":null}'),d={name:"UserGuide/write.md"},r={class:"jldocstring custom-block",open:""};function o(g,s,E,c,y,u){const t=h("Badge");return k(),n("div",null,[s[3]||(s[3]=a(`

Write YAXArrays and Datasets

Create an example Dataset:

julia
using YAXArrays
 using NetCDF
 using Downloads: download
 
@@ -20,7 +20,7 @@ import{_ as n,c as l,a2 as t,j as i,a,G as p,B as h,o as k}from"./chunks/framewo
 savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

julia
savedataset(ds, path="ds.nc", driver=:netcdf)

netcdf compression

Save a dataset to NetCDF format with compression:

julia
n = 7 # compression level, number between 0 (no compression) and 9 (max compression)
 savedataset(ds, path="ds_c.nc", driver=:netcdf, compress=n)

Comparing it to the default saved file

julia
ds_info = stat("ds.nc")
 ds_c_info = stat("ds_c.nc")
-println("File size: ", "default: ", ds_info.size, " bytes", ", compress: ", ds_c_info.size, " bytes")
File size: default: 2963860 bytes, compress: 1159916 bytes

Overwrite a Dataset

If a path already exists, an error will be thrown. Set overwrite=true to delete the existing dataset

julia
savedataset(ds, path="ds.zarr", driver=:zarr, overwrite=true)

DANGER

Again, setting overwrite will delete all your previous saved data.

Look at the doc string for more information

`,29)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"YAXArrays.Datasets.savedataset",href:"#YAXArrays.Datasets.savedataset"},[i("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[1]||(s[1]=a()),p(e,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[2]||(s[2]=i("p",null,'savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)',-1)),s[3]||(s[3]=i("p",null,[a("Saves a Dataset into a file at "),i("code",null,"path"),a(" with the format given by "),i("code",null,"driver"),a(", i.e., driver=:netcdf or driver=:zarr.")],-1)),s[4]||(s[4]=i("div",{class:"warning custom-block"},[i("p",{class:"custom-block-title"},"Warning"),i("p",null,"overwrite = true, deletes ALL your data and it will create a new file.")],-1)),s[5]||(s[5]=i("p",null,[i("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L637-L646",target:"_blank",rel:"noreferrer"},"source")],-1))]),s[7]||(s[7]=t(`

Append to a Dataset

New variables can be added to an existing dataset using the append=true keyword.

julia
ds2 = Dataset(z = YAXArray(rand(10,20,5)))
+println("File size: ", "default: ", ds_info.size, " bytes", ", compress: ", ds_c_info.size, " bytes")
File size: default: 2963860 bytes, compress: 1159916 bytes

Overwrite a Dataset

If a path already exists, an error will be thrown. Set overwrite=true to delete the existing dataset

julia
savedataset(ds, path="ds.zarr", driver=:zarr, overwrite=true)

DANGER

Again, setting overwrite will delete all your previous saved data.

Look at the doc string for more information

`,29)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"YAXArrays.Datasets.savedataset",href:"#YAXArrays.Datasets.savedataset"},[i("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[1]||(s[1]=l()),p(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[2]||(s[2]=a('
julia
savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)

Saves a Dataset into a file at path with the format given by driver, i.e., driver=:netcdf or driver=:zarr.

Warning

overwrite = true, deletes ALL your data and it will create a new file.

source

',4))]),s[4]||(s[4]=a(`

Append to a Dataset

New variables can be added to an existing dataset using the append=true keyword.

julia
ds2 = Dataset(z = YAXArray(rand(10,20,5)))
 savedataset(ds2, path="ds.zarr", backend=:zarr, append=true)
julia
julia> open_dataset("ds.zarr", driver=:zarr)
YAXArray Dataset
 Shared Axes:
 None
@@ -39,9 +39,8 @@ import{_ as n,c as l,a2 as t,j as i,a,G as p,B as h,o as k}from"./chunks/framewo
   Variables: 
   z
 
-Properties: Dict{String, Any}("cmor_version" => 0.96, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "Conventions" => "CF-1.0", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Save Skeleton

Sometimes one merely wants to create a datacube "Skeleton" on disk and gradually fill it with data. Here we make use of FillArrays to create a YAXArray and write only the axis data and array metadata to disk, while no actual array data is copied:

julia
using YAXArrays, Zarr, FillArrays

create the Zeros array

julia
julia> a = YAXArray(Zeros(Union{Missing, Float32},  5, 4, 5))
╭───────────────────────────────────────────╮
-5×4×5 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────┴──────────────────────────── dims ┐
+Properties: Dict{String, Any}("cmor_version" => 0.96, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "Conventions" => "CF-1.0", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Save Skeleton

Sometimes one merely wants to create a datacube "Skeleton" on disk and gradually fill it with data. Here we make use of FillArrays to create a YAXArray and write only the axis data and array metadata to disk, while no actual array data is copied:

julia
using YAXArrays, Zarr, FillArrays

create the Zeros array

julia
julia> a = YAXArray(Zeros(Union{Missing, Float32},  5, 4, 5))
5×4×5 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────┴─────────────────────────── dims ┐
 Dim_1 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} Base.OneTo(4) ForwardOrdered Regular Points,
 Dim_3 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points
@@ -69,4 +68,4 @@ import{_ as n,c as l,a2 as t,j as i,a,G as p,B as h,o as k}from"./chunks/framewo
  0.414006  0.66729    0.125769  0.00277787
  0.891257  0.0887544  0.630526  0.782494
  0.948244  0.195437   0.102333  0.669125
- 0.102816  0.781572   0.527401  0.719692

indeed, those entries had been updated.

`,35))])}const C=n(d,[["render",o]]);export{v as __pageData,C as default}; + 0.102816 0.781572 0.527401 0.719692

indeed, those entries had been updated.

`,35))])}const v=e(d,[["render",o]]);export{C as __pageData,v as default}; diff --git a/previews/PR479/assets/UserGuide_write.md.CslDCk8B.lean.js b/previews/PR479/assets/UserGuide_write.md.BMZhOtZh.lean.js similarity index 86% rename from previews/PR479/assets/UserGuide_write.md.CslDCk8B.lean.js rename to previews/PR479/assets/UserGuide_write.md.BMZhOtZh.lean.js index 178553f5..6f051ace 100644 --- a/previews/PR479/assets/UserGuide_write.md.CslDCk8B.lean.js +++ b/previews/PR479/assets/UserGuide_write.md.BMZhOtZh.lean.js @@ -1,4 +1,4 @@ -import{_ as n,c as l,a2 as t,j as i,a,G as p,B as h,o as k}from"./chunks/framework.DYY3HcdR.js";const v=JSON.parse('{"title":"Write YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/write.md","filePath":"UserGuide/write.md","lastUpdated":null}'),d={name:"UserGuide/write.md"},r={class:"jldocstring custom-block",open:""};function o(g,s,c,y,E,u){const e=h("Badge");return k(),l("div",null,[s[6]||(s[6]=t(`

Write YAXArrays and Datasets

Create an example Dataset:

julia
using YAXArrays
+import{_ as e,c as n,a2 as a,j as i,a as l,G as p,B as h,o as k}from"./chunks/framework.DYY3HcdR.js";const C=JSON.parse('{"title":"Write YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/write.md","filePath":"UserGuide/write.md","lastUpdated":null}'),d={name:"UserGuide/write.md"},r={class:"jldocstring custom-block",open:""};function o(g,s,E,c,y,u){const t=h("Badge");return k(),n("div",null,[s[3]||(s[3]=a(`

Write YAXArrays and Datasets

Create an example Dataset:

julia
using YAXArrays
 using NetCDF
 using Downloads: download
 
@@ -20,7 +20,7 @@ import{_ as n,c as l,a2 as t,j as i,a,G as p,B as h,o as k}from"./chunks/framewo
 savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

julia
savedataset(ds, path="ds.nc", driver=:netcdf)

netcdf compression

Save a dataset to NetCDF format with compression:

julia
n = 7 # compression level, number between 0 (no compression) and 9 (max compression)
 savedataset(ds, path="ds_c.nc", driver=:netcdf, compress=n)

Comparing it to the default saved file

julia
ds_info = stat("ds.nc")
 ds_c_info = stat("ds_c.nc")
-println("File size: ", "default: ", ds_info.size, " bytes", ", compress: ", ds_c_info.size, " bytes")
File size: default: 2963860 bytes, compress: 1159916 bytes

Overwrite a Dataset

If a path already exists, an error will be thrown. Set overwrite=true to delete the existing dataset

julia
savedataset(ds, path="ds.zarr", driver=:zarr, overwrite=true)

DANGER

Again, setting overwrite will delete all your previous saved data.

Look at the doc string for more information

`,29)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"YAXArrays.Datasets.savedataset",href:"#YAXArrays.Datasets.savedataset"},[i("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[1]||(s[1]=a()),p(e,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[2]||(s[2]=i("p",null,'savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)',-1)),s[3]||(s[3]=i("p",null,[a("Saves a Dataset into a file at "),i("code",null,"path"),a(" with the format given by "),i("code",null,"driver"),a(", i.e., driver=:netcdf or driver=:zarr.")],-1)),s[4]||(s[4]=i("div",{class:"warning custom-block"},[i("p",{class:"custom-block-title"},"Warning"),i("p",null,"overwrite = true, deletes ALL your data and it will create a new file.")],-1)),s[5]||(s[5]=i("p",null,[i("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L637-L646",target:"_blank",rel:"noreferrer"},"source")],-1))]),s[7]||(s[7]=t(`

Append to a Dataset

New variables can be added to an existing dataset using the append=true keyword.

julia
ds2 = Dataset(z = YAXArray(rand(10,20,5)))
+println("File size: ", "default: ", ds_info.size, " bytes", ", compress: ", ds_c_info.size, " bytes")
File size: default: 2963860 bytes, compress: 1159916 bytes

Overwrite a Dataset

If a path already exists, an error will be thrown. Set overwrite=true to delete the existing dataset

julia
savedataset(ds, path="ds.zarr", driver=:zarr, overwrite=true)

DANGER

Again, setting overwrite will delete all your previous saved data.

Look at the doc string for more information

`,29)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"YAXArrays.Datasets.savedataset",href:"#YAXArrays.Datasets.savedataset"},[i("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[1]||(s[1]=l()),p(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[2]||(s[2]=a('
julia
savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)

Saves a Dataset into a file at path with the format given by driver, i.e., driver=:netcdf or driver=:zarr.

Warning

overwrite = true, deletes ALL your data and it will create a new file.

source

',4))]),s[4]||(s[4]=a(`

Append to a Dataset

New variables can be added to an existing dataset using the append=true keyword.

julia
ds2 = Dataset(z = YAXArray(rand(10,20,5)))
 savedataset(ds2, path="ds.zarr", backend=:zarr, append=true)
julia
julia> open_dataset("ds.zarr", driver=:zarr)
YAXArray Dataset
 Shared Axes:
 None
@@ -39,9 +39,8 @@ import{_ as n,c as l,a2 as t,j as i,a,G as p,B as h,o as k}from"./chunks/framewo
   Variables: 
   z
 
-Properties: Dict{String, Any}("cmor_version" => 0.96, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "Conventions" => "CF-1.0", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Save Skeleton

Sometimes one merely wants to create a datacube "Skeleton" on disk and gradually fill it with data. Here we make use of FillArrays to create a YAXArray and write only the axis data and array metadata to disk, while no actual array data is copied:

julia
using YAXArrays, Zarr, FillArrays

create the Zeros array

julia
julia> a = YAXArray(Zeros(Union{Missing, Float32},  5, 4, 5))
╭───────────────────────────────────────────╮
-5×4×5 YAXArray{Union{Missing, Float32},3}
-├───────────────────────────────────────────┴──────────────────────────── dims ┐
+Properties: Dict{String, Any}("cmor_version" => 0.96, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "Conventions" => "CF-1.0", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed  At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL  model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Save Skeleton

Sometimes one merely wants to create a datacube "Skeleton" on disk and gradually fill it with data. Here we make use of FillArrays to create a YAXArray and write only the axis data and array metadata to disk, while no actual array data is copied:

julia
using YAXArrays, Zarr, FillArrays

create the Zeros array

julia
julia> a = YAXArray(Zeros(Union{Missing, Float32},  5, 4, 5))
5×4×5 YAXArray{Union{Missing, Float32}, 3}
+├────────────────────────────────────────────┴─────────────────────────── dims ┐
 Dim_1 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} Base.OneTo(4) ForwardOrdered Regular Points,
 Dim_3 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points
@@ -69,4 +68,4 @@ import{_ as n,c as l,a2 as t,j as i,a,G as p,B as h,o as k}from"./chunks/framewo
  0.414006  0.66729    0.125769  0.00277787
  0.891257  0.0887544  0.630526  0.782494
  0.948244  0.195437   0.102333  0.669125
- 0.102816  0.781572   0.527401  0.719692

indeed, those entries had been updated.

`,35))])}const C=n(d,[["render",o]]);export{v as __pageData,C as default}; + 0.102816 0.781572 0.527401 0.719692

indeed, those entries had been updated.

`,35))])}const v=e(d,[["render",o]]);export{C as __pageData,v as default}; diff --git a/previews/PR479/assets/api.md.DRceqLPS.js b/previews/PR479/assets/api.md.DRceqLPS.js new file mode 100644 index 00000000..7a06b188 --- /dev/null +++ b/previews/PR479/assets/api.md.DRceqLPS.js @@ -0,0 +1,5 @@ +import{_ as n,c as o,j as e,a,G as i,a2 as l,B as r,o as p}from"./chunks/framework.DYY3HcdR.js";const cs=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),d={name:"api.md"},h={class:"jldocstring custom-block",open:""},u={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""},b={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""},y={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},A={class:"jldocstring custom-block",open:""},f={class:"jldocstring custom-block",open:""},m={class:"jldocstring custom-block",open:""},E={class:"jldocstring custom-block",open:""},j={class:"jldocstring custom-block",open:""},C={class:"jldocstring custom-block",open:""},D={class:"jldocstring custom-block",open:""},v={class:"jldocstring custom-block",open:""},T={class:"jldocstring custom-block",open:""},X={class:"jldocstring custom-block",open:""},Y={class:"jldocstring custom-block",open:""},F={class:"jldocstring custom-block",open:""},x={class:"jldocstring custom-block",open:""},w={class:"jldocstring custom-block",open:""},L={class:"jldocstring custom-block",open:""},M={class:"jldocstring custom-block",open:""},B={class:"jldocstring custom-block",open:""},O={class:"jldocstring custom-block",open:""},I={class:"jldocstring custom-block",open:""},J={class:"jldocstring custom-block",open:""},P={class:"jldocstring custom-block",open:""},q={class:"jldocstring custom-block",open:""},z={class:"jldocstring custom-block",open:""},N={class:"jldocstring custom-block",open:""},S={class:"jldocstring custom-block",open:""},R={class:"jldocstring custom-block",open:""},V={class:"jldocstring custom-block",open:""},G={class:"jldocstring custom-block",open:""},W={class:"jldocstring custom-block",open:""},U={class:"jldocstring custom-block",open:""},$={class:"jldocstring custom-block",open:""},H={class:"jldocstring custom-block",open:""},K={class:"jldocstring custom-block",open:""},Z={class:"jldocstring custom-block",open:""},Q={class:"jldocstring custom-block",open:""},_={class:"jldocstring custom-block",open:""},ss={class:"jldocstring custom-block",open:""},es={class:"jldocstring custom-block",open:""},as={class:"jldocstring custom-block",open:""},ts={class:"jldocstring custom-block",open:""},is={class:"jldocstring custom-block",open:""},ls={class:"jldocstring custom-block",open:""};function ns(os,s,rs,ps,ds,hs){const t=r("Badge");return p(),o("div",null,[s[156]||(s[156]=e("h1",{id:"API-Reference",tabindex:"-1"},[a("API Reference "),e("a",{class:"header-anchor",href:"#API-Reference","aria-label":'Permalink to "API Reference {#API-Reference}"'},"​")],-1)),s[157]||(s[157]=e("p",null,"This section describes all available functions of this package.",-1)),s[158]||(s[158]=e("h2",{id:"Public-API",tabindex:"-1"},[a("Public API "),e("a",{class:"header-anchor",href:"#Public-API","aria-label":'Permalink to "Public API {#Public-API}"'},"​")],-1)),e("details",h,[e("summary",null,[s[0]||(s[0]=e("a",{id:"YAXArrays.getAxis-Tuple{Any, Any}",href:"#YAXArrays.getAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getAxis")],-1)),s[1]||(s[1]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=l('
julia
getAxis(desc, c)

Given an Axis description and a cube, returns the corresponding axis of the cube. The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

',4))]),e("details",u,[e("summary",null,[s[3]||(s[3]=e("a",{id:"YAXArrays.Cubes",href:"#YAXArrays.Cubes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes")],-1)),s[4]||(s[4]=a()),i(t,{type:"info",class:"jlObjectType jlModule",text:"Module"})]),s[5]||(s[5]=e("p",null,"The functions provided by YAXArrays are supposed to work on different types of cubes. This module defines the interface for all Data types that",-1)),s[6]||(s[6]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/Cubes/Cubes.jl#L1-L4",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",c,[e("summary",null,[s[7]||(s[7]=e("a",{id:"YAXArrays.Cubes.YAXArray",href:"#YAXArrays.Cubes.YAXArray"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.YAXArray")],-1)),s[8]||(s[8]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[9]||(s[9]=l('
julia
YAXArray{T,N}

An array labelled with named axes that have values associated with them. It can wrap normal arrays or, more typically DiskArrays.

Fields

  • axes: Tuple of Dimensions containing the Axes of the Cube

  • data: length(axes)-dimensional array which holds the data, this can be a lazy DiskArray

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

  • cleaner: Cleaner objects to track which objects to tidy up when the YAXArray goes out of scope

source

',5))]),e("details",b,[e("summary",null,[s[10]||(s[10]=e("a",{id:"YAXArrays.Cubes.caxes",href:"#YAXArrays.Cubes.caxes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[11]||(s[11]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[12]||(s[12]=e("p",null,"Returns the axes of a Cube",-1)),s[13]||(s[13]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/Cubes/Cubes.jl#L27",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",k,[e("summary",null,[s[14]||(s[14]=e("a",{id:"YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[15]||(s[15]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[16]||(s[16]=l('
julia
caxes

Embeds Cube inside a new Cube

source

',3))]),e("details",y,[e("summary",null,[s[17]||(s[17]=e("a",{id:"YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.concatenatecubes")],-1)),s[18]||(s[18]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[19]||(s[19]=l('
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

Concatenates a vector of datacubes that have identical axes to a new single cube along the new axis cataxis

source

',3))]),e("details",g,[e("summary",null,[s[20]||(s[20]=e("a",{id:"YAXArrays.Cubes.readcubedata-Tuple{Any}",href:"#YAXArrays.Cubes.readcubedata-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.readcubedata")],-1)),s[21]||(s[21]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[22]||(s[22]=l('
julia
readcubedata(cube)

Given any array implementing the YAXArray interface it returns an in-memory YAXArray from it.

source

',3))]),e("details",A,[e("summary",null,[s[23]||(s[23]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[24]||(s[24]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[25]||(s[25]=l('
julia
setchunks(c::YAXArray,chunks)

Resets the chunks of a YAXArray and returns a new YAXArray. Note that this will not change the chunking of the underlying data itself, it will just make the data "look" like it had a different chunking. If you need a persistent on-disk representation of this chunking, use savecube on the resulting array. The chunks argument can take one of the following forms:

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

  • an AbstractDict or NamedTuple mapping one or more axis names to chunk sizes

source

',4))]),e("details",f,[e("summary",null,[s[26]||(s[26]=e("a",{id:"YAXArrays.Cubes.subsetcube",href:"#YAXArrays.Cubes.subsetcube"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.subsetcube")],-1)),s[27]||(s[27]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[28]||(s[28]=e("p",null,"This function calculates a subset of a cube's data",-1)),s[29]||(s[29]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/Cubes/Cubes.jl#L22-L24",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",m,[e("summary",null,[s[30]||(s[30]=e("a",{id:"YAXArrays.DAT.InDims",href:"#YAXArrays.DAT.InDims"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InDims")],-1)),s[31]||(s[31]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[32]||(s[32]=l('
julia
InDims(axisdesc...;...)

Creates a description of an Input Data Cube for cube operations. Takes a single or multiple axis descriptions as first arguments. Alternatively a MovingWindow(@ref) struct can be passed to include neighbour slices of one or more axes in the computation. Axes can be specified by their name (String), through an Axis type, or by passing a concrete axis.

Keyword arguments

  • artype how shall the array be represented in the inner function. Defaults to Array, alternatives are DataFrame or AsAxisArray

  • filter define some filter to skip the computation, e.g. when all values are missing. Defaults to AllMissing(), possible values are AnyMissing(), AnyOcean(), StdZero(), NValid(n) (for at least n non-missing elements). It is also possible to provide a custom one-argument function that takes the array and returns true if the compuation shall be skipped and false otherwise.

  • window_oob_value if one of the input dimensions is a MowingWindow, this value will be used to fill out-of-bounds areas

source

',5))]),e("details",E,[e("summary",null,[s[33]||(s[33]=e("a",{id:"YAXArrays.DAT.MovingWindow",href:"#YAXArrays.DAT.MovingWindow"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.MovingWindow")],-1)),s[34]||(s[34]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[35]||(s[35]=l('
julia
MovingWindow(desc, pre, after)

Constructs a MovingWindow object to be passed to an InDims constructor to define that the axis in desc shall participate in the inner function (i.e. shall be looped over), but inside the inner function pre values before and after values after the center value will be passed as well.

For example passing MovingWindow("Time", 2, 0) will loop over the time axis and always pass the current time step plus the 2 previous steps. So in the inner function the array will have an additional dimension of size 3.

source

',4))]),e("details",j,[e("summary",null,[s[36]||(s[36]=e("a",{id:"YAXArrays.DAT.OutDims-Tuple",href:"#YAXArrays.DAT.OutDims-Tuple"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutDims")],-1)),s[37]||(s[37]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[38]||(s[38]=l('
julia
OutDims(axisdesc;...)

Creates a description of an Output Data Cube for cube operations. Takes a single or a Vector/Tuple of axes as first argument. Axes can be specified by their name (String), through an Axis type, or by passing a concrete axis.

  • axisdesc: List of input axis names

  • backend : specifies the dataset backend to write data to, must be either :auto or a key in YAXArrayBase.backendlist

  • update : specifies wether the function operates inplace or if an output is returned

  • artype : specifies the Array type inside the inner function that is mapped over

  • chunksize: A Dict specifying the chunksizes for the output dimensions of the cube, or :input to copy chunksizes from input cube axes or :max to not chunk the inner dimensions

  • outtype: force the output type to a specific type, defaults to Any which means that the element type of the first input cube is used

source

',4))]),e("details",C,[e("summary",null,[s[39]||(s[39]=e("a",{id:"YAXArrays.DAT.CubeTable-Tuple{}",href:"#YAXArrays.DAT.CubeTable-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.CubeTable")],-1)),s[40]||(s[40]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[41]||(s[41]=l('
julia
CubeTable()

Function to turn a DataCube object into an iterable table. Takes a list of as arguments, specified as a name=cube expression. For example CubeTable(data=cube1,country=cube2) would generate a Table with the entries data and country, where data contains the values of cube1 and country the values of cube2. The cubes are matched and broadcasted along their axes like in mapCube.

source

',3))]),e("details",D,[e("summary",null,[s[42]||(s[42]=e("a",{id:"YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}",href:"#YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cubefittable")],-1)),s[43]||(s[43]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[44]||(s[44]=l('
julia
cubefittable(tab,o,fitsym;post=getpostfunction(o),kwargs...)

Executes fittable on the CubeTable tab with the (Weighted-)OnlineStat o, looping through the values specified by fitsym. Finally, writes the results from the TableAggregator to an output data cube.

source

',3))]),e("details",v,[e("summary",null,[s[45]||(s[45]=e("a",{id:"YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}",href:"#YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.fittable")],-1)),s[46]||(s[46]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[47]||(s[47]=l('
julia
fittable(tab,o,fitsym;by=(),weight=nothing)

Loops through an iterable table tab and thereby fitting an OnlineStat o with the values specified through fitsym. Optionally one can specify a field (or tuple) to group by. Any groupby specifier can either be a symbol denoting the entry to group by or an anynymous function calculating the group from a table row.

For example the following would caluclate a weighted mean over a cube weighted by grid cell area and grouped by country and month:

julia
fittable(iter,WeightedMean,:tair,weight=(i->abs(cosd(i.lat))),by=(i->month(i.time),:country))

source

',5))]),e("details",T,[e("summary",null,[s[48]||(s[48]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[49]||(s[49]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[50]||(s[50]=l('
julia
mapCube(fun, cube, addargs...;kwargs...)

Map a given function fun over slices of all cubes of the dataset ds. Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.

For Datasets, only one output cube can be specified. In contrast to the mapCube function for cubes, additional arguments for the inner function should be set as keyword arguments.

For the specific keyword arguments see the docstring of the mapCube function for cubes.

source

',5))]),e("details",X,[e("summary",null,[s[51]||(s[51]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[52]||(s[52]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[53]||(s[53]=l('
julia
mapCube(fun, cube, addargs...;kwargs...)

Map a given function fun over slices of the data cube cube. The additional arguments addargs will be forwarded to the inner function fun. Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.

Keyword arguments

  • max_cache=YAXDefaults.max_cache Float64 maximum size of blocks that are read into memory in bits e.g. max_cache=5.0e8. Or String. e.g. max_cache="10MB" ormax_cache=1GB``` defaults to approx 10Mb.

  • indims::InDims List of input cube descriptors of type InDims for each input data cube.

  • outdims::OutDims List of output cube descriptors of type OutDims for each output cube.

  • inplace does the function write to an output array inplace or return a single value> defaults to true

  • ispar boolean to determine if parallelisation should be applied, defaults to true if workers are available.

  • showprog boolean indicating if a ProgressMeter shall be shown

  • include_loopvars boolean to indicate if the varoables looped over should be added as function arguments

  • nthreads number of threads for the computation, defaults to Threads.nthreads for every worker.

  • loopchunksize determines the chunk sizes of variables which are looped over, a dict

  • kwargs additional keyword arguments are passed to the inner function

The first argument is always the function to be applied, the second is the input cube or a tuple of input cubes if needed.

source

',6))]),e("details",Y,[e("summary",null,[s[54]||(s[54]=e("a",{id:"YAXArrays.Datasets.Dataset",href:"#YAXArrays.Datasets.Dataset"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[55]||(s[55]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[56]||(s[56]=l('
julia
Dataset object which stores an `OrderedDict` of YAXArrays with Symbol keys.\na dictionary of CubeAxes and a Dictionary of general properties.\nA dictionary can hold cubes with differing axes. But it will share the common axes between the subcubes.

source

',2))]),e("details",F,[e("summary",null,[s[57]||(s[57]=e("a",{id:"YAXArrays.Datasets.Dataset-Tuple{}",href:"#YAXArrays.Datasets.Dataset-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[58]||(s[58]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[59]||(s[59]=l('
julia
Dataset(; properties = Dict{String,Any}, cubes...)

Construct a YAXArray Dataset with global attributes properties a and a list of named YAXArrays cubes...

source

',3))]),e("details",x,[e("summary",null,[s[60]||(s[60]=e("a",{id:"YAXArrays.Datasets.Cube-Tuple{Dataset}",href:"#YAXArrays.Datasets.Cube-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Cube")],-1)),s[61]||(s[61]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[62]||(s[62]=l('
julia
Cube(ds::Dataset; joinname="Variables")

Construct a single YAXArray from the dataset ds by concatenating the cubes in the datset on the joinname dimension.

source

',3))]),e("details",w,[e("summary",null,[s[63]||(s[63]=e("a",{id:"YAXArrays.Datasets.open_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.open_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.open_dataset")],-1)),s[64]||(s[64]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[65]||(s[65]=l('
julia
open_dataset(g; driver=:all)

Open the dataset at g with the given driver. The default driver will search for available drivers and tries to detect the useable driver from the filename extension.

source

',3))]),e("details",L,[e("summary",null,[s[66]||(s[66]=e("a",{id:'YAXArrays.Datasets.open_mfdataset-Tuple{DimensionalData.DimVector{var"#s34", D, R, A} where {var"#s34"<:AbstractString, D<:Tuple, R<:Tuple, A<:AbstractVector{var"#s34"}}}',href:'#YAXArrays.Datasets.open_mfdataset-Tuple{DimensionalData.DimVector{var"#s34", D, R, A} where {var"#s34"<:AbstractString, D<:Tuple, R<:Tuple, A<:AbstractVector{var"#s34"}}}'},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.open_mfdataset")],-1)),s[67]||(s[67]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[68]||(s[68]=l(`
julia
open_mfdataset(files::DD.DimVector{<:AbstractString}; kwargs...)

Opens and concatenates a list of dataset paths along the dimension specified in files. This method can be used when the generic glob-based version of open_mfdataset fails or is too slow. For example, to concatenate a list of annual NetCDF files along the time dimension, one can use:

julia
files = ["1990.nc","1991.nc","1992.nc"]
+open_mfdataset(DD.DimArray(files, YAX.time()))

alternatively, if the dimension to concatenate along does not exist yet, the dimension provided in the input arg is used:

julia
files = ["a.nc", "b.nc", "c.nc"]
+open_mfdataset(DD.DimArray(files, DD.Dim{:NewDim}(["a","b","c"])))

source

`,6))]),e("details",M,[e("summary",null,[s[69]||(s[69]=e("a",{id:"YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}",href:"#YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savecube")],-1)),s[70]||(s[70]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[71]||(s[71]=l('
julia
savecube(cube,name::String)

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

  • datasetaxis="Variables" special treatment of a categorical axis that gets written into separate zarr arrays

  • max_cache: The number of bits that are used as cache for the data handling.

  • backend: The backend, that is used to save the data. Falls back to searching the backend according to the extension of the path.

  • driver: The same setting as backend.

  • overwrite::Bool=false overwrite cube if it already exists

source

',6))]),e("details",B,[e("summary",null,[s[72]||(s[72]=e("a",{id:"YAXArrays.Datasets.savedataset-Tuple{Dataset}",href:"#YAXArrays.Datasets.savedataset-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[73]||(s[73]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[74]||(s[74]=l('
julia
savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)

Saves a Dataset into a file at path with the format given by driver, i.e., driver=:netcdf or driver=:zarr.

Warning

overwrite = true, deletes ALL your data and it will create a new file.

source

',4))]),e("details",O,[e("summary",null,[s[75]||(s[75]=e("a",{id:"YAXArrays.Datasets.to_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.to_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.to_dataset")],-1)),s[76]||(s[76]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[77]||(s[77]=l('
julia
to_dataset(c;datasetaxis = "Variables", layername = "layer")

Convert a Data Cube into a Dataset. It is possible to treat one of the Cube's axes as a "DatasetAxis" i.e. the cube will be split into different parts that become variables in the Dataset. If no such axis is specified or found, there will only be a single variable in the dataset with the name layername

source

',3))]),s[159]||(s[159]=e("h2",{id:"Internal-API",tabindex:"-1"},[a("Internal API "),e("a",{class:"header-anchor",href:"#Internal-API","aria-label":'Permalink to "Internal API {#Internal-API}"'},"​")],-1)),e("details",I,[e("summary",null,[s[78]||(s[78]=e("a",{id:"YAXArrays.YAXDefaults",href:"#YAXArrays.YAXDefaults"},[e("span",{class:"jlbinding"},"YAXArrays.YAXDefaults")],-1)),s[79]||(s[79]=a()),i(t,{type:"info",class:"jlObjectType jlConstant",text:"Constant"})]),s[80]||(s[80]=l('

Default configuration for YAXArrays, has the following fields:

  • workdir[]::String = "./" The default location for temporary cubes.

  • recal[]::Bool = false set to true if you want @loadOrGenerate to always recalculate the results.

  • chunksize[]::Any = :input Set the default output chunksize.

  • max_cache[]::Float64 = 1e8 The maximum cache used by mapCube.

  • cubedir[]::"" the default location for Cube() without an argument.

  • subsetextensions::Array{Any} = [] List of registered functions, that convert subsetting input into dimension boundaries.

source

',3))]),e("details",J,[e("summary",null,[s[81]||(s[81]=e("a",{id:"YAXArrays.findAxis-Tuple{Any, Any}",href:"#YAXArrays.findAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.findAxis")],-1)),s[82]||(s[82]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[83]||(s[83]=l('
julia
findAxis(desc, c)

Internal function

Extended Help

Given an Axis description and a cube return the index of the Axis.

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

',7))]),e("details",P,[e("summary",null,[s[84]||(s[84]=e("a",{id:"YAXArrays.getOutAxis-NTuple{5, Any}",href:"#YAXArrays.getOutAxis-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getOutAxis")],-1)),s[85]||(s[85]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[86]||(s[86]=l('
julia
getOutAxis

source

',2))]),e("details",q,[e("summary",null,[s[87]||(s[87]=e("a",{id:"YAXArrays.get_descriptor-Tuple{String}",href:"#YAXArrays.get_descriptor-Tuple{String}"},[e("span",{class:"jlbinding"},"YAXArrays.get_descriptor")],-1)),s[88]||(s[88]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[89]||(s[89]=l('
julia
get_descriptor(a)

Get the descriptor of an Axis. This is used to dispatch on the descriptor.

source

',3))]),e("details",z,[e("summary",null,[s[90]||(s[90]=e("a",{id:"YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}",href:"#YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.match_axis")],-1)),s[91]||(s[91]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[92]||(s[92]=l(`
julia
match_axis

Internal function

Extended Help

Match the Axis based on the AxisDescriptor.
+This is used to find different axes and to make certain axis description the same.
+For example to disregard differences of captialisation.

source

`,5))]),e("details",N,[e("summary",null,[s[93]||(s[93]=e("a",{id:"YAXArrays.Cubes.CleanMe",href:"#YAXArrays.Cubes.CleanMe"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.CleanMe")],-1)),s[94]||(s[94]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[95]||(s[95]=l('
julia
mutable struct CleanMe

Struct which describes data paths and their persistency. Non-persistend paths/files are removed at finalize step

source

',3))]),e("details",S,[e("summary",null,[s[96]||(s[96]=e("a",{id:"YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}",href:"#YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.clean")],-1)),s[97]||(s[97]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[98]||(s[98]=l('
julia
clean(c::CleanMe)

finalizer function for CleanMe struct. The main process removes all directories/files which are not persistent.

source

',3))]),e("details",R,[e("summary",null,[s[99]||(s[99]=e("a",{id:"YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}",href:"#YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.copydata")],-1)),s[100]||(s[100]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[101]||(s[101]=l('
julia
copydata(outar, inar, copybuf)

Internal function which copies the data from the input inar into the output outar at the copybuf positions.

source

',3))]),e("details",V,[e("summary",null,[s[102]||(s[102]=e("a",{id:"YAXArrays.Cubes.optifunc-NTuple{7, Any}",href:"#YAXArrays.Cubes.optifunc-NTuple{7, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.optifunc")],-1)),s[103]||(s[103]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[104]||(s[104]=l('
julia
optifunc(s, maxbuf, incs, outcs, insize, outsize, writefac)

Internal

This function is going to be minimized to detect the best possible chunk setting for the rechunking of the data.

source

',4))]),e("details",G,[e("summary",null,[s[105]||(s[105]=e("a",{id:"YAXArrays.DAT.DATConfig",href:"#YAXArrays.DAT.DATConfig"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.DATConfig")],-1)),s[106]||(s[106]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[107]||(s[107]=l('

Configuration object of a DAT process. This holds all necessary information to perform the calculations. It contains the following fields:

  • incubes::NTuple{NIN, YAXArrays.DAT.InputCube} where NIN: The input data cubes

  • outcubes::NTuple{NOUT, YAXArrays.DAT.OutputCube} where NOUT: The output data cubes

  • allInAxes::Vector: List of all axes of the input cubes

  • LoopAxes::Vector: List of axes that are looped through

  • ispar::Bool: Flag whether the computation is parallelized

  • loopcachesize::Vector{Int64}:

  • allow_irregular_chunks::Bool:

  • max_cache::Any: Maximal size of the in memory cache

  • fu::Any: Inner function which is computed

  • inplace::Bool: Flag whether the computation happens in place

  • include_loopvars::Bool:

  • ntr::Any:

  • do_gc::Bool: Flag if GC should be called explicitly. Probably necessary for many runs in Julia 1.9

  • addargs::Any: Additional arguments for the inner function

  • kwargs::Any: Additional keyword arguments for the inner function

source

',3))]),e("details",W,[e("summary",null,[s[108]||(s[108]=e("a",{id:"YAXArrays.DAT.InputCube",href:"#YAXArrays.DAT.InputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InputCube")],-1)),s[109]||(s[109]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[110]||(s[110]=l('

Internal representation of an input cube for DAT operations

  • cube: The input data

  • desc: The input description given by the user/registration

  • axesSmall: List of axes that were actually selected through the description

  • icolon

  • colonperm

  • loopinds: Indices of loop axes that this cube does not contain, i.e. broadcasts

  • cachesize: Number of elements to keep in cache along each axis

  • window

  • iwindow

  • windowloopinds

  • iall

source

',3))]),e("details",U,[e("summary",null,[s[111]||(s[111]=e("a",{id:"YAXArrays.DAT.OutputCube",href:"#YAXArrays.DAT.OutputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutputCube")],-1)),s[112]||(s[112]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[113]||(s[113]=l('

Internal representation of an output cube for DAT operations

Fields

  • cube: The actual outcube cube, once it is generated

  • cube_unpermuted: The unpermuted output cube

  • desc: The description of the output axes as given by users or registration

  • axesSmall: The list of output axes determined through the description

  • allAxes: List of all the axes of the cube

  • loopinds: Index of the loop axes that are broadcasted for this output cube

  • innerchunks

  • outtype: Elementtype of the outputcube

source

',4))]),e("details",$,[e("summary",null,[s[114]||(s[114]=e("a",{id:"YAXArrays.DAT.YAXColumn",href:"#YAXArrays.DAT.YAXColumn"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.YAXColumn")],-1)),s[115]||(s[115]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[116]||(s[116]=l('
julia
YAXColumn

A struct representing a single column of a YAXArray partitioned Table # Fields

  • inarBC

  • inds

source

',4))]),e("details",H,[e("summary",null,[s[117]||(s[117]=e("a",{id:"YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}",href:"#YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cmpcachmisses")],-1)),s[118]||(s[118]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[119]||(s[119]=e("p",null,"Function that compares two cache miss specifiers by their importance",-1)),s[120]||(s[120]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/DAT/DAT.jl#L958-L960",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",K,[e("summary",null,[s[121]||(s[121]=e("a",{id:"YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}",href:"#YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getFrontPerm")],-1)),s[122]||(s[122]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[123]||(s[123]=e("p",null,"Calculate an axis permutation that brings the wanted dimensions to the front",-1)),s[124]||(s[124]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/DAT/DAT.jl#L1203",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",Z,[e("summary",null,[s[125]||(s[125]=e("a",{id:"YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}",href:"#YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getLoopCacheSize")],-1)),s[126]||(s[126]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[127]||(s[127]=e("p",null,"Calculate optimal Cache size to DAT operation",-1)),s[128]||(s[128]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/DAT/DAT.jl#L1057",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",Q,[e("summary",null,[s[129]||(s[129]=e("a",{id:"YAXArrays.DAT.getOuttype-Tuple{Int64, Any}",href:"#YAXArrays.DAT.getOuttype-Tuple{Int64, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getOuttype")],-1)),s[130]||(s[130]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[131]||(s[131]=l('
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source

',4))]),e("details",_,[e("summary",null,[s[132]||(s[132]=e("a",{id:"YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}",href:"#YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getloopchunks")],-1)),s[133]||(s[133]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[134]||(s[134]=l('
julia
getloopchunks(dc::DATConfig)

Internal function

Returns the chunks that can be looped over toghether for all dimensions.\nThis computation of the size of the chunks is handled by [`DiskArrays.approx_chunksize`](@ref)

source

',4))]),e("details",ss,[e("summary",null,[s[135]||(s[135]=e("a",{id:"YAXArrays.DAT.permuteloopaxes-Tuple{Any}",href:"#YAXArrays.DAT.permuteloopaxes-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.permuteloopaxes")],-1)),s[136]||(s[136]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[137]||(s[137]=l('
julia
permuteloopaxes(dc)

Internal function

Permute the dimensions of the cube, so that the axes that are looped through are in the first positions. This is necessary for a faster looping through the data.

source

',4))]),e("details",es,[e("summary",null,[s[138]||(s[138]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[139]||(s[139]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[140]||(s[140]=l('
julia
setchunks(c::Dataset,chunks)

Resets the chunks of all or a subset YAXArrays in the dataset and returns a new Dataset. Note that this will not change the chunking of the underlying data itself, it will just make the data "look" like it had a different chunking. If you need a persistent on-disk representation of this chunking, use savedataset on the resulting array. The chunks argument can take one of the following forms:

  • a NamedTuple or AbstractDict mapping from variable name to a description of the desired variable chunks

  • a NamedTuple or AbstractDict mapping from dimension name to a description of the desired variable chunks

  • a description of the desired variable chunks applied to all members of the Dataset

where a description of the desired variable chunks can take one of the following forms:

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

  • an AbstractDict or NamedTuple mapping one or more axis names to chunk sizes

source

',6))]),e("details",as,[e("summary",null,[s[141]||(s[141]=e("a",{id:"YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}",href:"#YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.collectfromhandle")],-1)),s[142]||(s[142]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[143]||(s[143]=e("p",null,"Extracts a YAXArray from a dataset handle that was just created from a arrayinfo",-1)),s[144]||(s[144]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/DatasetAPI/Datasets.jl#L543-L545",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",ts,[e("summary",null,[s[145]||(s[145]=e("a",{id:"YAXArrays.Datasets.createdataset-Tuple{Any, Any}",href:"#YAXArrays.Datasets.createdataset-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.createdataset")],-1)),s[146]||(s[146]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[147]||(s[147]=l('
julia
function createdataset(DS::Type,axlist; kwargs...)

Creates a new dataset with axes specified in axlist. Each axis must be a subtype of CubeAxis. A new empty Zarr array will be created and can serve as a sink for mapCube operations.

Keyword arguments

  • path="" location where the new cube is stored

  • T=Union{Float32,Missing} data type of the target cube

  • chunksize = ntuple(i->length(axlist[i]),length(axlist)) chunk sizes of the array

  • chunkoffset = ntuple(i->0,length(axlist)) offsets of the chunks

  • persist::Bool=true shall the disk data be garbage-collected when the cube goes out of scope?

  • overwrite::Bool=false overwrite cube if it already exists

  • properties=Dict{String,Any}() additional cube properties

  • globalproperties=Dict{String,Any} global attributes to be added to the dataset

  • fillvalue= T>:Missing ? defaultfillval(Base.nonmissingtype(T)) : nothing fill value

  • datasetaxis="Variables" special treatment of a categorical axis that gets written into separate zarr arrays

  • layername="layer" Fallback name of the variable stored in the dataset if no datasetaxis is found

source

',5))]),e("details",is,[e("summary",null,[s[148]||(s[148]=e("a",{id:"YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}",href:"#YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.getarrayinfo")],-1)),s[149]||(s[149]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[150]||(s[150]=e("p",null,"Extract necessary information to create a YAXArrayBase dataset from a name and YAXArray pair",-1)),s[151]||(s[151]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/DatasetAPI/Datasets.jl#L512-L514",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",ls,[e("summary",null,[s[152]||(s[152]=e("a",{id:"YAXArrays.Datasets.testrange-Tuple{Any}",href:"#YAXArrays.Datasets.testrange-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.testrange")],-1)),s[153]||(s[153]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[154]||(s[154]=e("p",null,"Test if data in x can be approximated by a step range",-1)),s[155]||(s[155]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/DatasetAPI/Datasets.jl#L312",target:"_blank",rel:"noreferrer"},"source")],-1))])])}const bs=n(d,[["render",ns]]);export{cs as __pageData,bs as default}; diff --git a/previews/PR479/assets/api.md.DRceqLPS.lean.js b/previews/PR479/assets/api.md.DRceqLPS.lean.js new file mode 100644 index 00000000..7a06b188 --- /dev/null +++ b/previews/PR479/assets/api.md.DRceqLPS.lean.js @@ -0,0 +1,5 @@ +import{_ as n,c as o,j as e,a,G as i,a2 as l,B as r,o as p}from"./chunks/framework.DYY3HcdR.js";const cs=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),d={name:"api.md"},h={class:"jldocstring custom-block",open:""},u={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""},b={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""},y={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},A={class:"jldocstring custom-block",open:""},f={class:"jldocstring custom-block",open:""},m={class:"jldocstring custom-block",open:""},E={class:"jldocstring custom-block",open:""},j={class:"jldocstring custom-block",open:""},C={class:"jldocstring custom-block",open:""},D={class:"jldocstring custom-block",open:""},v={class:"jldocstring custom-block",open:""},T={class:"jldocstring custom-block",open:""},X={class:"jldocstring custom-block",open:""},Y={class:"jldocstring custom-block",open:""},F={class:"jldocstring custom-block",open:""},x={class:"jldocstring custom-block",open:""},w={class:"jldocstring custom-block",open:""},L={class:"jldocstring custom-block",open:""},M={class:"jldocstring custom-block",open:""},B={class:"jldocstring custom-block",open:""},O={class:"jldocstring custom-block",open:""},I={class:"jldocstring custom-block",open:""},J={class:"jldocstring custom-block",open:""},P={class:"jldocstring custom-block",open:""},q={class:"jldocstring custom-block",open:""},z={class:"jldocstring custom-block",open:""},N={class:"jldocstring custom-block",open:""},S={class:"jldocstring custom-block",open:""},R={class:"jldocstring custom-block",open:""},V={class:"jldocstring custom-block",open:""},G={class:"jldocstring custom-block",open:""},W={class:"jldocstring custom-block",open:""},U={class:"jldocstring custom-block",open:""},$={class:"jldocstring custom-block",open:""},H={class:"jldocstring custom-block",open:""},K={class:"jldocstring custom-block",open:""},Z={class:"jldocstring custom-block",open:""},Q={class:"jldocstring custom-block",open:""},_={class:"jldocstring custom-block",open:""},ss={class:"jldocstring custom-block",open:""},es={class:"jldocstring custom-block",open:""},as={class:"jldocstring custom-block",open:""},ts={class:"jldocstring custom-block",open:""},is={class:"jldocstring custom-block",open:""},ls={class:"jldocstring custom-block",open:""};function ns(os,s,rs,ps,ds,hs){const t=r("Badge");return p(),o("div",null,[s[156]||(s[156]=e("h1",{id:"API-Reference",tabindex:"-1"},[a("API Reference "),e("a",{class:"header-anchor",href:"#API-Reference","aria-label":'Permalink to "API Reference {#API-Reference}"'},"​")],-1)),s[157]||(s[157]=e("p",null,"This section describes all available functions of this package.",-1)),s[158]||(s[158]=e("h2",{id:"Public-API",tabindex:"-1"},[a("Public API "),e("a",{class:"header-anchor",href:"#Public-API","aria-label":'Permalink to "Public API {#Public-API}"'},"​")],-1)),e("details",h,[e("summary",null,[s[0]||(s[0]=e("a",{id:"YAXArrays.getAxis-Tuple{Any, Any}",href:"#YAXArrays.getAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getAxis")],-1)),s[1]||(s[1]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=l('
julia
getAxis(desc, c)

Given an Axis description and a cube, returns the corresponding axis of the cube. The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

',4))]),e("details",u,[e("summary",null,[s[3]||(s[3]=e("a",{id:"YAXArrays.Cubes",href:"#YAXArrays.Cubes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes")],-1)),s[4]||(s[4]=a()),i(t,{type:"info",class:"jlObjectType jlModule",text:"Module"})]),s[5]||(s[5]=e("p",null,"The functions provided by YAXArrays are supposed to work on different types of cubes. This module defines the interface for all Data types that",-1)),s[6]||(s[6]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/Cubes/Cubes.jl#L1-L4",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",c,[e("summary",null,[s[7]||(s[7]=e("a",{id:"YAXArrays.Cubes.YAXArray",href:"#YAXArrays.Cubes.YAXArray"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.YAXArray")],-1)),s[8]||(s[8]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[9]||(s[9]=l('
julia
YAXArray{T,N}

An array labelled with named axes that have values associated with them. It can wrap normal arrays or, more typically DiskArrays.

Fields

  • axes: Tuple of Dimensions containing the Axes of the Cube

  • data: length(axes)-dimensional array which holds the data, this can be a lazy DiskArray

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

  • cleaner: Cleaner objects to track which objects to tidy up when the YAXArray goes out of scope

source

',5))]),e("details",b,[e("summary",null,[s[10]||(s[10]=e("a",{id:"YAXArrays.Cubes.caxes",href:"#YAXArrays.Cubes.caxes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[11]||(s[11]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[12]||(s[12]=e("p",null,"Returns the axes of a Cube",-1)),s[13]||(s[13]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/Cubes/Cubes.jl#L27",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",k,[e("summary",null,[s[14]||(s[14]=e("a",{id:"YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[15]||(s[15]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[16]||(s[16]=l('
julia
caxes

Embeds Cube inside a new Cube

source

',3))]),e("details",y,[e("summary",null,[s[17]||(s[17]=e("a",{id:"YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.concatenatecubes")],-1)),s[18]||(s[18]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[19]||(s[19]=l('
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

Concatenates a vector of datacubes that have identical axes to a new single cube along the new axis cataxis

source

',3))]),e("details",g,[e("summary",null,[s[20]||(s[20]=e("a",{id:"YAXArrays.Cubes.readcubedata-Tuple{Any}",href:"#YAXArrays.Cubes.readcubedata-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.readcubedata")],-1)),s[21]||(s[21]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[22]||(s[22]=l('
julia
readcubedata(cube)

Given any array implementing the YAXArray interface it returns an in-memory YAXArray from it.

source

',3))]),e("details",A,[e("summary",null,[s[23]||(s[23]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[24]||(s[24]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[25]||(s[25]=l('
julia
setchunks(c::YAXArray,chunks)

Resets the chunks of a YAXArray and returns a new YAXArray. Note that this will not change the chunking of the underlying data itself, it will just make the data "look" like it had a different chunking. If you need a persistent on-disk representation of this chunking, use savecube on the resulting array. The chunks argument can take one of the following forms:

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

  • an AbstractDict or NamedTuple mapping one or more axis names to chunk sizes

source

',4))]),e("details",f,[e("summary",null,[s[26]||(s[26]=e("a",{id:"YAXArrays.Cubes.subsetcube",href:"#YAXArrays.Cubes.subsetcube"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.subsetcube")],-1)),s[27]||(s[27]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[28]||(s[28]=e("p",null,"This function calculates a subset of a cube's data",-1)),s[29]||(s[29]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/Cubes/Cubes.jl#L22-L24",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",m,[e("summary",null,[s[30]||(s[30]=e("a",{id:"YAXArrays.DAT.InDims",href:"#YAXArrays.DAT.InDims"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InDims")],-1)),s[31]||(s[31]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[32]||(s[32]=l('
julia
InDims(axisdesc...;...)

Creates a description of an Input Data Cube for cube operations. Takes a single or multiple axis descriptions as first arguments. Alternatively a MovingWindow(@ref) struct can be passed to include neighbour slices of one or more axes in the computation. Axes can be specified by their name (String), through an Axis type, or by passing a concrete axis.

Keyword arguments

  • artype how shall the array be represented in the inner function. Defaults to Array, alternatives are DataFrame or AsAxisArray

  • filter define some filter to skip the computation, e.g. when all values are missing. Defaults to AllMissing(), possible values are AnyMissing(), AnyOcean(), StdZero(), NValid(n) (for at least n non-missing elements). It is also possible to provide a custom one-argument function that takes the array and returns true if the compuation shall be skipped and false otherwise.

  • window_oob_value if one of the input dimensions is a MowingWindow, this value will be used to fill out-of-bounds areas

source

',5))]),e("details",E,[e("summary",null,[s[33]||(s[33]=e("a",{id:"YAXArrays.DAT.MovingWindow",href:"#YAXArrays.DAT.MovingWindow"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.MovingWindow")],-1)),s[34]||(s[34]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[35]||(s[35]=l('
julia
MovingWindow(desc, pre, after)

Constructs a MovingWindow object to be passed to an InDims constructor to define that the axis in desc shall participate in the inner function (i.e. shall be looped over), but inside the inner function pre values before and after values after the center value will be passed as well.

For example passing MovingWindow("Time", 2, 0) will loop over the time axis and always pass the current time step plus the 2 previous steps. So in the inner function the array will have an additional dimension of size 3.

source

',4))]),e("details",j,[e("summary",null,[s[36]||(s[36]=e("a",{id:"YAXArrays.DAT.OutDims-Tuple",href:"#YAXArrays.DAT.OutDims-Tuple"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutDims")],-1)),s[37]||(s[37]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[38]||(s[38]=l('
julia
OutDims(axisdesc;...)

Creates a description of an Output Data Cube for cube operations. Takes a single or a Vector/Tuple of axes as first argument. Axes can be specified by their name (String), through an Axis type, or by passing a concrete axis.

  • axisdesc: List of input axis names

  • backend : specifies the dataset backend to write data to, must be either :auto or a key in YAXArrayBase.backendlist

  • update : specifies wether the function operates inplace or if an output is returned

  • artype : specifies the Array type inside the inner function that is mapped over

  • chunksize: A Dict specifying the chunksizes for the output dimensions of the cube, or :input to copy chunksizes from input cube axes or :max to not chunk the inner dimensions

  • outtype: force the output type to a specific type, defaults to Any which means that the element type of the first input cube is used

source

',4))]),e("details",C,[e("summary",null,[s[39]||(s[39]=e("a",{id:"YAXArrays.DAT.CubeTable-Tuple{}",href:"#YAXArrays.DAT.CubeTable-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.CubeTable")],-1)),s[40]||(s[40]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[41]||(s[41]=l('
julia
CubeTable()

Function to turn a DataCube object into an iterable table. Takes a list of as arguments, specified as a name=cube expression. For example CubeTable(data=cube1,country=cube2) would generate a Table with the entries data and country, where data contains the values of cube1 and country the values of cube2. The cubes are matched and broadcasted along their axes like in mapCube.

source

',3))]),e("details",D,[e("summary",null,[s[42]||(s[42]=e("a",{id:"YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}",href:"#YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cubefittable")],-1)),s[43]||(s[43]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[44]||(s[44]=l('
julia
cubefittable(tab,o,fitsym;post=getpostfunction(o),kwargs...)

Executes fittable on the CubeTable tab with the (Weighted-)OnlineStat o, looping through the values specified by fitsym. Finally, writes the results from the TableAggregator to an output data cube.

source

',3))]),e("details",v,[e("summary",null,[s[45]||(s[45]=e("a",{id:"YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}",href:"#YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.fittable")],-1)),s[46]||(s[46]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[47]||(s[47]=l('
julia
fittable(tab,o,fitsym;by=(),weight=nothing)

Loops through an iterable table tab and thereby fitting an OnlineStat o with the values specified through fitsym. Optionally one can specify a field (or tuple) to group by. Any groupby specifier can either be a symbol denoting the entry to group by or an anynymous function calculating the group from a table row.

For example the following would caluclate a weighted mean over a cube weighted by grid cell area and grouped by country and month:

julia
fittable(iter,WeightedMean,:tair,weight=(i->abs(cosd(i.lat))),by=(i->month(i.time),:country))

source

',5))]),e("details",T,[e("summary",null,[s[48]||(s[48]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[49]||(s[49]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[50]||(s[50]=l('
julia
mapCube(fun, cube, addargs...;kwargs...)

Map a given function fun over slices of all cubes of the dataset ds. Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.

For Datasets, only one output cube can be specified. In contrast to the mapCube function for cubes, additional arguments for the inner function should be set as keyword arguments.

For the specific keyword arguments see the docstring of the mapCube function for cubes.

source

',5))]),e("details",X,[e("summary",null,[s[51]||(s[51]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[52]||(s[52]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[53]||(s[53]=l('
julia
mapCube(fun, cube, addargs...;kwargs...)

Map a given function fun over slices of the data cube cube. The additional arguments addargs will be forwarded to the inner function fun. Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.

Keyword arguments

  • max_cache=YAXDefaults.max_cache Float64 maximum size of blocks that are read into memory in bits e.g. max_cache=5.0e8. Or String. e.g. max_cache="10MB" ormax_cache=1GB``` defaults to approx 10Mb.

  • indims::InDims List of input cube descriptors of type InDims for each input data cube.

  • outdims::OutDims List of output cube descriptors of type OutDims for each output cube.

  • inplace does the function write to an output array inplace or return a single value> defaults to true

  • ispar boolean to determine if parallelisation should be applied, defaults to true if workers are available.

  • showprog boolean indicating if a ProgressMeter shall be shown

  • include_loopvars boolean to indicate if the varoables looped over should be added as function arguments

  • nthreads number of threads for the computation, defaults to Threads.nthreads for every worker.

  • loopchunksize determines the chunk sizes of variables which are looped over, a dict

  • kwargs additional keyword arguments are passed to the inner function

The first argument is always the function to be applied, the second is the input cube or a tuple of input cubes if needed.

source

',6))]),e("details",Y,[e("summary",null,[s[54]||(s[54]=e("a",{id:"YAXArrays.Datasets.Dataset",href:"#YAXArrays.Datasets.Dataset"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[55]||(s[55]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[56]||(s[56]=l('
julia
Dataset object which stores an `OrderedDict` of YAXArrays with Symbol keys.\na dictionary of CubeAxes and a Dictionary of general properties.\nA dictionary can hold cubes with differing axes. But it will share the common axes between the subcubes.

source

',2))]),e("details",F,[e("summary",null,[s[57]||(s[57]=e("a",{id:"YAXArrays.Datasets.Dataset-Tuple{}",href:"#YAXArrays.Datasets.Dataset-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[58]||(s[58]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[59]||(s[59]=l('
julia
Dataset(; properties = Dict{String,Any}, cubes...)

Construct a YAXArray Dataset with global attributes properties a and a list of named YAXArrays cubes...

source

',3))]),e("details",x,[e("summary",null,[s[60]||(s[60]=e("a",{id:"YAXArrays.Datasets.Cube-Tuple{Dataset}",href:"#YAXArrays.Datasets.Cube-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Cube")],-1)),s[61]||(s[61]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[62]||(s[62]=l('
julia
Cube(ds::Dataset; joinname="Variables")

Construct a single YAXArray from the dataset ds by concatenating the cubes in the datset on the joinname dimension.

source

',3))]),e("details",w,[e("summary",null,[s[63]||(s[63]=e("a",{id:"YAXArrays.Datasets.open_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.open_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.open_dataset")],-1)),s[64]||(s[64]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[65]||(s[65]=l('
julia
open_dataset(g; driver=:all)

Open the dataset at g with the given driver. The default driver will search for available drivers and tries to detect the useable driver from the filename extension.

source

',3))]),e("details",L,[e("summary",null,[s[66]||(s[66]=e("a",{id:'YAXArrays.Datasets.open_mfdataset-Tuple{DimensionalData.DimVector{var"#s34", D, R, A} where {var"#s34"<:AbstractString, D<:Tuple, R<:Tuple, A<:AbstractVector{var"#s34"}}}',href:'#YAXArrays.Datasets.open_mfdataset-Tuple{DimensionalData.DimVector{var"#s34", D, R, A} where {var"#s34"<:AbstractString, D<:Tuple, R<:Tuple, A<:AbstractVector{var"#s34"}}}'},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.open_mfdataset")],-1)),s[67]||(s[67]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[68]||(s[68]=l(`
julia
open_mfdataset(files::DD.DimVector{<:AbstractString}; kwargs...)

Opens and concatenates a list of dataset paths along the dimension specified in files. This method can be used when the generic glob-based version of open_mfdataset fails or is too slow. For example, to concatenate a list of annual NetCDF files along the time dimension, one can use:

julia
files = ["1990.nc","1991.nc","1992.nc"]
+open_mfdataset(DD.DimArray(files, YAX.time()))

alternatively, if the dimension to concatenate along does not exist yet, the dimension provided in the input arg is used:

julia
files = ["a.nc", "b.nc", "c.nc"]
+open_mfdataset(DD.DimArray(files, DD.Dim{:NewDim}(["a","b","c"])))

source

`,6))]),e("details",M,[e("summary",null,[s[69]||(s[69]=e("a",{id:"YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}",href:"#YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savecube")],-1)),s[70]||(s[70]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[71]||(s[71]=l('
julia
savecube(cube,name::String)

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

  • datasetaxis="Variables" special treatment of a categorical axis that gets written into separate zarr arrays

  • max_cache: The number of bits that are used as cache for the data handling.

  • backend: The backend, that is used to save the data. Falls back to searching the backend according to the extension of the path.

  • driver: The same setting as backend.

  • overwrite::Bool=false overwrite cube if it already exists

source

',6))]),e("details",B,[e("summary",null,[s[72]||(s[72]=e("a",{id:"YAXArrays.Datasets.savedataset-Tuple{Dataset}",href:"#YAXArrays.Datasets.savedataset-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[73]||(s[73]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[74]||(s[74]=l('
julia
savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)

Saves a Dataset into a file at path with the format given by driver, i.e., driver=:netcdf or driver=:zarr.

Warning

overwrite = true, deletes ALL your data and it will create a new file.

source

',4))]),e("details",O,[e("summary",null,[s[75]||(s[75]=e("a",{id:"YAXArrays.Datasets.to_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.to_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.to_dataset")],-1)),s[76]||(s[76]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[77]||(s[77]=l('
julia
to_dataset(c;datasetaxis = "Variables", layername = "layer")

Convert a Data Cube into a Dataset. It is possible to treat one of the Cube's axes as a "DatasetAxis" i.e. the cube will be split into different parts that become variables in the Dataset. If no such axis is specified or found, there will only be a single variable in the dataset with the name layername

source

',3))]),s[159]||(s[159]=e("h2",{id:"Internal-API",tabindex:"-1"},[a("Internal API "),e("a",{class:"header-anchor",href:"#Internal-API","aria-label":'Permalink to "Internal API {#Internal-API}"'},"​")],-1)),e("details",I,[e("summary",null,[s[78]||(s[78]=e("a",{id:"YAXArrays.YAXDefaults",href:"#YAXArrays.YAXDefaults"},[e("span",{class:"jlbinding"},"YAXArrays.YAXDefaults")],-1)),s[79]||(s[79]=a()),i(t,{type:"info",class:"jlObjectType jlConstant",text:"Constant"})]),s[80]||(s[80]=l('

Default configuration for YAXArrays, has the following fields:

  • workdir[]::String = "./" The default location for temporary cubes.

  • recal[]::Bool = false set to true if you want @loadOrGenerate to always recalculate the results.

  • chunksize[]::Any = :input Set the default output chunksize.

  • max_cache[]::Float64 = 1e8 The maximum cache used by mapCube.

  • cubedir[]::"" the default location for Cube() without an argument.

  • subsetextensions::Array{Any} = [] List of registered functions, that convert subsetting input into dimension boundaries.

source

',3))]),e("details",J,[e("summary",null,[s[81]||(s[81]=e("a",{id:"YAXArrays.findAxis-Tuple{Any, Any}",href:"#YAXArrays.findAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.findAxis")],-1)),s[82]||(s[82]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[83]||(s[83]=l('
julia
findAxis(desc, c)

Internal function

Extended Help

Given an Axis description and a cube return the index of the Axis.

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

',7))]),e("details",P,[e("summary",null,[s[84]||(s[84]=e("a",{id:"YAXArrays.getOutAxis-NTuple{5, Any}",href:"#YAXArrays.getOutAxis-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getOutAxis")],-1)),s[85]||(s[85]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[86]||(s[86]=l('
julia
getOutAxis

source

',2))]),e("details",q,[e("summary",null,[s[87]||(s[87]=e("a",{id:"YAXArrays.get_descriptor-Tuple{String}",href:"#YAXArrays.get_descriptor-Tuple{String}"},[e("span",{class:"jlbinding"},"YAXArrays.get_descriptor")],-1)),s[88]||(s[88]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[89]||(s[89]=l('
julia
get_descriptor(a)

Get the descriptor of an Axis. This is used to dispatch on the descriptor.

source

',3))]),e("details",z,[e("summary",null,[s[90]||(s[90]=e("a",{id:"YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}",href:"#YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.match_axis")],-1)),s[91]||(s[91]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[92]||(s[92]=l(`
julia
match_axis

Internal function

Extended Help

Match the Axis based on the AxisDescriptor.
+This is used to find different axes and to make certain axis description the same.
+For example to disregard differences of captialisation.

source

`,5))]),e("details",N,[e("summary",null,[s[93]||(s[93]=e("a",{id:"YAXArrays.Cubes.CleanMe",href:"#YAXArrays.Cubes.CleanMe"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.CleanMe")],-1)),s[94]||(s[94]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[95]||(s[95]=l('
julia
mutable struct CleanMe

Struct which describes data paths and their persistency. Non-persistend paths/files are removed at finalize step

source

',3))]),e("details",S,[e("summary",null,[s[96]||(s[96]=e("a",{id:"YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}",href:"#YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.clean")],-1)),s[97]||(s[97]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[98]||(s[98]=l('
julia
clean(c::CleanMe)

finalizer function for CleanMe struct. The main process removes all directories/files which are not persistent.

source

',3))]),e("details",R,[e("summary",null,[s[99]||(s[99]=e("a",{id:"YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}",href:"#YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.copydata")],-1)),s[100]||(s[100]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[101]||(s[101]=l('
julia
copydata(outar, inar, copybuf)

Internal function which copies the data from the input inar into the output outar at the copybuf positions.

source

',3))]),e("details",V,[e("summary",null,[s[102]||(s[102]=e("a",{id:"YAXArrays.Cubes.optifunc-NTuple{7, Any}",href:"#YAXArrays.Cubes.optifunc-NTuple{7, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.optifunc")],-1)),s[103]||(s[103]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[104]||(s[104]=l('
julia
optifunc(s, maxbuf, incs, outcs, insize, outsize, writefac)

Internal

This function is going to be minimized to detect the best possible chunk setting for the rechunking of the data.

source

',4))]),e("details",G,[e("summary",null,[s[105]||(s[105]=e("a",{id:"YAXArrays.DAT.DATConfig",href:"#YAXArrays.DAT.DATConfig"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.DATConfig")],-1)),s[106]||(s[106]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[107]||(s[107]=l('

Configuration object of a DAT process. This holds all necessary information to perform the calculations. It contains the following fields:

  • incubes::NTuple{NIN, YAXArrays.DAT.InputCube} where NIN: The input data cubes

  • outcubes::NTuple{NOUT, YAXArrays.DAT.OutputCube} where NOUT: The output data cubes

  • allInAxes::Vector: List of all axes of the input cubes

  • LoopAxes::Vector: List of axes that are looped through

  • ispar::Bool: Flag whether the computation is parallelized

  • loopcachesize::Vector{Int64}:

  • allow_irregular_chunks::Bool:

  • max_cache::Any: Maximal size of the in memory cache

  • fu::Any: Inner function which is computed

  • inplace::Bool: Flag whether the computation happens in place

  • include_loopvars::Bool:

  • ntr::Any:

  • do_gc::Bool: Flag if GC should be called explicitly. Probably necessary for many runs in Julia 1.9

  • addargs::Any: Additional arguments for the inner function

  • kwargs::Any: Additional keyword arguments for the inner function

source

',3))]),e("details",W,[e("summary",null,[s[108]||(s[108]=e("a",{id:"YAXArrays.DAT.InputCube",href:"#YAXArrays.DAT.InputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InputCube")],-1)),s[109]||(s[109]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[110]||(s[110]=l('

Internal representation of an input cube for DAT operations

  • cube: The input data

  • desc: The input description given by the user/registration

  • axesSmall: List of axes that were actually selected through the description

  • icolon

  • colonperm

  • loopinds: Indices of loop axes that this cube does not contain, i.e. broadcasts

  • cachesize: Number of elements to keep in cache along each axis

  • window

  • iwindow

  • windowloopinds

  • iall

source

',3))]),e("details",U,[e("summary",null,[s[111]||(s[111]=e("a",{id:"YAXArrays.DAT.OutputCube",href:"#YAXArrays.DAT.OutputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutputCube")],-1)),s[112]||(s[112]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[113]||(s[113]=l('

Internal representation of an output cube for DAT operations

Fields

  • cube: The actual outcube cube, once it is generated

  • cube_unpermuted: The unpermuted output cube

  • desc: The description of the output axes as given by users or registration

  • axesSmall: The list of output axes determined through the description

  • allAxes: List of all the axes of the cube

  • loopinds: Index of the loop axes that are broadcasted for this output cube

  • innerchunks

  • outtype: Elementtype of the outputcube

source

',4))]),e("details",$,[e("summary",null,[s[114]||(s[114]=e("a",{id:"YAXArrays.DAT.YAXColumn",href:"#YAXArrays.DAT.YAXColumn"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.YAXColumn")],-1)),s[115]||(s[115]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[116]||(s[116]=l('
julia
YAXColumn

A struct representing a single column of a YAXArray partitioned Table # Fields

  • inarBC

  • inds

source

',4))]),e("details",H,[e("summary",null,[s[117]||(s[117]=e("a",{id:"YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}",href:"#YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cmpcachmisses")],-1)),s[118]||(s[118]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[119]||(s[119]=e("p",null,"Function that compares two cache miss specifiers by their importance",-1)),s[120]||(s[120]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/DAT/DAT.jl#L958-L960",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",K,[e("summary",null,[s[121]||(s[121]=e("a",{id:"YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}",href:"#YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getFrontPerm")],-1)),s[122]||(s[122]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[123]||(s[123]=e("p",null,"Calculate an axis permutation that brings the wanted dimensions to the front",-1)),s[124]||(s[124]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/DAT/DAT.jl#L1203",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",Z,[e("summary",null,[s[125]||(s[125]=e("a",{id:"YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}",href:"#YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getLoopCacheSize")],-1)),s[126]||(s[126]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[127]||(s[127]=e("p",null,"Calculate optimal Cache size to DAT operation",-1)),s[128]||(s[128]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/DAT/DAT.jl#L1057",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",Q,[e("summary",null,[s[129]||(s[129]=e("a",{id:"YAXArrays.DAT.getOuttype-Tuple{Int64, Any}",href:"#YAXArrays.DAT.getOuttype-Tuple{Int64, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getOuttype")],-1)),s[130]||(s[130]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[131]||(s[131]=l('
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source

',4))]),e("details",_,[e("summary",null,[s[132]||(s[132]=e("a",{id:"YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}",href:"#YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getloopchunks")],-1)),s[133]||(s[133]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[134]||(s[134]=l('
julia
getloopchunks(dc::DATConfig)

Internal function

Returns the chunks that can be looped over toghether for all dimensions.\nThis computation of the size of the chunks is handled by [`DiskArrays.approx_chunksize`](@ref)

source

',4))]),e("details",ss,[e("summary",null,[s[135]||(s[135]=e("a",{id:"YAXArrays.DAT.permuteloopaxes-Tuple{Any}",href:"#YAXArrays.DAT.permuteloopaxes-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.permuteloopaxes")],-1)),s[136]||(s[136]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[137]||(s[137]=l('
julia
permuteloopaxes(dc)

Internal function

Permute the dimensions of the cube, so that the axes that are looped through are in the first positions. This is necessary for a faster looping through the data.

source

',4))]),e("details",es,[e("summary",null,[s[138]||(s[138]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[139]||(s[139]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[140]||(s[140]=l('
julia
setchunks(c::Dataset,chunks)

Resets the chunks of all or a subset YAXArrays in the dataset and returns a new Dataset. Note that this will not change the chunking of the underlying data itself, it will just make the data "look" like it had a different chunking. If you need a persistent on-disk representation of this chunking, use savedataset on the resulting array. The chunks argument can take one of the following forms:

  • a NamedTuple or AbstractDict mapping from variable name to a description of the desired variable chunks

  • a NamedTuple or AbstractDict mapping from dimension name to a description of the desired variable chunks

  • a description of the desired variable chunks applied to all members of the Dataset

where a description of the desired variable chunks can take one of the following forms:

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

  • an AbstractDict or NamedTuple mapping one or more axis names to chunk sizes

source

',6))]),e("details",as,[e("summary",null,[s[141]||(s[141]=e("a",{id:"YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}",href:"#YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.collectfromhandle")],-1)),s[142]||(s[142]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[143]||(s[143]=e("p",null,"Extracts a YAXArray from a dataset handle that was just created from a arrayinfo",-1)),s[144]||(s[144]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/DatasetAPI/Datasets.jl#L543-L545",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",ts,[e("summary",null,[s[145]||(s[145]=e("a",{id:"YAXArrays.Datasets.createdataset-Tuple{Any, Any}",href:"#YAXArrays.Datasets.createdataset-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.createdataset")],-1)),s[146]||(s[146]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[147]||(s[147]=l('
julia
function createdataset(DS::Type,axlist; kwargs...)

Creates a new dataset with axes specified in axlist. Each axis must be a subtype of CubeAxis. A new empty Zarr array will be created and can serve as a sink for mapCube operations.

Keyword arguments

  • path="" location where the new cube is stored

  • T=Union{Float32,Missing} data type of the target cube

  • chunksize = ntuple(i->length(axlist[i]),length(axlist)) chunk sizes of the array

  • chunkoffset = ntuple(i->0,length(axlist)) offsets of the chunks

  • persist::Bool=true shall the disk data be garbage-collected when the cube goes out of scope?

  • overwrite::Bool=false overwrite cube if it already exists

  • properties=Dict{String,Any}() additional cube properties

  • globalproperties=Dict{String,Any} global attributes to be added to the dataset

  • fillvalue= T>:Missing ? defaultfillval(Base.nonmissingtype(T)) : nothing fill value

  • datasetaxis="Variables" special treatment of a categorical axis that gets written into separate zarr arrays

  • layername="layer" Fallback name of the variable stored in the dataset if no datasetaxis is found

source

',5))]),e("details",is,[e("summary",null,[s[148]||(s[148]=e("a",{id:"YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}",href:"#YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.getarrayinfo")],-1)),s[149]||(s[149]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[150]||(s[150]=e("p",null,"Extract necessary information to create a YAXArrayBase dataset from a name and YAXArray pair",-1)),s[151]||(s[151]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/DatasetAPI/Datasets.jl#L512-L514",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",ls,[e("summary",null,[s[152]||(s[152]=e("a",{id:"YAXArrays.Datasets.testrange-Tuple{Any}",href:"#YAXArrays.Datasets.testrange-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.testrange")],-1)),s[153]||(s[153]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[154]||(s[154]=e("p",null,"Test if data in x can be approximated by a step range",-1)),s[155]||(s[155]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/453ee3395962cfd60967d1803469f03ddbc9fb0f/src/DatasetAPI/Datasets.jl#L312",target:"_blank",rel:"noreferrer"},"source")],-1))])])}const bs=n(d,[["render",ns]]);export{cs as __pageData,bs as default}; diff --git a/previews/PR479/assets/api.md.LtcwYcT6.js b/previews/PR479/assets/api.md.LtcwYcT6.js deleted file mode 100644 index 2fffeaa4..00000000 --- a/previews/PR479/assets/api.md.LtcwYcT6.js +++ /dev/null @@ -1,12 +0,0 @@ -import{_ as n,c as o,j as e,a,G as i,a2 as l,B as r,o as p}from"./chunks/framework.DYY3HcdR.js";const cs=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),d={name:"api.md"},u={class:"jldocstring custom-block",open:""},h={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""},b={class:"jldocstring custom-block",open:""},y={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},A={class:"jldocstring custom-block",open:""},f={class:"jldocstring custom-block",open:""},m={class:"jldocstring custom-block",open:""},j={class:"jldocstring custom-block",open:""},E={class:"jldocstring custom-block",open:""},C={class:"jldocstring custom-block",open:""},D={class:"jldocstring custom-block",open:""},T={class:"jldocstring custom-block",open:""},v={class:"jldocstring custom-block",open:""},X={class:"jldocstring custom-block",open:""},Y={class:"jldocstring custom-block",open:""},x={class:"jldocstring custom-block",open:""},F={class:"jldocstring custom-block",open:""},w={class:"jldocstring custom-block",open:""},L={class:"jldocstring custom-block",open:""},M={class:"jldocstring custom-block",open:""},B={class:"jldocstring custom-block",open:""},O={class:"jldocstring custom-block",open:""},I={class:"jldocstring custom-block",open:""},J={class:"jldocstring custom-block",open:""},P={class:"jldocstring custom-block",open:""},q={class:"jldocstring custom-block",open:""},z={class:"jldocstring custom-block",open:""},N={class:"jldocstring custom-block",open:""},S={class:"jldocstring custom-block",open:""},R={class:"jldocstring custom-block",open:""},V={class:"jldocstring custom-block",open:""},G={class:"jldocstring custom-block",open:""},W={class:"jldocstring custom-block",open:""},U={class:"jldocstring custom-block",open:""},$={class:"jldocstring custom-block",open:""},H={class:"jldocstring custom-block",open:""},K={class:"jldocstring custom-block",open:""},Z={class:"jldocstring custom-block",open:""},Q={class:"jldocstring custom-block",open:""},_={class:"jldocstring custom-block",open:""},ss={class:"jldocstring custom-block",open:""},es={class:"jldocstring custom-block",open:""},as={class:"jldocstring custom-block",open:""},ts={class:"jldocstring custom-block",open:""},is={class:"jldocstring custom-block",open:""},ls={class:"jldocstring custom-block",open:""};function ns(os,s,rs,ps,ds,us){const t=r("Badge");return p(),o("div",null,[s[165]||(s[165]=e("h1",{id:"API-Reference",tabindex:"-1"},[a("API Reference "),e("a",{class:"header-anchor",href:"#API-Reference","aria-label":'Permalink to "API Reference {#API-Reference}"'},"​")],-1)),s[166]||(s[166]=e("p",null,"This section describes all available functions of this package.",-1)),s[167]||(s[167]=e("h2",{id:"Public-API",tabindex:"-1"},[a("Public API "),e("a",{class:"header-anchor",href:"#Public-API","aria-label":'Permalink to "Public API {#Public-API}"'},"​")],-1)),e("details",u,[e("summary",null,[s[0]||(s[0]=e("a",{id:"YAXArrays.getAxis-Tuple{Any, Any}",href:"#YAXArrays.getAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getAxis")],-1)),s[1]||(s[1]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=l('
julia
getAxis(desc, c)

Given an Axis description and a cube, returns the corresponding axis of the cube. The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

',4))]),e("details",h,[e("summary",null,[s[3]||(s[3]=e("a",{id:"YAXArrays.Cubes",href:"#YAXArrays.Cubes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes")],-1)),s[4]||(s[4]=a()),i(t,{type:"info",class:"jlObjectType jlModule",text:"Module"})]),s[5]||(s[5]=e("p",null,"The functions provided by YAXArrays are supposed to work on different types of cubes. This module defines the interface for all Data types that",-1)),s[6]||(s[6]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/Cubes/Cubes.jl#L1-L4",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",c,[e("summary",null,[s[7]||(s[7]=e("a",{id:"YAXArrays.Cubes.YAXArray",href:"#YAXArrays.Cubes.YAXArray"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.YAXArray")],-1)),s[8]||(s[8]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[9]||(s[9]=l('
julia
YAXArray{T,N}

An array labelled with named axes that have values associated with them. It can wrap normal arrays or, more typically DiskArrays.

Fields

  • axes: Tuple of Dimensions containing the Axes of the Cube

  • data: length(axes)-dimensional array which holds the data, this can be a lazy DiskArray

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

  • cleaner: Cleaner objects to track which objects to tidy up when the YAXArray goes out of scope

source

',5))]),e("details",b,[e("summary",null,[s[10]||(s[10]=e("a",{id:"YAXArrays.Cubes.caxes",href:"#YAXArrays.Cubes.caxes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[11]||(s[11]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[12]||(s[12]=e("p",null,"Returns the axes of a Cube",-1)),s[13]||(s[13]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/Cubes/Cubes.jl#L27",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",y,[e("summary",null,[s[14]||(s[14]=e("a",{id:"YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[15]||(s[15]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[16]||(s[16]=l('
julia
caxes

Embeds Cube inside a new Cube

source

',3))]),e("details",k,[e("summary",null,[s[17]||(s[17]=e("a",{id:"YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.concatenatecubes")],-1)),s[18]||(s[18]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[19]||(s[19]=l('
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

Concatenates a vector of datacubes that have identical axes to a new single cube along the new axis cataxis

source

',3))]),e("details",g,[e("summary",null,[s[20]||(s[20]=e("a",{id:"YAXArrays.Cubes.readcubedata-Tuple{Any}",href:"#YAXArrays.Cubes.readcubedata-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.readcubedata")],-1)),s[21]||(s[21]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[22]||(s[22]=l('
julia
readcubedata(cube)

Given any array implementing the YAXArray interface it returns an in-memory YAXArray from it.

source

',3))]),e("details",A,[e("summary",null,[s[23]||(s[23]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[24]||(s[24]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[25]||(s[25]=l('
julia
setchunks(c::YAXArray,chunks)

Resets the chunks of a YAXArray and returns a new YAXArray. Note that this will not change the chunking of the underlying data itself, it will just make the data "look" like it had a different chunking. If you need a persistent on-disk representation of this chunking, use savecube on the resulting array. The chunks argument can take one of the following forms:

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

  • an AbstractDict or NamedTuple mapping one or more axis names to chunk sizes

source

',4))]),e("details",f,[e("summary",null,[s[26]||(s[26]=e("a",{id:"YAXArrays.Cubes.subsetcube",href:"#YAXArrays.Cubes.subsetcube"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.subsetcube")],-1)),s[27]||(s[27]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[28]||(s[28]=e("p",null,"This function calculates a subset of a cube's data",-1)),s[29]||(s[29]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/Cubes/Cubes.jl#L22-L24",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",m,[e("summary",null,[s[30]||(s[30]=e("a",{id:"YAXArrays.DAT.InDims",href:"#YAXArrays.DAT.InDims"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InDims")],-1)),s[31]||(s[31]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[32]||(s[32]=l('
julia
InDims(axisdesc...;...)

Creates a description of an Input Data Cube for cube operations. Takes a single or multiple axis descriptions as first arguments. Alternatively a MovingWindow(@ref) struct can be passed to include neighbour slices of one or more axes in the computation. Axes can be specified by their name (String), through an Axis type, or by passing a concrete axis.

Keyword arguments

  • artype how shall the array be represented in the inner function. Defaults to Array, alternatives are DataFrame or AsAxisArray

  • filter define some filter to skip the computation, e.g. when all values are missing. Defaults to AllMissing(), possible values are AnyMissing(), AnyOcean(), StdZero(), NValid(n) (for at least n non-missing elements). It is also possible to provide a custom one-argument function that takes the array and returns true if the compuation shall be skipped and false otherwise.

  • window_oob_value if one of the input dimensions is a MowingWindow, this value will be used to fill out-of-bounds areas

source

',5))]),e("details",j,[e("summary",null,[s[33]||(s[33]=e("a",{id:"YAXArrays.DAT.MovingWindow",href:"#YAXArrays.DAT.MovingWindow"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.MovingWindow")],-1)),s[34]||(s[34]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[35]||(s[35]=l('
julia
MovingWindow(desc, pre, after)

Constructs a MovingWindow object to be passed to an InDims constructor to define that the axis in desc shall participate in the inner function (i.e. shall be looped over), but inside the inner function pre values before and after values after the center value will be passed as well.

For example passing MovingWindow("Time", 2, 0) will loop over the time axis and always pass the current time step plus the 2 previous steps. So in the inner function the array will have an additional dimension of size 3.

source

',4))]),e("details",E,[e("summary",null,[s[36]||(s[36]=e("a",{id:"YAXArrays.DAT.OutDims-Tuple",href:"#YAXArrays.DAT.OutDims-Tuple"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutDims")],-1)),s[37]||(s[37]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[38]||(s[38]=l('
julia
OutDims(axisdesc;...)

Creates a description of an Output Data Cube for cube operations. Takes a single or a Vector/Tuple of axes as first argument. Axes can be specified by their name (String), through an Axis type, or by passing a concrete axis.

  • axisdesc: List of input axis names

  • backend : specifies the dataset backend to write data to, must be either :auto or a key in YAXArrayBase.backendlist

  • update : specifies wether the function operates inplace or if an output is returned

  • artype : specifies the Array type inside the inner function that is mapped over

  • chunksize: A Dict specifying the chunksizes for the output dimensions of the cube, or :input to copy chunksizes from input cube axes or :max to not chunk the inner dimensions

  • outtype: force the output type to a specific type, defaults to Any which means that the element type of the first input cube is used

source

',4))]),e("details",C,[e("summary",null,[s[39]||(s[39]=e("a",{id:"YAXArrays.DAT.CubeTable-Tuple{}",href:"#YAXArrays.DAT.CubeTable-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.CubeTable")],-1)),s[40]||(s[40]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[41]||(s[41]=l('
julia
CubeTable()

Function to turn a DataCube object into an iterable table. Takes a list of as arguments, specified as a name=cube expression. For example CubeTable(data=cube1,country=cube2) would generate a Table with the entries data and country, where data contains the values of cube1 and country the values of cube2. The cubes are matched and broadcasted along their axes like in mapCube.

source

',3))]),e("details",D,[e("summary",null,[s[42]||(s[42]=e("a",{id:"YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}",href:"#YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cubefittable")],-1)),s[43]||(s[43]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[44]||(s[44]=l('
julia
cubefittable(tab,o,fitsym;post=getpostfunction(o),kwargs...)

Executes fittable on the CubeTable tab with the (Weighted-)OnlineStat o, looping through the values specified by fitsym. Finally, writes the results from the TableAggregator to an output data cube.

source

',3))]),e("details",T,[e("summary",null,[s[45]||(s[45]=e("a",{id:"YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}",href:"#YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.fittable")],-1)),s[46]||(s[46]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[47]||(s[47]=l('
julia
fittable(tab,o,fitsym;by=(),weight=nothing)

Loops through an iterable table tab and thereby fitting an OnlineStat o with the values specified through fitsym. Optionally one can specify a field (or tuple) to group by. Any groupby specifier can either be a symbol denoting the entry to group by or an anynymous function calculating the group from a table row.

For example the following would caluclate a weighted mean over a cube weighted by grid cell area and grouped by country and month:

julia
fittable(iter,WeightedMean,:tair,weight=(i->abs(cosd(i.lat))),by=(i->month(i.time),:country))

source

',5))]),e("details",v,[e("summary",null,[s[48]||(s[48]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[49]||(s[49]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[50]||(s[50]=l(`
julia
mapCube(fun, cube, addargs...;kwargs...)
-
-Map a given function \`fun\` over slices of all cubes of the dataset \`ds\`. 
-Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.
-For Datasets, only one output cube can be specified.
-In contrast to the mapCube function for cubes, additional arguments for the inner function should be set as keyword arguments.
-
-For the specific keyword arguments see the docstring of the mapCube function for cubes.

source

`,2))]),e("details",X,[e("summary",null,[s[51]||(s[51]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[52]||(s[52]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[53]||(s[53]=l('
julia
mapCube(fun, cube, addargs...;kwargs...)

Map a given function fun over slices of the data cube cube. The additional arguments addargs will be forwarded to the inner function fun. Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.

Keyword arguments

  • max_cache=YAXDefaults.max_cache Float64 maximum size of blocks that are read into memory in bits e.g. max_cache=5.0e8. Or String. e.g. max_cache="10MB" ormax_cache=1GB``` defaults to approx 10Mb.

  • indims::InDims List of input cube descriptors of type InDims for each input data cube.

  • outdims::OutDims List of output cube descriptors of type OutDims for each output cube.

  • inplace does the function write to an output array inplace or return a single value> defaults to true

  • ispar boolean to determine if parallelisation should be applied, defaults to true if workers are available.

  • showprog boolean indicating if a ProgressMeter shall be shown

  • include_loopvars boolean to indicate if the varoables looped over should be added as function arguments

  • nthreads number of threads for the computation, defaults to Threads.nthreads for every worker.

  • loopchunksize determines the chunk sizes of variables which are looped over, a dict

  • kwargs additional keyword arguments are passed to the inner function

The first argument is always the function to be applied, the second is the input cube or a tuple of input cubes if needed.

source

',6))]),e("details",Y,[e("summary",null,[s[54]||(s[54]=e("a",{id:"YAXArrays.Datasets.Dataset",href:"#YAXArrays.Datasets.Dataset"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[55]||(s[55]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[56]||(s[56]=l('
julia
Dataset object which stores an `OrderedDict` of YAXArrays with Symbol keys.\na dictionary of CubeAxes and a Dictionary of general properties.\nA dictionary can hold cubes with differing axes. But it will share the common axes between the subcubes.

source

',2))]),e("details",x,[e("summary",null,[s[57]||(s[57]=e("a",{id:"YAXArrays.Datasets.Dataset-Tuple{}",href:"#YAXArrays.Datasets.Dataset-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[58]||(s[58]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[59]||(s[59]=e("p",null,"Dataset(; properties = Dict{String,Any}, cubes...)",-1)),s[60]||(s[60]=e("p",null,[a("Construct a YAXArray Dataset with global attributes "),e("code",null,"properties"),a(" a and a list of named YAXArrays cubes...")],-1)),s[61]||(s[61]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L28-L32",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",F,[e("summary",null,[s[62]||(s[62]=e("a",{id:"YAXArrays.Datasets.Cube-Tuple{Dataset}",href:"#YAXArrays.Datasets.Cube-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Cube")],-1)),s[63]||(s[63]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[64]||(s[64]=l('
julia
Cube(ds::Dataset; joinname="Variables")

Construct a single YAXArray from the dataset ds by concatenating the cubes in the datset on the joinname dimension.

source

',3))]),e("details",w,[e("summary",null,[s[65]||(s[65]=e("a",{id:"YAXArrays.Datasets.open_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.open_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.open_dataset")],-1)),s[66]||(s[66]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[67]||(s[67]=e("p",null,"open_dataset(g; driver=:all)",-1)),s[68]||(s[68]=e("p",null,[a("Open the dataset at "),e("code",null,"g"),a(" with the given "),e("code",null,"driver"),a(". The default driver will search for available drivers and tries to detect the useable driver from the filename extension.")],-1)),s[69]||(s[69]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L408-L413",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",L,[e("summary",null,[s[70]||(s[70]=e("a",{id:'YAXArrays.Datasets.open_mfdataset-Tuple{DimensionalData.DimVector{var"#s34", D, R, A} where {var"#s34"<:AbstractString, D<:Tuple, R<:Tuple, A<:AbstractVector{var"#s34"}}}',href:'#YAXArrays.Datasets.open_mfdataset-Tuple{DimensionalData.DimVector{var"#s34", D, R, A} where {var"#s34"<:AbstractString, D<:Tuple, R<:Tuple, A<:AbstractVector{var"#s34"}}}'},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.open_mfdataset")],-1)),s[71]||(s[71]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[72]||(s[72]=l(`
julia
open_mfdataset(files::DD.DimVector{<:AbstractString}; kwargs...)

Opens and concatenates a list of dataset paths along the dimension specified in files. This method can be used when the generic glob-based version of open_mfdataset fails or is too slow. For example, to concatenate a list of annual NetCDF files along the time dimension, one can use:

julia
files = ["1990.nc","1991.nc","1992.nc"]
-open_mfdataset(DD.DimArray(files, YAX.time()))

alternatively, if the dimension to concatenate along does not exist yet, the dimension provided in the input arg is used:

julia
files = ["a.nc", "b.nc", "c.nc"]
-open_mfdataset(DD.DimArray(files, DD.Dim{:NewDim}(["a","b","c"])))

source

`,6))]),e("details",M,[e("summary",null,[s[73]||(s[73]=e("a",{id:"YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}",href:"#YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savecube")],-1)),s[74]||(s[74]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[75]||(s[75]=l('
julia
savecube(cube,name::String)

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

  • datasetaxis="Variables" special treatment of a categorical axis that gets written into separate zarr arrays

  • max_cache: The number of bits that are used as cache for the data handling.

  • backend: The backend, that is used to save the data. Falls back to searching the backend according to the extension of the path.

  • driver: The same setting as backend.

  • overwrite::Bool=false overwrite cube if it already exists

source

',6))]),e("details",B,[e("summary",null,[s[76]||(s[76]=e("a",{id:"YAXArrays.Datasets.savedataset-Tuple{Dataset}",href:"#YAXArrays.Datasets.savedataset-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[77]||(s[77]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[78]||(s[78]=e("p",null,'savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)',-1)),s[79]||(s[79]=e("p",null,[a("Saves a Dataset into a file at "),e("code",null,"path"),a(" with the format given by "),e("code",null,"driver"),a(", i.e., driver=:netcdf or driver=:zarr.")],-1)),s[80]||(s[80]=e("div",{class:"warning custom-block"},[e("p",{class:"custom-block-title"},"Warning"),e("p",null,"overwrite = true, deletes ALL your data and it will create a new file.")],-1)),s[81]||(s[81]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L637-L646",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",O,[e("summary",null,[s[82]||(s[82]=e("a",{id:"YAXArrays.Datasets.to_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.to_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.to_dataset")],-1)),s[83]||(s[83]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[84]||(s[84]=e("p",null,'to_dataset(c;datasetaxis = "Variables", layername = "layer")',-1)),s[85]||(s[85]=e("p",null,[a(`Convert a Data Cube into a Dataset. It is possible to treat one of the Cube's axes as a "DatasetAxis" i.e. the cube will be split into different parts that become variables in the Dataset. If no such axis is specified or found, there will only be a single variable in the dataset with the name `),e("code",null,"layername")],-1)),s[86]||(s[86]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L45-L53",target:"_blank",rel:"noreferrer"},"source")],-1))]),s[168]||(s[168]=e("h2",{id:"Internal-API",tabindex:"-1"},[a("Internal API "),e("a",{class:"header-anchor",href:"#Internal-API","aria-label":'Permalink to "Internal API {#Internal-API}"'},"​")],-1)),e("details",I,[e("summary",null,[s[87]||(s[87]=e("a",{id:"YAXArrays.YAXDefaults",href:"#YAXArrays.YAXDefaults"},[e("span",{class:"jlbinding"},"YAXArrays.YAXDefaults")],-1)),s[88]||(s[88]=a()),i(t,{type:"info",class:"jlObjectType jlConstant",text:"Constant"})]),s[89]||(s[89]=l('

Default configuration for YAXArrays, has the following fields:

  • workdir[]::String = "./" The default location for temporary cubes.

  • recal[]::Bool = false set to true if you want @loadOrGenerate to always recalculate the results.

  • chunksize[]::Any = :input Set the default output chunksize.

  • max_cache[]::Float64 = 1e8 The maximum cache used by mapCube.

  • cubedir[]::"" the default location for Cube() without an argument.

  • subsetextensions::Array{Any} = [] List of registered functions, that convert subsetting input into dimension boundaries.

source

',3))]),e("details",J,[e("summary",null,[s[90]||(s[90]=e("a",{id:"YAXArrays.findAxis-Tuple{Any, Any}",href:"#YAXArrays.findAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.findAxis")],-1)),s[91]||(s[91]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[92]||(s[92]=l('
julia
findAxis(desc, c)

Internal function

Extended Help

Given an Axis description and a cube return the index of the Axis.

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

',7))]),e("details",P,[e("summary",null,[s[93]||(s[93]=e("a",{id:"YAXArrays.getOutAxis-NTuple{5, Any}",href:"#YAXArrays.getOutAxis-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getOutAxis")],-1)),s[94]||(s[94]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[95]||(s[95]=l('
julia
getOutAxis

source

',2))]),e("details",q,[e("summary",null,[s[96]||(s[96]=e("a",{id:"YAXArrays.get_descriptor-Tuple{String}",href:"#YAXArrays.get_descriptor-Tuple{String}"},[e("span",{class:"jlbinding"},"YAXArrays.get_descriptor")],-1)),s[97]||(s[97]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[98]||(s[98]=l('
julia
get_descriptor(a)

Get the descriptor of an Axis. This is used to dispatch on the descriptor.

source

',3))]),e("details",z,[e("summary",null,[s[99]||(s[99]=e("a",{id:"YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}",href:"#YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.match_axis")],-1)),s[100]||(s[100]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[101]||(s[101]=l(`
julia
match_axis

Internal function

Extended Help

Match the Axis based on the AxisDescriptor.
-This is used to find different axes and to make certain axis description the same.
-For example to disregard differences of captialisation.

source

`,5))]),e("details",N,[e("summary",null,[s[102]||(s[102]=e("a",{id:"YAXArrays.Cubes.CleanMe",href:"#YAXArrays.Cubes.CleanMe"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.CleanMe")],-1)),s[103]||(s[103]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[104]||(s[104]=l('
julia
mutable struct CleanMe

Struct which describes data paths and their persistency. Non-persistend paths/files are removed at finalize step

source

',3))]),e("details",S,[e("summary",null,[s[105]||(s[105]=e("a",{id:"YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}",href:"#YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.clean")],-1)),s[106]||(s[106]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[107]||(s[107]=l('
julia
clean(c::CleanMe)

finalizer function for CleanMe struct. The main process removes all directories/files which are not persistent.

source

',3))]),e("details",R,[e("summary",null,[s[108]||(s[108]=e("a",{id:"YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}",href:"#YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.copydata")],-1)),s[109]||(s[109]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[110]||(s[110]=l('
julia
copydata(outar, inar, copybuf)

Internal function which copies the data from the input inar into the output outar at the copybuf positions.

source

',3))]),e("details",V,[e("summary",null,[s[111]||(s[111]=e("a",{id:"YAXArrays.Cubes.optifunc-NTuple{7, Any}",href:"#YAXArrays.Cubes.optifunc-NTuple{7, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.optifunc")],-1)),s[112]||(s[112]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[113]||(s[113]=l('
julia
optifunc(s, maxbuf, incs, outcs, insize, outsize, writefac)

Internal

This function is going to be minimized to detect the best possible chunk setting for the rechunking of the data.

source

',4))]),e("details",G,[e("summary",null,[s[114]||(s[114]=e("a",{id:"YAXArrays.DAT.DATConfig",href:"#YAXArrays.DAT.DATConfig"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.DATConfig")],-1)),s[115]||(s[115]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[116]||(s[116]=l('

Configuration object of a DAT process. This holds all necessary information to perform the calculations. It contains the following fields:

  • incubes::NTuple{NIN, YAXArrays.DAT.InputCube} where NIN: The input data cubes

  • outcubes::NTuple{NOUT, YAXArrays.DAT.OutputCube} where NOUT: The output data cubes

  • allInAxes::Vector: List of all axes of the input cubes

  • LoopAxes::Vector: List of axes that are looped through

  • ispar::Bool: Flag whether the computation is parallelized

  • loopcachesize::Vector{Int64}:

  • allow_irregular_chunks::Bool:

  • max_cache::Any: Maximal size of the in memory cache

  • fu::Any: Inner function which is computed

  • inplace::Bool: Flag whether the computation happens in place

  • include_loopvars::Bool:

  • ntr::Any:

  • do_gc::Bool: Flag if GC should be called explicitly. Probably necessary for many runs in Julia 1.9

  • addargs::Any: Additional arguments for the inner function

  • kwargs::Any: Additional keyword arguments for the inner function

source

',3))]),e("details",W,[e("summary",null,[s[117]||(s[117]=e("a",{id:"YAXArrays.DAT.InputCube",href:"#YAXArrays.DAT.InputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InputCube")],-1)),s[118]||(s[118]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[119]||(s[119]=l('

Internal representation of an input cube for DAT operations

  • cube: The input data

  • desc: The input description given by the user/registration

  • axesSmall: List of axes that were actually selected through the description

  • icolon

  • colonperm

  • loopinds: Indices of loop axes that this cube does not contain, i.e. broadcasts

  • cachesize: Number of elements to keep in cache along each axis

  • window

  • iwindow

  • windowloopinds

  • iall

source

',3))]),e("details",U,[e("summary",null,[s[120]||(s[120]=e("a",{id:"YAXArrays.DAT.OutputCube",href:"#YAXArrays.DAT.OutputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutputCube")],-1)),s[121]||(s[121]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[122]||(s[122]=l('

Internal representation of an output cube for DAT operations

Fields

  • cube: The actual outcube cube, once it is generated

  • cube_unpermuted: The unpermuted output cube

  • desc: The description of the output axes as given by users or registration

  • axesSmall: The list of output axes determined through the description

  • allAxes: List of all the axes of the cube

  • loopinds: Index of the loop axes that are broadcasted for this output cube

  • innerchunks

  • outtype: Elementtype of the outputcube

source

',4))]),e("details",$,[e("summary",null,[s[123]||(s[123]=e("a",{id:"YAXArrays.DAT.YAXColumn",href:"#YAXArrays.DAT.YAXColumn"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.YAXColumn")],-1)),s[124]||(s[124]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[125]||(s[125]=l('
julia
YAXColumn

A struct representing a single column of a YAXArray partitioned Table # Fields

  • inarBC

  • inds

source

',4))]),e("details",H,[e("summary",null,[s[126]||(s[126]=e("a",{id:"YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}",href:"#YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cmpcachmisses")],-1)),s[127]||(s[127]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[128]||(s[128]=e("p",null,"Function that compares two cache miss specifiers by their importance",-1)),s[129]||(s[129]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DAT/DAT.jl#L957-L959",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",K,[e("summary",null,[s[130]||(s[130]=e("a",{id:"YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}",href:"#YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getFrontPerm")],-1)),s[131]||(s[131]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[132]||(s[132]=e("p",null,"Calculate an axis permutation that brings the wanted dimensions to the front",-1)),s[133]||(s[133]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DAT/DAT.jl#L1202",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",Z,[e("summary",null,[s[134]||(s[134]=e("a",{id:"YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}",href:"#YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getLoopCacheSize")],-1)),s[135]||(s[135]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[136]||(s[136]=e("p",null,"Calculate optimal Cache size to DAT operation",-1)),s[137]||(s[137]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DAT/DAT.jl#L1056",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",Q,[e("summary",null,[s[138]||(s[138]=e("a",{id:"YAXArrays.DAT.getOuttype-Tuple{Int64, Any}",href:"#YAXArrays.DAT.getOuttype-Tuple{Int64, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getOuttype")],-1)),s[139]||(s[139]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[140]||(s[140]=l('
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source

',4))]),e("details",_,[e("summary",null,[s[141]||(s[141]=e("a",{id:"YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}",href:"#YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getloopchunks")],-1)),s[142]||(s[142]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[143]||(s[143]=l('
julia
getloopchunks(dc::DATConfig)

Internal function

Returns the chunks that can be looped over toghether for all dimensions.\nThis computation of the size of the chunks is handled by [`DiskArrays.approx_chunksize`](@ref)

source

',4))]),e("details",ss,[e("summary",null,[s[144]||(s[144]=e("a",{id:"YAXArrays.DAT.permuteloopaxes-Tuple{Any}",href:"#YAXArrays.DAT.permuteloopaxes-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.permuteloopaxes")],-1)),s[145]||(s[145]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[146]||(s[146]=l('
julia
permuteloopaxes(dc)

Internal function

Permute the dimensions of the cube, so that the axes that are looped through are in the first positions. This is necessary for a faster looping through the data.

source

',4))]),e("details",es,[e("summary",null,[s[147]||(s[147]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[148]||(s[148]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[149]||(s[149]=l('
julia
setchunks(c::Dataset,chunks)

Resets the chunks of all or a subset YAXArrays in the dataset and returns a new Dataset. Note that this will not change the chunking of the underlying data itself, it will just make the data "look" like it had a different chunking. If you need a persistent on-disk representation of this chunking, use savedataset on the resulting array. The chunks argument can take one of the following forms:

  • a NamedTuple or AbstractDict mapping from variable name to a description of the desired variable chunks

  • a NamedTuple or AbstractDict mapping from dimension name to a description of the desired variable chunks

  • a description of the desired variable chunks applied to all members of the Dataset

where a description of the desired variable chunks can take one of the following forms:

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

  • an AbstractDict or NamedTuple mapping one or more axis names to chunk sizes

source

',6))]),e("details",as,[e("summary",null,[s[150]||(s[150]=e("a",{id:"YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}",href:"#YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.collectfromhandle")],-1)),s[151]||(s[151]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[152]||(s[152]=e("p",null,"Extracts a YAXArray from a dataset handle that was just created from a arrayinfo",-1)),s[153]||(s[153]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L543-L545",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",ts,[e("summary",null,[s[154]||(s[154]=e("a",{id:"YAXArrays.Datasets.createdataset-Tuple{Any, Any}",href:"#YAXArrays.Datasets.createdataset-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.createdataset")],-1)),s[155]||(s[155]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[156]||(s[156]=l('

function createdataset(DS::Type,axlist; kwargs...)

Creates a new dataset with axes specified in axlist. Each axis must be a subtype of CubeAxis. A new empty Zarr array will be created and can serve as a sink for mapCube operations.

Keyword arguments

  • path="" location where the new cube is stored

  • T=Union{Float32,Missing} data type of the target cube

  • chunksize = ntuple(i->length(axlist[i]),length(axlist)) chunk sizes of the array

  • chunkoffset = ntuple(i->0,length(axlist)) offsets of the chunks

  • persist::Bool=true shall the disk data be garbage-collected when the cube goes out of scope?

  • overwrite::Bool=false overwrite cube if it already exists

  • properties=Dict{String,Any}() additional cube properties

  • globalproperties=Dict{String,Any} global attributes to be added to the dataset

  • fillvalue= T>:Missing ? defaultfillval(Base.nonmissingtype(T)) : nothing fill value

  • datasetaxis="Variables" special treatment of a categorical axis that gets written into separate zarr arrays

  • layername="layer" Fallback name of the variable stored in the dataset if no datasetaxis is found

source

',6))]),e("details",is,[e("summary",null,[s[157]||(s[157]=e("a",{id:"YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}",href:"#YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.getarrayinfo")],-1)),s[158]||(s[158]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[159]||(s[159]=e("p",null,"Extract necessary information to create a YAXArrayBase dataset from a name and YAXArray pair",-1)),s[160]||(s[160]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L512-L514",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",ls,[e("summary",null,[s[161]||(s[161]=e("a",{id:"YAXArrays.Datasets.testrange-Tuple{Any}",href:"#YAXArrays.Datasets.testrange-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.testrange")],-1)),s[162]||(s[162]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[163]||(s[163]=e("p",null,"Test if data in x can be approximated by a step range",-1)),s[164]||(s[164]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L312",target:"_blank",rel:"noreferrer"},"source")],-1))])])}const bs=n(d,[["render",ns]]);export{cs as __pageData,bs as default}; diff --git a/previews/PR479/assets/api.md.LtcwYcT6.lean.js b/previews/PR479/assets/api.md.LtcwYcT6.lean.js deleted file mode 100644 index 2fffeaa4..00000000 --- a/previews/PR479/assets/api.md.LtcwYcT6.lean.js +++ /dev/null @@ -1,12 +0,0 @@ -import{_ as n,c as o,j as e,a,G as i,a2 as l,B as r,o as p}from"./chunks/framework.DYY3HcdR.js";const cs=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),d={name:"api.md"},u={class:"jldocstring custom-block",open:""},h={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""},b={class:"jldocstring custom-block",open:""},y={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},A={class:"jldocstring custom-block",open:""},f={class:"jldocstring custom-block",open:""},m={class:"jldocstring custom-block",open:""},j={class:"jldocstring custom-block",open:""},E={class:"jldocstring custom-block",open:""},C={class:"jldocstring custom-block",open:""},D={class:"jldocstring custom-block",open:""},T={class:"jldocstring custom-block",open:""},v={class:"jldocstring custom-block",open:""},X={class:"jldocstring custom-block",open:""},Y={class:"jldocstring custom-block",open:""},x={class:"jldocstring custom-block",open:""},F={class:"jldocstring custom-block",open:""},w={class:"jldocstring custom-block",open:""},L={class:"jldocstring custom-block",open:""},M={class:"jldocstring custom-block",open:""},B={class:"jldocstring custom-block",open:""},O={class:"jldocstring custom-block",open:""},I={class:"jldocstring custom-block",open:""},J={class:"jldocstring custom-block",open:""},P={class:"jldocstring custom-block",open:""},q={class:"jldocstring custom-block",open:""},z={class:"jldocstring custom-block",open:""},N={class:"jldocstring custom-block",open:""},S={class:"jldocstring custom-block",open:""},R={class:"jldocstring custom-block",open:""},V={class:"jldocstring custom-block",open:""},G={class:"jldocstring custom-block",open:""},W={class:"jldocstring custom-block",open:""},U={class:"jldocstring custom-block",open:""},$={class:"jldocstring custom-block",open:""},H={class:"jldocstring custom-block",open:""},K={class:"jldocstring custom-block",open:""},Z={class:"jldocstring custom-block",open:""},Q={class:"jldocstring custom-block",open:""},_={class:"jldocstring custom-block",open:""},ss={class:"jldocstring custom-block",open:""},es={class:"jldocstring custom-block",open:""},as={class:"jldocstring custom-block",open:""},ts={class:"jldocstring custom-block",open:""},is={class:"jldocstring custom-block",open:""},ls={class:"jldocstring custom-block",open:""};function ns(os,s,rs,ps,ds,us){const t=r("Badge");return p(),o("div",null,[s[165]||(s[165]=e("h1",{id:"API-Reference",tabindex:"-1"},[a("API Reference "),e("a",{class:"header-anchor",href:"#API-Reference","aria-label":'Permalink to "API Reference {#API-Reference}"'},"​")],-1)),s[166]||(s[166]=e("p",null,"This section describes all available functions of this package.",-1)),s[167]||(s[167]=e("h2",{id:"Public-API",tabindex:"-1"},[a("Public API "),e("a",{class:"header-anchor",href:"#Public-API","aria-label":'Permalink to "Public API {#Public-API}"'},"​")],-1)),e("details",u,[e("summary",null,[s[0]||(s[0]=e("a",{id:"YAXArrays.getAxis-Tuple{Any, Any}",href:"#YAXArrays.getAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getAxis")],-1)),s[1]||(s[1]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=l('
julia
getAxis(desc, c)

Given an Axis description and a cube, returns the corresponding axis of the cube. The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

',4))]),e("details",h,[e("summary",null,[s[3]||(s[3]=e("a",{id:"YAXArrays.Cubes",href:"#YAXArrays.Cubes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes")],-1)),s[4]||(s[4]=a()),i(t,{type:"info",class:"jlObjectType jlModule",text:"Module"})]),s[5]||(s[5]=e("p",null,"The functions provided by YAXArrays are supposed to work on different types of cubes. This module defines the interface for all Data types that",-1)),s[6]||(s[6]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/Cubes/Cubes.jl#L1-L4",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",c,[e("summary",null,[s[7]||(s[7]=e("a",{id:"YAXArrays.Cubes.YAXArray",href:"#YAXArrays.Cubes.YAXArray"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.YAXArray")],-1)),s[8]||(s[8]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[9]||(s[9]=l('
julia
YAXArray{T,N}

An array labelled with named axes that have values associated with them. It can wrap normal arrays or, more typically DiskArrays.

Fields

  • axes: Tuple of Dimensions containing the Axes of the Cube

  • data: length(axes)-dimensional array which holds the data, this can be a lazy DiskArray

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

  • cleaner: Cleaner objects to track which objects to tidy up when the YAXArray goes out of scope

source

',5))]),e("details",b,[e("summary",null,[s[10]||(s[10]=e("a",{id:"YAXArrays.Cubes.caxes",href:"#YAXArrays.Cubes.caxes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[11]||(s[11]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[12]||(s[12]=e("p",null,"Returns the axes of a Cube",-1)),s[13]||(s[13]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/Cubes/Cubes.jl#L27",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",y,[e("summary",null,[s[14]||(s[14]=e("a",{id:"YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[15]||(s[15]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[16]||(s[16]=l('
julia
caxes

Embeds Cube inside a new Cube

source

',3))]),e("details",k,[e("summary",null,[s[17]||(s[17]=e("a",{id:"YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.concatenatecubes")],-1)),s[18]||(s[18]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[19]||(s[19]=l('
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

Concatenates a vector of datacubes that have identical axes to a new single cube along the new axis cataxis

source

',3))]),e("details",g,[e("summary",null,[s[20]||(s[20]=e("a",{id:"YAXArrays.Cubes.readcubedata-Tuple{Any}",href:"#YAXArrays.Cubes.readcubedata-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.readcubedata")],-1)),s[21]||(s[21]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[22]||(s[22]=l('
julia
readcubedata(cube)

Given any array implementing the YAXArray interface it returns an in-memory YAXArray from it.

source

',3))]),e("details",A,[e("summary",null,[s[23]||(s[23]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[24]||(s[24]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[25]||(s[25]=l('
julia
setchunks(c::YAXArray,chunks)

Resets the chunks of a YAXArray and returns a new YAXArray. Note that this will not change the chunking of the underlying data itself, it will just make the data "look" like it had a different chunking. If you need a persistent on-disk representation of this chunking, use savecube on the resulting array. The chunks argument can take one of the following forms:

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

  • an AbstractDict or NamedTuple mapping one or more axis names to chunk sizes

source

',4))]),e("details",f,[e("summary",null,[s[26]||(s[26]=e("a",{id:"YAXArrays.Cubes.subsetcube",href:"#YAXArrays.Cubes.subsetcube"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.subsetcube")],-1)),s[27]||(s[27]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[28]||(s[28]=e("p",null,"This function calculates a subset of a cube's data",-1)),s[29]||(s[29]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/Cubes/Cubes.jl#L22-L24",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",m,[e("summary",null,[s[30]||(s[30]=e("a",{id:"YAXArrays.DAT.InDims",href:"#YAXArrays.DAT.InDims"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InDims")],-1)),s[31]||(s[31]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[32]||(s[32]=l('
julia
InDims(axisdesc...;...)

Creates a description of an Input Data Cube for cube operations. Takes a single or multiple axis descriptions as first arguments. Alternatively a MovingWindow(@ref) struct can be passed to include neighbour slices of one or more axes in the computation. Axes can be specified by their name (String), through an Axis type, or by passing a concrete axis.

Keyword arguments

  • artype how shall the array be represented in the inner function. Defaults to Array, alternatives are DataFrame or AsAxisArray

  • filter define some filter to skip the computation, e.g. when all values are missing. Defaults to AllMissing(), possible values are AnyMissing(), AnyOcean(), StdZero(), NValid(n) (for at least n non-missing elements). It is also possible to provide a custom one-argument function that takes the array and returns true if the compuation shall be skipped and false otherwise.

  • window_oob_value if one of the input dimensions is a MowingWindow, this value will be used to fill out-of-bounds areas

source

',5))]),e("details",j,[e("summary",null,[s[33]||(s[33]=e("a",{id:"YAXArrays.DAT.MovingWindow",href:"#YAXArrays.DAT.MovingWindow"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.MovingWindow")],-1)),s[34]||(s[34]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[35]||(s[35]=l('
julia
MovingWindow(desc, pre, after)

Constructs a MovingWindow object to be passed to an InDims constructor to define that the axis in desc shall participate in the inner function (i.e. shall be looped over), but inside the inner function pre values before and after values after the center value will be passed as well.

For example passing MovingWindow("Time", 2, 0) will loop over the time axis and always pass the current time step plus the 2 previous steps. So in the inner function the array will have an additional dimension of size 3.

source

',4))]),e("details",E,[e("summary",null,[s[36]||(s[36]=e("a",{id:"YAXArrays.DAT.OutDims-Tuple",href:"#YAXArrays.DAT.OutDims-Tuple"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutDims")],-1)),s[37]||(s[37]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[38]||(s[38]=l('
julia
OutDims(axisdesc;...)

Creates a description of an Output Data Cube for cube operations. Takes a single or a Vector/Tuple of axes as first argument. Axes can be specified by their name (String), through an Axis type, or by passing a concrete axis.

  • axisdesc: List of input axis names

  • backend : specifies the dataset backend to write data to, must be either :auto or a key in YAXArrayBase.backendlist

  • update : specifies wether the function operates inplace or if an output is returned

  • artype : specifies the Array type inside the inner function that is mapped over

  • chunksize: A Dict specifying the chunksizes for the output dimensions of the cube, or :input to copy chunksizes from input cube axes or :max to not chunk the inner dimensions

  • outtype: force the output type to a specific type, defaults to Any which means that the element type of the first input cube is used

source

',4))]),e("details",C,[e("summary",null,[s[39]||(s[39]=e("a",{id:"YAXArrays.DAT.CubeTable-Tuple{}",href:"#YAXArrays.DAT.CubeTable-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.CubeTable")],-1)),s[40]||(s[40]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[41]||(s[41]=l('
julia
CubeTable()

Function to turn a DataCube object into an iterable table. Takes a list of as arguments, specified as a name=cube expression. For example CubeTable(data=cube1,country=cube2) would generate a Table with the entries data and country, where data contains the values of cube1 and country the values of cube2. The cubes are matched and broadcasted along their axes like in mapCube.

source

',3))]),e("details",D,[e("summary",null,[s[42]||(s[42]=e("a",{id:"YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}",href:"#YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cubefittable")],-1)),s[43]||(s[43]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[44]||(s[44]=l('
julia
cubefittable(tab,o,fitsym;post=getpostfunction(o),kwargs...)

Executes fittable on the CubeTable tab with the (Weighted-)OnlineStat o, looping through the values specified by fitsym. Finally, writes the results from the TableAggregator to an output data cube.

source

',3))]),e("details",T,[e("summary",null,[s[45]||(s[45]=e("a",{id:"YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}",href:"#YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.fittable")],-1)),s[46]||(s[46]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[47]||(s[47]=l('
julia
fittable(tab,o,fitsym;by=(),weight=nothing)

Loops through an iterable table tab and thereby fitting an OnlineStat o with the values specified through fitsym. Optionally one can specify a field (or tuple) to group by. Any groupby specifier can either be a symbol denoting the entry to group by or an anynymous function calculating the group from a table row.

For example the following would caluclate a weighted mean over a cube weighted by grid cell area and grouped by country and month:

julia
fittable(iter,WeightedMean,:tair,weight=(i->abs(cosd(i.lat))),by=(i->month(i.time),:country))

source

',5))]),e("details",v,[e("summary",null,[s[48]||(s[48]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[49]||(s[49]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[50]||(s[50]=l(`
julia
mapCube(fun, cube, addargs...;kwargs...)
-
-Map a given function \`fun\` over slices of all cubes of the dataset \`ds\`. 
-Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.
-For Datasets, only one output cube can be specified.
-In contrast to the mapCube function for cubes, additional arguments for the inner function should be set as keyword arguments.
-
-For the specific keyword arguments see the docstring of the mapCube function for cubes.

source

`,2))]),e("details",X,[e("summary",null,[s[51]||(s[51]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[52]||(s[52]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[53]||(s[53]=l('
julia
mapCube(fun, cube, addargs...;kwargs...)

Map a given function fun over slices of the data cube cube. The additional arguments addargs will be forwarded to the inner function fun. Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.

Keyword arguments

  • max_cache=YAXDefaults.max_cache Float64 maximum size of blocks that are read into memory in bits e.g. max_cache=5.0e8. Or String. e.g. max_cache="10MB" ormax_cache=1GB``` defaults to approx 10Mb.

  • indims::InDims List of input cube descriptors of type InDims for each input data cube.

  • outdims::OutDims List of output cube descriptors of type OutDims for each output cube.

  • inplace does the function write to an output array inplace or return a single value> defaults to true

  • ispar boolean to determine if parallelisation should be applied, defaults to true if workers are available.

  • showprog boolean indicating if a ProgressMeter shall be shown

  • include_loopvars boolean to indicate if the varoables looped over should be added as function arguments

  • nthreads number of threads for the computation, defaults to Threads.nthreads for every worker.

  • loopchunksize determines the chunk sizes of variables which are looped over, a dict

  • kwargs additional keyword arguments are passed to the inner function

The first argument is always the function to be applied, the second is the input cube or a tuple of input cubes if needed.

source

',6))]),e("details",Y,[e("summary",null,[s[54]||(s[54]=e("a",{id:"YAXArrays.Datasets.Dataset",href:"#YAXArrays.Datasets.Dataset"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[55]||(s[55]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[56]||(s[56]=l('
julia
Dataset object which stores an `OrderedDict` of YAXArrays with Symbol keys.\na dictionary of CubeAxes and a Dictionary of general properties.\nA dictionary can hold cubes with differing axes. But it will share the common axes between the subcubes.

source

',2))]),e("details",x,[e("summary",null,[s[57]||(s[57]=e("a",{id:"YAXArrays.Datasets.Dataset-Tuple{}",href:"#YAXArrays.Datasets.Dataset-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[58]||(s[58]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[59]||(s[59]=e("p",null,"Dataset(; properties = Dict{String,Any}, cubes...)",-1)),s[60]||(s[60]=e("p",null,[a("Construct a YAXArray Dataset with global attributes "),e("code",null,"properties"),a(" a and a list of named YAXArrays cubes...")],-1)),s[61]||(s[61]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L28-L32",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",F,[e("summary",null,[s[62]||(s[62]=e("a",{id:"YAXArrays.Datasets.Cube-Tuple{Dataset}",href:"#YAXArrays.Datasets.Cube-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Cube")],-1)),s[63]||(s[63]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[64]||(s[64]=l('
julia
Cube(ds::Dataset; joinname="Variables")

Construct a single YAXArray from the dataset ds by concatenating the cubes in the datset on the joinname dimension.

source

',3))]),e("details",w,[e("summary",null,[s[65]||(s[65]=e("a",{id:"YAXArrays.Datasets.open_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.open_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.open_dataset")],-1)),s[66]||(s[66]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[67]||(s[67]=e("p",null,"open_dataset(g; driver=:all)",-1)),s[68]||(s[68]=e("p",null,[a("Open the dataset at "),e("code",null,"g"),a(" with the given "),e("code",null,"driver"),a(". The default driver will search for available drivers and tries to detect the useable driver from the filename extension.")],-1)),s[69]||(s[69]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L408-L413",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",L,[e("summary",null,[s[70]||(s[70]=e("a",{id:'YAXArrays.Datasets.open_mfdataset-Tuple{DimensionalData.DimVector{var"#s34", D, R, A} where {var"#s34"<:AbstractString, D<:Tuple, R<:Tuple, A<:AbstractVector{var"#s34"}}}',href:'#YAXArrays.Datasets.open_mfdataset-Tuple{DimensionalData.DimVector{var"#s34", D, R, A} where {var"#s34"<:AbstractString, D<:Tuple, R<:Tuple, A<:AbstractVector{var"#s34"}}}'},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.open_mfdataset")],-1)),s[71]||(s[71]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[72]||(s[72]=l(`
julia
open_mfdataset(files::DD.DimVector{<:AbstractString}; kwargs...)

Opens and concatenates a list of dataset paths along the dimension specified in files. This method can be used when the generic glob-based version of open_mfdataset fails or is too slow. For example, to concatenate a list of annual NetCDF files along the time dimension, one can use:

julia
files = ["1990.nc","1991.nc","1992.nc"]
-open_mfdataset(DD.DimArray(files, YAX.time()))

alternatively, if the dimension to concatenate along does not exist yet, the dimension provided in the input arg is used:

julia
files = ["a.nc", "b.nc", "c.nc"]
-open_mfdataset(DD.DimArray(files, DD.Dim{:NewDim}(["a","b","c"])))

source

`,6))]),e("details",M,[e("summary",null,[s[73]||(s[73]=e("a",{id:"YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}",href:"#YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savecube")],-1)),s[74]||(s[74]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[75]||(s[75]=l('
julia
savecube(cube,name::String)

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

  • datasetaxis="Variables" special treatment of a categorical axis that gets written into separate zarr arrays

  • max_cache: The number of bits that are used as cache for the data handling.

  • backend: The backend, that is used to save the data. Falls back to searching the backend according to the extension of the path.

  • driver: The same setting as backend.

  • overwrite::Bool=false overwrite cube if it already exists

source

',6))]),e("details",B,[e("summary",null,[s[76]||(s[76]=e("a",{id:"YAXArrays.Datasets.savedataset-Tuple{Dataset}",href:"#YAXArrays.Datasets.savedataset-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[77]||(s[77]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[78]||(s[78]=e("p",null,'savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)',-1)),s[79]||(s[79]=e("p",null,[a("Saves a Dataset into a file at "),e("code",null,"path"),a(" with the format given by "),e("code",null,"driver"),a(", i.e., driver=:netcdf or driver=:zarr.")],-1)),s[80]||(s[80]=e("div",{class:"warning custom-block"},[e("p",{class:"custom-block-title"},"Warning"),e("p",null,"overwrite = true, deletes ALL your data and it will create a new file.")],-1)),s[81]||(s[81]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L637-L646",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",O,[e("summary",null,[s[82]||(s[82]=e("a",{id:"YAXArrays.Datasets.to_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.to_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.to_dataset")],-1)),s[83]||(s[83]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[84]||(s[84]=e("p",null,'to_dataset(c;datasetaxis = "Variables", layername = "layer")',-1)),s[85]||(s[85]=e("p",null,[a(`Convert a Data Cube into a Dataset. It is possible to treat one of the Cube's axes as a "DatasetAxis" i.e. the cube will be split into different parts that become variables in the Dataset. If no such axis is specified or found, there will only be a single variable in the dataset with the name `),e("code",null,"layername")],-1)),s[86]||(s[86]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L45-L53",target:"_blank",rel:"noreferrer"},"source")],-1))]),s[168]||(s[168]=e("h2",{id:"Internal-API",tabindex:"-1"},[a("Internal API "),e("a",{class:"header-anchor",href:"#Internal-API","aria-label":'Permalink to "Internal API {#Internal-API}"'},"​")],-1)),e("details",I,[e("summary",null,[s[87]||(s[87]=e("a",{id:"YAXArrays.YAXDefaults",href:"#YAXArrays.YAXDefaults"},[e("span",{class:"jlbinding"},"YAXArrays.YAXDefaults")],-1)),s[88]||(s[88]=a()),i(t,{type:"info",class:"jlObjectType jlConstant",text:"Constant"})]),s[89]||(s[89]=l('

Default configuration for YAXArrays, has the following fields:

  • workdir[]::String = "./" The default location for temporary cubes.

  • recal[]::Bool = false set to true if you want @loadOrGenerate to always recalculate the results.

  • chunksize[]::Any = :input Set the default output chunksize.

  • max_cache[]::Float64 = 1e8 The maximum cache used by mapCube.

  • cubedir[]::"" the default location for Cube() without an argument.

  • subsetextensions::Array{Any} = [] List of registered functions, that convert subsetting input into dimension boundaries.

source

',3))]),e("details",J,[e("summary",null,[s[90]||(s[90]=e("a",{id:"YAXArrays.findAxis-Tuple{Any, Any}",href:"#YAXArrays.findAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.findAxis")],-1)),s[91]||(s[91]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[92]||(s[92]=l('
julia
findAxis(desc, c)

Internal function

Extended Help

Given an Axis description and a cube return the index of the Axis.

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

',7))]),e("details",P,[e("summary",null,[s[93]||(s[93]=e("a",{id:"YAXArrays.getOutAxis-NTuple{5, Any}",href:"#YAXArrays.getOutAxis-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getOutAxis")],-1)),s[94]||(s[94]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[95]||(s[95]=l('
julia
getOutAxis

source

',2))]),e("details",q,[e("summary",null,[s[96]||(s[96]=e("a",{id:"YAXArrays.get_descriptor-Tuple{String}",href:"#YAXArrays.get_descriptor-Tuple{String}"},[e("span",{class:"jlbinding"},"YAXArrays.get_descriptor")],-1)),s[97]||(s[97]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[98]||(s[98]=l('
julia
get_descriptor(a)

Get the descriptor of an Axis. This is used to dispatch on the descriptor.

source

',3))]),e("details",z,[e("summary",null,[s[99]||(s[99]=e("a",{id:"YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}",href:"#YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.match_axis")],-1)),s[100]||(s[100]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[101]||(s[101]=l(`
julia
match_axis

Internal function

Extended Help

Match the Axis based on the AxisDescriptor.
-This is used to find different axes and to make certain axis description the same.
-For example to disregard differences of captialisation.

source

`,5))]),e("details",N,[e("summary",null,[s[102]||(s[102]=e("a",{id:"YAXArrays.Cubes.CleanMe",href:"#YAXArrays.Cubes.CleanMe"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.CleanMe")],-1)),s[103]||(s[103]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[104]||(s[104]=l('
julia
mutable struct CleanMe

Struct which describes data paths and their persistency. Non-persistend paths/files are removed at finalize step

source

',3))]),e("details",S,[e("summary",null,[s[105]||(s[105]=e("a",{id:"YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}",href:"#YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.clean")],-1)),s[106]||(s[106]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[107]||(s[107]=l('
julia
clean(c::CleanMe)

finalizer function for CleanMe struct. The main process removes all directories/files which are not persistent.

source

',3))]),e("details",R,[e("summary",null,[s[108]||(s[108]=e("a",{id:"YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}",href:"#YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.copydata")],-1)),s[109]||(s[109]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[110]||(s[110]=l('
julia
copydata(outar, inar, copybuf)

Internal function which copies the data from the input inar into the output outar at the copybuf positions.

source

',3))]),e("details",V,[e("summary",null,[s[111]||(s[111]=e("a",{id:"YAXArrays.Cubes.optifunc-NTuple{7, Any}",href:"#YAXArrays.Cubes.optifunc-NTuple{7, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.optifunc")],-1)),s[112]||(s[112]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[113]||(s[113]=l('
julia
optifunc(s, maxbuf, incs, outcs, insize, outsize, writefac)

Internal

This function is going to be minimized to detect the best possible chunk setting for the rechunking of the data.

source

',4))]),e("details",G,[e("summary",null,[s[114]||(s[114]=e("a",{id:"YAXArrays.DAT.DATConfig",href:"#YAXArrays.DAT.DATConfig"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.DATConfig")],-1)),s[115]||(s[115]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[116]||(s[116]=l('

Configuration object of a DAT process. This holds all necessary information to perform the calculations. It contains the following fields:

  • incubes::NTuple{NIN, YAXArrays.DAT.InputCube} where NIN: The input data cubes

  • outcubes::NTuple{NOUT, YAXArrays.DAT.OutputCube} where NOUT: The output data cubes

  • allInAxes::Vector: List of all axes of the input cubes

  • LoopAxes::Vector: List of axes that are looped through

  • ispar::Bool: Flag whether the computation is parallelized

  • loopcachesize::Vector{Int64}:

  • allow_irregular_chunks::Bool:

  • max_cache::Any: Maximal size of the in memory cache

  • fu::Any: Inner function which is computed

  • inplace::Bool: Flag whether the computation happens in place

  • include_loopvars::Bool:

  • ntr::Any:

  • do_gc::Bool: Flag if GC should be called explicitly. Probably necessary for many runs in Julia 1.9

  • addargs::Any: Additional arguments for the inner function

  • kwargs::Any: Additional keyword arguments for the inner function

source

',3))]),e("details",W,[e("summary",null,[s[117]||(s[117]=e("a",{id:"YAXArrays.DAT.InputCube",href:"#YAXArrays.DAT.InputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InputCube")],-1)),s[118]||(s[118]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[119]||(s[119]=l('

Internal representation of an input cube for DAT operations

  • cube: The input data

  • desc: The input description given by the user/registration

  • axesSmall: List of axes that were actually selected through the description

  • icolon

  • colonperm

  • loopinds: Indices of loop axes that this cube does not contain, i.e. broadcasts

  • cachesize: Number of elements to keep in cache along each axis

  • window

  • iwindow

  • windowloopinds

  • iall

source

',3))]),e("details",U,[e("summary",null,[s[120]||(s[120]=e("a",{id:"YAXArrays.DAT.OutputCube",href:"#YAXArrays.DAT.OutputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutputCube")],-1)),s[121]||(s[121]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[122]||(s[122]=l('

Internal representation of an output cube for DAT operations

Fields

  • cube: The actual outcube cube, once it is generated

  • cube_unpermuted: The unpermuted output cube

  • desc: The description of the output axes as given by users or registration

  • axesSmall: The list of output axes determined through the description

  • allAxes: List of all the axes of the cube

  • loopinds: Index of the loop axes that are broadcasted for this output cube

  • innerchunks

  • outtype: Elementtype of the outputcube

source

',4))]),e("details",$,[e("summary",null,[s[123]||(s[123]=e("a",{id:"YAXArrays.DAT.YAXColumn",href:"#YAXArrays.DAT.YAXColumn"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.YAXColumn")],-1)),s[124]||(s[124]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[125]||(s[125]=l('
julia
YAXColumn

A struct representing a single column of a YAXArray partitioned Table # Fields

  • inarBC

  • inds

source

',4))]),e("details",H,[e("summary",null,[s[126]||(s[126]=e("a",{id:"YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}",href:"#YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cmpcachmisses")],-1)),s[127]||(s[127]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[128]||(s[128]=e("p",null,"Function that compares two cache miss specifiers by their importance",-1)),s[129]||(s[129]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DAT/DAT.jl#L957-L959",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",K,[e("summary",null,[s[130]||(s[130]=e("a",{id:"YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}",href:"#YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getFrontPerm")],-1)),s[131]||(s[131]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[132]||(s[132]=e("p",null,"Calculate an axis permutation that brings the wanted dimensions to the front",-1)),s[133]||(s[133]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DAT/DAT.jl#L1202",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",Z,[e("summary",null,[s[134]||(s[134]=e("a",{id:"YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}",href:"#YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getLoopCacheSize")],-1)),s[135]||(s[135]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[136]||(s[136]=e("p",null,"Calculate optimal Cache size to DAT operation",-1)),s[137]||(s[137]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DAT/DAT.jl#L1056",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",Q,[e("summary",null,[s[138]||(s[138]=e("a",{id:"YAXArrays.DAT.getOuttype-Tuple{Int64, Any}",href:"#YAXArrays.DAT.getOuttype-Tuple{Int64, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getOuttype")],-1)),s[139]||(s[139]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[140]||(s[140]=l('
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source

',4))]),e("details",_,[e("summary",null,[s[141]||(s[141]=e("a",{id:"YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}",href:"#YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getloopchunks")],-1)),s[142]||(s[142]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[143]||(s[143]=l('
julia
getloopchunks(dc::DATConfig)

Internal function

Returns the chunks that can be looped over toghether for all dimensions.\nThis computation of the size of the chunks is handled by [`DiskArrays.approx_chunksize`](@ref)

source

',4))]),e("details",ss,[e("summary",null,[s[144]||(s[144]=e("a",{id:"YAXArrays.DAT.permuteloopaxes-Tuple{Any}",href:"#YAXArrays.DAT.permuteloopaxes-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.permuteloopaxes")],-1)),s[145]||(s[145]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[146]||(s[146]=l('
julia
permuteloopaxes(dc)

Internal function

Permute the dimensions of the cube, so that the axes that are looped through are in the first positions. This is necessary for a faster looping through the data.

source

',4))]),e("details",es,[e("summary",null,[s[147]||(s[147]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[148]||(s[148]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[149]||(s[149]=l('
julia
setchunks(c::Dataset,chunks)

Resets the chunks of all or a subset YAXArrays in the dataset and returns a new Dataset. Note that this will not change the chunking of the underlying data itself, it will just make the data "look" like it had a different chunking. If you need a persistent on-disk representation of this chunking, use savedataset on the resulting array. The chunks argument can take one of the following forms:

  • a NamedTuple or AbstractDict mapping from variable name to a description of the desired variable chunks

  • a NamedTuple or AbstractDict mapping from dimension name to a description of the desired variable chunks

  • a description of the desired variable chunks applied to all members of the Dataset

where a description of the desired variable chunks can take one of the following forms:

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

  • an AbstractDict or NamedTuple mapping one or more axis names to chunk sizes

source

',6))]),e("details",as,[e("summary",null,[s[150]||(s[150]=e("a",{id:"YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}",href:"#YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.collectfromhandle")],-1)),s[151]||(s[151]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[152]||(s[152]=e("p",null,"Extracts a YAXArray from a dataset handle that was just created from a arrayinfo",-1)),s[153]||(s[153]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L543-L545",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",ts,[e("summary",null,[s[154]||(s[154]=e("a",{id:"YAXArrays.Datasets.createdataset-Tuple{Any, Any}",href:"#YAXArrays.Datasets.createdataset-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.createdataset")],-1)),s[155]||(s[155]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[156]||(s[156]=l('

function createdataset(DS::Type,axlist; kwargs...)

Creates a new dataset with axes specified in axlist. Each axis must be a subtype of CubeAxis. A new empty Zarr array will be created and can serve as a sink for mapCube operations.

Keyword arguments

  • path="" location where the new cube is stored

  • T=Union{Float32,Missing} data type of the target cube

  • chunksize = ntuple(i->length(axlist[i]),length(axlist)) chunk sizes of the array

  • chunkoffset = ntuple(i->0,length(axlist)) offsets of the chunks

  • persist::Bool=true shall the disk data be garbage-collected when the cube goes out of scope?

  • overwrite::Bool=false overwrite cube if it already exists

  • properties=Dict{String,Any}() additional cube properties

  • globalproperties=Dict{String,Any} global attributes to be added to the dataset

  • fillvalue= T>:Missing ? defaultfillval(Base.nonmissingtype(T)) : nothing fill value

  • datasetaxis="Variables" special treatment of a categorical axis that gets written into separate zarr arrays

  • layername="layer" Fallback name of the variable stored in the dataset if no datasetaxis is found

source

',6))]),e("details",is,[e("summary",null,[s[157]||(s[157]=e("a",{id:"YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}",href:"#YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.getarrayinfo")],-1)),s[158]||(s[158]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[159]||(s[159]=e("p",null,"Extract necessary information to create a YAXArrayBase dataset from a name and YAXArray pair",-1)),s[160]||(s[160]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L512-L514",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",ls,[e("summary",null,[s[161]||(s[161]=e("a",{id:"YAXArrays.Datasets.testrange-Tuple{Any}",href:"#YAXArrays.Datasets.testrange-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.testrange")],-1)),s[162]||(s[162]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[163]||(s[163]=e("p",null,"Test if data in x can be approximated by a step range",-1)),s[164]||(s[164]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/1aeb627f3d8705a950182240b938bee4c9e3e42a/src/DatasetAPI/Datasets.jl#L312",target:"_blank",rel:"noreferrer"},"source")],-1))])])}const bs=n(d,[["render",ns]]);export{cs as __pageData,bs as default}; diff --git a/previews/PR479/assets/app.Cujj9Dqk.js b/previews/PR479/assets/app.CTp7ev_O.js similarity index 95% rename from previews/PR479/assets/app.Cujj9Dqk.js rename to previews/PR479/assets/app.CTp7ev_O.js index 725ef669..f69a70e4 100644 --- a/previews/PR479/assets/app.Cujj9Dqk.js +++ b/previews/PR479/assets/app.CTp7ev_O.js @@ -1 +1 @@ -import{R as p}from"./chunks/theme.Cb66Hod8.js";import{R as o,a6 as u,a7 as c,a8 as l,a9 as f,aa as d,ab as m,ac as h,ad as g,ae as A,af as v,d as P,u as R,v as w,s as y,ag as C,ah as b,ai as E,a5 as S}from"./chunks/framework.DYY3HcdR.js";function i(e){if(e.extends){const a=i(e.extends);return{...a,...e,async enhanceApp(t){a.enhanceApp&&await a.enhanceApp(t),e.enhanceApp&&await e.enhanceApp(t)}}}return e}const s=i(p),T=P({name:"VitePressApp",setup(){const{site:e,lang:a,dir:t}=R();return w(()=>{y(()=>{document.documentElement.lang=a.value,document.documentElement.dir=t.value})}),e.value.router.prefetchLinks&&C(),b(),E(),s.setup&&s.setup(),()=>S(s.Layout)}});async function D(){globalThis.__VITEPRESS__=!0;const e=j(),a=_();a.provide(c,e);const t=l(e.route);return a.provide(f,t),a.component("Content",d),a.component("ClientOnly",m),Object.defineProperties(a.config.globalProperties,{$frontmatter:{get(){return t.frontmatter.value}},$params:{get(){return t.page.value.params}}}),s.enhanceApp&&await s.enhanceApp({app:a,router:e,siteData:h}),{app:a,router:e,data:t}}function _(){return g(T)}function j(){let e=o,a;return A(t=>{let n=v(t),r=null;return n&&(e&&(a=n),(e||a===n)&&(n=n.replace(/\.js$/,".lean.js")),r=import(n)),o&&(e=!1),r},s.NotFound)}o&&D().then(({app:e,router:a,data:t})=>{a.go().then(()=>{u(a.route,t.site),e.mount("#app")})});export{D as createApp}; +import{R as p}from"./chunks/theme.6qbPyd-G.js";import{R as o,a6 as u,a7 as c,a8 as l,a9 as f,aa as d,ab as m,ac as h,ad as g,ae as A,af as v,d as P,u as R,v as w,s as y,ag as C,ah as b,ai as E,a5 as S}from"./chunks/framework.DYY3HcdR.js";function i(e){if(e.extends){const a=i(e.extends);return{...a,...e,async enhanceApp(t){a.enhanceApp&&await a.enhanceApp(t),e.enhanceApp&&await e.enhanceApp(t)}}}return e}const s=i(p),T=P({name:"VitePressApp",setup(){const{site:e,lang:a,dir:t}=R();return w(()=>{y(()=>{document.documentElement.lang=a.value,document.documentElement.dir=t.value})}),e.value.router.prefetchLinks&&C(),b(),E(),s.setup&&s.setup(),()=>S(s.Layout)}});async function D(){globalThis.__VITEPRESS__=!0;const e=j(),a=_();a.provide(c,e);const t=l(e.route);return a.provide(f,t),a.component("Content",d),a.component("ClientOnly",m),Object.defineProperties(a.config.globalProperties,{$frontmatter:{get(){return t.frontmatter.value}},$params:{get(){return t.page.value.params}}}),s.enhanceApp&&await s.enhanceApp({app:a,router:e,siteData:h}),{app:a,router:e,data:t}}function _(){return g(T)}function j(){let e=o,a;return A(t=>{let n=v(t),r=null;return n&&(e&&(a=n),(e||a===n)&&(n=n.replace(/\.js$/,".lean.js")),r=import(n)),o&&(e=!1),r},s.NotFound)}o&&D().then(({app:e,router:a,data:t})=>{a.go().then(()=>{u(a.route,t.site),e.mount("#app")})});export{D as createApp}; diff --git a/previews/PR479/assets/chunks/@localSearchIndexroot.DBpPZp1N.js b/previews/PR479/assets/chunks/@localSearchIndexroot.DBpPZp1N.js deleted file mode 100644 index 74f1a899..00000000 --- a/previews/PR479/assets/chunks/@localSearchIndexroot.DBpPZp1N.js +++ /dev/null @@ -1 +0,0 @@ -const e='{"documentCount":107,"nextId":107,"documentIds":{"0":"/YAXArrays.jl/previews/PR479/UserGuide/cache.html#Caching-YAXArrays","1":"/YAXArrays.jl/previews/PR479/UserGuide/chunk.html#Chunk-YAXArrays","2":"/YAXArrays.jl/previews/PR479/UserGuide/chunk.html#Chunking-YAXArrays","3":"/YAXArrays.jl/previews/PR479/UserGuide/chunk.html#Chunking-Datasets","4":"/YAXArrays.jl/previews/PR479/UserGuide/chunk.html#Set-Chunks-by-Axis","5":"/YAXArrays.jl/previews/PR479/UserGuide/chunk.html#Set-chunking-by-Variable","6":"/YAXArrays.jl/previews/PR479/UserGuide/chunk.html#Set-chunking-for-all-variables","7":"/YAXArrays.jl/previews/PR479/UserGuide/combine.html#Combine-YAXArrays","8":"/YAXArrays.jl/previews/PR479/UserGuide/combine.html#cat-along-an-existing-dimension","9":"/YAXArrays.jl/previews/PR479/UserGuide/combine.html#concatenatecubes-to-a-new-dimension","10":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Compute-YAXArrays","11":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Modify-elements-of-a-YAXArray","12":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#arithmetics","13":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#map","14":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#mapslices","15":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#mapCube","16":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Operations-over-several-YAXArrays","17":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#OutDims-and-YAXArray-Properties","18":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#One-InDims-to-many-OutDims","19":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Many-InDims-to-many-OutDims","20":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Specify-path-in-OutDims","21":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Different-InDims-names","22":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Creating-a-vector-array","23":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Distributed-Computation","24":"/YAXArrays.jl/previews/PR479/UserGuide/convert.html#Convert-YAXArrays","25":"/YAXArrays.jl/previews/PR479/UserGuide/convert.html#Convert-Base.Array","26":"/YAXArrays.jl/previews/PR479/UserGuide/convert.html#Convert-Raster","27":"/YAXArrays.jl/previews/PR479/UserGuide/convert.html#Convert-DimArray","28":"/YAXArrays.jl/previews/PR479/UserGuide/create.html#Create-YAXArrays-and-Datasets","29":"/YAXArrays.jl/previews/PR479/UserGuide/create.html#Create-a-YAXArray","30":"/YAXArrays.jl/previews/PR479/UserGuide/create.html#Create-a-Dataset","31":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Frequently-Asked-Questions-(FAQ)","32":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Extract-the-axes-names-from-a-Cube","33":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#rebuild","34":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Obtain-values-from-axes-and-data-from-the-cube","35":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#How-do-I-concatenate-cubes","36":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#How-do-I-subset-a-YAXArray-(-Cube-)-or-Dataset?","37":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Subsetting-a-YAXArray","38":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Subsetting-a-Dataset","39":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Subsetting-a-Dataset-whose-variables-share-all-their-dimensions","40":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Subsetting-a-Dataset-whose-variables-share-some-but-not-all-of-their-dimensions","41":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#How-do-I-apply-map-algebra?","42":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#How-do-I-use-the-CubeTable-function?","43":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#How-do-I-assign-variable-names-to-YAXArrays-in-a-Dataset","44":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#One-variable-name","45":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Multiple-variable-names","46":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Ho-do-I-construct-a-Dataset-from-a-TimeArray","47":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Create-a-YAXArray-with-unions-containing-Strings","48":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#Group-YAXArrays-and-Datasets","49":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#Seasonal-Averages-from-Time-Series-of-Monthly-Means","50":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#Download-the-data","51":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#GroupBy:-seasons","52":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#dropdims","53":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#seasons","54":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#GroupBy:-weight","55":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#weights","56":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#weighted-seasons","57":"/YAXArrays.jl/previews/PR479/UserGuide/read.html#Read-YAXArrays-and-Datasets","58":"/YAXArrays.jl/previews/PR479/UserGuide/read.html#Read-Zarr","59":"/YAXArrays.jl/previews/PR479/UserGuide/read.html#Read-NetCDF","60":"/YAXArrays.jl/previews/PR479/UserGuide/read.html#Read-GDAL-(GeoTIFF,-GeoJSON)","61":"/YAXArrays.jl/previews/PR479/UserGuide/read.html#Load-data-into-memory","62":"/YAXArrays.jl/previews/PR479/UserGuide/read.html#readcubedata","63":"/YAXArrays.jl/previews/PR479/UserGuide/select.html#Select-YAXArrays-and-Datasets","64":"/YAXArrays.jl/previews/PR479/UserGuide/select.html#Select-a-YAXArray","65":"/YAXArrays.jl/previews/PR479/UserGuide/select.html#Select-elements","66":"/YAXArrays.jl/previews/PR479/UserGuide/select.html#Select-ranges","67":"/YAXArrays.jl/previews/PR479/UserGuide/select.html#Closed-and-open-intervals","68":"/YAXArrays.jl/previews/PR479/UserGuide/select.html#Get-a-dimension","69":"/YAXArrays.jl/previews/PR479/UserGuide/types.html#types","70":"/YAXArrays.jl/previews/PR479/UserGuide/types.html#yaxarray","71":"/YAXArrays.jl/previews/PR479/UserGuide/types.html#dataset","72":"/YAXArrays.jl/previews/PR479/UserGuide/types.html#(Data)-Cube","73":"/YAXArrays.jl/previews/PR479/UserGuide/types.html#dimension","74":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Write-YAXArrays-and-Datasets","75":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Write-Zarr","76":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#zarr-compression","77":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Write-NetCDF","78":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#netcdf-compression","79":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Overwrite-a-Dataset","80":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Append-to-a-Dataset","81":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Save-Skeleton","82":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Update-values-of-dataset","83":"/YAXArrays.jl/previews/PR479/api.html#API-Reference","84":"/YAXArrays.jl/previews/PR479/api.html#Public-API","85":"/YAXArrays.jl/previews/PR479/api.html#Internal-API","86":"/YAXArrays.jl/previews/PR479/development/contribute.html#Contribute-to-YAXArrays.jl","87":"/YAXArrays.jl/previews/PR479/development/contribute.html#Contribute-to-Documentation","88":"/YAXArrays.jl/previews/PR479/development/contribute.html#Build-docs-locally","89":"/YAXArrays.jl/previews/PR479/get_started.html#Getting-Started","90":"/YAXArrays.jl/previews/PR479/get_started.html#installation","91":"/YAXArrays.jl/previews/PR479/get_started.html#quickstart","92":"/YAXArrays.jl/previews/PR479/get_started.html#updates","93":"/YAXArrays.jl/previews/PR479/#How-to-Install-YAXArrays.jl?","94":"/YAXArrays.jl/previews/PR479/#Want-interoperability?","95":"/YAXArrays.jl/previews/PR479/tutorials/mean_seasonal_cycle.html#Mean-Seasonal-Cycle-for-a-single-pixel","96":"/YAXArrays.jl/previews/PR479/tutorials/mean_seasonal_cycle.html#Define-the-cube","97":"/YAXArrays.jl/previews/PR479/tutorials/mean_seasonal_cycle.html#Plot-results:-mean-seasonal-cycle","98":"/YAXArrays.jl/previews/PR479/tutorials/other_tutorials.html#Other-tutorials","99":"/YAXArrays.jl/previews/PR479/tutorials/other_tutorials.html#General-overview-of-the-functionality-of-YAXArrays","100":"/YAXArrays.jl/previews/PR479/tutorials/other_tutorials.html#Table-style-iteration-over-YAXArrays","101":"/YAXArrays.jl/previews/PR479/tutorials/other_tutorials.html#Combining-multiple-tiff-files-into-a-zarr-based-datacube","102":"/YAXArrays.jl/previews/PR479/tutorials/plottingmaps.html#Plotting-maps","103":"/YAXArrays.jl/previews/PR479/tutorials/plottingmaps.html#Heatmap-plot","104":"/YAXArrays.jl/previews/PR479/tutorials/plottingmaps.html#Wintri-Projection","105":"/YAXArrays.jl/previews/PR479/tutorials/plottingmaps.html#Moll-projection","106":"/YAXArrays.jl/previews/PR479/tutorials/plottingmaps.html#3D-sphere-plot"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[2,1,86],"1":[2,1,58],"2":[2,2,57],"3":[2,2,9],"4":[4,4,76],"5":[4,4,76],"6":[5,4,81],"7":[2,1,31],"8":[5,2,83],"9":[5,2,93],"10":[2,1,120],"11":[5,2,30],"12":[1,2,73],"13":[1,2,121],"14":[1,2,90],"15":[1,2,22],"16":[4,3,214],"17":[4,3,101],"18":[5,7,129],"19":[5,7,99],"20":[4,7,90],"21":[3,3,152],"22":[4,3,249],"23":[2,2,138],"24":[2,1,52],"25":[3,2,86],"26":[2,2,41],"27":[2,2,123],"28":[4,1,14],"29":[3,4,111],"30":[3,4,45],"31":[5,1,19],"32":[7,5,78],"33":[1,11,92],"34":[8,5,77],"35":[5,5,91],"36":[10,5,33],"37":[3,14,146],"38":[3,14,18],"39":[9,14,69],"40":[13,14,158],"41":[7,5,115],"42":[8,5,171],"43":[11,5,1],"44":[3,15,24],"45":[3,15,59],"46":[8,5,139],"47":[7,5,81],"48":[4,1,32],"49":[8,4,35],"50":[3,4,67],"51":[2,4,139],"52":[1,6,101],"53":[1,6,48],"54":[2,4,113],"55":[1,6,86],"56":[2,6,348],"57":[4,1,14],"58":[2,4,188],"59":[2,4,252],"60":[5,4,90],"61":[4,4,42],"62":[1,8,143],"63":[4,1,165],"64":[3,4,106],"65":[2,4,117],"66":[2,4,131],"67":[4,4,144],"68":[3,4,73],"69":[1,1,16],"70":[1,1,113],"71":[1,1,78],"72":[3,1,70],"73":[1,1,32],"74":[4,1,146],"75":[2,4,19],"76":[2,5,52],"77":[2,4,20],"78":[2,5,44],"79":[3,4,77],"80":[4,4,157],"81":[2,4,155],"82":[4,4,93],"83":[2,1,10],"84":[2,2,589],"85":[2,2,462],"86":[4,1,15],"87":[3,4,40],"88":[3,5,75],"89":[2,1,1],"90":[1,2,34],"91":[1,2,201],"92":[1,2,49],"93":[6,1,37],"94":[3,1,21],"95":[7,1,73],"96":[3,7,134],"97":[5,7,48],"98":[2,1,49],"99":[6,2,12],"100":[5,2,38],"101":[9,2,1],"102":[2,1,135],"103":[2,2,21],"104":[2,1,46],"105":[2,2,33],"106":[3,2,57]},"averageFieldLength":[3.504672897196263,3.822429906542055,91.66355140186914],"storedFields":{"0":{"title":"Caching YAXArrays","titles":[]},"1":{"title":"Chunk YAXArrays","titles":[]},"2":{"title":"Chunking YAXArrays","titles":["Chunk YAXArrays"]},"3":{"title":"Chunking Datasets","titles":["Chunk YAXArrays"]},"4":{"title":"Set Chunks by Axis","titles":["Chunk YAXArrays","Chunking Datasets"]},"5":{"title":"Set chunking by Variable","titles":["Chunk YAXArrays","Chunking Datasets"]},"6":{"title":"Set chunking for all variables","titles":["Chunk YAXArrays","Chunking Datasets"]},"7":{"title":"Combine YAXArrays","titles":[]},"8":{"title":"cat along an existing dimension","titles":["Combine YAXArrays"]},"9":{"title":"concatenatecubes to a new dimension","titles":["Combine YAXArrays"]},"10":{"title":"Compute YAXArrays","titles":[]},"11":{"title":"Modify elements of a YAXArray","titles":["Compute YAXArrays"]},"12":{"title":"Arithmetics","titles":["Compute YAXArrays"]},"13":{"title":"map","titles":["Compute YAXArrays"]},"14":{"title":"mapslices","titles":["Compute YAXArrays"]},"15":{"title":"mapCube","titles":["Compute YAXArrays"]},"16":{"title":"Operations over several YAXArrays","titles":["Compute YAXArrays","mapCube"]},"17":{"title":"OutDims and YAXArray Properties","titles":["Compute YAXArrays","mapCube"]},"18":{"title":"One InDims to many OutDims","titles":["Compute YAXArrays","mapCube","OutDims and YAXArray Properties"]},"19":{"title":"Many InDims to many OutDims","titles":["Compute YAXArrays","mapCube","OutDims and YAXArray Properties"]},"20":{"title":"Specify path in OutDims","titles":["Compute YAXArrays","mapCube","OutDims and YAXArray Properties"]},"21":{"title":"Different InDims names","titles":["Compute YAXArrays","mapCube"]},"22":{"title":"Creating a vector array","titles":["Compute YAXArrays","mapCube"]},"23":{"title":"Distributed Computation","titles":["Compute YAXArrays"]},"24":{"title":"Convert YAXArrays","titles":[]},"25":{"title":"Convert Base.Array","titles":["Convert YAXArrays"]},"26":{"title":"Convert Raster","titles":["Convert YAXArrays"]},"27":{"title":"Convert DimArray","titles":["Convert YAXArrays"]},"28":{"title":"Create YAXArrays and Datasets","titles":[]},"29":{"title":"Create a YAXArray","titles":["Create YAXArrays and Datasets"]},"30":{"title":"Create a Dataset","titles":["Create YAXArrays and Datasets"]},"31":{"title":"Frequently Asked Questions (FAQ)","titles":[]},"32":{"title":"Extract the axes names from a Cube","titles":["Frequently Asked Questions (FAQ)"]},"33":{"title":"rebuild","titles":["Frequently Asked Questions (FAQ)","Extract the axes names from a Cube"]},"34":{"title":"Obtain values from axes and data from the cube","titles":["Frequently Asked Questions (FAQ)"]},"35":{"title":"How do I concatenate cubes","titles":["Frequently Asked Questions (FAQ)"]},"36":{"title":"How do I subset a YAXArray ( Cube ) or Dataset?","titles":["Frequently Asked Questions (FAQ)"]},"37":{"title":"Subsetting a YAXArray","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?"]},"38":{"title":"Subsetting a Dataset","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?"]},"39":{"title":"Subsetting a Dataset whose variables share all their dimensions","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?","Subsetting a Dataset"]},"40":{"title":"Subsetting a Dataset whose variables share some but not all of their dimensions","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?","Subsetting a Dataset"]},"41":{"title":"How do I apply map algebra?","titles":["Frequently Asked Questions (FAQ)"]},"42":{"title":"How do I use the CubeTable function?","titles":["Frequently Asked Questions (FAQ)"]},"43":{"title":"How do I assign variable names to YAXArrays in a Dataset","titles":["Frequently Asked Questions (FAQ)"]},"44":{"title":"One variable name","titles":["Frequently Asked Questions (FAQ)","How do I assign variable names to YAXArrays in a Dataset"]},"45":{"title":"Multiple variable names","titles":["Frequently Asked Questions (FAQ)","How do I assign variable names to YAXArrays in a Dataset"]},"46":{"title":"Ho do I construct a Dataset from a TimeArray","titles":["Frequently Asked Questions (FAQ)"]},"47":{"title":"Create a YAXArray with unions containing Strings","titles":["Frequently Asked Questions (FAQ)"]},"48":{"title":"Group YAXArrays and Datasets","titles":[]},"49":{"title":"Seasonal Averages from Time Series of Monthly Means","titles":["Group YAXArrays and Datasets"]},"50":{"title":"Download the data","titles":["Group YAXArrays and Datasets"]},"51":{"title":"GroupBy: seasons","titles":["Group YAXArrays and Datasets"]},"52":{"title":"dropdims","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"53":{"title":"seasons","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"54":{"title":"GroupBy: weight","titles":["Group YAXArrays and Datasets"]},"55":{"title":"weights","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"56":{"title":"weighted seasons","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"57":{"title":"Read YAXArrays and Datasets","titles":[]},"58":{"title":"Read Zarr","titles":["Read YAXArrays and Datasets"]},"59":{"title":"Read NetCDF","titles":["Read YAXArrays and Datasets"]},"60":{"title":"Read GDAL (GeoTIFF, GeoJSON)","titles":["Read YAXArrays and Datasets"]},"61":{"title":"Load data into memory","titles":["Read YAXArrays and Datasets"]},"62":{"title":"readcubedata","titles":["Read YAXArrays and Datasets","Load data into memory"]},"63":{"title":"Select YAXArrays and Datasets","titles":[]},"64":{"title":"Select a YAXArray","titles":["Select YAXArrays and Datasets"]},"65":{"title":"Select elements","titles":["Select YAXArrays and Datasets"]},"66":{"title":"Select ranges","titles":["Select YAXArrays and Datasets"]},"67":{"title":"Closed and open intervals","titles":["Select YAXArrays and Datasets"]},"68":{"title":"Get a dimension","titles":["Select YAXArrays and Datasets"]},"69":{"title":"Types","titles":[]},"70":{"title":"YAXArray","titles":["Types"]},"71":{"title":"Dataset","titles":["Types"]},"72":{"title":"(Data) Cube","titles":["Types"]},"73":{"title":"Dimension","titles":["Types"]},"74":{"title":"Write YAXArrays and Datasets","titles":[]},"75":{"title":"Write Zarr","titles":["Write YAXArrays and Datasets"]},"76":{"title":"zarr compression","titles":["Write YAXArrays and Datasets","Write Zarr"]},"77":{"title":"Write NetCDF","titles":["Write YAXArrays and Datasets"]},"78":{"title":"netcdf compression","titles":["Write YAXArrays and Datasets","Write NetCDF"]},"79":{"title":"Overwrite a Dataset","titles":["Write YAXArrays and Datasets"]},"80":{"title":"Append to a Dataset","titles":["Write YAXArrays and Datasets"]},"81":{"title":"Save Skeleton","titles":["Write YAXArrays and Datasets"]},"82":{"title":"Update values of dataset","titles":["Write YAXArrays and Datasets"]},"83":{"title":"API Reference","titles":[]},"84":{"title":"Public API","titles":["API Reference"]},"85":{"title":"Internal API","titles":["API Reference"]},"86":{"title":"Contribute to YAXArrays.jl","titles":[]},"87":{"title":"Contribute to Documentation","titles":["Contribute to YAXArrays.jl"]},"88":{"title":"Build docs locally","titles":["Contribute to YAXArrays.jl","Contribute to Documentation"]},"89":{"title":"Getting Started","titles":[]},"90":{"title":"Installation","titles":["Getting Started"]},"91":{"title":"Quickstart","titles":["Getting Started"]},"92":{"title":"Updates","titles":["Getting Started"]},"93":{"title":"How to Install YAXArrays.jl?","titles":[]},"94":{"title":"Want interoperability?","titles":[]},"95":{"title":"Mean Seasonal Cycle for a single pixel","titles":[]},"96":{"title":"Define the cube","titles":["Mean Seasonal Cycle for a single pixel"]},"97":{"title":"Plot results: mean seasonal cycle","titles":["Mean Seasonal Cycle for a single pixel"]},"98":{"title":"Other tutorials","titles":[]},"99":{"title":"General overview of the functionality of YAXArrays","titles":["Other tutorials"]},"100":{"title":"Table-style iteration over YAXArrays","titles":["Other tutorials"]},"101":{"title":"Combining multiple tiff files into a zarr based datacube","titles":["Other tutorials"]},"102":{"title":"Plotting maps","titles":[]},"103":{"title":"Heatmap plot","titles":["Plotting maps"]},"104":{"title":"Wintri Projection","titles":[]},"105":{"title":"Moll projection","titles":["Wintri Projection"]},"106":{"title":"3D sphere plot","titles":["Wintri Projection"]}},"dirtCount":0,"index":[["δlon",{"2":{"104":1}}],["├─────────────────────┴─────────────────────────────────────────",{"2":{"47":1}}],["├─────────────────────────┴──────────────────────────",{"2":{"37":1}}],["├─────────────────────────┴─────────────────────────────────────",{"2":{"91":1}}],["├─────────────────────────┴──────────────────────────────────────",{"2":{"33":1}}],["├─────────────────────────┴──────────────────────────────────────────────",{"2":{"34":1,"42":1}}],["├─────────────────────────┴─────────────────────────────────────────",{"2":{"19":1}}],["├─────────────────────────┴──────────────────────────────────",{"2":{"27":2}}],["├─────────────────────────┴─────────────────────────────────",{"2":{"9":1}}],["├──────────────────────────┴────────────────────────────────────",{"2":{"25":1}}],["├──────────────────────────┴─────────────────────────────────────────────",{"2":{"22":1,"37":1}}],["├────────────────────────────┴───────────────────────────────────────────",{"2":{"37":2}}],["├─────────────────────────────┴──────────────────────────────────",{"2":{"29":1}}],["├─────────────────────────────┴──────────────────────────────────────────",{"2":{"16":1,"32":1}}],["├───────────────────────────────┴────────────────────────────────────────",{"2":{"55":1}}],["├──────────────────────────────────┴─────────────────────────────────────",{"2":{"96":1}}],["├────────────────────────────────────┴───────────────────────────────────",{"2":{"58":1}}],["├──────────────────────────────────────┴────────────────────────",{"2":{"47":1}}],["├────────────────────────────────────────",{"2":{"37":1}}],["├──────────────────────────────────────────┴─────────────────────────────",{"2":{"22":1,"42":1}}],["├─────────────────────────────────────────────┴─────────────────",{"2":{"65":1}}],["├───────────────────────────────────────────────┴────────────────────────",{"2":{"42":1,"66":1,"67":5}}],["├────────────────────────────────────────────────",{"2":{"27":1,"37":1}}],["├─────────────────────────────────────────────────",{"2":{"21":1}}],["├──────────────────────────────────────────────────┴─────────────────────",{"2":{"51":1}}],["├────────────────────────────────────────────────────",{"2":{"29":1,"33":1}}],["├────────────────────────────────────────────────────────",{"2":{"27":2}}],["├───────────────────────────────────────────────────────────",{"2":{"25":1,"47":2,"91":1}}],["├────────────────────────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"14":2,"16":3,"17":1,"18":1,"21":2,"22":2,"29":2,"32":1,"33":3,"34":1,"37":4,"41":3,"42":3,"54":1,"62":3,"81":1,"91":1,"96":1}}],["├─────────────────────────────────────────────────────────────────",{"2":{"65":1}}],["├──────────────────────────────────────────────────────────────────",{"2":{"51":1,"54":1}}],["├─────────────────────────────────────────────────────────────────────┴",{"2":{"65":1}}],["├────────────────────────────────────────────────────────────────────────",{"2":{"51":1,"52":1,"54":1,"55":1,"56":3}}],["├────────────────────────────────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"21":2,"22":3,"29":1,"32":1,"33":2,"34":1,"35":1,"37":4,"41":3,"42":3,"51":2,"52":1,"54":3,"55":2,"56":3,"58":1,"59":1,"62":3,"64":2,"65":2,"66":3,"67":5,"81":1,"91":1,"96":1}}],["├───────────────────────────────────────────────────────────────",{"2":{"16":2,"19":1,"35":1,"58":1,"59":1,"64":2,"65":2,"66":3,"67":5}}],["├─────────────────────────────────────────────────────────────",{"2":{"8":1}}],["├───────────────────────────────────────────────────────",{"2":{"9":1,"19":1}}],["├─────────────────────────────────────────────────────",{"2":{"8":1}}],["├───────────────────────────────────────────────────",{"2":{"25":1,"47":2,"91":1}}],["├──────────────────────────────────────────────────",{"2":{"9":1}}],["├────────────────────────────────────────────────┴───────────────────────",{"2":{"14":1,"54":1,"59":1,"62":3,"64":2,"65":2}}],["├──────────────────────────────────────────────┴─────────────────────────",{"2":{"16":2,"41":1,"66":2}}],["├───────────────────────────────────────────┴────────────────────────────",{"2":{"14":1,"18":1,"21":1,"81":1}}],["├─────────────────────────────────────────",{"2":{"21":1}}],["├────────────────────────────────┴───────────────────────────────────────",{"2":{"35":1,"91":1}}],["├────────────────────────────────┴────────────────────────────────",{"2":{"8":1}}],["├──────────────────────────────┴─────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"16":2,"22":1,"29":1,"41":2,"54":1}}],["├───────────────────────────┴─────────────────────────",{"2":{"21":1}}],["├───────────────────────────┴────────────────────────────────────────────",{"2":{"17":1,"21":1,"22":1,"33":2,"37":1}}],["╭─────────────────────╮",{"2":{"47":1}}],["╭──────────────────────────╮",{"2":{"22":1,"25":1,"37":1}}],["╭────────────────────────────╮",{"2":{"37":2}}],["╭─────────────────────────────╮",{"2":{"16":1,"29":1,"32":1}}],["╭───────────────────────────────╮",{"2":{"55":1}}],["╭──────────────────────────────────╮",{"2":{"96":1}}],["╭────────────────────────────────────╮",{"2":{"58":1}}],["╭──────────────────────────────────────╮",{"2":{"47":1}}],["╭──────────────────────────────────────────╮",{"2":{"22":1,"42":1}}],["╭─────────────────────────────────────────────╮",{"2":{"65":1}}],["╭──────────────────────────────────────────────────────────────────────────────╮",{"2":{"51":1,"52":1,"54":1,"55":1,"56":3}}],["╭──────────────────────────────────────────────────╮",{"2":{"51":1}}],["╭────────────────────────────────────────────────╮",{"2":{"14":1,"54":1,"59":1,"62":3,"64":2,"65":2}}],["╭───────────────────────────────────────────────╮",{"2":{"42":1,"66":1,"67":5}}],["╭──────────────────────────────────────────────╮",{"2":{"16":2,"41":1,"66":2}}],["╭───────────────────────────────────────────╮",{"2":{"14":1,"18":1,"21":1,"81":1}}],["╭────────────────────────────────╮",{"2":{"8":1,"35":1,"91":1}}],["╭──────────────────────────────╮",{"2":{"10":1,"12":1,"13":1,"16":2,"22":1,"29":1,"41":2,"54":1}}],["╭───────────────────────────╮",{"2":{"17":1,"21":2,"22":1,"33":2,"37":1}}],["╭─────────────────────────╮",{"2":{"9":1,"19":1,"27":2,"33":1,"34":1,"37":1,"42":1,"91":1}}],["π",{"2":{"41":2,"95":1,"97":1}}],[">var",{"2":{"96":1}}],[">dates",{"2":{"96":1}}],[">month",{"2":{"84":1}}],[">abs",{"2":{"84":1}}],[">=",{"2":{"40":4}}],[">",{"2":{"40":2,"41":2,"96":1}}],["└──────────────────────────────────────────────────────────┘",{"2":{"37":1}}],["└───────────────────────────────────────────────────────────┘",{"2":{"21":1}}],["└──────────────────────────────────────────────────────────────────┘",{"2":{"27":2}}],["└──────────────────────────────────────────────────────────────────────┘",{"2":{"29":1,"33":1}}],["└────────────────────────────────────────────────────────────────────────────────┘",{"2":{"65":1}}],["└──────────────────────────────────────────────────────────────────────────────┘",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"21":2,"22":4,"29":1,"32":1,"33":2,"34":1,"35":1,"37":4,"41":3,"42":3,"51":2,"52":1,"54":3,"55":2,"56":3,"58":1,"59":1,"62":3,"64":2,"65":2,"66":3,"67":5,"81":1,"91":1,"96":1}}],["└─────────────────────────────────────────────────────────────────────────┘",{"2":{"19":1}}],["└───────────────────────────────────────────────────────────────────────┘",{"2":{"8":1}}],["└─────────────────────────────────────────────────────────────────────┘",{"2":{"25":1,"47":2,"91":1}}],["└─────────────────────────────────────────────────────────────────┘",{"2":{"9":1}}],["`diskarrays",{"2":{"85":1}}],["`ds`",{"2":{"84":1}}],["`ordereddict`",{"2":{"84":1}}],["`fun`",{"2":{"84":1}}],["`a",{"2":{"37":1}}],["`layer`",{"2":{"18":1}}],["quickstart",{"0":{"91":1}}],["query",{"2":{"63":1}}],["querying",{"2":{"62":1}}],["questions",{"0":{"31":1},"1":{"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1}}],["quot",{"2":{"16":2,"42":2,"79":2,"81":4,"84":16,"85":12}}],["jj+1",{"2":{"59":1,"63":1,"74":1,"80":1}}],["jj",{"2":{"59":1,"63":1,"74":1,"80":1}}],["joinname",{"2":{"84":1}}],["joinname=",{"2":{"84":1}}],["journal",{"2":{"59":1,"63":1,"74":1,"80":1}}],["joe",{"2":{"49":1,"56":1}}],["j",{"2":{"56":8}}],["jan",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["jl",{"0":{"86":1,"93":1},"1":{"87":1,"88":1},"2":{"26":1,"27":1,"42":1,"46":2,"50":1,"56":1,"70":1,"73":1,"86":1,"88":2,"90":1,"91":2,"92":3,"93":2,"100":1}}],["jussieu",{"2":{"59":1,"63":1,"74":1,"80":1}}],["just",{"2":{"22":1,"70":1,"72":1,"84":1,"85":2}}],["jul",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["juliaδlon",{"2":{"104":1}}],["juliaglmakie",{"2":{"103":1}}],["juliagetloopchunks",{"2":{"85":1}}],["juliagetouttype",{"2":{"85":1}}],["juliagetoutaxis",{"2":{"85":1}}],["juliaget",{"2":{"85":1}}],["juliagetaxis",{"2":{"84":1}}],["juliagettarrayaxes",{"2":{"46":1}}],["juliagen",{"2":{"16":1}}],["juliax",{"2":{"95":1}}],["juliapkg>",{"2":{"90":1,"92":1,"93":1}}],["juliapermuteloopaxes",{"2":{"85":1}}],["juliaproperties",{"2":{"19":1}}],["juliaoptifunc",{"2":{"85":1}}],["juliaopen",{"2":{"84":1}}],["juliaoutdims",{"2":{"84":1}}],["juliaoffset",{"2":{"13":1}}],["juliacopydata",{"2":{"85":1}}],["juliacollect",{"2":{"34":1,"68":1}}],["juliaclean",{"2":{"85":1}}],["juliacube",{"2":{"84":1}}],["juliacubefittable",{"2":{"84":1}}],["juliacubetable",{"2":{"84":1}}],["juliacaxes",{"2":{"84":1}}],["julian",{"2":{"76":1,"78":1}}],["juliasavecube",{"2":{"84":1}}],["juliasavedataset",{"2":{"75":1,"77":1,"79":1}}],["juliasetchunks",{"2":{"84":1,"85":1}}],["juliaseasons",{"2":{"53":1}}],["julialon",{"2":{"102":1}}],["julialookup",{"2":{"68":1}}],["julialatitudes",{"2":{"40":1}}],["juliawith",{"2":{"56":1}}],["julia>",{"2":{"56":1,"88":1,"93":2,"96":2}}],["juliaurl",{"2":{"50":1}}],["juliausing",{"2":{"0":1,"2":1,"4":1,"5":1,"6":1,"8":1,"9":1,"10":1,"16":1,"17":1,"22":1,"23":2,"25":1,"26":1,"27":1,"29":2,"32":1,"33":1,"35":1,"37":1,"39":1,"40":1,"42":2,"46":1,"48":1,"56":1,"58":1,"59":1,"60":1,"63":1,"65":1,"67":1,"74":1,"75":1,"77":1,"81":1,"91":1,"94":4,"95":1,"102":1,"106":1}}],["juliakeylist",{"2":{"45":1}}],["juliaylonlat",{"2":{"37":1}}],["juliaytime3",{"2":{"37":1}}],["juliaytime2",{"2":{"37":1}}],["juliaytime",{"2":{"37":1}}],["juliay",{"2":{"37":1}}],["juliayaxcolumn",{"2":{"85":1}}],["juliayaxarray",{"2":{"84":1}}],["juliayax",{"2":{"0":1,"46":2}}],["juliatos",{"2":{"64":2,"65":2,"66":3,"67":1,"68":1}}],["juliatempo",{"2":{"54":1}}],["juliatest",{"2":{"47":2}}],["juliat",{"2":{"37":1,"42":1,"95":1}}],["juliatspan",{"2":{"16":1}}],["juliamutable",{"2":{"85":1}}],["juliamatch",{"2":{"85":1}}],["juliamapcube",{"2":{"84":2}}],["juliamapslices",{"2":{"14":1,"23":1}}],["juliamovingwindow",{"2":{"84":1}}],["juliamy",{"2":{"59":1}}],["juliamean",{"2":{"56":1}}],["juliam2",{"2":{"25":1}}],["julia",{"2":{"24":1,"59":1,"85":1,"88":1,"90":2,"91":1,"92":2,"93":2}}],["juliavector",{"2":{"22":1}}],["juliadataset",{"2":{"84":1}}],["juliadata3",{"2":{"30":1}}],["juliadim",{"2":{"27":1}}],["juliadimarray",{"2":{"22":1}}],["juliads2",{"2":{"80":1}}],["juliads",{"2":{"18":2,"20":2,"21":1,"39":1,"40":1,"58":1,"59":1,"62":2,"78":1,"81":2,"82":3}}],["juliar",{"2":{"81":1}}],["juliareadcubedata",{"2":{"62":1,"84":1}}],["juliaregions",{"2":{"22":2}}],["juliaras2",{"2":{"26":1}}],["juliarandom",{"2":{"21":2}}],["juliaindims",{"2":{"18":1,"20":1,"84":1}}],["juliaimport",{"2":{"14":1,"90":1}}],["juliajulia>",{"2":{"16":5,"32":3,"33":2,"34":1,"35":1,"41":3,"42":3,"44":1,"45":1,"46":2,"51":2,"52":1,"54":2,"55":2,"56":3,"67":4,"80":1,"81":1,"93":1,"96":2,"102":3}}],["juliaall",{"2":{"81":1}}],["juliaaxs",{"2":{"50":1}}],["juliaaxes",{"2":{"37":1}}],["juliaa2",{"2":{"12":2,"29":2,"91":1}}],["juliaa",{"2":{"2":1,"11":3}}],["juliafig",{"2":{"95":1,"97":1,"104":1,"105":1}}],["juliafindaxis",{"2":{"85":1}}],["juliafiles",{"2":{"84":2}}],["juliafittable",{"2":{"84":2}}],["juliafunction",{"2":{"16":1,"18":1,"19":1,"21":1,"51":1,"84":1,"96":1}}],["juliaf",{"2":{"2":1,"4":1,"5":1,"6":1,"16":1}}],["jun",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["∘",{"2":{"23":1}}],["|>",{"2":{"22":2}}],["⋱",{"2":{"22":1}}],["⋮",{"2":{"22":2,"68":1,"96":1}}],["^2",{"2":{"21":1}}],["⬔",{"2":{"17":1,"18":1,"35":1,"91":1}}],["991786",{"2":{"91":1}}],["990276",{"2":{"91":1}}],["922125",{"2":{"91":1}}],["926096",{"2":{"27":1}}],["9538",{"2":{"91":1}}],["953391",{"2":{"27":1}}],["95",{"2":{"56":1}}],["959",{"2":{"56":1}}],["971131",{"2":{"91":1}}],["97649",{"2":{"56":1}}],["97047",{"2":{"56":1}}],["973332",{"2":{"27":1}}],["948244",{"2":{"82":2}}],["94534",{"2":{"56":1}}],["9404",{"2":{"51":1,"52":1}}],["9432",{"2":{"51":1,"52":1}}],["949935",{"2":{"25":1}}],["986",{"2":{"56":1}}],["98",{"2":{"40":6}}],["984803",{"2":{"22":1}}],["90712",{"2":{"56":1}}],["90365",{"2":{"56":1}}],["90",{"2":{"40":2,"60":1,"67":5}}],["9122",{"2":{"60":1}}],["9192",{"2":{"56":1}}],["91",{"2":{"32":1,"67":5}}],["916686",{"2":{"27":1}}],["918555",{"2":{"25":1}}],["935884",{"2":{"91":1}}],["935631",{"2":{"25":1}}],["939296",{"2":{"91":1}}],["93986",{"2":{"22":1}}],["9375",{"2":{"58":2,"102":1}}],["93743",{"2":{"56":1}}],["9362",{"2":{"56":1}}],["9",{"2":{"16":14,"22":2,"34":1,"37":1,"54":4,"66":4,"76":2,"78":1,"85":1}}],["961913",{"2":{"91":1}}],["96x71x19",{"2":{"59":1,"63":1,"74":1,"80":1}}],["96f0",{"2":{"59":1,"63":1,"74":1}}],["9682",{"2":{"51":1,"52":1}}],["960",{"2":{"17":1,"18":1,"22":1}}],["96",{"2":{"8":1,"9":1,"40":6,"65":2,"80":1}}],["891257",{"2":{"82":2}}],["8901",{"2":{"60":1}}],["89",{"2":{"58":4,"59":2,"60":1,"62":3,"63":1,"64":2,"65":1,"66":1,"67":5,"68":1,"74":1,"80":1,"102":2}}],["8984",{"2":{"56":1}}],["89237",{"2":{"56":1}}],["860688",{"2":{"82":2}}],["86",{"2":{"68":1}}],["86457",{"2":{"56":1}}],["862644",{"2":{"27":1}}],["855984",{"2":{"91":1}}],["85",{"2":{"68":1,"104":1,"105":1}}],["850",{"2":{"56":1}}],["85ºn",{"2":{"40":1}}],["85714",{"2":{"22":1}}],["88",{"2":{"35":1,"58":4,"68":1,"91":1,"102":2}}],["889583",{"2":{"22":1}}],["816865",{"2":{"91":1}}],["81",{"2":{"29":1,"68":1}}],["839919",{"2":{"91":1}}],["83",{"2":{"68":1}}],["830391",{"2":{"25":1}}],["83556",{"2":{"25":1}}],["87",{"2":{"68":1}}],["87705",{"2":{"56":1}}],["872575",{"2":{"27":1}}],["870826",{"2":{"25":1}}],["875658",{"2":{"22":1}}],["84",{"2":{"60":2,"68":1}}],["845983",{"2":{"25":1}}],["840389",{"2":{"22":1}}],["8256",{"2":{"91":1}}],["82",{"2":{"68":1}}],["82421875",{"2":{"60":2}}],["824354",{"2":{"22":1}}],["829062",{"2":{"22":1}}],["8",{"2":{"16":12,"22":2,"34":1,"37":1,"59":2,"62":3,"63":1,"64":2,"74":1,"80":1,"96":1}}],["80759",{"2":{"56":1}}],["800",{"2":{"33":3,"34":1,"37":1}}],["80",{"2":{"16":1,"40":2}}],["v",{"2":{"59":1,"63":1,"74":1,"80":1}}],["v1",{"2":{"59":2,"63":2,"74":2,"80":2,"90":1}}],["v20190710",{"2":{"58":1,"102":2}}],["vol",{"2":{"59":1,"63":1,"74":1,"80":1}}],["volume",{"2":{"46":4}}],["voilà",{"2":{"46":1}}],["video",{"2":{"98":1}}],["videos",{"2":{"98":1}}],["visualization",{"2":{"42":1}}],["vice",{"2":{"24":1}}],["view",{"2":{"22":1,"91":1}}],["version",{"2":{"58":1,"59":1,"63":1,"74":1,"80":1,"84":1,"92":2,"93":1,"102":1}}],["versa",{"2":{"24":1}}],["verify",{"2":{"55":1,"82":1}}],["very",{"2":{"13":1,"42":1,"70":1}}],["vector",{"0":{"22":1},"2":{"22":4,"34":1,"47":1,"51":1,"53":1,"54":2,"55":2,"56":1,"68":1,"70":1,"84":2,"85":3}}],["val",{"2":{"34":2,"68":1}}],["vals",{"2":{"22":1}}],["value",{"2":{"12":1,"14":3,"16":2,"41":1,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5,"84":4,"85":1}}],["values=ds1",{"2":{"42":1}}],["values",{"0":{"34":1,"82":1},"2":{"9":1,"20":1,"21":1,"22":2,"28":1,"29":2,"32":2,"33":1,"34":1,"40":3,"42":4,"45":1,"46":2,"66":1,"68":2,"70":1,"71":1,"81":1,"82":3,"84":9,"91":1,"102":1}}],["varoables",{"2":{"84":1}}],["variant",{"2":{"58":1,"102":1}}],["variable",{"0":{"5":1,"43":1,"44":1,"45":1},"1":{"44":1,"45":1},"2":{"5":1,"9":1,"40":3,"58":1,"62":2,"81":2,"84":1,"85":6,"91":1,"95":1,"96":1,"97":1,"102":1}}],["variables=at",{"2":{"41":2,"91":1}}],["variables",{"0":{"6":1,"39":1,"40":1},"2":{"4":5,"5":4,"6":2,"9":4,"17":2,"18":1,"19":1,"20":1,"21":1,"24":1,"30":1,"35":2,"38":1,"39":2,"40":11,"44":1,"45":4,"46":11,"58":4,"59":1,"60":1,"61":1,"62":1,"63":1,"71":1,"72":1,"74":1,"80":4,"81":1,"84":5,"85":1,"91":2,"102":4}}],["varlist",{"2":{"45":2}}],["var2=var2",{"2":{"39":1}}],["var2",{"2":{"35":2,"39":3,"41":1}}],["var1=var1",{"2":{"39":1}}],["var1",{"2":{"35":2,"39":3,"41":1}}],["var",{"2":{"9":2,"95":2,"96":2,"97":2}}],["uv",{"2":{"106":1}}],["u",{"2":{"96":1}}],["up",{"2":{"84":1}}],["updates",{"0":{"92":1}}],["updated",{"2":{"82":1}}],["update",{"0":{"82":1},"2":{"82":2,"84":1}}],["updating",{"2":{"48":1,"82":1}}],["ucar",{"2":{"59":1,"63":1,"71":1,"74":1}}],["urls",{"2":{"57":1}}],["url",{"2":{"50":1,"58":1}}],["unreleased",{"2":{"93":1}}],["unpermuted",{"2":{"85":2}}],["unpractical",{"2":{"50":1}}],["underlying",{"2":{"84":1,"85":1,"92":1}}],["unlike",{"2":{"72":1}}],["unique",{"2":{"96":1}}],["unidata",{"2":{"59":1,"63":1,"71":1,"74":1}}],["unit",{"2":{"60":1}}],["units",{"2":{"58":1,"59":2,"62":6,"64":4,"65":6,"66":6,"67":10}}],["unitrange",{"2":{"51":2,"52":2,"56":6}}],["unions",{"0":{"47":1}}],["union",{"2":{"14":2,"16":4,"18":2,"20":1,"21":1,"22":1,"41":1,"42":2,"47":2,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5,"81":2,"82":1}}],["unweighted",{"2":{"51":1,"56":1}}],["unordered",{"2":{"46":4,"51":2,"52":1,"53":1,"54":2,"55":2,"56":3}}],["unnecessary",{"2":{"22":1}}],["unchanged",{"2":{"13":1}}],["usually",{"2":{"58":1,"70":2,"71":2}}],["usual",{"2":{"51":1}}],["us",{"2":{"22":1}}],["useable",{"2":{"84":1}}],["used",{"2":{"22":1,"23":1,"37":1,"63":1,"68":1,"69":1,"70":1,"73":1,"84":6,"85":3}}],["uses",{"2":{"20":1,"42":1,"59":1}}],["userguide",{"2":{"87":2}}],["users",{"2":{"85":1}}],["user",{"2":{"10":2,"12":1,"13":1,"23":1,"29":3,"30":1,"85":1}}],["use",{"0":{"42":1},"2":{"0":1,"8":1,"9":1,"10":4,"13":1,"23":2,"32":2,"37":1,"39":1,"40":1,"41":1,"42":2,"46":2,"48":1,"50":1,"52":1,"61":1,"67":2,"72":1,"76":1,"81":1,"84":4,"85":1,"93":1,"98":1,"100":1,"102":2}}],["useful",{"2":{"0":1,"72":1}}],["using",{"2":{"0":1,"8":2,"9":2,"10":2,"16":3,"17":4,"22":3,"23":8,"27":1,"29":1,"32":1,"33":2,"35":2,"37":2,"39":2,"40":2,"41":1,"42":1,"46":3,"48":5,"58":2,"59":3,"60":2,"61":1,"63":2,"65":3,"66":2,"74":2,"80":1,"81":3,"91":1,"92":1,"93":1,"95":2,"96":2,"102":3}}],["+proj=moll",{"2":{"105":1}}],["+",{"2":{"12":2,"13":1,"16":2,"18":2,"21":1,"95":1,"104":1}}],["kwargs",{"2":{"84":5,"85":2}}],["know",{"2":{"62":1}}],["k",{"2":{"46":5,"58":1,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5}}],["keyword",{"2":{"80":1,"84":6,"85":2}}],["key",{"2":{"48":1,"84":1}}],["keyset",{"2":{"46":1}}],["keys",{"2":{"46":7,"84":1}}],["keylist",{"2":{"45":1}}],["keeps",{"2":{"13":1}}],["keep",{"2":{"0":1,"85":1}}],["kb",{"2":{"10":1,"12":1,"13":1,"14":1,"16":2,"22":1,"29":2,"32":1,"35":1,"37":4,"41":3,"42":1,"65":1,"66":3,"67":5,"91":1,"96":1}}],["↗",{"2":{"10":1,"12":1,"13":1,"16":2,"17":1,"18":1,"19":1,"20":1,"21":3,"22":1,"29":3,"30":1,"32":3,"35":1,"37":5,"39":2,"41":3,"51":1,"58":2,"59":2,"62":3,"63":1,"64":2,"66":3,"67":5,"74":1,"80":2,"81":2,"91":1,"102":1}}],["046745",{"2":{"91":1}}],["0465",{"2":{"56":1}}],["0e8",{"2":{"84":1}}],["02",{"2":{"58":1}}],["0210077",{"2":{"25":1}}],["0214057",{"2":{"25":1}}],["0f20",{"2":{"58":1,"59":2,"62":6,"64":4,"65":6,"66":6,"67":10}}],["0f32",{"2":{"16":2}}],["030090414984429516",{"2":{"96":1}}],["03361",{"2":{"56":1}}],["0358348",{"2":{"25":1}}],["0617443331324013",{"2":{"96":1}}],["0625",{"2":{"58":2,"102":1}}],["0620649",{"2":{"27":1}}],["062032476785460866",{"2":{"11":1}}],["06755",{"2":{"56":1}}],["08536931940151503",{"2":{"96":1}}],["0893687",{"2":{"91":1}}],["0887544",{"2":{"82":2}}],["08",{"2":{"54":1}}],["09779224328472132",{"2":{"96":1}}],["0900259",{"2":{"91":1}}],["09",{"2":{"54":1}}],["0ºe",{"2":{"40":1}}],["07565180270644235",{"2":{"96":1}}],["0766027",{"2":{"91":1}}],["07",{"2":{"58":2,"102":1}}],["0702532",{"2":{"27":1}}],["0723492",{"2":{"22":1}}],["0012862484521267356",{"2":{"96":1}}],["00372526",{"2":{"91":1}}],["00388",{"2":{"56":1}}],["00277787",{"2":{"82":2}}],["00722034",{"2":{"56":1}}],["00709111",{"2":{"56":1}}],["006364171431821925",{"2":{"96":1}}],["00684233",{"2":{"56":1}}],["00693713",{"2":{"56":1}}],["00990356",{"2":{"56":1}}],["0057",{"2":{"56":1}}],["00",{"2":{"20":4,"46":16,"54":4,"58":9,"59":8,"62":12,"63":4,"64":8,"65":8,"66":12,"67":20,"74":4,"80":4,"102":5}}],["05203842202056678",{"2":{"96":1}}],["052264",{"2":{"27":1}}],["0586963181904983",{"2":{"96":1}}],["05846",{"2":{"56":1}}],["0537",{"2":{"51":1,"52":1}}],["0566881",{"2":{"27":1}}],["05t00",{"2":{"20":1}}],["05",{"2":{"17":2,"18":1,"21":3,"37":3}}],["019199882044045064",{"2":{"96":1}}],["019016",{"2":{"56":1}}],["0174532925199433",{"2":{"60":1}}],["0178074",{"2":{"56":1}}],["01t03",{"2":{"58":2,"102":1}}],["01t00",{"2":{"20":1,"46":4,"58":2,"102":1}}],["0118366",{"2":{"91":1}}],["0117519",{"2":{"56":1}}],["0115514",{"2":{"56":1}}],["0127077",{"2":{"56":1}}],["0123091",{"2":{"56":1}}],["0121037",{"2":{"56":1}}],["018571",{"2":{"56":1}}],["0182373",{"2":{"56":1}}],["0180572",{"2":{"56":1}}],["0183003",{"2":{"56":1}}],["018",{"2":{"51":1,"52":1}}],["01",{"2":{"10":6,"12":3,"13":3,"14":3,"16":12,"17":6,"18":3,"20":2,"21":9,"22":9,"23":3,"29":9,"30":3,"37":22,"39":8,"40":11,"46":8,"58":5,"59":4,"62":6,"63":2,"64":4,"65":6,"66":6,"67":10,"74":2,"80":2,"95":2,"96":4,"102":5}}],["0",{"2":{"8":1,"9":1,"10":6,"11":2,"12":6,"13":6,"14":7,"16":303,"17":7,"18":7,"19":7,"20":6,"21":10,"22":75,"25":36,"27":45,"29":12,"30":6,"33":3,"34":1,"35":9,"37":1,"40":4,"41":27,"42":11,"47":2,"54":2,"55":40,"56":19,"58":7,"59":10,"60":6,"62":12,"63":6,"64":8,"65":6,"66":14,"67":20,"68":6,"74":6,"76":1,"78":1,"79":1,"80":6,"81":1,"82":40,"84":2,"85":1,"91":80,"92":1,"95":2,"96":19,"97":1,"102":4,"104":2,"105":2,"106":2}}],["┤",{"2":{"8":2,"9":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":2,"18":2,"19":2,"21":6,"22":5,"25":2,"27":3,"29":4,"32":2,"33":6,"34":2,"35":2,"37":10,"41":6,"42":6,"47":4,"51":4,"52":2,"54":6,"55":3,"56":6,"58":2,"59":2,"62":6,"64":4,"65":5,"66":6,"67":10,"81":2,"91":4,"96":2}}],["┐",{"2":{"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"21":3,"22":4,"25":1,"27":2,"29":2,"32":1,"33":3,"34":1,"35":1,"37":5,"41":3,"42":3,"47":2,"51":1,"54":2,"55":1,"58":1,"59":1,"62":3,"64":2,"65":4,"66":3,"67":5,"81":1,"91":2,"96":1}}],["│",{"2":{"8":2,"9":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":2,"18":2,"19":2,"21":6,"22":8,"25":2,"27":4,"29":4,"32":2,"33":6,"34":2,"35":2,"37":10,"41":6,"42":6,"47":4,"51":4,"52":2,"54":6,"55":4,"56":6,"58":2,"59":2,"62":6,"64":4,"65":6,"66":6,"67":10,"81":2,"91":4,"96":2}}],["72",{"2":{"68":1}}],["76",{"2":{"68":1}}],["709999",{"2":{"91":1}}],["70",{"2":{"66":3,"68":1}}],["7030",{"2":{"60":1}}],["701332",{"2":{"22":1}}],["730",{"2":{"97":1}}],["735264",{"2":{"91":1}}],["733172",{"2":{"91":1}}],["738327",{"2":{"91":1}}],["7341",{"2":{"56":1}}],["73",{"2":{"56":1,"68":1}}],["731779",{"2":{"27":1}}],["79",{"2":{"59":2,"62":3,"63":1,"64":2,"65":2,"66":4,"67":5,"68":1,"74":1,"80":1}}],["79502",{"2":{"56":1}}],["796375",{"2":{"27":1}}],["75",{"2":{"68":1}}],["7593",{"2":{"56":1}}],["75891",{"2":{"56":1}}],["75269",{"2":{"25":1}}],["752417",{"2":{"22":1}}],["771179",{"2":{"91":1}}],["771583",{"2":{"91":1}}],["778954",{"2":{"91":1}}],["77",{"2":{"68":1}}],["77687",{"2":{"56":1}}],["77587",{"2":{"56":1}}],["770949",{"2":{"27":1}}],["749822",{"2":{"91":1}}],["74",{"2":{"68":1}}],["744521",{"2":{"27":1}}],["74732",{"2":{"25":1}}],["711506",{"2":{"91":1}}],["7119",{"2":{"51":1,"52":1}}],["719692",{"2":{"82":2}}],["717",{"2":{"67":5}}],["71",{"2":{"66":1,"68":1}}],["7158",{"2":{"51":1,"52":1}}],["718667",{"2":{"27":1}}],["71314",{"2":{"27":1}}],["71429",{"2":{"22":2}}],["783581",{"2":{"91":1}}],["781572",{"2":{"82":2}}],["781773",{"2":{"22":1}}],["782494",{"2":{"82":2}}],["78",{"2":{"66":1,"68":1}}],["78467",{"2":{"25":1}}],["789891",{"2":{"25":1}}],["7",{"2":{"8":1,"16":10,"21":3,"22":1,"29":1,"34":1,"58":1,"78":1,"102":1}}],["→",{"2":{"4":1,"5":1,"6":1,"9":1,"10":1,"12":1,"13":1,"14":1,"16":2,"17":1,"18":1,"19":1,"20":1,"21":3,"22":6,"25":1,"27":3,"29":3,"30":1,"32":3,"33":3,"34":1,"35":1,"37":6,"39":2,"40":2,"41":3,"42":2,"45":2,"46":4,"47":2,"51":1,"58":2,"59":2,"60":1,"62":3,"63":1,"64":2,"65":1,"66":3,"67":5,"74":1,"80":2,"81":2,"91":2,"102":1}}],["↓",{"2":{"4":3,"5":3,"6":1,"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"20":1,"21":3,"22":6,"25":1,"27":3,"29":3,"30":1,"32":3,"33":3,"34":1,"35":1,"37":6,"39":2,"40":8,"41":3,"42":3,"44":1,"45":3,"46":4,"47":2,"51":3,"52":1,"54":4,"55":2,"56":3,"58":2,"59":2,"60":1,"62":3,"63":1,"64":2,"65":3,"66":3,"67":5,"74":1,"80":2,"81":2,"91":2,"96":2,"102":1}}],["457345",{"2":{"91":1}}],["45015",{"2":{"91":1}}],["45354",{"2":{"91":1}}],["45×170×24",{"2":{"67":5}}],["456765",{"2":{"25":1}}],["48",{"2":{"91":1}}],["48367",{"2":{"56":1}}],["480",{"2":{"21":2,"42":1}}],["414006",{"2":{"82":2}}],["4198",{"2":{"56":1}}],["41241",{"2":{"56":1}}],["41049",{"2":{"56":1}}],["41634",{"2":{"56":1}}],["417937",{"2":{"22":1}}],["405317",{"2":{"91":1}}],["409244",{"2":{"91":1}}],["40",{"2":{"40":2}}],["400731",{"2":{"91":1}}],["400",{"2":{"25":1,"81":1,"95":1,"97":1}}],["44",{"2":{"37":1,"41":3}}],["49909",{"2":{"56":1}}],["4947",{"2":{"56":1}}],["492817",{"2":{"27":1}}],["497189",{"2":{"22":1}}],["4326",{"2":{"60":1}}],["43254",{"2":{"56":1}}],["4325",{"2":{"51":1,"52":1}}],["432286",{"2":{"22":1}}],["435994",{"2":{"27":1}}],["475594",{"2":{"91":1}}],["475725",{"2":{"27":1}}],["472308",{"2":{"22":1}}],["4×30",{"2":{"22":1}}],["4×3×7",{"2":{"21":1}}],["4×3×2",{"2":{"19":1}}],["46506",{"2":{"56":1}}],["465103",{"2":{"22":1}}],["46",{"2":{"35":1,"91":1}}],["463503",{"2":{"22":1}}],["427021",{"2":{"91":1}}],["426519",{"2":{"25":1}}],["42857",{"2":{"22":2}}],["42",{"2":{"11":3}}],["4",{"2":{"4":4,"5":4,"16":4,"17":4,"18":2,"19":2,"20":1,"21":8,"22":9,"27":1,"34":1,"35":1,"40":6,"51":2,"52":1,"53":1,"54":2,"55":2,"56":4,"81":3,"82":2,"91":3,"95":1,"97":1}}],["3d",{"0":{"106":1}}],["3hr",{"2":{"58":2,"102":3}}],["34818",{"2":{"56":1}}],["34832",{"2":{"56":1}}],["348362",{"2":{"25":1}}],["34549",{"2":{"56":1}}],["34218",{"2":{"56":1}}],["33565",{"2":{"56":1}}],["337926",{"2":{"25":1}}],["32876",{"2":{"91":1}}],["32555",{"2":{"56":1}}],["3252",{"2":{"51":1,"52":1}}],["32149",{"2":{"56":1}}],["3×3",{"2":{"47":1}}],["3×20",{"2":{"42":1}}],["384×192×251288",{"2":{"58":1}}],["3866",{"2":{"56":1}}],["38364",{"2":{"56":1}}],["3835",{"2":{"51":1,"52":1}}],["38",{"2":{"37":1,"66":3}}],["319698",{"2":{"91":1}}],["312",{"2":{"56":1}}],["31753",{"2":{"56":1}}],["3169",{"2":{"56":1}}],["3188",{"2":{"56":1}}],["31",{"2":{"37":2,"39":1,"40":1,"95":1,"96":2}}],["366",{"2":{"97":1}}],["366625",{"2":{"27":1}}],["365×1",{"2":{"96":1}}],["365",{"2":{"96":1,"97":4}}],["360748",{"2":{"91":1}}],["3600",{"2":{"37":1,"39":2}}],["363668",{"2":{"82":2}}],["36126",{"2":{"56":1}}],["36142",{"2":{"56":1}}],["36836",{"2":{"56":1}}],["369",{"2":{"40":1}}],["36",{"2":{"37":1,"39":2,"40":1,"54":1}}],["364288",{"2":{"25":1}}],["37",{"2":{"59":2,"62":3,"63":1,"64":2,"65":3,"66":3,"67":5,"74":1,"80":1}}],["372",{"2":{"56":1}}],["372761",{"2":{"22":1}}],["37878",{"2":{"56":1}}],["376135",{"2":{"22":1}}],["35700351866494",{"2":{"58":4,"102":2}}],["35432",{"2":{"56":1}}],["35483",{"2":{"56":1}}],["359",{"2":{"40":1,"58":2,"59":2,"62":3,"63":1,"64":2,"65":1,"68":2,"74":1,"80":1,"102":1}}],["35",{"2":{"10":1,"12":1,"13":1,"22":1,"29":1}}],["307f8f0e584a39a050c042849004e6a2bd674f99",{"2":{"60":1}}],["3069",{"2":{"56":1}}],["30018",{"2":{"56":1}}],["30142",{"2":{"56":1}}],["30113",{"2":{"56":1}}],["30×15×10",{"2":{"16":1}}],["30×10×15",{"2":{"10":1,"12":1,"13":1,"22":1,"29":1}}],["30",{"2":{"10":3,"12":1,"13":1,"14":2,"16":5,"22":5,"23":2,"26":2,"29":4,"30":2,"56":2,"58":1,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5,"102":1}}],["395451",{"2":{"91":1}}],["391546",{"2":{"91":1}}],["39",{"2":{"10":1,"16":3,"18":1,"19":1,"33":1,"35":1,"37":1,"39":1,"40":1,"41":2,"56":1,"61":1,"62":1,"63":1,"73":1,"76":1,"84":2,"87":4,"96":3}}],["3",{"2":{"4":8,"5":8,"6":10,"10":1,"11":3,"12":3,"13":2,"16":4,"17":3,"18":1,"19":3,"20":1,"21":14,"22":6,"27":1,"29":3,"32":5,"34":1,"37":4,"41":4,"42":5,"46":1,"47":2,"51":2,"56":31,"58":1,"59":1,"62":3,"64":2,"66":4,"67":5,"80":1,"81":3,"84":1,"91":3,"95":2}}],["zoom",{"2":{"106":1}}],["zopen",{"2":{"58":1,"82":1,"102":1}}],["zeros",{"2":{"81":3,"96":1}}],["z",{"2":{"4":2,"5":3,"6":2,"80":2}}],["zarray",{"2":{"82":1}}],["zarr",{"0":{"58":1,"75":1,"76":1,"101":1},"1":{"76":1},"2":{"0":1,"2":2,"4":2,"5":2,"6":2,"16":5,"17":1,"20":2,"23":1,"27":1,"47":1,"58":3,"75":5,"76":5,"79":3,"80":4,"81":6,"82":2,"84":2,"85":2,"94":2,"102":1}}],["xticklabelalign",{"2":{"95":1,"97":1}}],["xticklabelrotation",{"2":{"95":1,"97":1}}],["xlabel=",{"2":{"95":1,"97":1}}],["xx",{"2":{"59":1,"63":1,"74":1,"80":1}}],["xarray",{"2":{"49":1,"50":1}}],["x26",{"2":{"22":12,"40":12}}],["x3c",{"2":{"22":12,"40":4,"84":1}}],["xyz",{"2":{"21":2}}],["xy",{"2":{"19":2}}],["xyt",{"2":{"19":2,"21":2}}],["xin",{"2":{"18":8,"19":11,"21":8,"22":3,"41":3}}],["xout",{"2":{"16":2,"18":6,"19":6,"21":2,"22":3}}],["x",{"2":{"4":2,"5":3,"6":2,"13":2,"26":1,"27":3,"41":4,"47":2,"51":2,"52":1,"56":3,"60":1,"70":1,"82":2,"85":1,"91":3,"95":1,"96":6}}],["ndata",{"2":{"104":2,"105":1,"106":1}}],["ndays",{"2":{"96":4}}],["nlon",{"2":{"104":2,"105":1}}],["npy",{"2":{"95":2,"96":2}}],["nin",{"2":{"85":2}}],["ntr",{"2":{"85":1}}],["ntuple",{"2":{"85":4}}],["nthreads",{"2":{"84":2}}],["nvalid",{"2":{"84":1}}],["n",{"2":{"69":1,"84":3}}],["n256",{"2":{"56":1}}],["nan",{"2":{"50":1,"51":48,"52":48,"56":384}}],["name=cube",{"2":{"84":1}}],["named",{"2":{"63":1,"65":1,"66":1,"70":1,"84":2,"92":1}}],["namedtuple",{"2":{"18":1,"20":1,"84":1,"85":3}}],["names",{"0":{"21":1,"32":1,"43":1,"45":1},"1":{"33":1,"44":1,"45":1},"2":{"29":2,"46":1,"53":1,"70":2,"84":2,"85":1}}],["namely",{"2":{"16":1,"17":1}}],["name",{"0":{"44":1},"2":{"2":1,"18":4,"20":1,"45":1,"56":1,"58":3,"59":4,"62":12,"64":8,"65":12,"66":12,"67":20,"73":1,"81":2,"84":6,"85":5,"91":1}}],["nc",{"2":{"50":2,"59":2,"63":2,"74":2,"77":2,"78":3,"84":6}}],["number",{"2":{"49":1,"54":1,"76":1,"78":1,"84":2,"85":1,"96":1}}],["numbers",{"2":{"10":1,"91":1}}],["nout",{"2":{"85":2}}],["normal",{"2":{"84":1,"106":1}}],["north",{"2":{"60":1}}],["nometadata",{"2":{"51":3,"52":2,"54":1,"55":1,"56":10}}],["november",{"2":{"59":1,"63":1,"74":1,"80":1}}],["nov",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["nonmissingtype",{"2":{"85":1}}],["none",{"2":{"40":2,"45":1,"46":1,"58":1,"80":1,"102":1}}],["non",{"2":{"23":1,"84":1,"85":1,"95":1}}],["now",{"2":{"16":3,"18":1,"22":1,"33":1,"35":1,"37":1,"42":1,"46":1,"51":1,"52":1,"54":1,"56":1,"81":2,"82":1,"88":1}}],["no",{"2":{"14":1,"21":1,"27":1,"36":1,"76":1,"78":1,"81":1,"84":1,"85":1}}],["notice",{"2":{"76":1}}],["notation",{"2":{"37":1,"67":1}}],["nothing",{"2":{"18":1,"19":1,"21":1,"51":2,"54":2,"55":2,"56":5,"79":1,"84":1,"85":1}}],["note",{"2":{"9":1,"13":1,"16":4,"18":1,"21":1,"22":1,"33":1,"40":1,"47":1,"52":1,"59":1,"62":1,"81":1,"84":1,"85":1}}],["not",{"0":{"40":1},"2":{"0":1,"1":1,"13":1,"36":1,"40":3,"45":1,"46":2,"47":1,"50":1,"59":1,"81":2,"84":3,"85":3}}],["neighbour",{"2":{"84":1}}],["neighboring",{"2":{"13":1}}],["near",{"2":{"58":2,"67":1,"102":1}}],["needed",{"2":{"84":1}}],["need",{"2":{"45":1,"82":1,"84":1,"85":1,"87":1}}],["next",{"2":{"41":1,"42":1,"53":1,"88":2}}],["netcdf4",{"2":{"59":1}}],["netcdf",{"0":{"59":1,"77":1,"78":1},"1":{"78":1},"2":{"27":1,"47":1,"48":2,"59":4,"61":1,"63":2,"71":3,"74":2,"77":3,"78":2,"79":1,"84":2,"94":2}}],["necessary",{"2":{"16":1,"49":1,"50":1,"82":1,"85":4}}],["newdim",{"2":{"84":1}}],["new",{"0":{"9":1},"2":{"10":1,"12":1,"16":1,"29":1,"32":1,"33":3,"48":1,"50":1,"53":1,"72":1,"79":1,"80":1,"81":1,"84":5,"85":4,"87":6,"96":1}}],["bits",{"2":{"84":2}}],["big",{"2":{"70":1}}],["black",{"2":{"97":1}}],["blocks",{"2":{"84":1}}],["blosccompressor",{"2":{"76":1}}],["blue",{"2":{"60":1,"71":1}}],["bonito",{"2":{"106":1}}],["boundaries",{"2":{"85":1}}],["bounds",{"2":{"84":1}}],["bold",{"2":{"56":1}}],["bool=true",{"2":{"85":1}}],["bool=false",{"2":{"84":1,"85":1}}],["boolean",{"2":{"84":3}}],["bool",{"2":{"47":3,"85":6}}],["bwr",{"2":{"56":1}}],["b`",{"2":{"37":1}}],["broad",{"2":{"99":1}}],["broadcasts",{"2":{"85":1}}],["broadcast",{"2":{"51":1,"56":1}}],["broadcasted",{"2":{"16":2,"84":1,"85":1}}],["brown",{"2":{"97":1}}],["browser",{"2":{"88":1}}],["brightness",{"2":{"70":1,"71":1}}],["brings",{"2":{"85":1}}],["bring",{"2":{"34":1}}],["branch",{"2":{"58":1,"102":1}}],["bug",{"2":{"86":1}}],["bundle",{"2":{"71":1}}],["build",{"0":{"88":1},"2":{"32":1,"88":1}}],["but",{"0":{"40":1},"2":{"8":1,"16":2,"32":1,"33":2,"40":2,"45":1,"46":2,"59":1,"65":1,"66":1,"84":2}}],["b",{"2":{"17":2,"18":1,"19":1,"20":1,"22":13,"45":2,"67":2,"84":2}}],["backgroundcolor=",{"2":{"106":1}}],["back",{"2":{"84":1}}],["backend",{"2":{"79":2,"84":8}}],["backendlist",{"2":{"48":1,"84":1}}],["backend=",{"2":{"2":1,"16":2,"80":1}}],["based",{"0":{"101":1},"2":{"84":1,"85":1}}],["base",{"0":{"25":1},"2":{"4":4,"5":4,"6":2,"18":1,"20":1,"25":4,"29":3,"32":9,"33":6,"44":1,"45":5,"47":4,"81":6,"85":1,"91":2}}],["by=",{"2":{"42":2,"84":2}}],["bytes",{"2":{"8":1,"9":1,"14":1,"16":3,"17":1,"18":1,"19":1,"21":3,"22":1,"25":1,"27":1,"33":3,"34":1,"37":1,"42":2,"47":2,"54":1,"65":2,"78":4,"81":1,"91":1}}],["by",{"0":{"4":1,"5":1},"2":{"2":1,"10":2,"14":1,"16":1,"22":1,"28":1,"29":1,"33":1,"36":1,"37":6,"40":2,"42":1,"49":1,"53":1,"54":1,"55":1,"56":1,"58":1,"59":1,"70":3,"72":1,"73":1,"79":1,"82":2,"84":12,"85":6,"87":1,"88":1,"90":1,"96":1}}],["beware",{"2":{"98":1}}],["best",{"2":{"85":1,"100":1}}],["become",{"2":{"84":1}}],["because",{"2":{"1":1,"13":1,"14":1,"16":1}}],["before",{"2":{"81":1,"84":1,"88":1}}],["belonging",{"2":{"71":1}}],["belongs",{"2":{"22":1}}],["being",{"2":{"46":1}}],["been",{"2":{"40":1,"82":1}}],["between",{"2":{"26":1,"27":1,"37":1,"39":1,"40":2,"67":1,"76":1,"78":1,"84":1}}],["begin",{"2":{"23":1}}],["be",{"2":{"0":5,"2":1,"3":1,"4":1,"13":1,"15":1,"16":2,"22":1,"24":1,"37":1,"40":1,"41":1,"42":2,"45":1,"46":1,"50":1,"58":2,"59":1,"60":1,"61":2,"62":1,"68":1,"70":1,"72":2,"79":1,"80":1,"81":1,"84":23,"85":9,"87":1,"92":1,"93":1,"98":1,"102":1}}],["629872",{"2":{"91":1}}],["62639",{"2":{"82":2}}],["663392",{"2":{"91":1}}],["669125",{"2":{"82":2}}],["66729",{"2":{"82":2}}],["665723",{"2":{"25":1}}],["63291",{"2":{"91":1}}],["6326",{"2":{"60":1}}],["630988",{"2":{"91":1}}],["630526",{"2":{"82":2}}],["63006",{"2":{"56":1}}],["6378137",{"2":{"60":1}}],["69",{"2":{"58":1}}],["69085",{"2":{"56":1}}],["600",{"2":{"95":1,"97":1,"103":1,"104":1,"105":1}}],["607943",{"2":{"91":1}}],["60265",{"2":{"58":1,"102":1}}],["60918",{"2":{"56":1}}],["60175",{"2":{"56":1}}],["657324",{"2":{"91":1}}],["65105",{"2":{"56":1}}],["652339",{"2":{"25":1}}],["641411",{"2":{"91":1}}],["647058",{"2":{"91":1}}],["64976",{"2":{"56":1}}],["642",{"2":{"50":1}}],["645758",{"2":{"25":1}}],["6122",{"2":{"56":1}}],["61197",{"2":{"56":1}}],["611084",{"2":{"25":1}}],["619",{"2":{"51":1,"52":1}}],["617023",{"2":{"27":1}}],["671473",{"2":{"91":1}}],["671662",{"2":{"22":1}}],["678562",{"2":{"91":1}}],["673373",{"2":{"25":1}}],["672",{"2":{"21":1}}],["687891",{"2":{"27":1}}],["684389",{"2":{"22":1}}],["685454",{"2":{"22":1}}],["6×2",{"2":{"9":1}}],["6",{"2":{"2":6,"4":6,"5":6,"6":6,"8":4,"9":5,"16":8,"22":1,"34":1,"37":1,"58":1,"102":1}}],["1e8",{"2":{"85":1}}],["1f2",{"2":{"47":1}}],["191654",{"2":{"91":1}}],["1992",{"2":{"84":1}}],["1991",{"2":{"84":1}}],["1990",{"2":{"84":1}}],["195437",{"2":{"82":2}}],["1984",{"2":{"60":1}}],["1983",{"2":{"54":1}}],["1980",{"2":{"54":1}}],["193109",{"2":{"27":1}}],["197238",{"2":{"25":1}}],["19241",{"2":{"56":1}}],["192",{"2":{"19":1,"104":1}}],["19",{"2":{"16":16,"66":3,"67":5}}],["182827",{"2":{"91":1}}],["1851357399351781",{"2":{"96":1}}],["1850454989838767",{"2":{"96":1}}],["18507",{"2":{"91":1}}],["18583",{"2":{"56":1}}],["18892",{"2":{"56":1}}],["18434",{"2":{"56":1}}],["180×170",{"2":{"65":1}}],["180×170×24",{"2":{"59":1,"62":3,"64":2}}],["180",{"2":{"40":2,"60":1,"67":5,"104":1}}],["180ºe",{"2":{"40":1}}],["18",{"2":{"16":18}}],["148753",{"2":{"91":1}}],["1437",{"2":{"56":1}}],["145747",{"2":{"22":1}}],["14286",{"2":{"22":1}}],["14",{"2":{"16":20,"27":1}}],["13102300858571433",{"2":{"96":1}}],["1373199053065047",{"2":{"96":1}}],["1372",{"2":{"51":1,"52":1}}],["13068",{"2":{"91":1}}],["136",{"2":{"59":1,"63":1,"74":1,"80":1}}],["1363",{"2":{"51":1,"52":1}}],["13z",{"2":{"58":2,"102":1}}],["13205",{"2":{"27":1}}],["13",{"2":{"16":20,"27":1,"59":1,"63":1,"74":1,"80":1}}],["170",{"2":{"68":1}}],["179",{"2":{"60":1,"67":5}}],["17578125",{"2":{"60":2}}],["17593",{"2":{"22":1}}],["17434",{"2":{"56":1}}],["174934",{"2":{"25":1}}],["17852",{"2":{"56":1}}],["17863",{"2":{"56":1}}],["178603",{"2":{"22":1}}],["17647",{"2":{"56":1}}],["1762",{"2":{"51":1,"52":1}}],["17t00",{"2":{"54":1}}],["172",{"2":{"47":1}}],["17",{"2":{"14":1,"16":22,"42":1,"66":1}}],["16t00",{"2":{"59":4,"62":6,"63":2,"64":4,"65":4,"66":6,"67":10,"74":2,"80":2}}],["16t12",{"2":{"54":1}}],["1644",{"2":{"56":1}}],["16824",{"2":{"56":1}}],["16581",{"2":{"56":1}}],["166982",{"2":{"91":1}}],["16631",{"2":{"56":1}}],["166212",{"2":{"25":1}}],["16713",{"2":{"56":1}}],["167676",{"2":{"22":1}}],["16258",{"2":{"56":1}}],["169284",{"2":{"25":1}}],["16",{"2":{"10":1,"12":1,"13":1,"16":20,"22":1,"29":1,"59":2,"62":3,"63":1,"64":2,"65":4,"66":3,"67":5,"74":1,"80":1}}],["1578236499134987",{"2":{"96":1}}],["159",{"2":{"66":1}}],["15644",{"2":{"56":1}}],["15532",{"2":{"56":1}}],["151146",{"2":{"25":1}}],["152534",{"2":{"25":1}}],["15394",{"2":{"22":1}}],["15×10×30",{"2":{"16":1}}],["15×10",{"2":{"16":2}}],["15",{"2":{"10":1,"16":25,"22":6,"23":1,"27":4,"29":1,"30":1,"35":2,"42":1,"91":1}}],["128",{"2":{"106":1}}],["128204",{"2":{"25":1}}],["12673714160438732",{"2":{"96":1}}],["125769",{"2":{"82":2}}],["12575",{"2":{"56":1}}],["1242",{"2":{"56":1}}],["121",{"2":{"47":1}}],["121947",{"2":{"22":1}}],["123",{"2":{"17":1,"21":2}}],["1200",{"2":{"103":1,"104":1,"105":1}}],["120997",{"2":{"22":1}}],["120",{"2":{"16":1}}],["12",{"2":{"8":4,"16":20,"27":1,"37":10,"39":3,"40":4,"59":2,"62":3,"63":1,"64":2,"65":2,"66":3,"67":5,"74":1,"80":1,"95":1,"96":2}}],["1=5",{"2":{"2":1}}],["11037641658890784",{"2":{"96":1}}],["1159916",{"2":{"78":1}}],["119937",{"2":{"91":1}}],["119",{"2":{"65":1}}],["1181",{"2":{"56":1}}],["113553",{"2":{"55":3}}],["112319",{"2":{"55":12}}],["114815",{"2":{"55":6}}],["11",{"2":{"2":6,"4":6,"5":6,"6":6,"8":1,"16":18,"27":1,"51":4,"52":4,"56":4,"59":2,"62":3,"63":1,"64":2,"65":3,"66":3,"67":5,"74":1,"80":1}}],["1",{"2":{"2":12,"4":19,"5":20,"6":22,"8":5,"9":3,"10":8,"11":3,"12":7,"13":5,"14":6,"16":24,"17":10,"18":9,"19":8,"20":5,"21":17,"22":34,"23":3,"25":1,"26":2,"27":6,"29":15,"30":4,"32":3,"33":3,"34":8,"35":8,"37":23,"39":10,"40":8,"41":15,"42":14,"44":1,"45":3,"46":1,"47":5,"51":4,"52":2,"54":6,"55":10,"56":54,"58":4,"59":12,"62":12,"63":4,"64":8,"65":13,"66":18,"67":15,"68":2,"74":4,"80":11,"81":2,"82":2,"85":1,"91":11,"95":2,"96":5,"97":5,"102":3,"104":4,"105":2,"106":5}}],["10986528577255357",{"2":{"96":1}}],["10989",{"2":{"55":6}}],["1095",{"2":{"96":1}}],["10mb",{"2":{"84":2}}],["102816",{"2":{"82":2}}],["102333",{"2":{"82":2}}],["10850864324777372",{"2":{"96":1}}],["1083",{"2":{"56":1}}],["108696",{"2":{"55":6}}],["103704",{"2":{"55":3}}],["10×170×24",{"2":{"66":1}}],["10×10×24",{"2":{"66":2}}],["10×10×8",{"2":{"37":1}}],["10×10×12",{"2":{"37":1}}],["10×10×36",{"2":{"37":1}}],["10×10×5",{"2":{"32":1}}],["10×10",{"2":{"33":3,"34":1,"37":1}}],["10×15×20",{"2":{"41":1}}],["10×15",{"2":{"14":1,"22":2,"42":1,"91":1}}],["10×20×5",{"2":{"29":1}}],["100",{"2":{"40":7}}],["100622",{"2":{"27":1}}],["1000",{"2":{"0":1,"104":1,"105":1}}],["10x15",{"2":{"22":1}}],["101524",{"2":{"22":1}}],["10",{"2":{"2":14,"4":16,"5":18,"6":17,"10":3,"12":1,"13":1,"14":1,"16":21,"22":15,"23":3,"25":2,"27":4,"29":6,"30":2,"32":8,"33":12,"34":5,"35":4,"37":16,"39":10,"41":3,"42":2,"44":2,"45":4,"58":1,"59":2,"62":3,"64":2,"65":3,"66":6,"67":5,"80":2,"90":1,"91":3}}],["garbage",{"2":{"85":1}}],["gc",{"2":{"85":2}}],["gt",{"2":{"84":1,"85":3,"88":1}}],["gdalworkshop",{"2":{"60":1}}],["gdal",{"0":{"60":1},"2":{"60":1}}],["gb",{"2":{"58":1}}],["gn",{"2":{"58":1,"102":2}}],["gs",{"2":{"58":1,"102":2}}],["ggplot2",{"2":{"56":1}}],["github",{"2":{"50":2,"60":1,"86":1}}],["gives",{"2":{"22":1}}],["given",{"2":{"2":1,"22":2,"70":1,"72":1,"79":1,"84":6,"85":3,"91":1}}],["glob",{"2":{"84":1}}],["globalproperties=dict",{"2":{"85":1}}],["global",{"2":{"84":1,"85":1}}],["glmakie",{"2":{"42":2,"94":1,"102":2}}],["glue",{"2":{"8":1}}],["gradient",{"2":{"103":1,"104":1,"105":1,"106":1}}],["gradually",{"2":{"81":1}}],["grey25",{"2":{"106":1}}],["grey15",{"2":{"42":1,"56":1}}],["greenwich",{"2":{"60":1}}],["green",{"2":{"60":1,"71":1}}],["grouped",{"2":{"84":1}}],["groups",{"2":{"55":1}}],["groupby",{"0":{"51":1,"54":1},"1":{"52":1,"53":1,"55":1,"56":1},"2":{"48":1,"50":1,"51":6,"52":1,"53":1,"54":3,"55":3,"56":3,"84":1,"96":1}}],["group",{"0":{"48":1},"1":{"49":1,"50":1,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1},"2":{"51":1,"53":1,"54":2,"71":1,"84":3}}],["grouping",{"2":{"42":2,"53":2}}],["grid=false",{"2":{"56":1}}],["grid",{"2":{"23":1,"70":1,"84":1}}],["gridchunks",{"2":{"2":3,"4":1,"5":1,"6":1,"84":1,"85":1}}],["go",{"2":{"88":2}}],["going",{"2":{"85":1}}],["good",{"2":{"56":1}}],["goal",{"2":{"21":1,"33":1,"49":1}}],["goes",{"2":{"16":2,"84":1,"85":1}}],["guide",{"2":{"10":2,"12":1,"13":1,"23":1,"29":3,"30":1}}],["gen",{"2":{"16":6}}],["general",{"0":{"99":1},"2":{"84":1,"93":1}}],["generated",{"2":{"59":1,"63":1,"74":1,"80":1,"85":1}}],["generate",{"2":{"16":2,"37":1,"39":1,"40":1,"84":1,"88":1}}],["generic",{"2":{"16":2,"18":1,"19":1,"21":1,"29":1,"84":1}}],["getting",{"0":{"89":1},"1":{"90":1,"91":1,"92":1}}],["gettarrayaxes",{"2":{"46":1}}],["getarrayinfo",{"2":{"85":1}}],["getaxis",{"2":{"34":1,"42":2,"84":1}}],["getloopchunks",{"2":{"85":1}}],["getloopcachesize",{"2":{"85":1}}],["getouttype",{"2":{"85":1}}],["getoutaxis",{"2":{"85":1}}],["getfrontperm",{"2":{"85":1}}],["gets",{"2":{"84":1,"85":1}}],["get",{"0":{"68":1},"2":{"10":1,"18":1,"32":1,"50":1,"54":1,"64":1,"66":1,"68":1,"85":3,"91":1,"96":1,"102":1}}],["geoaxis",{"2":{"104":1,"105":1}}],["geometrybasics",{"2":{"102":1}}],["geomakie",{"2":{"94":1,"102":1,"104":2,"105":1}}],["geogcs",{"2":{"60":1}}],["geojson",{"0":{"60":1}}],["geotiff",{"0":{"60":1}}],["geo",{"2":{"1":1}}],["g",{"2":{"7":1,"10":1,"11":1,"13":1,"16":4,"23":1,"29":1,"51":26,"52":2,"53":2,"54":2,"55":1,"56":18,"68":1,"70":1,"73":1,"84":5,"102":2}}],["2π",{"2":{"95":1}}],["2×3",{"2":{"91":1}}],["2×2×3",{"2":{"4":1,"5":1,"6":1}}],["2×2",{"2":{"2":3,"47":1}}],["2x2l31",{"2":{"59":1,"63":1,"74":1,"80":1}}],["2963860",{"2":{"78":1}}],["298",{"2":{"60":1}}],["29816",{"2":{"56":1}}],["29473",{"2":{"56":1}}],["29564",{"2":{"56":1}}],["271921",{"2":{"91":1}}],["2747",{"2":{"56":1}}],["273",{"2":{"54":1}}],["276",{"2":{"54":2}}],["270",{"2":{"54":1}}],["27",{"2":{"51":1,"52":1,"56":1}}],["275×205×9",{"2":{"51":4}}],["2f0",{"2":{"47":1}}],["284649",{"2":{"91":1}}],["28422753251364",{"2":{"58":4,"102":2}}],["28008",{"2":{"56":1}}],["2894",{"2":{"56":1}}],["288",{"2":{"54":1}}],["2818",{"2":{"51":1,"52":1}}],["28",{"2":{"37":1,"51":3,"52":3,"56":3}}],["28571",{"2":{"22":2}}],["2857142857142857",{"2":{"10":1,"12":1,"13":1,"14":1,"22":3,"29":2,"30":1,"35":1,"41":3,"42":1,"91":1}}],["2d",{"2":{"19":5,"20":3,"21":2}}],["263789",{"2":{"91":1}}],["26274",{"2":{"56":1}}],["268675",{"2":{"27":1}}],["265797",{"2":{"25":1}}],["26",{"2":{"16":2,"58":2,"102":1}}],["253963",{"2":{"91":1}}],["257223563",{"2":{"60":1}}],["25153",{"2":{"56":1}}],["25",{"2":{"16":4,"26":2,"37":1,"95":1}}],["24375",{"2":{"56":1}}],["2434",{"2":{"56":1}}],["241882",{"2":{"25":1}}],["24",{"2":{"16":6,"42":1,"65":2}}],["240",{"2":{"14":1,"16":1,"27":1}}],["230869",{"2":{"91":1}}],["23",{"2":{"16":8,"41":3,"56":1,"59":2,"62":3,"63":1,"64":2,"65":3,"66":3,"67":5,"74":1,"80":1}}],["223412",{"2":{"91":1}}],["22211",{"2":{"56":1}}],["225542",{"2":{"27":1}}],["22",{"2":{"16":10}}],["21t06",{"2":{"58":2,"102":1}}],["21t19",{"2":{"46":4}}],["2101",{"2":{"58":2,"102":1}}],["21699",{"2":{"56":1}}],["21209",{"2":{"56":1}}],["215973",{"2":{"27":1}}],["21",{"2":{"16":12,"51":8,"52":8,"56":8}}],["2=10",{"2":{"2":1}}],["2",{"2":{"2":3,"4":8,"5":9,"6":10,"8":1,"9":1,"11":3,"12":2,"13":1,"14":1,"17":1,"18":2,"19":2,"20":1,"22":9,"23":1,"25":2,"27":3,"29":1,"32":3,"33":6,"34":3,"37":1,"40":6,"42":6,"45":4,"46":1,"47":8,"51":1,"52":1,"56":40,"58":3,"59":3,"62":6,"63":1,"64":4,"65":2,"66":2,"67":5,"68":2,"74":1,"80":2,"81":2,"84":2,"91":5,"102":3,"104":2,"106":1}}],["2003",{"2":{"59":1,"63":1,"74":1,"80":1}}],["2004",{"2":{"59":1,"63":1,"74":1,"80":1}}],["2005",{"2":{"59":2,"62":3,"63":1,"64":2,"65":3,"66":3,"67":5,"74":1,"80":1}}],["2002",{"2":{"59":3,"62":3,"63":2,"64":2,"65":2,"66":3,"67":5,"74":2,"80":1}}],["2001",{"2":{"59":3,"62":3,"63":2,"64":2,"65":3,"66":3,"67":5,"74":2,"80":1}}],["2000",{"2":{"26":1}}],["2019",{"2":{"58":2,"102":1}}],["2015",{"2":{"58":2,"59":1,"63":1,"74":1,"80":1,"102":2}}],["20×10×15",{"2":{"41":2}}],["20×10×15×2",{"2":{"35":1,"91":1}}],["20ºn",{"2":{"40":1}}],["203714",{"2":{"27":1}}],["2023",{"2":{"95":1,"96":2}}],["2021",{"2":{"37":9,"95":1,"96":2,"97":1}}],["2020",{"2":{"37":5,"39":3,"40":4,"46":8,"72":1}}],["2024",{"2":{"26":1}}],["2022",{"2":{"10":4,"12":2,"13":2,"14":2,"16":8,"17":4,"18":2,"20":2,"21":6,"22":6,"23":2,"29":6,"30":2,"37":5,"39":3,"40":4,"97":1}}],["20",{"2":{"2":7,"4":10,"5":10,"6":10,"16":14,"29":2,"35":4,"40":2,"41":3,"42":1,"56":1,"80":2,"91":3}}],["5173",{"2":{"88":1}}],["514979",{"2":{"22":1}}],["527401",{"2":{"82":2}}],["52419",{"2":{"56":1}}],["55",{"2":{"96":1}}],["553602",{"2":{"91":1}}],["558193",{"2":{"82":2}}],["551732",{"2":{"22":1}}],["5e8",{"2":{"79":1,"84":1}}],["5743",{"2":{"56":1}}],["57873",{"2":{"56":1}}],["57695",{"2":{"56":1}}],["57143",{"2":{"22":2}}],["56632",{"2":{"56":1}}],["540514",{"2":{"27":1}}],["59212",{"2":{"56":1}}],["59085",{"2":{"56":1}}],["594514",{"2":{"25":1}}],["595405",{"2":{"22":1}}],["5×4",{"2":{"82":2}}],["5×4×5",{"2":{"81":1}}],["5×4×3",{"2":{"21":2}}],["5×4×3×2",{"2":{"17":1,"18":1}}],["5×6×36",{"2":{"37":1}}],["5×6",{"2":{"27":2}}],["5×10",{"2":{"25":2}}],["508557",{"2":{"22":1}}],["50089",{"2":{"56":1}}],["500",{"2":{"0":1,"56":1,"106":2}}],["500mb",{"2":{"0":2}}],["536094",{"2":{"91":1}}],["536399",{"2":{"22":1}}],["531649",{"2":{"91":1}}],["53",{"2":{"65":1}}],["538981",{"2":{"22":1}}],["582329",{"2":{"91":1}}],["58548",{"2":{"91":1}}],["580668",{"2":{"91":1}}],["5843",{"2":{"51":1,"52":1}}],["581312",{"2":{"25":1}}],["58",{"2":{"16":2}}],["5",{"2":{"2":7,"4":16,"5":18,"6":7,"10":2,"12":3,"13":2,"14":1,"16":6,"17":2,"21":4,"22":10,"23":1,"25":2,"27":4,"29":5,"30":1,"32":4,"34":1,"35":2,"37":3,"39":4,"41":3,"42":2,"45":4,"56":5,"59":4,"62":6,"63":2,"64":4,"65":3,"66":10,"67":10,"68":19,"74":2,"80":4,"81":6,"82":3,"91":2,"92":1,"97":2,"106":2}}],["rotate",{"2":{"106":1}}],["row",{"2":{"73":1,"84":1}}],["rowgap",{"2":{"56":1}}],["right",{"2":{"95":1,"97":1}}],["rights",{"2":{"82":1}}],["r",{"2":{"81":1}}],["r1i1p1f1",{"2":{"58":2,"102":3}}],["running",{"2":{"88":1}}],["run",{"2":{"23":1,"88":3,"93":2}}],["runs",{"2":{"13":1,"85":1}}],["ram",{"2":{"61":1}}],["race",{"2":{"59":1}}],["rafaqz",{"2":{"50":1}}],["raw",{"2":{"50":1,"60":1}}],["rasm",{"2":{"50":2}}],["ras",{"2":{"26":3}}],["rasters",{"2":{"26":2}}],["raster",{"0":{"26":1},"2":{"22":11,"26":3}}],["ranges",{"0":{"66":1},"2":{"34":1,"63":1}}],["range",{"2":{"10":2,"16":2,"17":2,"22":2,"23":2,"29":2,"35":3,"37":1,"85":1,"91":3,"95":1}}],["randn",{"2":{"95":1}}],["random",{"2":{"17":2,"40":2,"46":3,"91":1}}],["rand",{"2":{"2":1,"4":3,"5":3,"6":3,"8":2,"9":2,"10":1,"17":1,"19":1,"21":3,"22":1,"23":1,"25":1,"26":1,"27":1,"29":2,"30":1,"32":1,"33":2,"35":2,"40":3,"42":1,"44":1,"45":3,"80":1,"82":1,"91":2}}],["relational",{"2":{"70":1}}],["related",{"2":{"50":1}}],["recommend",{"2":{"92":1}}],["recommended",{"2":{"67":1}}],["rechunking",{"2":{"85":1}}],["recalculate",{"2":{"85":1}}],["recal",{"2":{"85":1}}],["recently",{"2":{"0":1}}],["reentrantlock",{"2":{"59":1}}],["rewrote",{"2":{"58":1,"59":1,"63":1,"74":1,"80":1,"102":1}}],["realization",{"2":{"59":1,"63":1,"74":1,"80":1}}],["realm",{"2":{"58":1,"102":1}}],["readcubedata",{"0":{"62":1},"2":{"40":2,"61":1,"62":1,"84":1}}],["read",{"0":{"57":1,"58":1,"59":1,"60":1},"1":{"58":1,"59":1,"60":1,"61":1,"62":1},"2":{"1":1,"40":1,"50":1,"57":1,"60":1,"66":1,"84":1}}],["red",{"2":{"56":1,"60":1,"71":1}}],["reduce",{"2":{"10":1,"14":1,"19":1}}],["reverse",{"2":{"56":1}}],["reverseordered",{"2":{"9":1,"60":1,"91":1}}],["rename",{"2":{"45":1}}],["resets",{"2":{"84":1,"85":1}}],["respectively",{"2":{"71":1}}],["reshape",{"2":{"37":1,"39":2}}],["result",{"2":{"34":1,"42":1}}],["resulting",{"2":{"8":1,"9":1,"14":1,"84":1,"85":1}}],["results",{"0":{"97":1},"2":{"2":1,"5":1,"56":2,"84":1,"85":1}}],["references",{"2":{"59":1,"63":1,"74":1,"80":1}}],["reference",{"0":{"83":1},"1":{"84":1,"85":1},"2":{"46":1}}],["ref",{"2":{"35":1,"84":1,"85":1}}],["rebuild",{"0":{"33":1},"2":{"32":1,"33":2,"46":2,"50":1}}],["repeat",{"2":{"95":1}}],["repl",{"2":{"90":1,"93":1}}],["replace",{"2":{"23":1,"50":1,"106":1}}],["repository",{"2":{"86":1,"98":1}}],["reports",{"2":{"86":1}}],["reproduces",{"2":{"49":1}}],["represented",{"2":{"84":1,"100":1}}],["represents",{"2":{"71":1}}],["representing",{"2":{"22":2,"85":1}}],["representation",{"2":{"1":1,"84":2,"85":3}}],["re",{"2":{"22":1}}],["registry",{"2":{"93":1}}],["registration",{"2":{"85":2}}],["registered",{"2":{"85":1,"93":1}}],["regions",{"2":{"22":8}}],["region",{"2":{"22":12}}],["regular",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":3,"16":9,"17":3,"18":3,"19":2,"20":2,"21":9,"22":8,"25":2,"27":4,"29":9,"30":3,"32":9,"33":6,"34":2,"35":3,"37":14,"39":6,"40":4,"41":9,"42":3,"44":1,"45":5,"47":4,"51":2,"52":2,"56":6,"58":2,"59":4,"60":2,"62":6,"63":2,"64":4,"65":2,"66":3,"67":10,"68":2,"74":2,"80":5,"81":6,"91":5,"96":1,"102":1}}],["regularchunks",{"2":{"2":6,"4":3,"5":3,"6":3}}],["returned",{"2":{"84":1}}],["returns",{"2":{"84":5,"85":2}}],["return",{"2":{"18":1,"19":1,"21":2,"22":4,"51":1,"84":1,"85":1,"96":1}}],["requests",{"2":{"86":1}}],["requested",{"2":{"13":1}}],["requirements",{"2":{"59":1,"63":1,"74":1,"80":1}}],["required",{"2":{"37":1}}],["requires",{"2":{"16":1}}],["removes",{"2":{"85":1}}],["remove",{"2":{"52":1}}],["removed",{"2":{"15":1,"85":1}}],["remote",{"2":{"0":1}}],["http",{"2":{"88":1}}],["https",{"2":{"50":2,"59":1,"60":1,"63":1,"71":1,"74":1}}],["html",{"2":{"71":1}}],["hdf5",{"2":{"59":1}}],["hr",{"2":{"58":1,"102":2}}],["history",{"2":{"58":2,"59":2,"62":3,"63":1,"64":2,"65":3,"66":3,"67":5,"74":1,"80":1,"102":1}}],["hidedecorations",{"2":{"56":1}}],["highclip",{"2":{"56":4}}],["high",{"2":{"46":4}}],["hm",{"2":{"56":8}}],["hold",{"2":{"84":1}}],["holds",{"2":{"84":1,"85":1}}],["ho",{"0":{"46":1}}],["however",{"2":{"24":1,"37":1}}],["how",{"0":{"35":1,"36":1,"41":1,"42":1,"43":1,"93":1},"1":{"37":1,"38":1,"39":1,"40":1,"44":1,"45":1},"2":{"6":1,"7":1,"10":1,"17":2,"18":1,"24":1,"28":1,"31":1,"42":1,"57":1,"62":3,"82":1,"84":1,"98":1,"100":1}}],["happens",{"2":{"85":1}}],["had",{"2":{"82":1,"84":1,"85":1}}],["hard",{"2":{"62":1}}],["hamman",{"2":{"49":1,"56":1}}],["handled",{"2":{"85":1}}],["handle",{"2":{"70":1,"85":1}}],["handling",{"2":{"9":1,"84":1}}],["handy",{"2":{"42":1}}],["has",{"2":{"8":1,"9":1,"22":1,"26":1,"27":1,"40":1,"49":1,"52":1,"85":1}}],["half",{"2":{"8":5}}],["have",{"2":{"6":1,"9":1,"22":1,"29":1,"38":1,"40":2,"72":1,"84":3}}],["having",{"2":{"1":1,"22":1}}],["help",{"2":{"84":1,"85":2}}],["height",{"2":{"58":2,"102":1}}],["heatmap",{"0":{"103":1},"2":{"42":1,"56":3,"103":1}}],["hereby",{"2":{"22":1}}],["here",{"2":{"8":1,"9":1,"13":1,"16":2,"17":1,"21":1,"22":1,"36":1,"42":1,"66":1,"81":1,"87":2}}],["hence",{"2":{"1":1}}],["yet",{"2":{"84":1}}],["yeesian",{"2":{"60":1}}],["years",{"2":{"37":1,"95":1,"96":1}}],["year",{"2":{"8":4,"97":1}}],["yyyy",{"2":{"59":2,"63":2,"74":2,"80":2}}],["ylabel=",{"2":{"95":1,"97":1}}],["ylabel",{"2":{"56":3}}],["yasxa",{"2":{"40":6}}],["yaxcolumn",{"2":{"85":1}}],["yaxconvert",{"2":{"27":2}}],["yaxdefaults",{"2":{"85":1}}],["yaxarraybase",{"2":{"27":1,"84":1,"85":1}}],["yaxarray",{"0":{"11":1,"17":1,"29":1,"36":1,"37":1,"47":1,"64":1,"70":1},"1":{"18":1,"19":1,"20":1,"37":1,"38":1,"39":1,"40":1},"2":{"2":1,"4":4,"5":4,"6":4,"7":1,"8":3,"9":3,"10":2,"12":1,"13":1,"14":2,"16":8,"17":2,"18":1,"19":2,"20":1,"21":6,"22":3,"23":1,"25":4,"26":2,"27":5,"29":5,"30":2,"32":3,"33":5,"34":1,"35":3,"36":1,"37":15,"39":4,"40":6,"41":3,"42":4,"44":2,"45":4,"46":4,"47":4,"50":2,"51":7,"52":1,"54":9,"55":1,"56":3,"58":2,"59":2,"60":1,"62":3,"63":2,"64":2,"65":3,"66":3,"67":5,"70":1,"72":1,"74":1,"75":1,"77":1,"80":2,"81":4,"84":10,"85":3,"91":5,"96":2,"100":1,"102":1}}],["yaxarrays",{"0":{"0":1,"1":1,"2":1,"7":1,"10":1,"16":1,"24":1,"28":1,"43":1,"48":1,"57":1,"63":1,"74":1,"86":1,"93":1,"99":1,"100":1},"1":{"2":1,"3":1,"4":1,"5":1,"6":1,"8":1,"9":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"25":1,"26":1,"27":1,"29":1,"30":1,"44":1,"45":1,"49":1,"50":1,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1,"58":1,"59":1,"60":1,"61":1,"62":1,"64":1,"65":1,"66":1,"67":1,"68":1,"75":1,"76":1,"77":1,"78":1,"79":1,"80":1,"81":1,"82":1,"87":1,"88":1},"2":{"0":3,"2":1,"4":1,"5":1,"6":1,"8":3,"9":3,"10":4,"16":6,"17":3,"22":3,"23":4,"24":2,"25":1,"29":3,"32":1,"33":1,"35":3,"36":1,"37":1,"38":1,"39":2,"40":4,"44":1,"45":1,"46":4,"48":3,"51":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":2,"63":1,"69":1,"71":1,"74":1,"79":1,"81":1,"84":28,"85":28,"86":1,"88":1,"90":3,"91":5,"92":2,"93":4,"96":3,"98":1,"99":1,"102":1}}],["yax",{"2":{"0":1,"8":3,"9":3,"10":2,"16":11,"17":3,"18":1,"19":1,"20":3,"21":5,"22":2,"23":2,"29":2,"33":1,"35":2,"37":1,"39":1,"40":1,"46":5,"47":2,"48":1,"51":3,"54":1,"84":1,"91":2,"96":2}}],["y",{"2":{"4":2,"5":3,"6":2,"26":1,"27":3,"37":4,"41":4,"51":2,"52":1,"56":3,"60":1,"70":1,"91":3}}],["you",{"2":{"1":1,"23":1,"36":1,"40":3,"45":2,"61":1,"62":1,"76":1,"84":1,"85":2,"87":1,"88":2,"90":2,"92":1,"93":3,"98":3,"100":2}}],["yourself",{"2":{"88":1}}],["your",{"2":{"1":2,"40":2,"59":1,"79":2,"81":1,"84":1,"87":4,"88":4}}],["circshift",{"2":{"104":1}}],["ct1",{"2":{"102":4,"103":1}}],["cycle",{"0":{"95":1,"97":1},"1":{"96":1,"97":1},"2":{"96":4}}],["cycle=12",{"2":{"51":2,"52":1,"54":2,"55":2,"56":3}}],["cdata",{"2":{"85":1}}],["center",{"2":{"84":1,"95":1,"97":1}}],["certain",{"2":{"63":2,"85":1}}],["cell",{"2":{"58":2,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5,"84":1}}],["cf",{"2":{"58":2,"59":2,"63":2,"74":2,"80":2,"102":2}}],["cftime",{"2":{"51":2,"54":5,"55":2,"56":2,"59":6,"62":9,"63":3,"64":6,"65":7,"66":9,"67":15,"74":3,"80":3}}],["cmpcachmisses",{"2":{"85":1}}],["cm4",{"2":{"59":4,"63":4,"74":4,"80":4}}],["cmip",{"2":{"58":1,"102":1}}],["cmip6",{"2":{"58":3,"102":6}}],["cmor",{"2":{"58":2,"59":3,"62":3,"63":2,"64":2,"65":3,"66":3,"67":5,"74":2,"80":2,"102":1}}],["c54",{"2":{"56":1}}],["cb",{"2":{"56":1}}],["cbar",{"2":{"42":1}}],["cgrad",{"2":{"42":1}}],["cl",{"2":{"104":1,"105":1}}],["cl=lines",{"2":{"104":1,"105":1}}],["clean",{"2":{"85":1}}],["cleanme",{"2":{"85":4}}],["cleaner",{"2":{"84":2}}],["clevel=n",{"2":{"76":1}}],["climate",{"2":{"59":1,"63":1,"74":1,"80":1}}],["closedinterval",{"2":{"67":1}}],["closed",{"0":{"67":1},"2":{"67":3}}],["close",{"2":{"46":4}}],["cloud",{"2":{"11":1,"58":1}}],["classes=classes",{"2":{"42":1}}],["classes",{"2":{"42":8}}],["classification",{"2":{"42":2}}],["class",{"2":{"42":3}}],["clustermanagers",{"2":{"23":2}}],["cluster",{"2":{"23":1}}],["cpus",{"2":{"23":1}}],["cpu",{"2":{"23":1}}],["c",{"2":{"22":11,"32":5,"33":7,"34":3,"42":2,"45":2,"71":1,"76":1,"78":4,"84":5,"85":3,"96":4,"102":2}}],["custom",{"2":{"29":1,"84":1}}],["current",{"2":{"22":2,"71":1,"84":1,"97":1}}],["currently",{"2":{"16":1,"46":1,"50":1,"98":1}}],["cubeaxis",{"2":{"85":1}}],["cubeaxes",{"2":{"84":1}}],["cubedir",{"2":{"85":1}}],["cube2",{"2":{"84":1}}],["cube1",{"2":{"84":1}}],["cubelist",{"2":{"84":1}}],["cubefittable",{"2":{"42":2,"84":1}}],["cubetable",{"0":{"42":1},"2":{"42":3,"84":3}}],["cubes",{"0":{"35":1},"2":{"9":2,"17":1,"21":1,"35":2,"40":1,"41":2,"42":1,"64":1,"72":1,"84":18,"85":9}}],["cube",{"0":{"32":1,"34":1,"36":1,"72":1,"96":1},"1":{"33":1,"37":1,"38":1,"39":1,"40":1},"2":{"2":1,"4":1,"5":1,"6":1,"16":11,"17":2,"19":2,"21":2,"32":1,"34":1,"36":2,"40":1,"41":1,"42":2,"50":1,"72":3,"81":1,"84":34,"85":19,"100":1}}],["chose",{"2":{"71":1}}],["child",{"2":{"58":1,"102":1}}],["check",{"2":{"16":1,"81":1,"92":1}}],["changed",{"2":{"92":1,"98":1}}],["changes",{"2":{"62":1}}],["change",{"2":{"10":1,"84":1,"85":1}}],["chunkoffset",{"2":{"85":1}}],["chunksize`",{"2":{"85":1}}],["chunksizes",{"2":{"84":2}}],["chunksize",{"2":{"84":1,"85":3}}],["chunks",{"0":{"4":1},"2":{"2":5,"4":1,"5":1,"6":2,"84":4,"85":11}}],["chunked",{"2":{"2":5}}],["chunking",{"0":{"2":1,"3":1,"5":1,"6":1},"1":{"4":1,"5":1,"6":1},"2":{"1":1,"5":1,"84":4,"85":3}}],["chunk",{"0":{"1":1},"1":{"2":1,"3":1,"4":1,"5":1,"6":1},"2":{"1":1,"2":1,"4":1,"5":1,"84":4,"85":4}}],["criteria",{"2":{"42":1}}],["creation",{"2":{"47":1}}],["creating",{"0":{"22":1},"2":{"10":1,"33":1,"37":1,"81":1,"87":1}}],["createdataset",{"2":{"85":2}}],["created",{"2":{"85":2}}],["creates",{"2":{"42":1,"84":2,"85":1}}],["create",{"0":{"28":1,"29":1,"30":1,"47":1},"1":{"29":1,"30":1},"2":{"10":1,"16":1,"22":2,"28":1,"29":1,"33":1,"35":1,"37":2,"42":1,"46":1,"50":1,"54":1,"74":1,"79":1,"81":3,"84":1,"85":1,"91":1,"95":1}}],["crucial",{"2":{"1":1}}],["coastlines",{"2":{"104":3,"105":1}}],["cosd",{"2":{"84":1}}],["country",{"2":{"84":4}}],["country=cube2",{"2":{"84":1}}],["could",{"2":{"33":1,"46":1,"61":1}}],["copies",{"2":{"85":1}}],["copied",{"2":{"81":1}}],["copybuf",{"2":{"85":2}}],["copydata",{"2":{"85":1}}],["copy",{"2":{"32":1,"84":1,"88":1}}],["coordinates",{"2":{"58":1}}],["college",{"2":{"98":1}}],["collected",{"2":{"85":1}}],["collectfromhandle",{"2":{"85":1}}],["collection",{"2":{"31":1,"70":1}}],["collect",{"2":{"25":1,"34":3,"96":1}}],["colonperm",{"2":{"85":1}}],["color=",{"2":{"97":3}}],["color",{"2":{"95":1,"104":1,"105":1,"106":1}}],["colormap=",{"2":{"56":1}}],["colormap=makie",{"2":{"42":1}}],["colormap",{"2":{"56":3,"103":1,"104":1,"105":1,"106":1}}],["colorrange=",{"2":{"56":1}}],["colorrange",{"2":{"56":3}}],["colorbar",{"2":{"42":1,"56":2}}],["column",{"2":{"73":1,"85":1}}],["colgap",{"2":{"56":1}}],["colnames",{"2":{"46":1}}],["configuration",{"2":{"85":2}}],["concatenating",{"2":{"84":1}}],["concatenates",{"2":{"84":2}}],["concatenate",{"0":{"35":1},"2":{"35":2,"84":2}}],["concatenatecubes",{"0":{"9":1},"2":{"9":2,"35":2,"84":2}}],["concrete",{"2":{"84":2}}],["contributing",{"2":{"87":1}}],["contribute",{"0":{"86":1,"87":1},"1":{"87":1,"88":2}}],["contrast",{"2":{"84":1}}],["content",{"2":{"84":1}}],["contact",{"2":{"59":1,"63":1,"74":1,"80":1}}],["contains",{"2":{"67":1,"84":1,"85":1}}],["contain",{"2":{"58":1,"59":1,"85":1}}],["containing",{"0":{"47":1},"2":{"8":1,"42":1,"71":1,"72":1,"84":1}}],["continue",{"2":{"51":1}}],["consolidated=true",{"2":{"58":1,"102":1}}],["constructor",{"2":{"84":1}}],["constructs",{"2":{"84":1}}],["construct",{"0":{"46":1},"2":{"84":2}}],["consistent",{"2":{"58":1,"102":1}}],["consisting",{"2":{"8":1}}],["considering",{"2":{"49":1}}],["considered",{"2":{"42":1}}],["consider",{"2":{"17":1,"19":1,"21":1,"33":1}}],["convinient",{"2":{"31":1}}],["conventions",{"2":{"59":1,"63":1,"74":1,"80":1}}],["convenient",{"2":{"23":1}}],["conversion",{"2":{"24":1,"26":1,"27":1}}],["conversions",{"2":{"24":1}}],["converted",{"2":{"72":1}}],["convert",{"0":{"24":1,"25":1,"26":1,"27":1},"1":{"25":1,"26":1,"27":1},"2":{"24":1,"25":2,"27":2,"84":1,"85":1}}],["corresponding",{"2":{"7":1,"21":2,"22":2,"72":1,"84":1}}],["combining",{"0":{"101":1}}],["combined",{"2":{"9":2,"72":2}}],["combine",{"0":{"7":1},"1":{"8":1,"9":1},"2":{"7":1,"8":1,"9":1,"100":1}}],["command",{"2":{"93":2}}],["comment",{"2":{"58":1}}],["common",{"2":{"40":5,"84":1}}],["com",{"2":{"50":2,"60":1}}],["compiler",{"2":{"92":1}}],["compuation",{"2":{"84":1}}],["computing",{"2":{"42":1}}],["computations",{"2":{"13":1,"41":1}}],["computation",{"0":{"23":1},"2":{"13":1,"70":1,"84":3,"85":3}}],["computed",{"2":{"85":1}}],["compute",{"0":{"10":1},"1":{"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1},"2":{"96":1}}],["compares",{"2":{"85":1}}],["comparing",{"2":{"78":1}}],["compatible",{"2":{"60":1}}],["compress",{"2":{"78":2}}],["compress=n",{"2":{"78":1}}],["compressors",{"2":{"76":1}}],["compressor=compression",{"2":{"76":1}}],["compression",{"0":{"76":1,"78":1},"2":{"76":5,"78":4}}],["completely",{"2":{"61":1}}],["complexity",{"2":{"41":1}}],["complex",{"2":{"10":2,"91":1}}],["comply",{"2":{"59":1,"63":1,"74":1,"80":1}}],["comes",{"2":{"1":1}}],["code",{"2":{"6":1,"13":1,"23":2,"31":1,"46":1,"59":2}}],["captialisation",{"2":{"85":1}}],["cameracontrols",{"2":{"106":1}}],["came",{"2":{"72":1}}],["cairomakie",{"2":{"56":1,"95":2}}],["caxes",{"2":{"32":2,"84":2}}],["car",{"2":{"22":1}}],["cartesianindex",{"2":{"22":11}}],["caluclate",{"2":{"84":1}}],["calculations",{"2":{"56":1,"85":1}}],["calculating",{"2":{"14":1,"84":1}}],["calculates",{"2":{"84":1}}],["calculated",{"2":{"42":2,"51":1}}],["calculate",{"2":{"14":1,"22":1,"42":2,"48":1,"49":2,"51":1,"56":1,"85":2,"96":1}}],["calling",{"2":{"56":1}}],["called",{"2":{"16":1,"70":3,"85":1}}],["call",{"2":{"1":1,"23":1}}],["case",{"2":{"13":1,"19":1,"40":1,"53":1,"58":1,"62":1}}],["cases",{"2":{"0":1,"61":1,"67":1,"98":1}}],["cataxis",{"2":{"84":2}}],["categoricalaxis",{"2":{"84":1}}],["categorical",{"2":{"9":1,"17":1,"18":1,"19":1,"22":1,"35":1,"42":1,"46":4,"51":2,"52":1,"53":1,"54":2,"55":2,"56":3,"84":1,"85":1,"91":1}}],["cat",{"0":{"8":1},"2":{"8":2}}],["cache=1gb```",{"2":{"84":1}}],["cache=1e9",{"2":{"16":2}}],["cache=",{"2":{"84":1}}],["cache=5",{"2":{"84":1}}],["cache=yaxdefaults",{"2":{"84":1}}],["caches",{"2":{"0":1}}],["cachesize",{"2":{"0":2,"85":1}}],["cache",{"2":{"0":6,"79":1,"84":4,"85":7}}],["caching",{"0":{"0":1}}],["can",{"2":{"0":5,"2":1,"3":1,"13":2,"14":1,"16":3,"20":1,"22":1,"23":3,"29":2,"35":1,"36":1,"38":1,"40":1,"41":1,"42":2,"46":1,"52":1,"56":1,"58":2,"59":1,"60":1,"61":1,"68":1,"70":3,"71":2,"72":1,"80":1,"81":1,"82":1,"84":13,"85":6,"87":1,"90":2,"93":2,"98":2}}],["msc",{"2":{"96":3,"97":2}}],["mscarray",{"2":{"96":2}}],["md",{"2":{"87":2}}],["mfdataset",{"2":{"84":5}}],["mpi",{"2":{"58":1,"102":2}}],["m",{"2":{"25":2}}],["miss",{"2":{"85":1}}],["missing",{"2":{"14":2,"16":6,"18":1,"21":1,"22":2,"41":1,"42":2,"59":12,"62":6,"64":4,"65":6,"66":6,"67":10,"81":3,"82":1,"84":2,"85":2,"106":1}}],["minimized",{"2":{"85":1}}],["minutes",{"2":{"59":1,"62":3,"64":2,"65":3,"66":3,"67":5}}],["might",{"2":{"24":1,"61":1,"98":1}}],["mix",{"2":{"21":2}}],["mm",{"2":{"20":3,"59":2,"63":2,"74":2,"80":2}}],["mymean",{"2":{"23":4}}],["my",{"2":{"16":2,"59":1}}],["mahecha",{"2":{"72":1}}],["manager",{"2":{"90":1}}],["manual",{"2":{"59":1}}],["many",{"0":{"18":1,"19":2},"2":{"18":2,"19":2,"20":4,"62":1,"70":1,"85":1}}],["mar",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["marketdata",{"2":{"46":2}}],["master",{"2":{"50":1,"93":1}}],["mask",{"2":{"42":2}}],["makie",{"2":{"56":1,"106":1}}],["making",{"2":{"11":1,"59":1,"63":1}}],["make",{"2":{"39":1,"40":2,"81":1,"84":1,"85":2,"88":1,"106":1}}],["main",{"2":{"36":1,"85":1}}],["machine",{"2":{"23":1,"70":1}}],["matching",{"2":{"91":1}}],["match",{"2":{"85":2}}],["matched",{"2":{"84":1}}],["matches",{"2":{"20":1}}],["mat",{"2":{"22":4}}],["matrix",{"2":{"16":2,"22":1,"25":1,"46":1,"52":1,"56":2,"70":1,"82":2,"96":1}}],["maximal",{"2":{"85":1}}],["maximum",{"2":{"41":1,"84":1,"85":1}}],["maxbuf",{"2":{"85":1}}],["max",{"2":{"16":2,"76":1,"78":1,"79":1,"84":7,"85":2}}],["maxsize",{"2":{"0":2}}],["may",{"2":{"10":1,"15":1,"51":4,"52":2,"53":1,"54":4,"55":4,"56":6,"58":1,"59":1,"92":1}}],["maps",{"0":{"102":1},"1":{"103":1}}],["mapslice",{"2":{"23":1}}],["mapslices",{"0":{"14":1},"2":{"10":1,"13":1,"14":1,"23":1,"41":1,"96":1}}],["mapped",{"2":{"84":1}}],["mapping",{"2":{"84":1,"85":3}}],["mapcube",{"0":{"15":1},"1":{"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1},"2":{"10":1,"13":1,"15":1,"16":4,"18":1,"20":1,"21":2,"22":2,"23":3,"84":5,"85":2}}],["map",{"0":{"13":1,"41":1},"2":{"10":1,"13":2,"21":1,"22":3,"23":3,"41":4,"42":1,"51":2,"55":1,"56":1,"84":2,"91":1,"96":2}}],["moll",{"0":{"105":1}}],["mowingwindow",{"2":{"84":1}}],["module",{"2":{"84":1}}],["model",{"2":{"59":1,"63":1,"71":2,"74":1,"80":1}}],["modification",{"2":{"11":1,"23":1}}],["modify",{"0":{"11":1}}],["monthday",{"2":{"96":4}}],["monthly",{"0":{"49":1}}],["month",{"2":{"37":7,"39":3,"40":4,"49":1,"51":4,"52":1,"53":1,"54":5,"55":2,"56":3,"84":1,"96":2}}],["moment",{"2":{"27":1}}],["movingwindow",{"2":{"21":1,"84":4}}],["more",{"2":{"9":1,"10":1,"36":1,"41":1,"42":1,"66":1,"67":1,"72":1,"76":1,"79":1,"84":3,"85":1,"91":1}}],["most",{"2":{"1":1,"15":1,"24":1}}],["mesh",{"2":{"106":2}}],["merely",{"2":{"81":1}}],["measured",{"2":{"71":1,"72":1}}],["measure",{"2":{"70":1}}],["measures",{"2":{"58":1}}],["means",{"0":{"49":1},"2":{"14":1,"84":1}}],["mean",{"0":{"95":1,"97":1},"1":{"96":1,"97":1},"2":{"10":1,"14":3,"23":4,"42":4,"51":10,"52":2,"53":1,"56":2,"58":1,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5,"84":1,"96":5}}],["meter",{"2":{"58":1}}],["method",{"2":{"16":2,"18":1,"19":1,"21":1,"84":1}}],["methods",{"2":{"7":1,"23":1,"58":1,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5}}],["metadata",{"2":{"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"21":3,"22":3,"24":1,"25":1,"27":3,"29":2,"32":1,"33":3,"34":1,"35":1,"37":5,"41":3,"42":3,"47":2,"51":2,"52":1,"54":3,"55":2,"56":3,"58":1,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5,"81":2,"84":1,"91":3,"96":1}}],["members",{"2":{"85":1}}],["member",{"2":{"6":1}}],["memory",{"0":{"61":1},"1":{"62":1},"2":{"1":1,"8":1,"10":1,"12":1,"13":1,"14":2,"16":3,"17":1,"18":1,"19":1,"21":3,"22":3,"24":3,"25":1,"27":1,"29":2,"32":1,"33":3,"34":1,"37":5,"40":4,"41":3,"42":3,"47":2,"50":1,"54":1,"61":1,"62":4,"70":1,"81":2,"84":2,"85":1,"91":2,"96":1}}],["multi",{"2":{"17":2,"21":2}}],["multiplying",{"2":{"41":1}}],["multiply",{"2":{"10":1,"41":1}}],["multiple",{"0":{"45":1,"101":1},"2":{"7":1,"21":1,"23":1,"58":1,"59":1,"70":1,"84":1}}],["must",{"2":{"0":1,"72":1,"84":1,"85":1}}],["mb",{"2":{"0":1,"59":1,"62":3,"64":2}}],["pkg",{"2":{"90":2,"93":2,"94":8}}],["pkg>",{"2":{"88":1,"93":1}}],["purple",{"2":{"95":1}}],["purpose",{"2":{"31":1,"41":1}}],["pull",{"2":{"86":1}}],["public",{"0":{"84":1}}],["published",{"2":{"56":1}}],["pydata",{"2":{"50":1}}],["p",{"2":{"40":10,"59":1,"63":1,"74":1,"80":1}}],["picture",{"2":{"70":1,"71":1}}],["pieces",{"2":{"31":1}}],["pixel",{"0":{"95":1},"1":{"96":1,"97":1},"2":{"21":1,"23":2}}],["post=getpostfunction",{"2":{"84":1}}],["positions",{"2":{"85":2}}],["position",{"2":{"70":1}}],["positional",{"2":{"65":1,"66":1}}],["possible",{"2":{"23":2,"24":1,"35":1,"47":1,"81":1,"84":3,"85":1}}],["pos",{"2":{"22":2}}],["point3f",{"2":{"106":1}}],["point",{"2":{"22":3,"58":1,"91":1}}],["points",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":4,"16":9,"17":3,"18":3,"19":2,"20":3,"21":9,"22":16,"23":1,"25":2,"27":4,"29":9,"30":3,"32":9,"33":6,"34":2,"35":3,"37":14,"39":6,"40":21,"41":9,"42":5,"44":1,"45":5,"46":4,"47":4,"51":3,"52":2,"54":2,"55":1,"56":7,"58":6,"59":6,"60":2,"62":9,"63":3,"64":6,"65":4,"66":9,"67":16,"68":2,"70":2,"71":1,"74":3,"80":6,"81":6,"91":5,"96":1,"102":3}}],["plt",{"2":{"103":1}}],["place",{"2":{"85":1}}],["please",{"2":{"59":1,"76":1}}],["plots",{"2":{"106":1}}],["plot",{"0":{"97":1,"103":1,"106":1},"2":{"56":2}}],["plotting",{"0":{"102":1},"1":{"103":1},"2":{"0":1,"94":1}}],["plus",{"2":{"18":3,"50":1,"84":1}}],["page",{"2":{"106":1}}],["paste",{"2":{"88":1}}],["pass",{"2":{"84":1}}],["passed",{"2":{"84":4}}],["passing",{"2":{"21":1,"84":3}}],["pair",{"2":{"85":1}}],["pairs",{"2":{"18":1,"20":1}}],["partitioned",{"2":{"85":1}}],["participate",{"2":{"84":1}}],["particular",{"2":{"73":1}}],["parts",{"2":{"84":1}}],["parent",{"2":{"58":1,"102":1}}],["parallelized",{"2":{"85":1}}],["parallelisation",{"2":{"84":1}}],["parallel",{"2":{"23":1,"70":1}}],["package",{"2":{"23":1,"66":1,"68":1,"83":1,"90":1,"94":1}}],["packages",{"2":{"16":1,"24":1}}],["paths",{"2":{"84":1,"85":2}}],["path=",{"2":{"16":2,"58":1,"75":1,"76":1,"77":1,"78":1,"79":1,"80":1,"81":1,"85":1}}],["path=f",{"2":{"4":1,"5":1,"6":1}}],["path",{"0":{"20":1},"2":{"0":1,"20":1,"50":2,"58":3,"59":2,"60":2,"63":2,"74":2,"79":3,"84":4,"88":1}}],["pr",{"2":{"88":1}}],["println",{"2":{"78":1}}],["printed",{"2":{"46":2}}],["primem",{"2":{"60":1}}],["prior",{"2":{"1":1}}],["props",{"2":{"91":2}}],["properly",{"2":{"49":1}}],["properties=dict",{"2":{"85":1}}],["properties=properties",{"2":{"18":2}}],["properties",{"0":{"17":1},"1":{"18":1,"19":1,"20":1},"2":{"10":2,"17":2,"18":2,"19":1,"20":2,"21":2,"23":2,"29":3,"30":3,"50":1,"56":1,"58":1,"59":1,"60":1,"63":1,"74":1,"80":1,"84":5,"85":1,"102":1}}],["probably",{"2":{"85":1}}],["provide",{"2":{"84":1}}],["provides",{"2":{"70":1,"99":1}}],["provided",{"2":{"36":1,"81":1,"84":2}}],["process",{"2":{"70":1,"85":2}}],["processed",{"2":{"13":1}}],["projection",{"0":{"104":1,"105":1},"1":{"105":1,"106":1},"2":{"60":1}}],["progressmeter",{"2":{"84":1}}],["progress",{"2":{"50":1,"98":1,"100":1}}],["product",{"2":{"22":1}}],["pressed",{"2":{"93":1}}],["pressing",{"2":{"90":1}}],["pre",{"2":{"84":2}}],["previous",{"2":{"56":1,"79":1,"81":1,"84":1}}],["previously",{"2":{"42":1}}],["prepared",{"2":{"59":1,"63":1,"74":1,"80":1}}],["prep",{"2":{"9":2}}],["precipitation",{"2":{"9":2,"71":1,"72":1,"91":2}}],["permute",{"2":{"85":1}}],["permuteloopaxes",{"2":{"85":1}}],["permutation",{"2":{"85":1}}],["persistend",{"2":{"85":1}}],["persistency",{"2":{"85":1}}],["persistent",{"2":{"84":1,"85":2}}],["persist",{"2":{"79":1,"84":1,"85":1}}],["perform",{"2":{"85":1}}],["performed",{"2":{"13":2}}],["performing",{"2":{"10":1}}],["per",{"2":{"7":1,"14":1,"51":1,"54":1,"55":1}}],["=interval",{"2":{"67":2}}],["===",{"2":{"46":1}}],["==",{"2":{"12":1,"46":1,"96":1}}],["=>nan",{"2":{"106":1}}],["=>",{"2":{"10":2,"12":1,"13":1,"16":2,"17":2,"18":3,"19":2,"20":1,"21":2,"22":5,"23":1,"29":3,"30":3,"44":1,"45":1,"46":5,"50":1,"51":5,"52":1,"54":3,"55":2,"56":3,"58":20,"59":20,"60":1,"62":30,"63":10,"64":20,"65":30,"66":30,"67":50,"74":10,"80":10,"91":6,"102":10}}],["=>2",{"2":{"4":1}}],["=>10",{"2":{"4":1}}],["=>5",{"2":{"4":1,"5":1}}],["=",{"2":{"0":5,"2":4,"4":9,"5":15,"6":9,"8":5,"9":5,"10":4,"11":1,"12":1,"13":1,"16":14,"17":4,"18":14,"19":7,"20":11,"21":12,"22":16,"23":5,"25":3,"26":5,"27":4,"29":5,"30":4,"32":1,"33":3,"35":6,"37":7,"39":6,"40":17,"42":7,"44":1,"45":3,"46":7,"47":4,"50":8,"51":16,"52":1,"53":1,"54":4,"55":1,"56":22,"58":2,"59":3,"60":2,"62":1,"63":2,"64":2,"65":6,"66":6,"67":3,"74":2,"76":2,"78":3,"79":8,"80":2,"81":4,"82":5,"84":13,"85":7,"91":5,"95":10,"96":11,"97":5,"102":8,"103":5,"104":7,"105":5,"106":6}}],["dc",{"2":{"85":2}}],["dkrz",{"2":{"58":1,"102":2}}],["dufresne",{"2":{"59":1,"63":1,"74":1,"80":1}}],["due",{"2":{"53":1}}],["dummy",{"2":{"35":1,"37":1,"95":1,"96":1}}],["during",{"2":{"22":1,"23":1,"24":1}}],["dd",{"2":{"32":1,"84":4,"96":1}}],["d",{"2":{"22":5,"46":5,"56":3,"96":1}}],["drop",{"2":{"56":1}}],["dropdims",{"0":{"52":1},"2":{"51":2,"52":2,"56":1}}],["drivers",{"2":{"84":1}}],["driver",{"2":{"48":1,"79":2,"84":6}}],["driver=",{"2":{"4":1,"5":1,"6":1,"75":2,"76":1,"77":2,"78":1,"79":3,"80":1,"81":2,"84":3}}],["drei",{"2":{"19":2}}],["dash",{"2":{"97":1}}],["danger",{"2":{"79":1}}],["daysinmonth",{"2":{"51":1,"54":1}}],["days",{"2":{"49":1,"51":2,"53":1,"54":2,"55":2}}],["dayofyear",{"2":{"16":1}}],["day",{"2":{"10":2,"12":1,"13":1,"14":1,"16":4,"17":2,"18":1,"21":3,"22":3,"23":1,"29":3,"30":1,"95":1,"96":4,"97":1}}],["datconfig",{"2":{"85":2}}],["datset",{"2":{"84":1}}],["dat",{"2":{"84":8,"85":16}}],["datum",{"2":{"60":1}}],["datetime360day",{"2":{"59":6,"62":9,"63":3,"64":6,"65":7,"66":9,"67":15,"74":3,"80":3}}],["datetimenoleap",{"2":{"51":2,"54":5,"55":2,"56":2}}],["datetime",{"2":{"20":1,"46":5,"58":2,"102":1}}],["date",{"2":{"10":5,"12":3,"13":3,"14":3,"16":12,"17":5,"18":3,"21":8,"22":11,"23":3,"29":8,"30":3,"37":24,"39":8,"40":11,"70":1,"95":2,"96":5,"102":1}}],["datesid",{"2":{"96":2}}],["dates",{"2":{"10":2,"12":1,"13":1,"14":1,"16":5,"17":2,"18":1,"21":2,"22":3,"23":1,"29":3,"30":1,"37":8,"39":4,"40":5,"48":1,"72":1,"95":1,"96":2,"102":1}}],["data=cube1",{"2":{"84":1}}],["databases",{"2":{"70":1}}],["dataframe",{"2":{"42":1,"84":1}}],["dataframes",{"2":{"42":1}}],["datacubes",{"2":{"84":1}}],["datacube",{"0":{"101":1},"2":{"42":2,"81":1,"84":1}}],["datatypes",{"2":{"36":1}}],["data1",{"2":{"35":2}}],["data3",{"2":{"30":1}}],["data2",{"2":{"29":2,"35":2}}],["datasetaxis",{"2":{"84":2,"85":1}}],["datasetaxis=",{"2":{"84":1,"85":1}}],["dataset",{"0":{"30":1,"36":1,"38":1,"39":1,"40":1,"43":1,"46":1,"71":1,"79":1,"80":1,"82":1},"1":{"37":1,"38":1,"39":2,"40":2,"44":1,"45":1},"2":{"0":3,"3":1,"4":4,"5":2,"6":3,"9":1,"10":1,"18":1,"20":2,"24":1,"30":2,"38":1,"39":3,"40":5,"44":2,"45":3,"46":5,"58":3,"59":3,"60":3,"63":3,"64":1,"71":3,"72":2,"74":3,"75":1,"76":1,"77":1,"78":1,"79":3,"80":4,"81":2,"82":2,"84":19,"85":9,"102":2}}],["datasets",{"0":{"3":1,"28":1,"48":1,"57":1,"63":1,"74":1},"1":{"4":1,"5":1,"6":1,"29":1,"30":1,"49":1,"50":1,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1,"58":1,"59":1,"60":1,"61":1,"62":1,"64":1,"65":1,"66":1,"67":1,"68":1,"75":1,"76":1,"77":1,"78":1,"79":1,"80":1,"81":1,"82":1},"2":{"0":2,"24":1,"28":1,"40":1,"57":1,"61":1,"79":1,"84":9,"85":4,"100":1}}],["data",{"0":{"34":1,"50":1,"61":1,"72":1},"1":{"62":1},"2":{"0":3,"1":2,"7":1,"8":2,"9":1,"10":3,"11":1,"12":1,"13":1,"14":2,"16":9,"17":3,"18":1,"19":1,"21":6,"22":4,"23":2,"25":2,"26":1,"27":1,"29":2,"32":1,"33":3,"34":2,"35":1,"37":6,"39":1,"40":2,"41":3,"42":5,"50":8,"54":1,"58":3,"59":7,"62":6,"63":3,"64":4,"65":6,"66":6,"67":10,"69":1,"70":3,"71":2,"72":3,"74":3,"79":2,"80":3,"81":4,"82":1,"84":20,"85":12,"91":6,"92":1,"95":2,"96":2,"100":4,"102":5,"104":1}}],["dev",{"2":{"88":1}}],["dependencies",{"2":{"88":1}}],["depth",{"2":{"21":8}}],["detect",{"2":{"84":1,"85":1}}],["determined",{"2":{"85":1}}],["determines",{"2":{"84":1}}],["determine",{"2":{"1":1,"62":1,"84":1}}],["deletes",{"2":{"79":1,"84":1}}],["delete",{"2":{"79":2,"81":1}}],["denoting",{"2":{"84":1}}],["dense",{"2":{"70":1}}],["denvil",{"2":{"59":2,"63":2,"74":2,"80":2}}],["degree",{"2":{"60":1}}],["degc",{"2":{"59":1,"62":3,"64":2,"65":3,"66":3,"67":5}}],["dec",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["defaultfillval",{"2":{"85":1}}],["defaults",{"2":{"84":7}}],["default",{"2":{"18":1,"78":3,"81":1,"84":1,"85":4}}],["definition",{"2":{"72":1}}],["definitions",{"2":{"17":1,"19":1}}],["defining",{"2":{"23":1}}],["defines",{"2":{"84":1}}],["defined",{"2":{"18":1,"26":1,"27":1,"42":1,"56":1,"68":1,"70":1,"73":1,"81":1,"91":1}}],["define",{"0":{"96":1},"2":{"16":2,"18":1,"37":1,"42":1,"56":1,"84":2,"95":1}}],["deal",{"2":{"17":1}}],["dest",{"2":{"105":1}}],["desc",{"2":{"84":3,"85":3}}],["descriptor",{"2":{"85":4}}],["descriptors",{"2":{"84":2}}],["descriptions",{"2":{"84":1}}],["description",{"2":{"17":2,"19":2,"21":2,"36":1,"84":4,"85":11}}],["described",{"2":{"100":1}}],["describe",{"2":{"84":2}}],["describes",{"2":{"7":1,"10":1,"24":1,"28":1,"57":1,"67":1,"69":1,"83":1,"85":1}}],["describing",{"2":{"84":1}}],["designed",{"2":{"24":2,"70":1}}],["desired",{"2":{"16":1,"85":4}}],["demand",{"2":{"13":1}}],["diverging",{"2":{"56":1}}],["divided",{"2":{"41":1}}],["differing",{"2":{"84":1}}],["difference",{"2":{"56":1}}],["differences",{"2":{"46":1,"51":1,"56":1,"85":1}}],["different",{"0":{"21":1},"2":{"9":2,"16":1,"17":2,"23":1,"32":1,"33":1,"45":1,"49":1,"71":1,"84":3,"85":2,"98":1}}],["diff",{"2":{"51":2,"56":3}}],["directory",{"2":{"58":1,"75":2,"77":2}}],["directories",{"2":{"57":1,"85":1}}],["direct",{"2":{"46":1}}],["directly",{"2":{"16":1,"20":1,"27":1,"28":1,"29":1,"82":2}}],["dictionary",{"2":{"71":1,"84":3}}],["dict",{"2":{"4":1,"5":1,"8":1,"9":1,"10":2,"12":1,"13":1,"14":2,"16":5,"17":2,"18":3,"19":2,"20":1,"21":4,"22":4,"23":1,"25":1,"27":3,"29":4,"30":2,"32":1,"33":3,"34":1,"35":1,"37":5,"41":3,"42":3,"46":2,"47":2,"51":3,"52":2,"54":4,"55":3,"56":3,"58":2,"59":2,"60":1,"62":3,"63":1,"64":2,"65":3,"66":3,"67":5,"74":1,"80":1,"81":1,"84":3,"91":3,"96":1,"102":1}}],["dimvector",{"2":{"84":1}}],["dime",{"2":{"58":1}}],["dimensionaldata",{"2":{"22":1,"27":2,"32":1,"33":1,"37":1,"39":1,"40":1,"46":1,"48":1,"50":1,"51":15,"52":10,"54":5,"55":5,"56":38,"66":1,"67":2,"68":3,"70":1,"73":1,"92":3,"94":1,"96":1,"102":1}}],["dimensional",{"2":{"17":2,"19":2,"21":2,"69":1,"70":2,"84":1}}],["dimensions",{"0":{"39":1,"40":1},"2":{"9":1,"10":1,"13":1,"15":1,"16":2,"20":1,"21":1,"22":2,"23":1,"29":2,"33":1,"35":1,"38":1,"40":3,"41":2,"45":1,"50":1,"51":15,"52":10,"54":5,"55":5,"56":38,"62":1,"63":1,"68":2,"70":3,"71":1,"84":8,"85":3,"91":3,"92":1}}],["dimension",{"0":{"8":1,"9":1,"68":1,"73":1},"2":{"2":1,"8":2,"9":1,"10":1,"14":2,"16":3,"18":1,"19":1,"22":3,"37":1,"40":1,"52":1,"53":1,"56":1,"66":1,"68":1,"70":1,"72":1,"73":1,"84":7,"85":3,"91":1}}],["dimgroupbyarray",{"2":{"51":1,"54":1}}],["dimarray",{"0":{"27":1},"2":{"22":3,"27":6,"51":1,"52":1,"54":1,"55":2,"56":3,"70":1,"84":2}}],["dims=2",{"2":{"96":1}}],["dims=",{"2":{"14":2,"23":1,"41":1,"51":5,"52":1,"54":1,"56":1}}],["dims",{"2":{"8":3,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"21":3,"22":4,"25":1,"26":1,"27":2,"29":2,"32":3,"33":4,"34":1,"35":1,"37":5,"41":3,"42":3,"46":1,"47":2,"50":1,"51":6,"52":1,"54":5,"55":2,"56":5,"58":1,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5,"81":1,"91":2,"96":1}}],["dim",{"2":{"2":2,"4":7,"5":8,"6":2,"21":1,"22":1,"25":2,"27":2,"29":4,"32":9,"33":6,"34":3,"35":1,"40":1,"44":1,"45":5,"47":4,"51":2,"52":2,"56":6,"80":3,"81":6,"84":1,"91":2}}],["disregard",{"2":{"85":1}}],["dispatch",{"2":{"85":1}}],["displayed",{"2":{"62":1}}],["discribe",{"2":{"84":2}}],["discussion",{"2":{"76":1}}],["distribute",{"2":{"23":1}}],["distributed",{"0":{"23":1},"2":{"0":1,"23":2}}],["diskarray",{"2":{"84":1}}],["diskarrays",{"2":{"2":9,"4":4,"5":4,"6":4,"84":2,"85":1}}],["disk",{"2":{"1":1,"16":1,"20":1,"27":1,"70":1,"81":3,"82":2,"84":1,"85":2}}],["dodgerblue",{"2":{"97":1}}],["documenter",{"2":{"106":1}}],["documentation",{"0":{"87":1},"1":{"88":1}}],["doc",{"2":{"79":1}}],["docstring",{"2":{"84":1}}],["docs",{"0":{"88":1},"2":{"71":1,"87":2,"88":6,"92":1}}],["don",{"2":{"76":1}}],["done",{"2":{"33":1,"41":1,"56":1,"61":1,"87":2}}],["download",{"0":{"50":1},"2":{"50":1,"59":2,"60":2,"63":2,"74":2}}],["downloads",{"2":{"48":1,"50":1,"59":1,"60":1,"63":1,"74":1}}],["doing",{"2":{"23":1,"32":1,"34":1,"88":1}}],["does",{"2":{"23":1,"81":1,"84":2,"85":1}}],["dot",{"2":{"21":1,"97":1}}],["do",{"0":{"35":1,"36":1,"41":1,"42":1,"43":1,"46":1},"1":{"37":1,"38":1,"39":1,"40":1,"44":1,"45":1},"2":{"1":1,"13":1,"16":1,"22":3,"23":1,"31":2,"41":1,"49":1,"56":1,"81":1,"82":1,"85":1,"88":1,"90":1}}],["dsw",{"2":{"51":2,"56":2}}],["dsfinal",{"2":{"35":1,"41":2,"42":2}}],["ds2",{"2":{"35":3,"41":1,"80":1}}],["ds1",{"2":{"35":3,"41":3,"42":1}}],["dschunked",{"2":{"4":3,"5":3,"6":3}}],["ds",{"2":{"0":3,"4":2,"5":2,"6":2,"30":1,"39":2,"40":12,"44":1,"45":1,"46":2,"50":5,"51":10,"54":1,"56":3,"58":1,"59":2,"60":1,"62":3,"63":1,"64":2,"74":1,"75":3,"76":2,"77":3,"78":7,"79":3,"80":2,"81":1,"82":5,"84":3,"85":1,"106":2}}],["wglmakie",{"2":{"106":2}}],["wgs",{"2":{"60":3}}],["would",{"2":{"84":2}}],["world",{"2":{"60":2}}],["workdir",{"2":{"85":1}}],["worker",{"2":{"84":1}}],["workers",{"2":{"84":1}}],["workflow",{"2":{"61":1}}],["workflows",{"2":{"1":1}}],["work",{"2":{"24":2,"50":1,"69":1,"84":1,"98":2,"100":1}}],["workload",{"2":{"23":1}}],["working",{"2":{"16":1,"82":1}}],["works",{"2":{"6":1,"34":1,"39":1,"40":1,"81":1}}],["written",{"2":{"84":1,"85":1}}],["writing",{"2":{"82":1}}],["writefac",{"2":{"85":1}}],["writefac=4",{"2":{"79":1,"84":1}}],["writes",{"2":{"84":1}}],["write",{"0":{"74":1,"75":1,"77":1},"1":{"75":1,"76":2,"77":1,"78":2,"79":1,"80":1,"81":1,"82":1},"2":{"81":1,"84":2}}],["wrapping",{"2":{"53":1,"68":2}}],["wrapped",{"2":{"16":1}}],["wrap",{"2":{"0":1,"84":1}}],["www",{"2":{"59":1,"63":1,"74":1}}],["w",{"2":{"56":2,"82":2}}],["was",{"2":{"20":1,"22":1,"23":1,"85":1}}],["way",{"2":{"15":1,"24":1,"32":1}}],["warning",{"2":{"11":1,"24":1,"32":1,"40":1,"45":1,"47":1,"50":1,"79":1,"81":1,"84":1}}],["wanted",{"2":{"85":1}}],["wants",{"2":{"81":1}}],["want",{"0":{"94":1},"2":{"0":1,"1":1,"61":1,"72":1,"85":1,"88":1,"93":1,"100":1}}],["white",{"2":{"104":1,"105":1}}],["while",{"2":{"81":1}}],["which",{"2":{"9":1,"16":1,"22":2,"33":1,"40":2,"56":1,"59":1,"62":1,"64":1,"67":1,"68":1,"72":3,"84":5,"85":4,"100":1}}],["whose",{"0":{"39":1,"40":1}}],["whole",{"2":{"8":3}}],["whether",{"2":{"85":2}}],["when",{"2":{"1":1,"6":1,"13":1,"62":1,"72":1,"84":3,"85":1}}],["whereas",{"2":{"70":1}}],["where",{"2":{"0":1,"23":1,"40":4,"49":1,"67":1,"82":1,"84":1,"85":4}}],["wintri",{"0":{"104":1},"1":{"105":1,"106":1}}],["windowloopinds",{"2":{"85":1}}],["window",{"2":{"84":1,"85":1}}],["without",{"2":{"85":1}}],["within",{"2":{"66":1}}],["with",{"0":{"47":1},"2":{"4":1,"5":1,"8":1,"10":1,"12":1,"13":1,"16":7,"17":3,"18":2,"19":2,"21":3,"22":4,"23":2,"24":1,"29":3,"32":1,"33":1,"40":6,"41":2,"42":3,"45":2,"46":3,"47":1,"51":3,"52":1,"54":2,"55":2,"56":5,"58":3,"59":2,"62":3,"63":1,"64":2,"65":3,"66":3,"67":5,"69":1,"71":1,"74":1,"76":1,"78":1,"79":1,"80":2,"81":2,"82":1,"84":11,"85":1,"87":1,"91":4,"92":3,"98":1,"100":1,"102":2,"104":1}}],["will",{"2":{"0":1,"1":1,"4":1,"5":1,"13":1,"16":3,"17":2,"18":1,"19":1,"22":1,"36":1,"40":1,"41":2,"42":2,"45":2,"46":1,"48":1,"53":2,"59":1,"79":3,"81":3,"82":1,"84":12,"85":3,"100":1}}],["wether",{"2":{"84":1}}],["weight=",{"2":{"84":1}}],["weight=nothing",{"2":{"84":1}}],["weight",{"0":{"54":1},"1":{"55":1,"56":1},"2":{"53":1,"55":1,"56":1}}],["weights",{"0":{"55":1},"2":{"51":3,"55":2,"56":1}}],["weightedmean",{"2":{"84":1}}],["weighted",{"0":{"56":1},"2":{"42":1,"49":1,"51":8,"56":8,"84":3}}],["well",{"2":{"42":1,"46":1,"81":1,"84":1}}],["welcome",{"2":{"6":1,"86":1}}],["were",{"2":{"13":2,"67":1,"85":1,"95":1}}],["we",{"2":{"0":1,"8":2,"9":1,"13":2,"14":1,"16":5,"17":3,"18":1,"19":1,"20":1,"22":5,"23":2,"29":2,"33":1,"35":1,"36":1,"37":1,"38":1,"40":2,"41":2,"42":5,"46":4,"51":1,"52":1,"53":2,"56":1,"58":1,"66":1,"72":1,"81":3,"82":4,"92":2,"95":1,"102":1}}],["oob",{"2":{"84":1}}],["o1",{"2":{"59":2,"63":2,"74":2,"80":1}}],["ocean",{"2":{"59":1,"63":1,"74":1,"80":1}}],["oct",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["occuring",{"2":{"4":1}}],["o",{"2":{"50":4,"56":4,"84":5}}],["ohlcv",{"2":{"46":3}}],["ouput",{"2":{"88":1}}],["our",{"2":{"41":1,"42":1,"96":1}}],["outcube",{"2":{"85":1}}],["outcubes",{"2":{"85":1}}],["outcs",{"2":{"85":1}}],["outsize",{"2":{"85":1}}],["outar",{"2":{"85":2}}],["out",{"2":{"50":1,"84":2,"85":1}}],["outtype",{"2":{"16":2,"84":1,"85":2}}],["outdims=outdims",{"2":{"22":1,"23":1}}],["outdims",{"0":{"17":1,"18":1,"19":1,"20":1},"1":{"18":1,"19":1,"20":1},"2":{"16":4,"18":12,"19":2,"20":11,"21":3,"84":6}}],["outputcube",{"2":{"85":3}}],["outputs",{"2":{"16":1,"18":2,"21":1}}],["output",{"2":{"6":1,"16":3,"17":1,"18":1,"22":1,"23":3,"59":1,"63":1,"74":1,"80":1,"84":11,"85":9,"106":1}}],["optimal",{"2":{"85":1}}],["optifunc",{"2":{"85":1}}],["optionally",{"2":{"84":1}}],["option",{"2":{"37":1,"39":1,"76":1}}],["options",{"2":{"34":1}}],["operates",{"2":{"84":1}}],["operate",{"2":{"21":1}}],["operation",{"2":{"21":1,"85":1}}],["operations",{"0":{"16":1},"2":{"10":1,"51":1,"84":2,"85":3}}],["operating",{"2":{"19":1}}],["opens",{"2":{"84":1}}],["openinterval",{"2":{"67":1}}],["open",{"0":{"67":1},"2":{"0":2,"18":1,"20":2,"46":4,"58":2,"59":2,"60":1,"63":2,"67":2,"74":1,"76":1,"80":1,"82":6,"84":7,"102":1}}],["obj",{"2":{"42":2,"95":1,"97":1}}],["objects",{"2":{"84":2}}],["object",{"2":{"11":1,"58":1,"84":5,"85":3}}],["obtain",{"0":{"34":1},"2":{"46":1,"53":1}}],["omit",{"2":{"23":1}}],["otherwise",{"2":{"84":1}}],["others",{"2":{"21":1,"46":1}}],["other",{"0":{"98":1},"1":{"99":1,"100":1,"101":1},"2":{"20":1,"24":1,"61":1,"98":1,"100":1}}],["overview",{"0":{"99":1},"2":{"98":1,"99":1}}],["overwrite",{"0":{"79":1},"2":{"79":3,"84":4,"85":2}}],["overwrite=true",{"2":{"16":2,"79":2,"81":3}}],["over",{"0":{"16":1,"100":1},"2":{"10":1,"15":1,"21":1,"23":1,"56":1,"84":8,"85":1,"100":1}}],["ormax",{"2":{"84":1}}],["orca2",{"2":{"59":1,"63":1,"74":1,"80":1}}],["orangered",{"2":{"42":1}}],["ordered",{"2":{"70":1,"71":1}}],["ordereddict",{"2":{"22":1}}],["orderedcollections",{"2":{"22":1}}],["order",{"2":{"16":1,"49":1,"82":1}}],["original",{"2":{"59":2,"62":6,"64":4,"65":6,"66":6,"67":10}}],["originates",{"2":{"9":1}}],["origin",{"2":{"10":2,"12":1,"13":1,"23":1,"29":3,"30":1,"91":2}}],["or",{"0":{"36":1},"1":{"37":1,"38":1,"39":1,"40":1},"2":{"1":2,"6":1,"10":1,"13":2,"15":1,"27":1,"33":1,"38":1,"47":2,"58":1,"61":1,"63":2,"70":3,"73":2,"76":1,"79":1,"84":22,"85":7,"90":1,"91":2,"93":1}}],["once",{"2":{"56":1,"72":1,"85":1,"87":1}}],["onlinestat",{"2":{"84":2}}],["onlinestats",{"2":{"42":2}}],["only",{"2":{"6":1,"13":1,"14":1,"16":1,"20":1,"22":1,"24":1,"29":2,"41":1,"59":1,"81":1,"84":2}}],["on",{"2":{"1":2,"6":1,"7":1,"10":2,"13":2,"16":1,"23":2,"31":1,"59":2,"62":3,"63":1,"64":2,"65":3,"66":3,"67":5,"70":1,"74":1,"76":1,"80":1,"81":1,"84":5,"85":4}}],["ones",{"2":{"17":1,"33":1}}],["oneto",{"2":{"4":4,"5":4,"6":2,"25":2,"29":3,"32":9,"33":6,"44":1,"45":5,"47":4,"81":6,"91":2}}],["one",{"0":{"18":1,"44":1},"2":{"0":1,"7":1,"8":2,"14":2,"18":15,"19":5,"20":6,"21":2,"22":2,"42":1,"46":1,"52":1,"59":1,"70":2,"71":1,"81":2,"84":9,"85":3,"98":1}}],["own",{"2":{"0":1,"59":1}}],["offline=true",{"2":{"106":1}}],["offsets",{"2":{"85":1}}],["offset",{"2":{"13":1}}],["often",{"2":{"7":1}}],["of",{"0":{"11":1,"40":1,"49":1,"82":1,"99":2},"2":{"0":2,"1":1,"6":1,"8":3,"9":1,"10":2,"11":1,"12":1,"13":2,"14":1,"15":1,"22":7,"23":3,"24":1,"26":1,"27":1,"31":3,"32":3,"36":1,"37":2,"38":1,"39":1,"40":2,"41":1,"42":1,"49":1,"50":1,"54":1,"59":1,"62":1,"63":3,"64":1,"66":1,"68":1,"70":7,"71":1,"72":2,"73":2,"74":1,"80":1,"81":1,"82":1,"83":1,"84":53,"85":42,"91":1,"92":2,"96":2,"97":1,"98":1,"99":1}}],["eo",{"2":{"98":1}}],["esdltutorials",{"2":{"98":1}}],["esm1",{"2":{"58":1,"102":2}}],["eltype",{"2":{"91":1}}],["elementtype",{"2":{"85":1}}],["element",{"2":{"8":1,"9":1,"10":2,"13":2,"14":1,"16":3,"22":2,"34":1,"42":1,"51":2,"52":1,"53":1,"54":7,"55":2,"56":3,"65":2,"68":1,"71":1,"72":2,"84":1,"85":1,"96":1}}],["elements",{"0":{"11":1,"65":1},"2":{"8":1,"12":1,"13":2,"23":1,"63":1,"70":1,"84":1,"85":1}}],["empty",{"2":{"85":1}}],["embeds",{"2":{"84":1}}],["either",{"2":{"84":2}}],["error",{"2":{"79":1}}],["epsg",{"2":{"60":5}}],["et",{"2":{"59":1,"63":1,"72":1,"74":1,"80":1}}],["edu",{"2":{"59":1,"63":1,"71":1,"74":1}}],["equivalent",{"2":{"56":1,"68":1}}],["equally",{"2":{"0":1}}],["effectively",{"2":{"41":1}}],["env",{"2":{"88":1}}],["ensure",{"2":{"59":1}}],["enabling",{"2":{"29":1}}],["enter",{"2":{"90":1}}],["entire",{"2":{"22":1,"24":1,"75":1,"77":1}}],["entries",{"2":{"22":1,"46":1,"58":1,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5,"82":1,"84":1,"91":1}}],["entry",{"2":{"10":1,"12":1,"13":1,"16":2,"17":1,"18":1,"19":1,"21":1,"29":2,"51":2,"52":1,"54":2,"55":2,"56":3,"84":1,"87":3}}],["enumerate",{"2":{"22":2,"56":2}}],["end",{"2":{"13":1,"16":1,"18":1,"19":2,"21":2,"22":4,"23":2,"41":1,"51":2,"56":2,"59":1,"96":2,"106":1}}],["exist",{"2":{"84":1}}],["exists",{"2":{"79":1,"84":1,"85":1}}],["existing",{"0":{"8":1},"2":{"79":1,"80":1}}],["exportable=true",{"2":{"106":1}}],["expression",{"2":{"84":1}}],["experiment",{"2":{"59":3,"63":3,"74":3,"80":3}}],["explicitly",{"2":{"13":1,"33":1,"36":1,"85":1}}],["executes",{"2":{"84":1}}],["execute",{"2":{"23":1}}],["extension",{"2":{"84":2}}],["extended",{"2":{"16":1,"84":1,"85":2}}],["external",{"2":{"58":1,"102":1}}],["extracts",{"2":{"85":1}}],["extract",{"0":{"32":1},"1":{"33":1},"2":{"85":1}}],["extracted",{"2":{"21":1}}],["extra",{"2":{"23":1}}],["exactly",{"2":{"5":1,"34":1,"46":1}}],["examples",{"2":{"6":1,"34":2,"48":1,"59":1,"63":1,"74":1,"87":1}}],["example",{"2":{"0":1,"1":1,"5":1,"10":1,"17":1,"21":1,"23":2,"33":1,"39":1,"40":1,"41":1,"42":1,"49":1,"59":1,"61":1,"63":2,"70":2,"71":1,"72":1,"74":2,"84":4,"85":1,"87":2,"91":2}}],["e",{"2":{"7":1,"8":1,"10":1,"11":1,"13":1,"22":2,"23":1,"26":1,"27":1,"29":1,"37":1,"59":1,"68":1,"70":1,"73":1,"79":1,"84":6,"85":1,"88":1,"91":1}}],["east",{"2":{"60":1}}],["easier",{"2":{"29":1,"63":1}}],["easily",{"2":{"0":1,"23":1}}],["easy",{"2":{"26":1,"27":1}}],["each",{"2":{"4":1,"5":1,"10":1,"13":1,"20":1,"22":5,"23":2,"41":2,"42":2,"49":1,"53":1,"62":1,"71":1,"73":1,"84":3,"85":3,"91":1}}],["everywhere",{"2":{"23":2}}],["every",{"2":{"0":1,"10":1,"13":1,"84":1}}],["features",{"2":{"99":1}}],["feel",{"2":{"76":1}}],["feb",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["frame",{"2":{"100":1}}],["frames",{"2":{"70":1}}],["front",{"2":{"85":1}}],["from",{"0":{"32":1,"34":2,"46":1,"49":1},"1":{"33":1},"2":{"0":1,"8":1,"9":1,"24":1,"32":1,"33":1,"34":4,"40":3,"46":2,"62":1,"67":1,"72":2,"82":1,"84":6,"85":6,"91":1,"96":1}}],["free",{"2":{"76":1}}],["frequently",{"0":{"31":1},"1":{"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1}}],["fr",{"2":{"59":1,"63":1,"74":1,"80":1}}],["fallback",{"2":{"85":1}}],["falls",{"2":{"84":1}}],["false",{"2":{"18":1,"20":1,"47":1,"79":2,"84":3,"85":1}}],["fails",{"2":{"84":1}}],["faq",{"0":{"31":1},"1":{"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1}}],["faster",{"2":{"85":1}}],["fastest",{"2":{"1":1}}],["fast",{"2":{"1":1,"13":1}}],["f2mix",{"2":{"19":3}}],["f2",{"2":{"18":3}}],["f1",{"2":{"18":2,"19":1}}],["fu",{"2":{"85":1}}],["funtion",{"2":{"96":1}}],["fun",{"2":{"84":4}}],["functionality",{"0":{"99":1}}],["functions",{"2":{"10":2,"21":1,"70":2,"83":1,"84":1,"85":1}}],["function",{"0":{"42":1},"2":{"0":1,"1":1,"13":2,"15":1,"16":6,"17":1,"18":2,"19":2,"21":5,"23":6,"32":2,"35":1,"41":1,"42":1,"46":1,"48":1,"51":1,"53":1,"56":1,"61":1,"67":1,"81":1,"84":22,"85":13}}],["future",{"2":{"50":1}}],["further",{"2":{"13":1,"98":1}}],["flag",{"2":{"85":3}}],["flat",{"2":{"18":4,"19":2,"20":2}}],["float32",{"2":{"16":6,"58":1,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5,"81":2,"82":4,"85":1}}],["float64",{"2":{"8":1,"9":1,"10":3,"12":3,"13":3,"14":4,"17":2,"18":2,"19":2,"20":2,"21":3,"22":9,"25":2,"27":4,"29":6,"30":2,"32":1,"33":3,"35":4,"41":12,"42":5,"46":2,"51":3,"52":2,"55":3,"56":6,"58":4,"59":4,"60":2,"62":6,"63":2,"64":4,"65":2,"66":6,"67":10,"68":3,"74":2,"80":2,"84":1,"85":1,"91":7,"96":2,"102":2}}],["flexible",{"2":{"9":1,"15":1}}],["folder",{"2":{"88":1}}],["follow",{"2":{"88":1,"98":1}}],["follows",{"2":{"16":2,"19":1,"21":1,"51":1,"56":1,"82":1}}],["following",{"2":{"2":1,"5":1,"6":1,"16":1,"17":1,"18":1,"21":1,"23":1,"33":1,"48":1,"49":1,"50":1,"84":2,"85":4,"93":2,"94":1,"98":1}}],["found",{"2":{"84":1,"85":1}}],["fourth",{"2":{"59":2,"63":2,"74":2,"80":2}}],["fontsize=24",{"2":{"103":1}}],["fontsize=18",{"2":{"56":1}}],["font=",{"2":{"56":1}}],["forwarded",{"2":{"84":1}}],["forwardordered",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":3,"16":9,"17":4,"18":4,"19":3,"20":3,"21":9,"22":9,"25":2,"27":4,"29":9,"30":3,"32":9,"33":6,"34":2,"35":4,"37":14,"39":6,"40":10,"41":9,"42":5,"44":1,"45":5,"46":4,"47":4,"51":3,"52":2,"54":2,"55":1,"56":7,"58":6,"59":6,"60":1,"62":9,"63":3,"64":6,"65":4,"66":9,"67":15,"68":2,"74":3,"80":6,"81":6,"91":5,"96":1,"102":3}}],["force",{"2":{"84":1}}],["forcing",{"2":{"58":1,"102":1}}],["forms",{"2":{"84":1,"85":2}}],["format",{"2":{"76":1,"78":1,"79":1,"84":1,"96":1}}],["formal",{"2":{"72":1}}],["former",{"2":{"32":1}}],["for",{"0":{"6":1,"95":1},"1":{"96":1,"97":1},"2":{"0":2,"1":3,"4":1,"5":1,"6":1,"20":1,"22":4,"23":1,"37":1,"39":2,"40":2,"41":4,"42":6,"46":5,"50":1,"54":1,"56":3,"59":2,"61":2,"62":1,"63":1,"67":1,"68":1,"70":4,"71":3,"72":1,"74":1,"79":1,"80":1,"81":2,"84":20,"85":16,"94":1,"95":1,"96":2,"98":1}}],["f",{"2":{"2":2,"16":3}}],["field",{"2":{"84":1}}],["fields",{"2":{"42":1,"84":1,"85":4}}],["figure=",{"2":{"97":1}}],["figure",{"2":{"56":2,"95":1,"97":1,"103":1,"104":1,"105":1,"106":1}}],["fig",{"2":{"42":3,"56":8,"95":1,"97":1,"103":2,"104":2,"105":2,"106":3}}],["filterig",{"2":{"96":1}}],["filter",{"2":{"84":2}}],["fillarrays",{"2":{"81":3}}],["fill",{"2":{"81":1,"84":1,"85":1}}],["fillvalue=",{"2":{"85":1}}],["fillvalue",{"2":{"50":3,"58":1,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5}}],["filling",{"2":{"28":1,"29":1}}],["filename",{"2":{"50":2,"84":1}}],["files",{"0":{"101":1},"2":{"7":1,"57":1,"60":1,"84":5,"85":2,"88":1}}],["file",{"2":{"2":1,"7":1,"27":1,"40":1,"59":2,"78":3,"79":2,"81":1,"84":2,"87":4}}],["findaxis",{"2":{"85":1}}],["findall",{"2":{"22":1,"96":1}}],["find",{"2":{"36":1,"85":1,"98":1}}],["finalizer",{"2":{"85":1}}],["finalize",{"2":{"85":1}}],["finally",{"2":{"22":1,"84":1}}],["final",{"2":{"21":1,"22":1}}],["firstly",{"2":{"37":1}}],["first",{"2":{"8":4,"16":3,"18":1,"22":1,"42":1,"45":1,"56":1,"82":1,"84":4,"85":1,"87":1,"91":1,"102":1}}],["fitting",{"2":{"84":1}}],["fittable",{"2":{"84":2}}],["fitcube",{"2":{"42":2}}],["fitsym",{"2":{"84":4}}],["fits",{"2":{"24":1}}],["fit",{"2":{"1":1,"61":1,"70":1}}],["t=union",{"2":{"85":1}}],["typing",{"2":{"90":1}}],["typically",{"2":{"84":1}}],["type",{"2":{"33":1,"47":1,"70":1,"72":1,"84":8,"85":3,"91":1,"92":1}}],["types",{"0":{"69":1},"1":{"70":1,"71":1,"72":1,"73":1},"2":{"24":2,"26":1,"27":1,"47":1,"65":1,"71":1,"84":2,"92":1}}],["tutorial",{"2":{"98":2,"99":1,"100":1}}],["tutorials",{"0":{"98":1},"1":{"99":1,"100":1,"101":1},"2":{"67":1,"98":3}}],["turn",{"2":{"84":1}}],["tuple",{"2":{"2":3,"4":1,"5":1,"6":1,"18":1,"20":1,"51":2,"52":1,"54":2,"55":2,"56":4,"84":5,"85":1}}],["tbl",{"2":{"42":2}}],["target",{"2":{"85":1}}],["tab",{"2":{"84":4}}],["tables",{"2":{"100":1}}],["tableaggregator",{"2":{"84":1}}],["table",{"0":{"100":1},"2":{"42":2,"58":1,"59":2,"63":2,"74":2,"80":2,"84":4,"85":1,"102":1}}],["tas",{"2":{"58":5,"102":5}}],["tair",{"2":{"56":1,"84":1}}],["ta",{"2":{"46":3}}],["takes",{"2":{"84":4}}],["taken",{"2":{"40":2}}],["take",{"2":{"16":1,"84":1,"85":2,"88":1}}],["tip",{"2":{"92":1}}],["tidy",{"2":{"84":1}}],["ticks",{"2":{"70":1}}],["ticks=false",{"2":{"56":1}}],["tick",{"2":{"68":1,"73":1,"91":1}}],["tiff",{"0":{"101":1}}],["tif",{"2":{"60":2,"94":1}}],["title",{"2":{"56":1,"59":1,"63":1,"74":1,"80":1,"87":1}}],["ti",{"2":{"26":1}}],["time1",{"2":{"65":2}}],["timearray",{"0":{"46":1},"2":{"46":3}}],["time=1",{"2":{"91":1}}],["time=>cyclicbins",{"2":{"51":2,"52":1,"54":2,"55":2,"56":3}}],["time=date",{"2":{"37":1}}],["time=at",{"2":{"37":1,"56":3}}],["time=between",{"2":{"37":1}}],["time",{"0":{"49":1},"2":{"1":1,"7":1,"8":4,"9":3,"10":3,"12":1,"13":1,"14":7,"16":14,"17":2,"18":4,"19":1,"20":5,"21":10,"22":8,"23":5,"26":2,"29":3,"30":1,"35":2,"37":8,"39":4,"40":7,"41":4,"42":3,"46":5,"51":15,"52":3,"53":2,"54":8,"55":3,"56":7,"58":4,"59":4,"62":6,"63":1,"64":4,"65":6,"66":6,"67":10,"70":2,"71":1,"74":1,"80":1,"84":6,"91":4,"95":1,"96":4,"102":4}}],["timestamp",{"2":{"46":1}}],["timestep",{"2":{"42":1}}],["timeseries",{"2":{"46":3}}],["times",{"2":{"0":1}}],["treat",{"2":{"84":1}}],["treatment",{"2":{"84":1,"85":1}}],["treated",{"2":{"58":1}}],["tries",{"2":{"84":1}}],["translate",{"2":{"104":1,"105":1}}],["transformed",{"2":{"59":1,"63":1,"74":1,"80":1}}],["transformations",{"2":{"104":1}}],["transformation",{"2":{"22":1}}],["transform",{"2":{"22":2}}],["track",{"2":{"84":1}}],["true",{"2":{"12":1,"47":1,"61":1,"79":1,"81":1,"84":4,"85":1,"106":1}}],["tesselation",{"2":{"106":1}}],["testrange",{"2":{"85":1}}],["test1",{"2":{"47":1}}],["test2",{"2":{"47":2}}],["test",{"2":{"17":4,"18":1,"19":3,"20":4,"21":4,"47":3,"85":1,"102":1}}],["terminal",{"2":{"88":1}}],["text",{"2":{"87":1}}],["tensors",{"2":{"70":1}}],["tell",{"2":{"36":1}}],["temporary",{"2":{"85":1}}],["temporal",{"2":{"41":1,"48":1,"70":1}}],["tempo",{"2":{"51":6,"54":4,"55":1}}],["temp",{"2":{"9":2}}],["temperature=temperature",{"2":{"40":1}}],["temperature",{"2":{"9":2,"40":4,"56":2,"58":3,"59":2,"62":6,"64":5,"65":6,"66":6,"67":10,"70":1,"71":1,"72":1,"91":4}}],["tempname",{"2":{"2":1,"4":1,"5":1,"6":1}}],["tspan",{"2":{"16":1}}],["t",{"2":{"16":4,"37":1,"39":2,"40":2,"42":3,"59":1,"62":4,"64":2,"65":3,"66":3,"67":5,"76":1,"84":1,"85":2,"95":1,"96":1}}],["two",{"2":{"8":1,"9":1,"18":8,"19":4,"20":3,"21":2,"34":2,"35":1,"70":1,"85":1}}],["toghether",{"2":{"85":1}}],["together",{"2":{"46":1,"72":1}}],["touches",{"2":{"67":1}}],["tolerances",{"2":{"66":1}}],["tos",{"2":{"59":5,"62":6,"63":2,"64":4,"65":4,"66":3,"67":9,"68":2,"74":2,"75":2,"77":2,"80":1}}],["top",{"2":{"56":1}}],["too",{"2":{"40":1,"70":1,"84":1}}],["todo",{"2":{"21":1,"96":1}}],["toy",{"2":{"21":1,"81":1}}],["to",{"0":{"9":1,"18":1,"19":1,"43":1,"80":1,"86":1,"87":1,"93":1},"1":{"44":1,"45":1,"87":1,"88":2},"2":{"0":4,"1":4,"3":1,"4":1,"6":2,"7":1,"8":1,"9":1,"10":8,"12":1,"15":1,"16":2,"17":1,"18":2,"19":1,"20":4,"21":3,"22":2,"23":6,"24":3,"25":2,"27":3,"28":1,"31":2,"32":2,"34":3,"35":1,"37":2,"39":2,"40":6,"41":1,"42":1,"45":2,"46":2,"47":1,"48":1,"49":3,"50":2,"52":1,"53":1,"56":1,"57":1,"58":3,"59":2,"61":1,"62":2,"63":3,"67":1,"68":1,"69":1,"70":5,"71":3,"72":2,"73":2,"74":1,"75":2,"76":2,"77":2,"78":2,"79":1,"80":2,"81":4,"82":3,"84":49,"85":19,"87":2,"88":3,"92":2,"93":1,"98":1,"100":3,"102":2,"106":1}}],["though",{"2":{"81":1}}],["those",{"2":{"11":1,"24":1,"26":1,"27":1,"45":1,"71":1,"82":1}}],["through",{"2":{"84":5,"85":5,"90":1}}],["thrown",{"2":{"79":1}}],["three",{"2":{"36":1,"71":1,"95":1}}],["threaded",{"2":{"59":1}}],["threads",{"2":{"59":2,"84":2}}],["thread",{"2":{"23":1,"59":3}}],["than",{"2":{"24":1,"36":1,"41":1,"42":1}}],["that",{"2":{"0":1,"9":2,"10":1,"13":1,"16":5,"20":1,"21":1,"22":2,"23":1,"24":1,"33":1,"35":1,"38":1,"40":2,"42":1,"46":1,"47":1,"49":1,"52":1,"55":1,"59":2,"61":1,"68":1,"70":1,"71":2,"73":1,"81":2,"84":13,"85":13,"98":1,"100":1}}],["things",{"2":{"31":1}}],["think",{"2":{"1":1}}],["thinking",{"2":{"1":1}}],["this",{"2":{"0":1,"1":1,"4":1,"7":1,"10":1,"13":2,"16":4,"17":1,"19":2,"22":3,"23":1,"24":1,"28":1,"31":1,"34":1,"39":1,"40":2,"41":2,"42":2,"45":1,"46":1,"49":1,"53":2,"57":1,"58":1,"59":1,"61":1,"62":2,"67":1,"69":1,"72":1,"76":1,"82":2,"83":2,"84":7,"85":10,"87":1,"88":2,"99":1,"100":1}}],["they",{"2":{"46":4,"62":1}}],["their",{"0":{"39":1,"40":1},"2":{"38":1,"40":1,"47":1,"70":1,"84":3,"85":2}}],["then",{"2":{"21":2,"22":2,"33":1,"41":1,"46":1,"81":1,"82":1,"88":2,"90":1}}],["thereby",{"2":{"84":1}}],["therefore",{"2":{"42":1,"92":1}}],["there",{"2":{"14":2,"21":1,"27":1,"34":1,"46":2,"62":1,"84":1}}],["theme",{"2":{"56":2}}],["them",{"2":{"7":1,"10":1,"36":1,"61":1,"82":1,"84":1}}],["these",{"2":{"0":1,"6":1,"34":1,"36":1,"47":1,"68":1,"70":1}}],["the",{"0":{"32":1,"34":1,"42":1,"50":1,"96":1,"99":1},"1":{"33":1},"2":{"0":5,"1":4,"2":3,"4":1,"5":4,"6":4,"8":6,"9":3,"10":1,"11":1,"13":3,"14":2,"15":1,"16":12,"17":3,"18":5,"19":2,"20":3,"21":10,"22":14,"23":7,"24":2,"27":1,"29":3,"31":1,"32":3,"33":5,"34":3,"35":2,"36":2,"37":9,"39":3,"40":10,"41":3,"42":10,"45":1,"46":7,"48":2,"49":5,"50":4,"51":2,"52":1,"53":2,"54":2,"55":2,"56":9,"59":2,"61":3,"62":6,"63":1,"64":5,"65":3,"66":5,"67":6,"68":1,"69":1,"70":5,"71":4,"72":4,"78":1,"79":3,"80":1,"81":10,"82":2,"84":122,"85":83,"86":1,"87":1,"88":6,"90":2,"91":6,"92":8,"93":5,"94":1,"95":1,"96":4,"98":6,"99":1,"100":5,"102":1}}],["switched",{"2":{"92":1}}],["syntax",{"2":{"92":1,"98":1}}],["system",{"2":{"88":1}}],["symbol",{"2":{"10":1,"12":1,"13":1,"18":1,"20":1,"29":2,"46":5,"51":4,"52":2,"53":2,"54":4,"55":4,"56":6,"84":3,"85":1}}],["src",{"2":{"87":1}}],["sres",{"2":{"59":2,"63":2,"74":2,"80":2}}],["skipped",{"2":{"84":1}}],["skip",{"2":{"84":1}}],["skipmissing",{"2":{"23":1,"41":1}}],["skeleton=a",{"2":{"81":1}}],["skeleton=true",{"2":{"81":2}}],["skeleton=false",{"2":{"79":1,"84":1}}],["skeleton",{"0":{"81":1},"2":{"81":8,"82":4}}],["ssp585",{"2":{"58":1,"102":2}}],["snow3",{"2":{"42":1}}],["snippet",{"2":{"6":1}}],["small",{"2":{"31":1,"46":1}}],["slightly",{"2":{"98":1}}],["slicing",{"2":{"16":1}}],["slices",{"2":{"84":3}}],["slice",{"2":{"16":1,"102":4,"103":1}}],["slow",{"2":{"40":1,"84":1}}],["slurmmanager",{"2":{"23":1}}],["shinclude",{"2":{"88":1}}],["shdocs>",{"2":{"88":1}}],["shnpm",{"2":{"88":2}}],["shouldn",{"2":{"62":1}}],["should",{"2":{"37":1,"46":1,"50":1,"61":1,"62":1,"84":3,"85":1,"87":1,"88":1,"93":1}}],["showprog",{"2":{"84":1}}],["shown",{"2":{"62":1,"84":1}}],["shows",{"2":{"56":1}}],["showing",{"2":{"46":1}}],["show",{"2":{"23":1,"82":1,"106":1}}],["shading=false",{"2":{"104":1,"105":1,"106":1}}],["shall",{"2":{"84":5,"85":1}}],["shares",{"2":{"40":1}}],["share",{"0":{"39":1,"40":1},"2":{"38":1,"40":1,"71":1,"84":1}}],["shared",{"2":{"4":1,"5":1,"6":1,"20":1,"30":1,"35":1,"39":2,"40":3,"44":1,"45":1,"46":2,"58":1,"59":1,"60":1,"63":1,"74":1,"80":1,"81":1,"102":1}}],["shape",{"2":{"6":1}}],["scene",{"2":{"106":3}}],["scenariomip",{"2":{"58":1,"102":2}}],["scenarios",{"2":{"17":1,"102":1}}],["scripts",{"2":{"88":1}}],["scope",{"2":{"84":1,"85":1}}],["scalar",{"2":{"58":1}}],["scattered",{"2":{"7":1}}],["sure",{"2":{"106":1}}],["surface",{"2":{"56":2,"58":2,"59":2,"62":6,"64":5,"65":6,"66":6,"67":10,"104":1,"105":1}}],["such",{"2":{"62":1,"67":1,"84":1,"92":1}}],["subcubes",{"2":{"84":1}}],["subtype",{"2":{"70":1,"85":1,"92":1}}],["subtables",{"2":{"42":1}}],["subsetextensions",{"2":{"85":1}}],["subsetcube",{"2":{"84":1}}],["subseting",{"2":{"68":1}}],["subsetting",{"0":{"37":1,"38":1,"39":1,"40":1},"1":{"39":1,"40":1},"2":{"58":1,"59":1,"85":1,"96":1}}],["subset",{"0":{"36":1},"1":{"37":1,"38":1,"39":1,"40":1},"2":{"37":5,"40":4,"63":1,"66":1,"84":1,"85":1,"102":1}}],["subsets",{"2":{"15":1,"73":1}}],["subsequent",{"2":{"17":1}}],["supposed",{"2":{"84":1}}],["support",{"2":{"27":1,"46":1}}],["supertype",{"2":{"26":1,"27":1}}],["summarysize",{"2":{"47":2}}],["sum",{"2":{"18":1,"19":1,"21":1,"22":2,"41":1,"51":4,"54":2,"55":4,"56":2}}],["suggestions",{"2":{"6":1}}],["s",{"2":{"10":1,"16":3,"18":1,"19":1,"21":2,"33":1,"35":1,"37":1,"39":1,"40":2,"56":7,"61":1,"63":1,"73":1,"81":1,"84":2,"85":1,"94":1,"96":1}}],["style",{"0":{"100":1}}],["st",{"2":{"92":1}}],["stdzero",{"2":{"84":1}}],["stock3",{"2":{"46":4}}],["stock2",{"2":{"46":4}}],["stock1",{"2":{"46":4}}],["stocks",{"2":{"46":7}}],["storing",{"2":{"71":1}}],["storage",{"2":{"11":1,"58":1}}],["stored",{"2":{"70":3,"85":2}}],["stores",{"2":{"70":1,"84":1}}],["store",{"2":{"0":1,"58":4,"70":1,"71":1,"102":2}}],["struct",{"2":{"84":1,"85":4}}],["structures",{"2":{"69":1}}],["structure",{"2":{"33":2,"46":1,"72":1}}],["strings",{"0":{"47":1}}],["string",{"2":{"8":1,"9":2,"10":1,"12":1,"13":1,"14":2,"16":5,"17":3,"18":4,"19":3,"20":1,"21":4,"22":6,"25":1,"27":3,"29":3,"32":1,"33":3,"34":1,"35":2,"37":5,"41":3,"42":3,"47":5,"51":1,"52":1,"54":2,"55":1,"56":1,"58":2,"59":2,"60":1,"62":3,"63":1,"64":2,"65":3,"66":3,"67":5,"74":1,"79":1,"80":1,"81":1,"84":6,"85":4,"91":4,"96":1,"102":1}}],["stable",{"2":{"92":1}}],["stat",{"2":{"78":2}}],["status",{"2":{"62":2}}],["statistics",{"2":{"14":1,"23":1,"42":3,"48":1,"95":1}}],["standard",{"2":{"58":1,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5}}],["standards",{"2":{"58":1,"59":1,"63":1,"74":1,"80":1,"102":1}}],["stack",{"2":{"47":1}}],["started",{"0":{"89":1},"1":{"90":1,"91":1,"92":1}}],["start=12",{"2":{"51":2,"52":1,"54":2,"55":2,"56":3}}],["start=december",{"2":{"51":3,"54":1}}],["start",{"2":{"10":1,"37":1,"76":1,"82":1}}],["still",{"2":{"8":1,"22":1,"71":1,"98":1}}],["step=3",{"2":{"51":2,"52":1,"54":2,"55":2,"56":3}}],["steps",{"2":{"10":1,"14":1,"56":1,"84":1,"88":1}}],["step",{"2":{"7":1,"14":1,"20":1,"41":2,"84":1,"85":2,"102":1}}],["sphere",{"0":{"106":1},"2":{"106":3}}],["spheroid",{"2":{"60":1}}],["split",{"2":{"84":1}}],["splitted",{"2":{"2":1}}],["special",{"2":{"65":1,"84":1,"85":1}}],["specifiers",{"2":{"85":1}}],["specifier",{"2":{"84":1}}],["specifies",{"2":{"84":3}}],["specified",{"2":{"84":8,"85":1}}],["specific",{"2":{"37":1,"84":2}}],["specifying",{"2":{"84":2,"85":1}}],["specify",{"0":{"20":1},"2":{"17":1,"29":1,"84":1}}],["specs",{"2":{"58":1,"102":1}}],["spectral",{"2":{"56":1}}],["sparse",{"2":{"70":1}}],["spatio",{"2":{"41":1}}],["spatial",{"2":{"1":1,"14":1,"22":5,"23":1,"48":1,"70":1}}],["span",{"2":{"37":1,"95":1}}],["space",{"2":{"1":1,"16":1}}],["safe",{"2":{"59":2}}],["sampled",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":3,"16":9,"17":3,"18":3,"19":2,"20":3,"21":9,"22":8,"25":2,"27":4,"29":9,"30":3,"32":9,"33":6,"34":2,"35":3,"37":14,"39":6,"40":10,"41":9,"42":5,"44":1,"45":5,"46":4,"47":4,"51":3,"52":2,"54":2,"55":1,"56":7,"58":6,"59":6,"60":2,"62":9,"63":3,"64":6,"65":4,"66":9,"67":15,"68":2,"74":3,"80":6,"81":6,"91":5,"96":1,"102":3}}],["same",{"2":{"0":1,"2":1,"5":1,"6":1,"9":1,"16":1,"20":1,"21":1,"22":2,"26":1,"27":1,"33":2,"34":2,"35":1,"40":1,"45":1,"46":2,"61":1,"64":1,"65":1,"66":1,"70":1,"71":3,"72":2,"84":1,"85":1,"88":1}}],["saves",{"2":{"79":1,"84":1}}],["save",{"0":{"81":1},"2":{"12":1,"27":1,"45":1,"47":1,"75":2,"76":1,"77":2,"78":1,"81":1,"84":2}}],["savecube",{"2":{"2":1,"75":1,"77":1,"81":1,"84":2}}],["savedataset",{"2":{"4":1,"5":1,"6":1,"76":1,"78":1,"79":2,"80":1,"81":2,"84":2,"85":1}}],["saved",{"2":{"2":1,"11":1,"20":1,"78":1,"79":1}}],["saving",{"2":{"1":1,"4":1,"5":1,"6":1,"16":1}}],["serve",{"2":{"85":1}}],["series",{"0":{"49":1},"2":{"23":1}}],["sequence",{"2":{"70":1}}],["seaborn",{"2":{"103":1,"104":1,"105":1,"106":1}}],["searching",{"2":{"84":1}}],["search",{"2":{"84":1}}],["sea",{"2":{"59":3,"62":6,"63":1,"64":5,"65":6,"66":6,"67":10,"74":1,"80":1}}],["season",{"2":{"51":1,"54":2,"55":1}}],["seasons",{"0":{"51":1,"53":1,"56":1},"1":{"52":1,"53":1},"2":{"51":9,"54":1,"56":5}}],["seasonal",{"0":{"49":1,"95":1,"97":1},"1":{"96":1,"97":1},"2":{"49":1,"55":1,"56":1,"95":1,"96":4}}],["sebastien",{"2":{"59":2,"63":2,"74":2,"80":2}}],["separate",{"2":{"84":1,"85":1}}],["separated",{"2":{"71":1}}],["separately",{"2":{"5":1,"22":1,"23":1}}],["sep",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["selected",{"2":{"85":1,"95":1}}],["select",{"0":{"63":1,"64":1,"65":1,"66":1},"1":{"64":1,"65":1,"66":1,"67":1,"68":1},"2":{"40":1,"63":1}}],["selectors",{"2":{"67":1}}],["selector",{"2":{"40":1,"66":1}}],["selection",{"2":{"40":2}}],["selecting",{"2":{"37":1,"39":1,"40":1}}],["seed",{"2":{"17":1,"21":2}}],["see",{"2":{"16":1,"18":1,"67":1,"84":1,"92":1}}],["second",{"2":{"8":3,"18":1,"19":1,"84":1}}],["section",{"2":{"7":1,"10":1,"24":1,"28":1,"31":1,"46":1,"57":1,"69":1,"83":1}}],["setting",{"2":{"79":1,"84":1,"85":1}}],["sets",{"2":{"6":1,"50":1}}],["set",{"0":{"4":1,"5":1,"6":1},"2":{"4":1,"5":1,"19":2,"22":1,"58":1,"79":1,"84":1,"85":2,"88":1}}],["setchunks",{"2":{"1":1,"2":2,"3":1,"4":1,"5":1,"6":1,"84":1,"85":1}}],["several",{"0":{"16":1},"2":{"0":1,"16":1,"35":1,"38":1}}],["significant",{"2":{"76":1}}],["sin",{"2":{"95":1}}],["sink",{"2":{"85":1}}],["since",{"2":{"62":1,"93":1}}],["single",{"0":{"95":1},"1":{"96":1,"97":1},"2":{"0":1,"7":1,"8":1,"59":1,"72":1,"75":1,"77":1,"84":6,"85":1}}],["simulate",{"2":{"46":1}}],["simplicity",{"2":{"95":1}}],["simply",{"2":{"23":1,"47":1,"82":1,"88":1,"93":1}}],["simple",{"2":{"16":1,"31":1,"91":1}}],["situations",{"2":{"1":1}}],["size=",{"2":{"104":1,"105":1,"106":1}}],["sizes",{"2":{"2":1,"84":2,"85":2}}],["size",{"2":{"0":1,"1":1,"4":1,"5":1,"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"21":3,"22":2,"25":1,"27":1,"29":2,"32":1,"33":3,"34":1,"35":1,"37":5,"41":3,"42":3,"54":1,"56":1,"58":1,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5,"78":4,"81":1,"82":1,"84":3,"85":4,"91":3,"95":1,"96":2,"97":1,"103":1}}],["sosstsst",{"2":{"59":1,"62":3,"64":2,"65":3,"66":3,"67":5}}],["software",{"2":{"59":1,"63":1,"74":1}}],["sort",{"2":{"22":1}}],["so",{"2":{"2":1,"23":1,"36":1,"40":1,"84":1,"85":1}}],["source",{"2":{"0":2,"59":1,"63":1,"74":1,"79":1,"80":1,"84":25,"85":24}}],["sometimes",{"2":{"81":1,"100":1}}],["some",{"0":{"40":1},"2":{"0":1,"11":1,"38":1,"40":1,"41":1,"46":2,"56":1,"84":1,"95":1,"104":1}}],["advance",{"2":{"62":1}}],["addargs",{"2":{"84":3,"85":1}}],["adds",{"2":{"70":2,"73":1}}],["addprocs",{"2":{"23":2}}],["addition",{"2":{"22":1,"24":1,"70":1}}],["additional",{"2":{"4":3,"5":3,"9":1,"16":1,"21":1,"40":10,"45":4,"46":4,"58":2,"80":3,"84":4,"85":3,"102":2}}],["added",{"2":{"15":1,"80":1,"84":1,"85":1}}],["add",{"2":{"6":1,"10":1,"12":1,"41":1,"59":1,"87":2,"90":2,"93":3,"94":4,"104":1}}],["again",{"2":{"79":1,"82":1}}],["agreement",{"2":{"56":1}}],["aggregation",{"2":{"23":1}}],["aggregate",{"2":{"22":1}}],["air",{"2":{"56":2,"58":3}}],["authority",{"2":{"60":5}}],["auto",{"2":{"18":1,"20":1,"84":1}}],["aug",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["api",{"0":{"83":1,"84":1,"85":1},"1":{"84":1,"85":1}}],["apr",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["appropriate",{"2":{"87":1}}],["approximated",{"2":{"85":1}}],["approx",{"2":{"84":1,"85":1}}],["approach",{"2":{"9":1}}],["append=true",{"2":{"80":2}}],["append",{"0":{"80":1},"2":{"79":1,"84":1}}],["apply",{"0":{"41":1},"2":{"10":2,"13":1,"15":1,"21":1,"23":1,"56":1,"96":1}}],["application",{"2":{"21":1}}],["applications",{"2":{"0":1}}],["applies",{"2":{"13":1}}],["applied",{"2":{"0":1,"3":1,"4":1,"22":1,"84":2,"85":1}}],["a3",{"2":{"30":4}}],["a2",{"2":{"29":1,"30":3,"59":2,"63":2,"74":2,"80":2,"91":1}}],["a1",{"2":{"29":1}}],["able",{"2":{"45":1}}],["abstractstring",{"2":{"84":1}}],["abstractdict",{"2":{"84":1,"85":3}}],["abstractdimarray",{"2":{"26":1,"27":1,"70":1}}],["abs",{"2":{"21":1}}],["about",{"2":{"1":2,"36":1,"66":1,"91":1,"99":1}}],["above",{"2":{"0":1,"5":1,"16":1,"81":1,"90":1}}],["atol",{"2":{"66":1}}],["atmosphere",{"2":{"59":1,"63":1,"74":1,"80":1}}],["atmos",{"2":{"58":1,"102":1}}],["attributes",{"2":{"56":1,"84":1,"85":1}}],["at",{"2":{"21":1,"22":4,"27":1,"40":1,"46":3,"56":1,"59":3,"62":3,"63":1,"64":2,"65":6,"66":7,"67":5,"71":1,"72":2,"74":1,"79":2,"80":1,"84":3,"85":2,"86":1,"87":2,"88":2,"91":1,"98":2}}],["after",{"2":{"14":1,"16":1,"60":1,"84":3}}],["asaxisarray",{"2":{"84":1}}],["assemble",{"2":{"91":1}}],["assessment",{"2":{"59":2,"63":2,"74":2,"80":2}}],["associated",{"2":{"84":1}}],["assign",{"0":{"43":1},"1":{"44":1,"45":1}}],["aspect=dataaspect",{"2":{"56":1,"103":1}}],["asked",{"0":{"31":1},"1":{"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1}}],["as",{"2":{"5":1,"8":1,"9":1,"10":1,"12":1,"16":6,"17":1,"18":1,"19":1,"21":1,"22":2,"23":2,"26":1,"27":2,"29":1,"33":2,"34":1,"35":1,"40":1,"42":1,"46":3,"48":1,"51":2,"56":1,"58":1,"59":1,"60":1,"61":1,"64":1,"67":1,"68":1,"70":1,"73":1,"81":1,"82":1,"84":11,"85":3,"91":1,"92":1,"96":1,"100":1,"102":1}}],["axs",{"2":{"50":1,"56":9}}],["ax",{"2":{"42":1,"95":3,"97":3,"103":1,"104":3,"105":3,"106":5}}],["axlist",{"2":{"10":2,"17":2,"19":1,"21":4,"22":2,"23":2,"29":2,"30":1,"35":3,"85":5,"91":3}}],["axessmall",{"2":{"85":2}}],["axes",{"0":{"32":1,"34":1},"1":{"33":1},"2":{"4":4,"5":4,"6":1,"20":1,"29":1,"30":1,"32":2,"33":1,"34":2,"37":2,"39":5,"40":13,"44":1,"45":5,"46":8,"58":3,"59":1,"60":1,"63":2,"70":2,"74":1,"80":4,"81":1,"84":15,"85":11,"91":1,"96":2,"102":3}}],["axislegend",{"2":{"97":1}}],["axis=false",{"2":{"106":1}}],["axis=",{"2":{"95":1}}],["axisdescriptor",{"2":{"85":1}}],["axisdesc",{"2":{"84":3}}],["axis",{"0":{"4":1},"2":{"4":1,"9":2,"16":3,"34":1,"37":1,"39":1,"40":7,"46":1,"56":1,"60":2,"68":1,"73":1,"81":1,"84":16,"85":14,"91":1,"97":1,"102":1,"103":1}}],["always",{"2":{"84":2,"85":1,"86":1,"92":1}}],["already",{"2":{"62":1,"79":1,"84":1,"85":1}}],["al",{"2":{"59":1,"63":1,"72":1,"74":1,"80":1}}],["alternatives",{"2":{"84":1}}],["alternatively",{"2":{"0":1,"2":1,"84":2,"90":1}}],["altered",{"2":{"58":1,"59":1,"62":3,"64":2,"65":3,"66":3,"67":5}}],["although",{"2":{"46":1,"47":1,"67":1}}],["algebraofgraphics",{"2":{"94":1}}],["algebra",{"0":{"41":1},"2":{"41":1}}],["along",{"0":{"8":1},"2":{"8":1,"16":1,"84":6,"85":2,"98":1}}],["allaxes",{"2":{"85":1}}],["allinaxes",{"2":{"85":1}}],["allmissing",{"2":{"84":1}}],["allocate",{"2":{"81":1}}],["allocation",{"2":{"22":1}}],["allow",{"2":{"85":1}}],["allowed",{"2":{"47":1}}],["allowing",{"2":{"26":1,"27":1,"71":1}}],["allows",{"2":{"23":1}}],["all",{"0":{"6":1,"39":1,"40":1},"2":{"4":1,"6":2,"10":1,"12":1,"13":1,"14":2,"22":1,"23":4,"38":1,"40":2,"46":3,"56":2,"60":1,"67":1,"70":1,"72":2,"79":3,"81":1,"83":1,"84":6,"85":7,"88":1}}],["also",{"2":{"2":1,"3":1,"14":1,"21":1,"23":1,"29":1,"32":1,"40":1,"42":1,"70":2,"71":1,"76":1,"81":2,"84":1,"90":1}}],["annual",{"2":{"84":1}}],["analog",{"2":{"71":1}}],["analyzing",{"2":{"1":1}}],["anchor",{"2":{"21":1}}],["another",{"2":{"16":1,"40":1}}],["anynymous",{"2":{"84":1}}],["anyocean",{"2":{"84":1}}],["anymissing",{"2":{"84":1}}],["anymore",{"2":{"21":1}}],["any",{"2":{"8":1,"9":1,"10":1,"11":1,"14":2,"16":5,"18":3,"20":1,"21":2,"22":4,"25":1,"27":3,"29":1,"32":1,"33":3,"34":1,"35":1,"37":6,"41":3,"42":3,"47":4,"51":3,"52":2,"54":4,"55":3,"56":3,"58":2,"59":3,"60":1,"62":3,"63":1,"64":2,"65":3,"66":3,"67":5,"74":1,"80":1,"81":1,"84":4,"85":9,"91":1,"96":1,"102":1}}],["an",{"0":{"8":1},"2":{"9":1,"10":4,"12":1,"13":1,"15":1,"23":2,"33":1,"34":1,"39":1,"40":1,"42":1,"47":1,"61":1,"63":3,"66":1,"70":1,"71":1,"73":1,"74":1,"75":1,"76":1,"77":1,"79":1,"80":1,"84":19,"85":8}}],["and",{"0":{"17":1,"28":1,"34":1,"48":1,"57":1,"63":1,"67":1,"74":1},"1":{"18":1,"19":1,"20":1,"29":1,"30":1,"49":1,"50":1,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1,"58":1,"59":1,"60":1,"61":1,"62":1,"64":1,"65":1,"66":1,"67":1,"68":1,"75":1,"76":1,"77":1,"78":1,"79":1,"80":1,"81":1,"82":1},"2":{"0":1,"2":1,"5":1,"6":1,"7":1,"8":1,"12":1,"16":4,"17":2,"18":2,"20":2,"21":4,"22":2,"24":1,"28":1,"29":1,"32":1,"35":1,"37":1,"40":6,"41":1,"42":6,"46":5,"48":1,"49":1,"51":1,"56":1,"57":2,"58":1,"59":1,"62":1,"63":1,"67":1,"70":5,"71":3,"72":2,"74":1,"76":2,"78":1,"79":1,"80":1,"81":3,"82":1,"84":19,"85":6,"86":1,"88":4,"90":1,"91":2,"95":1,"102":1,"104":1}}],["available",{"2":{"67":2,"81":1,"83":1,"84":2,"90":1}}],["avariable",{"2":{"0":1}}],["avoid",{"2":{"59":1}}],["avoids",{"2":{"22":1}}],["avoided",{"2":{"0":1}}],["averaging",{"2":{"14":1}}],["averages",{"0":{"49":1},"2":{"48":1}}],["average",{"2":{"14":1,"49":2}}],["arg",{"2":{"84":1}}],["argument",{"2":{"23":1,"81":1,"84":4,"85":2}}],["arguments",{"2":{"21":1,"56":1,"84":11,"85":3}}],["artype",{"2":{"84":2}}],["archgdaldatasets",{"2":{"60":1}}],["archgdal",{"2":{"60":2,"94":1}}],["arr2",{"2":{"27":1}}],["arr",{"2":{"22":7,"27":2}}],["arrayinfo",{"2":{"85":1}}],["arrays",{"2":{"6":1,"7":1,"8":2,"9":1,"11":1,"28":1,"30":2,"58":2,"59":2,"69":1,"70":4,"71":3,"72":3,"84":2,"85":1}}],["array",{"0":{"22":1,"25":1},"2":{"0":1,"1":1,"8":2,"9":2,"10":3,"12":2,"13":2,"15":1,"18":1,"20":1,"22":8,"25":2,"34":1,"51":1,"56":1,"63":1,"70":4,"71":1,"72":1,"73":2,"81":5,"82":5,"84":10,"85":4,"91":3}}],["arbitrary",{"2":{"16":1}}],["arithmetics",{"0":{"12":1},"2":{"10":1}}],["areas",{"2":{"84":1}}],["area",{"2":{"58":2,"84":1}}],["areacella",{"2":{"58":2,"102":1}}],["are",{"2":{"0":1,"11":1,"18":1,"19":1,"24":3,"34":1,"36":1,"40":1,"46":3,"56":2,"62":2,"63":1,"67":1,"68":1,"70":3,"71":2,"72":3,"81":1,"84":11,"85":6,"86":1,"88":1,"98":2,"100":1}}],["according",{"2":{"84":1}}],["access",{"2":{"1":2,"13":1,"29":1,"70":1,"73":1}}],["accessed",{"2":{"0":2,"58":1,"59":2}}],["activate",{"2":{"42":1,"88":2,"95":1,"103":1,"106":1}}],["actually",{"2":{"85":1}}],["actual",{"2":{"13":1,"59":1,"81":1,"85":1,"91":1}}],["achieves",{"2":{"33":1}}],["achieved",{"2":{"0":1}}],["across",{"2":{"0":1,"7":1,"16":1,"70":3}}],["a",{"0":{"9":1,"11":1,"22":1,"29":1,"30":1,"32":1,"36":1,"37":1,"38":1,"39":1,"40":1,"43":1,"46":2,"47":1,"64":1,"68":1,"79":1,"80":1,"95":1,"101":1},"1":{"33":1,"37":1,"38":1,"39":2,"40":2,"44":1,"45":1,"96":1,"97":1},"2":{"0":4,"2":7,"3":1,"4":1,"7":1,"8":1,"9":2,"10":3,"11":1,"12":4,"13":2,"14":2,"15":1,"16":5,"17":2,"18":1,"19":2,"20":1,"22":75,"23":11,"25":2,"26":5,"27":8,"29":1,"31":1,"32":2,"33":2,"34":1,"36":4,"37":3,"38":1,"40":2,"42":3,"44":2,"45":2,"46":4,"49":1,"54":1,"56":2,"58":6,"59":4,"60":1,"66":2,"67":4,"68":1,"70":12,"71":4,"72":8,"73":1,"75":3,"76":3,"77":3,"78":1,"79":4,"81":5,"84":64,"85":31,"87":2,"88":2,"91":4,"92":1,"99":1,"100":1}}],["iall",{"2":{"85":1}}],["iwindow",{"2":{"85":1}}],["icolon",{"2":{"85":1}}],["icefire",{"2":{"103":1,"104":1,"105":1,"106":1}}],["ice",{"2":{"59":1,"63":1,"74":1,"80":1}}],["ipcc",{"2":{"59":3,"63":3,"74":3,"80":3}}],["ipsl",{"2":{"59":6,"63":6,"74":6,"80":6}}],["idx",{"2":{"96":3}}],["identical",{"2":{"84":1}}],["id",{"2":{"58":2,"59":2,"63":2,"74":2,"80":2,"102":2}}],["irregular",{"2":{"20":1,"40":6,"42":2,"46":4,"51":1,"54":2,"55":1,"56":1,"58":4,"59":2,"62":3,"63":1,"64":2,"65":2,"66":6,"67":5,"74":1,"80":1,"85":1,"102":2}}],["illustrate",{"2":{"17":1}}],["immutable",{"2":{"11":1}}],["improving",{"2":{"92":1}}],["improvement",{"2":{"76":1}}],["improve",{"2":{"6":1}}],["implementing",{"2":{"84":1}}],["importance",{"2":{"85":1}}],["important",{"2":{"1":1}}],["impossible",{"2":{"11":1}}],["i",{"0":{"35":1,"36":1,"41":1,"42":1,"43":1,"46":1},"1":{"37":1,"38":1,"39":1,"40":1,"44":1,"45":1},"2":{"8":1,"22":3,"26":1,"27":1,"37":1,"56":2,"59":2,"79":1,"84":7,"85":4,"88":2,"91":1,"96":3}}],["ispar",{"2":{"84":1,"85":1}}],["ismissing",{"2":{"81":1}}],["issue",{"2":{"76":1}}],["issues",{"2":{"50":1}}],["isequal",{"2":{"22":1}}],["is",{"2":{"1":2,"2":1,"6":1,"7":1,"9":1,"13":1,"14":2,"15":1,"16":4,"21":2,"22":2,"23":3,"24":1,"27":1,"31":1,"33":2,"35":1,"36":1,"40":2,"41":1,"42":4,"46":2,"47":2,"49":2,"50":2,"51":1,"55":1,"59":2,"62":2,"64":1,"67":2,"68":1,"70":4,"71":1,"72":2,"73":1,"81":4,"82":1,"84":12,"85":10,"87":1,"90":1,"92":1,"93":1,"98":1,"100":1}}],["if",{"2":{"0":1,"18":1,"19":1,"24":1,"40":3,"76":1,"79":1,"81":2,"84":12,"85":6,"88":1,"93":1,"98":1}}],["inline",{"2":{"106":2}}],["incubes",{"2":{"85":1}}],["incs",{"2":{"85":1}}],["include",{"2":{"84":2,"85":1}}],["included",{"2":{"67":1}}],["inarbc",{"2":{"85":1}}],["inar",{"2":{"85":2}}],["inplace",{"2":{"84":3,"85":1}}],["inputcube",{"2":{"85":2}}],["inputs",{"2":{"18":1}}],["input",{"2":{"16":1,"17":1,"18":1,"20":1,"23":2,"42":1,"84":13,"85":8}}],["innerchunks",{"2":{"85":1}}],["inner",{"2":{"84":9,"85":3}}],["installed",{"2":{"92":1}}],["installation",{"0":{"90":1}}],["install",{"0":{"93":1},"2":{"88":1,"90":1,"94":1}}],["instead",{"2":{"8":1,"9":1,"13":1,"32":1,"37":1,"67":1,"70":1}}],["insize",{"2":{"85":1}}],["inside",{"2":{"84":3}}],["initialization",{"2":{"58":1,"102":1}}],["initially",{"2":{"22":1}}],["inds",{"2":{"85":1}}],["indeed",{"2":{"82":1}}],["indexing",{"2":{"65":2,"66":2,"82":1,"92":1}}],["index",{"2":{"58":2,"85":2,"102":2}}],["independently",{"2":{"46":1}}],["indices",{"2":{"85":1,"96":1}}],["indicate",{"2":{"84":1}}],["indicating",{"2":{"9":1,"22":1,"84":1}}],["indims=indims",{"2":{"22":1,"23":1}}],["indims",{"0":{"18":1,"19":1,"21":1},"2":{"16":8,"18":4,"20":7,"21":3,"84":7}}],["individually",{"2":{"13":2}}],["individual",{"2":{"0":1,"58":1,"59":1}}],["information",{"2":{"62":1,"79":1,"85":2}}],["info",{"2":{"16":2,"27":1,"32":1,"48":1,"59":11,"78":4,"81":1,"92":1}}],["introducing",{"2":{"72":1}}],["int",{"2":{"33":1,"47":1,"96":3}}],["interoperability",{"0":{"94":1}}],["internal",{"0":{"85":1},"2":{"85":9}}],["internally",{"2":{"71":1}}],["interface",{"2":{"84":2,"100":1}}],["interested",{"2":{"98":1}}],["interest",{"2":{"62":1}}],["interval",{"2":{"59":1,"62":3,"64":2,"65":3,"66":4,"67":6}}],["intervalsets",{"2":{"67":1}}],["intervals",{"0":{"67":1},"2":{"37":1}}],["interactive",{"2":{"0":1}}],["integer",{"2":{"29":1,"65":1,"66":1,"70":1}}],["int64",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"16":8,"17":1,"18":1,"19":1,"21":7,"25":2,"27":2,"29":3,"32":9,"33":7,"34":4,"37":15,"39":4,"40":7,"42":3,"44":1,"45":5,"47":5,"51":6,"52":6,"54":4,"56":18,"80":3,"81":6,"85":1,"91":2}}],["into",{"0":{"61":1,"101":1},"1":{"62":1},"2":{"0":1,"1":1,"2":1,"7":1,"8":1,"16":1,"22":1,"24":2,"27":1,"40":4,"47":1,"57":1,"61":1,"72":2,"79":1,"82":1,"84":6,"85":3,"88":1,"106":1}}],["in",{"0":{"20":1,"43":1},"1":{"44":1,"45":1},"2":{"0":5,"1":1,"2":1,"4":2,"5":1,"8":1,"9":1,"10":1,"11":1,"12":1,"13":2,"14":4,"16":5,"17":1,"18":2,"19":2,"21":5,"22":8,"23":3,"24":2,"25":1,"26":1,"27":2,"29":2,"32":1,"33":3,"34":2,"37":5,"38":1,"40":1,"41":3,"42":5,"46":4,"47":2,"49":2,"50":2,"53":3,"54":1,"56":4,"58":2,"59":4,"61":1,"62":9,"64":2,"65":3,"66":4,"67":7,"68":1,"69":1,"70":5,"71":1,"72":2,"81":2,"82":1,"84":15,"85":9,"88":2,"90":1,"91":4,"93":2,"96":2,"98":3,"100":4,"102":1}}],["iter",{"2":{"84":1}}],["iterate",{"2":{"100":1}}],["iteration",{"0":{"100":1}}],["iterator",{"2":{"42":1}}],["iterators",{"2":{"22":1}}],["iterable",{"2":{"42":2,"84":2}}],["itself",{"2":{"84":1,"85":1}}],["its",{"2":{"0":1}}],["it",{"2":{"0":2,"1":3,"12":1,"16":1,"18":1,"20":1,"23":2,"32":1,"34":1,"35":1,"40":2,"42":2,"46":2,"47":1,"52":1,"54":1,"56":1,"59":1,"63":1,"70":2,"71":1,"73":1,"78":1,"79":1,"81":2,"82":1,"84":10,"85":5,"88":1,"90":1}}],["lscene",{"2":{"106":1}}],["lmdz",{"2":{"59":1,"63":1,"74":1,"80":1}}],["link",{"2":{"87":1}}],["linewidth=0",{"2":{"104":1,"105":1}}],["linewidth=2",{"2":{"97":2}}],["linewidth=1",{"2":{"95":1,"97":1}}],["linestyle=",{"2":{"97":2}}],["lines",{"2":{"95":1,"97":3}}],["line",{"2":{"42":1}}],["lim",{"2":{"59":1,"63":1,"74":1,"80":1}}],["libraries",{"2":{"37":1,"70":1}}],["libray",{"2":{"36":1}}],["little",{"2":{"23":1}}],["list",{"2":{"22":1,"46":5,"84":7,"85":6}}],["like",{"2":{"0":1,"42":1,"46":1,"84":2,"85":1,"87":1}}],["learn",{"2":{"100":1}}],["learning",{"2":{"70":1,"98":1}}],["leap",{"2":{"95":1}}],["least",{"2":{"40":1,"46":1,"84":1}}],["length",{"2":{"51":2,"52":1,"54":3,"84":1,"85":3}}],["length=20",{"2":{"35":1,"91":1}}],["length=365",{"2":{"95":1}}],["length=3",{"2":{"17":1}}],["length=4",{"2":{"17":1}}],["length=15",{"2":{"10":1,"22":1,"23":1,"29":1,"35":1,"91":1}}],["length=10",{"2":{"10":1,"22":1,"23":1,"29":1,"35":1,"91":1}}],["level",{"2":{"21":1,"46":1,"76":1,"78":1,"87":1,"88":1}}],["left",{"2":{"14":2}}],["let",{"2":{"10":1,"16":2,"18":1,"19":1,"33":1,"35":1,"37":1,"39":1,"40":1,"56":1,"61":1,"63":1,"96":1}}],["loopinds",{"2":{"85":2}}],["looping",{"2":{"84":1,"85":1}}],["loopcachesize",{"2":{"85":1}}],["loopchunksize",{"2":{"84":1}}],["loopaxes",{"2":{"85":1}}],["loopvars",{"2":{"84":1,"85":1}}],["loops",{"2":{"84":1}}],["loop",{"2":{"84":1,"85":2}}],["looped",{"2":{"84":3,"85":3}}],["look",{"2":{"79":1,"84":1,"85":1,"87":1,"88":1}}],["lookups",{"2":{"51":15,"52":10,"54":5,"55":5,"56":38,"68":3}}],["lookup",{"2":{"51":1,"53":1,"102":3}}],["looks",{"2":{"42":1,"46":1}}],["located",{"2":{"98":1}}],["locate",{"2":{"88":1}}],["location",{"2":{"85":3}}],["locations",{"2":{"71":1,"72":1}}],["localhost",{"2":{"88":1}}],["locally",{"0":{"88":1},"2":{"88":1}}],["local",{"2":{"23":1,"58":1}}],["lock",{"2":{"59":3}}],["locks",{"2":{"59":1}}],["lowclip",{"2":{"56":4}}],["low",{"2":{"46":4}}],["lost",{"2":{"24":1}}],["lo",{"2":{"16":4}}],["loadorgenerate",{"2":{"85":1}}],["loading",{"2":{"60":1,"62":1,"82":1}}],["load",{"0":{"61":1},"1":{"62":1},"2":{"16":1,"37":1,"40":2,"61":1,"62":1,"70":1}}],["loaded",{"2":{"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"21":3,"22":2,"25":1,"27":1,"29":2,"32":1,"33":3,"34":1,"35":1,"37":5,"40":2,"41":3,"42":3,"47":2,"54":1,"58":1,"59":1,"62":8,"64":2,"65":3,"66":3,"67":5,"81":1,"91":2,"96":1}}],["long",{"2":{"56":1,"58":1,"59":1,"62":4,"64":2,"65":3,"66":3,"67":5}}],["longitudes=longitudes",{"2":{"40":1}}],["longitudes",{"2":{"40":12}}],["longitude",{"2":{"21":1,"37":1,"60":1,"91":2}}],["lonlat",{"2":{"39":1}}],["lon=1",{"2":{"37":1,"39":1}}],["lon",{"2":{"10":2,"12":1,"13":1,"14":2,"16":10,"17":2,"18":1,"19":1,"20":1,"21":5,"22":12,"23":1,"26":2,"29":3,"30":1,"35":2,"37":7,"39":3,"41":4,"42":3,"58":2,"59":2,"62":3,"63":1,"64":2,"65":3,"66":6,"67":10,"68":2,"74":1,"80":1,"91":2,"102":2,"104":3}}],["lazy",{"2":{"84":1}}],["lazily",{"2":{"9":1,"13":1,"16":2,"35":1,"58":1,"59":1,"62":1,"64":2,"65":3,"66":3,"67":5}}],["layername",{"2":{"84":2}}],["layername=",{"2":{"81":2,"85":1}}],["layer",{"2":{"81":1,"84":1,"85":1}}],["layout",{"2":{"56":2}}],["labelled",{"2":{"84":1}}],["labels",{"2":{"56":1,"68":1,"72":1,"73":1}}],["label=false",{"2":{"56":1}}],["label=",{"2":{"56":1,"97":3}}],["label=cb",{"2":{"56":1}}],["label",{"2":{"56":3,"58":1,"102":1}}],["last",{"2":{"16":1,"23":1}}],["la",{"2":{"16":4}}],["latest",{"2":{"92":1,"93":1}}],["later",{"2":{"18":1}}],["lat=5",{"2":{"37":1,"39":1}}],["latitudes=latitudes",{"2":{"40":1}}],["latitudes",{"2":{"40":11}}],["latitude",{"2":{"21":1,"37":1,"60":1,"91":2}}],["lat",{"2":{"10":2,"12":1,"13":1,"14":2,"16":7,"17":2,"18":1,"19":1,"20":1,"21":5,"22":12,"23":1,"26":2,"29":3,"30":1,"35":2,"37":7,"39":3,"41":4,"42":3,"58":2,"59":2,"62":3,"63":1,"64":2,"65":3,"66":5,"67":5,"68":1,"74":1,"80":1,"84":1,"91":2,"102":3,"104":1,"105":1}}],["larger",{"2":{"24":1}}],["large",{"2":{"0":2,"24":1,"50":1,"70":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/previews/PR479/assets/chunks/@localSearchIndexroot.DspHECeV.js b/previews/PR479/assets/chunks/@localSearchIndexroot.DspHECeV.js new file mode 100644 index 00000000..31a50423 --- /dev/null +++ b/previews/PR479/assets/chunks/@localSearchIndexroot.DspHECeV.js @@ -0,0 +1 @@ +const e='{"documentCount":107,"nextId":107,"documentIds":{"0":"/YAXArrays.jl/previews/PR479/UserGuide/cache.html#Caching-YAXArrays","1":"/YAXArrays.jl/previews/PR479/UserGuide/chunk.html#Chunk-YAXArrays","2":"/YAXArrays.jl/previews/PR479/UserGuide/chunk.html#Chunking-YAXArrays","3":"/YAXArrays.jl/previews/PR479/UserGuide/chunk.html#Chunking-Datasets","4":"/YAXArrays.jl/previews/PR479/UserGuide/chunk.html#Set-Chunks-by-Axis","5":"/YAXArrays.jl/previews/PR479/UserGuide/chunk.html#Set-chunking-by-Variable","6":"/YAXArrays.jl/previews/PR479/UserGuide/chunk.html#Set-chunking-for-all-variables","7":"/YAXArrays.jl/previews/PR479/UserGuide/combine.html#Combine-YAXArrays","8":"/YAXArrays.jl/previews/PR479/UserGuide/combine.html#cat-along-an-existing-dimension","9":"/YAXArrays.jl/previews/PR479/UserGuide/combine.html#concatenatecubes-to-a-new-dimension","10":"/YAXArrays.jl/previews/PR479/UserGuide/convert.html#Convert-YAXArrays","11":"/YAXArrays.jl/previews/PR479/UserGuide/convert.html#Convert-Base.Array","12":"/YAXArrays.jl/previews/PR479/UserGuide/convert.html#Convert-Raster","13":"/YAXArrays.jl/previews/PR479/UserGuide/convert.html#Convert-DimArray","14":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Compute-YAXArrays","15":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Modify-elements-of-a-YAXArray","16":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#arithmetics","17":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#map","18":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#mapslices","19":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#mapCube","20":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Operations-over-several-YAXArrays","21":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#OutDims-and-YAXArray-Properties","22":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#One-InDims-to-many-OutDims","23":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Many-InDims-to-many-OutDims","24":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Specify-path-in-OutDims","25":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Different-InDims-names","26":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Creating-a-vector-array","27":"/YAXArrays.jl/previews/PR479/UserGuide/compute.html#Distributed-Computation","28":"/YAXArrays.jl/previews/PR479/UserGuide/create.html#Create-YAXArrays-and-Datasets","29":"/YAXArrays.jl/previews/PR479/UserGuide/create.html#Create-a-YAXArray","30":"/YAXArrays.jl/previews/PR479/UserGuide/create.html#Create-a-Dataset","31":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Frequently-Asked-Questions-(FAQ)","32":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Extract-the-axes-names-from-a-Cube","33":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#rebuild","34":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Obtain-values-from-axes-and-data-from-the-cube","35":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#How-do-I-concatenate-cubes","36":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#How-do-I-subset-a-YAXArray-(-Cube-)-or-Dataset?","37":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Subsetting-a-YAXArray","38":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Subsetting-a-Dataset","39":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Subsetting-a-Dataset-whose-variables-share-all-their-dimensions","40":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Subsetting-a-Dataset-whose-variables-share-some-but-not-all-of-their-dimensions","41":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#How-do-I-apply-map-algebra?","42":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#How-do-I-use-the-CubeTable-function?","43":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#How-do-I-assign-variable-names-to-YAXArrays-in-a-Dataset","44":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#One-variable-name","45":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Multiple-variable-names","46":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Ho-do-I-construct-a-Dataset-from-a-TimeArray","47":"/YAXArrays.jl/previews/PR479/UserGuide/faq.html#Create-a-YAXArray-with-unions-containing-Strings","48":"/YAXArrays.jl/previews/PR479/UserGuide/read.html#Read-YAXArrays-and-Datasets","49":"/YAXArrays.jl/previews/PR479/UserGuide/read.html#Read-Zarr","50":"/YAXArrays.jl/previews/PR479/UserGuide/read.html#Read-NetCDF","51":"/YAXArrays.jl/previews/PR479/UserGuide/read.html#Read-GDAL-(GeoTIFF,-GeoJSON)","52":"/YAXArrays.jl/previews/PR479/UserGuide/read.html#Load-data-into-memory","53":"/YAXArrays.jl/previews/PR479/UserGuide/read.html#readcubedata","54":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#Group-YAXArrays-and-Datasets","55":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#Seasonal-Averages-from-Time-Series-of-Monthly-Means","56":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#Download-the-data","57":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#GroupBy:-seasons","58":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#dropdims","59":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#seasons","60":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#GroupBy:-weight","61":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#weights","62":"/YAXArrays.jl/previews/PR479/UserGuide/group.html#weighted-seasons","63":"/YAXArrays.jl/previews/PR479/UserGuide/types.html#types","64":"/YAXArrays.jl/previews/PR479/UserGuide/types.html#yaxarray","65":"/YAXArrays.jl/previews/PR479/UserGuide/types.html#dataset","66":"/YAXArrays.jl/previews/PR479/UserGuide/types.html#(Data)-Cube","67":"/YAXArrays.jl/previews/PR479/UserGuide/types.html#dimension","68":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Write-YAXArrays-and-Datasets","69":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Write-Zarr","70":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#zarr-compression","71":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Write-NetCDF","72":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#netcdf-compression","73":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Overwrite-a-Dataset","74":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Append-to-a-Dataset","75":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Save-Skeleton","76":"/YAXArrays.jl/previews/PR479/UserGuide/write.html#Update-values-of-dataset","77":"/YAXArrays.jl/previews/PR479/development/contribute.html#Contribute-to-YAXArrays.jl","78":"/YAXArrays.jl/previews/PR479/development/contribute.html#Contribute-to-Documentation","79":"/YAXArrays.jl/previews/PR479/development/contribute.html#Build-docs-locally","80":"/YAXArrays.jl/previews/PR479/UserGuide/select.html#Select-YAXArrays-and-Datasets","81":"/YAXArrays.jl/previews/PR479/UserGuide/select.html#Select-a-YAXArray","82":"/YAXArrays.jl/previews/PR479/UserGuide/select.html#Select-elements","83":"/YAXArrays.jl/previews/PR479/UserGuide/select.html#Select-ranges","84":"/YAXArrays.jl/previews/PR479/UserGuide/select.html#Closed-and-open-intervals","85":"/YAXArrays.jl/previews/PR479/UserGuide/select.html#Get-a-dimension","86":"/YAXArrays.jl/previews/PR479/api.html#API-Reference","87":"/YAXArrays.jl/previews/PR479/api.html#Public-API","88":"/YAXArrays.jl/previews/PR479/api.html#Internal-API","89":"/YAXArrays.jl/previews/PR479/#How-to-Install-YAXArrays.jl?","90":"/YAXArrays.jl/previews/PR479/#Want-interoperability?","91":"/YAXArrays.jl/previews/PR479/get_started.html#Getting-Started","92":"/YAXArrays.jl/previews/PR479/get_started.html#installation","93":"/YAXArrays.jl/previews/PR479/get_started.html#quickstart","94":"/YAXArrays.jl/previews/PR479/get_started.html#updates","95":"/YAXArrays.jl/previews/PR479/tutorials/mean_seasonal_cycle.html#Mean-Seasonal-Cycle-for-a-single-pixel","96":"/YAXArrays.jl/previews/PR479/tutorials/mean_seasonal_cycle.html#Define-the-cube","97":"/YAXArrays.jl/previews/PR479/tutorials/mean_seasonal_cycle.html#Plot-results:-mean-seasonal-cycle","98":"/YAXArrays.jl/previews/PR479/tutorials/other_tutorials.html#Other-tutorials","99":"/YAXArrays.jl/previews/PR479/tutorials/other_tutorials.html#General-overview-of-the-functionality-of-YAXArrays","100":"/YAXArrays.jl/previews/PR479/tutorials/other_tutorials.html#Table-style-iteration-over-YAXArrays","101":"/YAXArrays.jl/previews/PR479/tutorials/other_tutorials.html#Combining-multiple-tiff-files-into-a-zarr-based-datacube","102":"/YAXArrays.jl/previews/PR479/tutorials/plottingmaps.html#Plotting-maps","103":"/YAXArrays.jl/previews/PR479/tutorials/plottingmaps.html#Heatmap-plot","104":"/YAXArrays.jl/previews/PR479/tutorials/plottingmaps.html#Wintri-Projection","105":"/YAXArrays.jl/previews/PR479/tutorials/plottingmaps.html#Moll-projection","106":"/YAXArrays.jl/previews/PR479/tutorials/plottingmaps.html#3D-sphere-plot"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[2,1,86],"1":[2,1,58],"2":[2,2,57],"3":[2,2,9],"4":[4,4,76],"5":[4,4,76],"6":[5,4,81],"7":[2,1,31],"8":[5,2,82],"9":[5,2,92],"10":[2,1,52],"11":[3,2,85],"12":[2,2,41],"13":[2,2,122],"14":[2,1,119],"15":[5,2,30],"16":[1,2,72],"17":[1,2,120],"18":[1,2,88],"19":[1,2,22],"20":[4,3,211],"21":[4,3,100],"22":[5,7,128],"23":[5,7,98],"24":[4,7,90],"25":[3,3,150],"26":[4,3,245],"27":[2,2,138],"28":[4,1,14],"29":[3,4,109],"30":[3,4,45],"31":[5,1,19],"32":[7,5,77],"33":[1,11,90],"34":[8,5,76],"35":[5,5,90],"36":[10,5,33],"37":[3,14,142],"38":[3,14,18],"39":[9,14,69],"40":[13,14,158],"41":[7,5,113],"42":[8,5,168],"43":[11,5,1],"44":[3,15,24],"45":[3,15,59],"46":[8,5,139],"47":[7,5,79],"48":[4,1,14],"49":[2,4,187],"50":[2,4,251],"51":[5,4,90],"52":[4,4,42],"53":[1,8,142],"54":[4,1,32],"55":[8,4,35],"56":[3,4,131],"57":[2,4,172],"58":[1,6,101],"59":[1,6,48],"60":[2,4,111],"61":[1,6,84],"62":[2,6,348],"63":[1,1,16],"64":[1,1,113],"65":[1,1,78],"66":[3,1,70],"67":[1,1,32],"68":[4,1,146],"69":[2,4,19],"70":[2,5,52],"71":[2,4,20],"72":[2,5,44],"73":[3,4,76],"74":[4,4,157],"75":[2,4,154],"76":[4,4,93],"77":[4,1,15],"78":[3,4,40],"79":[3,5,75],"80":[4,1,165],"81":[3,4,105],"82":[2,4,115],"83":[2,4,129],"84":[4,4,143],"85":[3,4,71],"86":[2,1,10],"87":[2,2,589],"88":[2,2,463],"89":[6,1,37],"90":[3,1,21],"91":[2,1,1],"92":[1,2,34],"93":[1,2,199],"94":[1,2,49],"95":[7,1,73],"96":[3,7,133],"97":[5,7,48],"98":[2,1,49],"99":[6,2,12],"100":[5,2,38],"101":[9,2,1],"102":[2,1,135],"103":[2,2,21],"104":[2,1,46],"105":[2,2,33],"106":[3,2,57]},"averageFieldLength":[3.504672897196263,3.8224299065420535,92.02803738317759],"storedFields":{"0":{"title":"Caching YAXArrays","titles":[]},"1":{"title":"Chunk YAXArrays","titles":[]},"2":{"title":"Chunking YAXArrays","titles":["Chunk YAXArrays"]},"3":{"title":"Chunking Datasets","titles":["Chunk YAXArrays"]},"4":{"title":"Set Chunks by Axis","titles":["Chunk YAXArrays","Chunking Datasets"]},"5":{"title":"Set chunking by Variable","titles":["Chunk YAXArrays","Chunking Datasets"]},"6":{"title":"Set chunking for all variables","titles":["Chunk YAXArrays","Chunking Datasets"]},"7":{"title":"Combine YAXArrays","titles":[]},"8":{"title":"cat along an existing dimension","titles":["Combine YAXArrays"]},"9":{"title":"concatenatecubes to a new dimension","titles":["Combine YAXArrays"]},"10":{"title":"Convert YAXArrays","titles":[]},"11":{"title":"Convert Base.Array","titles":["Convert YAXArrays"]},"12":{"title":"Convert Raster","titles":["Convert YAXArrays"]},"13":{"title":"Convert DimArray","titles":["Convert YAXArrays"]},"14":{"title":"Compute YAXArrays","titles":[]},"15":{"title":"Modify elements of a YAXArray","titles":["Compute YAXArrays"]},"16":{"title":"Arithmetics","titles":["Compute YAXArrays"]},"17":{"title":"map","titles":["Compute YAXArrays"]},"18":{"title":"mapslices","titles":["Compute YAXArrays"]},"19":{"title":"mapCube","titles":["Compute YAXArrays"]},"20":{"title":"Operations over several YAXArrays","titles":["Compute YAXArrays","mapCube"]},"21":{"title":"OutDims and YAXArray Properties","titles":["Compute YAXArrays","mapCube"]},"22":{"title":"One InDims to many OutDims","titles":["Compute YAXArrays","mapCube","OutDims and YAXArray Properties"]},"23":{"title":"Many InDims to many OutDims","titles":["Compute YAXArrays","mapCube","OutDims and YAXArray Properties"]},"24":{"title":"Specify path in OutDims","titles":["Compute YAXArrays","mapCube","OutDims and YAXArray Properties"]},"25":{"title":"Different InDims names","titles":["Compute YAXArrays","mapCube"]},"26":{"title":"Creating a vector array","titles":["Compute YAXArrays","mapCube"]},"27":{"title":"Distributed Computation","titles":["Compute YAXArrays"]},"28":{"title":"Create YAXArrays and Datasets","titles":[]},"29":{"title":"Create a YAXArray","titles":["Create YAXArrays and Datasets"]},"30":{"title":"Create a Dataset","titles":["Create YAXArrays and Datasets"]},"31":{"title":"Frequently Asked Questions (FAQ)","titles":[]},"32":{"title":"Extract the axes names from a Cube","titles":["Frequently Asked Questions (FAQ)"]},"33":{"title":"rebuild","titles":["Frequently Asked Questions (FAQ)","Extract the axes names from a Cube"]},"34":{"title":"Obtain values from axes and data from the cube","titles":["Frequently Asked Questions (FAQ)"]},"35":{"title":"How do I concatenate cubes","titles":["Frequently Asked Questions (FAQ)"]},"36":{"title":"How do I subset a YAXArray ( Cube ) or Dataset?","titles":["Frequently Asked Questions (FAQ)"]},"37":{"title":"Subsetting a YAXArray","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?"]},"38":{"title":"Subsetting a Dataset","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?"]},"39":{"title":"Subsetting a Dataset whose variables share all their dimensions","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?","Subsetting a Dataset"]},"40":{"title":"Subsetting a Dataset whose variables share some but not all of their dimensions","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?","Subsetting a Dataset"]},"41":{"title":"How do I apply map algebra?","titles":["Frequently Asked Questions (FAQ)"]},"42":{"title":"How do I use the CubeTable function?","titles":["Frequently Asked Questions (FAQ)"]},"43":{"title":"How do I assign variable names to YAXArrays in a Dataset","titles":["Frequently Asked Questions (FAQ)"]},"44":{"title":"One variable name","titles":["Frequently Asked Questions (FAQ)","How do I assign variable names to YAXArrays in a Dataset"]},"45":{"title":"Multiple variable names","titles":["Frequently Asked Questions (FAQ)","How do I assign variable names to YAXArrays in a Dataset"]},"46":{"title":"Ho do I construct a Dataset from a TimeArray","titles":["Frequently Asked Questions (FAQ)"]},"47":{"title":"Create a YAXArray with unions containing Strings","titles":["Frequently Asked Questions (FAQ)"]},"48":{"title":"Read YAXArrays and Datasets","titles":[]},"49":{"title":"Read Zarr","titles":["Read YAXArrays and Datasets"]},"50":{"title":"Read NetCDF","titles":["Read YAXArrays and Datasets"]},"51":{"title":"Read GDAL (GeoTIFF, GeoJSON)","titles":["Read YAXArrays and Datasets"]},"52":{"title":"Load data into memory","titles":["Read YAXArrays and Datasets"]},"53":{"title":"readcubedata","titles":["Read YAXArrays and Datasets","Load data into memory"]},"54":{"title":"Group YAXArrays and Datasets","titles":[]},"55":{"title":"Seasonal Averages from Time Series of Monthly Means","titles":["Group YAXArrays and Datasets"]},"56":{"title":"Download the data","titles":["Group YAXArrays and Datasets"]},"57":{"title":"GroupBy: seasons","titles":["Group YAXArrays and Datasets"]},"58":{"title":"dropdims","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"59":{"title":"seasons","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"60":{"title":"GroupBy: weight","titles":["Group YAXArrays and Datasets"]},"61":{"title":"weights","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"62":{"title":"weighted seasons","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"63":{"title":"Types","titles":[]},"64":{"title":"YAXArray","titles":["Types"]},"65":{"title":"Dataset","titles":["Types"]},"66":{"title":"(Data) Cube","titles":["Types"]},"67":{"title":"Dimension","titles":["Types"]},"68":{"title":"Write YAXArrays and Datasets","titles":[]},"69":{"title":"Write Zarr","titles":["Write YAXArrays and Datasets"]},"70":{"title":"zarr compression","titles":["Write YAXArrays and Datasets","Write Zarr"]},"71":{"title":"Write NetCDF","titles":["Write YAXArrays and Datasets"]},"72":{"title":"netcdf compression","titles":["Write YAXArrays and Datasets","Write NetCDF"]},"73":{"title":"Overwrite a Dataset","titles":["Write YAXArrays and Datasets"]},"74":{"title":"Append to a Dataset","titles":["Write YAXArrays and Datasets"]},"75":{"title":"Save Skeleton","titles":["Write YAXArrays and Datasets"]},"76":{"title":"Update values of dataset","titles":["Write YAXArrays and Datasets"]},"77":{"title":"Contribute to YAXArrays.jl","titles":[]},"78":{"title":"Contribute to Documentation","titles":["Contribute to YAXArrays.jl"]},"79":{"title":"Build docs locally","titles":["Contribute to YAXArrays.jl","Contribute to Documentation"]},"80":{"title":"Select YAXArrays and Datasets","titles":[]},"81":{"title":"Select a YAXArray","titles":["Select YAXArrays and Datasets"]},"82":{"title":"Select elements","titles":["Select YAXArrays and Datasets"]},"83":{"title":"Select ranges","titles":["Select YAXArrays and Datasets"]},"84":{"title":"Closed and open intervals","titles":["Select YAXArrays and Datasets"]},"85":{"title":"Get a dimension","titles":["Select YAXArrays and Datasets"]},"86":{"title":"API Reference","titles":[]},"87":{"title":"Public API","titles":["API Reference"]},"88":{"title":"Internal API","titles":["API Reference"]},"89":{"title":"How to Install YAXArrays.jl?","titles":[]},"90":{"title":"Want interoperability?","titles":[]},"91":{"title":"Getting Started","titles":[]},"92":{"title":"Installation","titles":["Getting Started"]},"93":{"title":"Quickstart","titles":["Getting Started"]},"94":{"title":"Updates","titles":["Getting Started"]},"95":{"title":"Mean Seasonal Cycle for a single pixel","titles":[]},"96":{"title":"Define the cube","titles":["Mean Seasonal Cycle for a single pixel"]},"97":{"title":"Plot results: mean seasonal cycle","titles":["Mean Seasonal Cycle for a single pixel"]},"98":{"title":"Other tutorials","titles":[]},"99":{"title":"General overview of the functionality of YAXArrays","titles":["Other tutorials"]},"100":{"title":"Table-style iteration over YAXArrays","titles":["Other tutorials"]},"101":{"title":"Combining multiple tiff files into a zarr based datacube","titles":["Other tutorials"]},"102":{"title":"Plotting maps","titles":[]},"103":{"title":"Heatmap plot","titles":["Plotting maps"]},"104":{"title":"Wintri Projection","titles":[]},"105":{"title":"Moll projection","titles":["Wintri Projection"]},"106":{"title":"3D sphere plot","titles":["Wintri Projection"]}},"dirtCount":0,"index":[["δlon",{"2":{"104":1}}],["├──────────────────────┴────────────────────────────────────────",{"2":{"47":1}}],["├──────────────────────────┴─────────────────────────",{"2":{"37":1}}],["├──────────────────────────┴────────────────────────────────────",{"2":{"93":1}}],["├──────────────────────────┴─────────────────────────────────────",{"2":{"33":1}}],["├──────────────────────────┴─────────────────────────────────────────────",{"2":{"34":1,"42":1}}],["├──────────────────────────┴────────────────────────────────────────",{"2":{"23":1}}],["├──────────────────────────┴─────────────────────────────────",{"2":{"13":2}}],["├──────────────────────────┴────────────────────────────────",{"2":{"9":1}}],["├─────────────────────────────┴──────────────────────────────────────────",{"2":{"37":2}}],["├──────────────────────────────┴─────────────────────────────────",{"2":{"29":1}}],["├──────────────────────────────┴─────────────────────────────────────────",{"2":{"20":1,"32":1}}],["├────────────────────────────────┴───────────────────────────────────────",{"2":{"61":1}}],["├───────────────────────────────────┴────────────────────────────────────",{"2":{"96":1}}],["├─────────────────────────────────────┴──────────────────────────────────",{"2":{"49":1}}],["├───────────────────────────────────────┴───────────────────────",{"2":{"47":1}}],["├────────────────────────────────────────",{"2":{"37":1}}],["├───────────────────────────────────────────┴────────────────────────────",{"2":{"26":1,"42":1}}],["├──────────────────────────────────────────────┴────────────────",{"2":{"82":1}}],["├───────────────────────────────────────────────┴────────────────────────",{"2":{"20":2,"41":1,"83":2}}],["├────────────────────────────────────────────────┴───────────────────────",{"2":{"42":1,"60":1,"83":1,"84":5}}],["├─────────────────────────────────────────────────",{"2":{"25":1}}],["├─────────────────────────────────────────────────┴──────────────────────",{"2":{"18":1,"50":1,"53":3,"81":2,"82":2}}],["├──────────────────────────────────────────────────┴─────────────────────",{"2":{"57":1}}],["├────────────────────────────────────────────────────",{"2":{"29":1,"33":1}}],["├────────────────────────────────────────────────────────",{"2":{"13":2}}],["├────────────────────────────────────────────────────────────",{"2":{"14":1,"16":1,"17":1,"18":2,"20":3,"21":1,"22":1,"25":2,"26":2,"29":2,"32":1,"33":3,"34":1,"37":4,"41":3,"42":3,"53":3,"56":1,"60":1,"75":1,"93":1,"96":1}}],["├─────────────────────────────────────────────────────────────────",{"2":{"82":1}}],["├──────────────────────────────────────────────────────────────────",{"2":{"57":1,"60":1}}],["├─────────────────────────────────────────────────────────────────────┴",{"2":{"82":1}}],["├────────────────────────────────────────────────────────────────────────",{"2":{"57":1,"58":1,"60":1,"61":1,"62":3}}],["├────────────────────────────────────────────────────────────────────",{"2":{"14":1,"16":1,"17":1,"18":2,"20":5,"21":1,"22":1,"25":2,"26":3,"29":1,"32":1,"33":2,"34":1,"35":1,"37":4,"41":3,"42":3,"49":1,"50":1,"53":3,"56":2,"57":2,"58":1,"60":3,"61":2,"62":3,"75":1,"81":2,"82":2,"83":3,"84":5,"93":1,"96":1}}],["├───────────────────────────────────────────────────────────────",{"2":{"20":2,"23":1,"35":1,"49":1,"50":1,"56":1,"81":2,"82":2,"83":3,"84":5}}],["├─────────────────────────────────────────────────────────────",{"2":{"8":1}}],["├───────────────────────────────────────────────────────────",{"2":{"11":1,"47":2,"93":1}}],["├───────────────────────────────────────────────────────",{"2":{"9":1,"23":1}}],["├─────────────────────────────────────────────────────",{"2":{"8":1}}],["├───────────────────────────────────────────────────",{"2":{"11":1,"47":2,"93":1}}],["├──────────────────────────────────────────────────",{"2":{"9":1}}],["├────────────────────────────────────────────────",{"2":{"13":1,"37":1}}],["├────────────────────────────────────────────┴───────────────────────────",{"2":{"18":1,"22":1,"25":1,"75":1}}],["├─────────────────────────────────────────",{"2":{"25":1}}],["├──────────────────────────────────┴────────────────────────────",{"2":{"85":1}}],["├─────────────────────────────────┴──────────────────────────────────────",{"2":{"35":1,"56":2,"93":1}}],["├─────────────────────────────────┴───────────────────────────────",{"2":{"8":1}}],["├───────────────────────────────┴────────────────────────────────────────",{"2":{"14":1,"16":1,"17":1,"20":2,"26":1,"29":1,"41":2,"60":1}}],["├────────────────────────────┴────────────────────────",{"2":{"25":1}}],["├────────────────────────────┴───────────────────────────────────────────",{"2":{"21":1,"25":1,"26":1,"33":2,"37":1}}],["├───────────────────────────┴────────────────────────────────────────────",{"2":{"26":1,"37":1}}],["├───────────────────────────┴───────────────────────────────────",{"2":{"11":1}}],["π",{"2":{"41":2,"95":1,"97":1}}],[">var",{"2":{"96":1}}],[">dates",{"2":{"96":1}}],[">month",{"2":{"87":1}}],[">abs",{"2":{"87":1}}],[">=",{"2":{"40":4}}],[">",{"2":{"40":2,"41":2,"96":1}}],["└──────────────────────────────────────────────────────────┘",{"2":{"37":1}}],["└───────────────────────────────────────────────────────────┘",{"2":{"25":1}}],["└──────────────────────────────────────────────────────────────────┘",{"2":{"13":2}}],["└──────────────────────────────────────────────────────────────────────┘",{"2":{"29":1,"33":1}}],["└────────────────────────────────────────────────────────────────────────────────┘",{"2":{"82":1}}],["└──────────────────────────────────────────────────────────────────────────────┘",{"2":{"14":1,"16":1,"17":1,"18":2,"20":5,"21":1,"22":1,"25":2,"26":4,"29":1,"32":1,"33":2,"34":1,"35":1,"37":4,"41":3,"42":3,"49":1,"50":1,"53":3,"56":2,"57":2,"58":1,"60":3,"61":2,"62":3,"75":1,"81":2,"82":2,"83":3,"84":5,"93":1,"96":1}}],["└─────────────────────────────────────────────────────────────────────────┘",{"2":{"23":1}}],["└───────────────────────────────────────────────────────────────────────┘",{"2":{"8":1}}],["└─────────────────────────────────────────────────────────────────────┘",{"2":{"11":1,"47":2,"85":1,"93":1}}],["└─────────────────────────────────────────────────────────────────┘",{"2":{"9":1}}],["`ordereddict`",{"2":{"87":1}}],["`diskarrays",{"2":{"88":1}}],["`dimensions`",{"2":{"57":1}}],["`dates`",{"2":{"57":1}}],["`base`",{"2":{"57":1}}],["`yaxarrays",{"2":{"57":1}}],["`yax",{"2":{"57":1}}],["`time`",{"2":{"57":5}}],["`a",{"2":{"37":1}}],["`layer`",{"2":{"22":1}}],["quickstart",{"0":{"93":1}}],["query",{"2":{"80":1}}],["querying",{"2":{"53":1}}],["questions",{"0":{"31":1},"1":{"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1}}],["quot",{"2":{"20":2,"42":2,"75":4,"87":10,"88":12}}],["∘",{"2":{"27":1}}],["|>",{"2":{"26":2}}],["⋱",{"2":{"26":1}}],["⋮",{"2":{"26":2,"85":1,"96":1}}],["^2",{"2":{"25":1}}],["⬔",{"2":{"21":1,"22":1,"35":1,"93":1}}],["uv",{"2":{"106":1}}],["u",{"2":{"96":1}}],["up",{"2":{"87":1}}],["updates",{"0":{"94":1}}],["updated",{"2":{"76":1}}],["update",{"0":{"76":1},"2":{"76":2,"87":1}}],["updating",{"2":{"54":1,"76":1}}],["ucar",{"2":{"50":1,"65":1,"68":1,"80":1}}],["url",{"2":{"49":1,"56":1}}],["urls",{"2":{"48":1}}],["unreleased",{"2":{"89":1}}],["unpermuted",{"2":{"88":2}}],["unpractical",{"2":{"56":1}}],["underlying",{"2":{"87":1,"88":1,"94":1}}],["unlike",{"2":{"66":1}}],["unweighted",{"2":{"57":1,"62":1}}],["unique",{"2":{"96":1}}],["unitrange",{"2":{"57":2,"58":2,"62":6}}],["unit",{"2":{"51":1}}],["units",{"2":{"49":1,"50":2,"53":6,"56":2,"81":4,"82":6,"83":6,"84":10}}],["unidata",{"2":{"50":1,"65":1,"68":1,"80":1}}],["unions",{"0":{"47":1}}],["union",{"2":{"18":2,"20":4,"22":2,"24":1,"25":1,"26":1,"41":1,"42":2,"47":2,"50":1,"53":3,"75":2,"76":1,"81":2,"82":3,"83":3,"84":5}}],["unordered",{"2":{"46":4,"57":2,"58":1,"59":1,"60":2,"61":2,"62":3}}],["unnecessary",{"2":{"26":1}}],["unchanged",{"2":{"17":1}}],["usual",{"2":{"57":1}}],["usually",{"2":{"49":1,"64":2,"65":2}}],["us",{"2":{"26":1}}],["useable",{"2":{"87":1}}],["used",{"2":{"26":1,"27":1,"37":1,"57":1,"63":1,"64":1,"67":1,"80":1,"85":1,"87":6,"88":3}}],["uses",{"2":{"24":1,"42":1,"50":1}}],["users",{"2":{"88":1}}],["userguide",{"2":{"78":2}}],["user",{"2":{"14":2,"16":1,"17":1,"27":1,"29":3,"30":1,"88":1}}],["use",{"0":{"42":1},"2":{"0":1,"8":1,"9":1,"14":4,"17":1,"27":2,"32":2,"37":1,"39":1,"40":1,"41":1,"42":2,"46":2,"52":1,"54":1,"56":1,"58":1,"66":1,"70":1,"75":1,"84":2,"87":4,"88":1,"89":1,"98":1,"100":1,"102":2}}],["useful",{"2":{"0":1,"66":1}}],["using",{"2":{"0":1,"8":2,"9":2,"13":1,"14":2,"20":3,"21":4,"26":3,"27":8,"29":1,"32":1,"33":2,"35":2,"37":2,"39":2,"40":2,"41":1,"42":1,"46":3,"49":2,"50":3,"51":2,"52":1,"54":5,"68":2,"74":1,"75":3,"80":2,"82":3,"83":2,"89":1,"93":1,"94":1,"95":2,"96":2,"102":3}}],["+proj=moll",{"2":{"105":1}}],["+",{"2":{"16":2,"17":1,"20":2,"22":2,"25":1,"95":1,"104":1}}],["kwargs",{"2":{"87":5,"88":2}}],["know",{"2":{"53":1}}],["k",{"2":{"46":5,"49":1,"50":1,"53":3,"81":2,"82":3,"83":3,"84":5}}],["keyword",{"2":{"74":1,"87":6,"88":2}}],["key",{"2":{"54":1,"87":1}}],["keyset",{"2":{"46":1}}],["keys",{"2":{"46":7,"87":1}}],["keylist",{"2":{"45":1}}],["keeps",{"2":{"17":1}}],["keep",{"2":{"0":1,"88":1}}],["kb",{"2":{"14":1,"16":1,"17":1,"18":1,"20":2,"26":1,"29":2,"32":1,"35":1,"37":4,"41":3,"42":1,"82":1,"83":3,"84":5,"93":1,"96":1}}],["↗",{"2":{"14":1,"16":1,"17":1,"20":2,"21":1,"22":1,"23":1,"24":1,"25":3,"26":1,"29":3,"30":1,"32":3,"35":1,"37":5,"39":2,"41":3,"49":2,"50":2,"53":3,"56":2,"57":1,"68":1,"74":2,"75":2,"80":1,"81":2,"83":3,"84":5,"93":1,"102":1}}],["j",{"2":{"62":8}}],["jan",{"2":{"57":4,"58":2,"59":1,"60":4,"61":4,"62":6}}],["joinname",{"2":{"87":1}}],["joinname=",{"2":{"87":1}}],["joe",{"2":{"55":1,"62":1}}],["journal",{"2":{"50":1,"68":1,"74":1,"80":1}}],["jj+1",{"2":{"50":1,"68":1,"74":1,"80":1}}],["jj",{"2":{"50":1,"68":1,"74":1,"80":1}}],["jul",{"2":{"57":4,"58":2,"59":1,"60":4,"61":4,"62":6}}],["juliaδlon",{"2":{"104":1}}],["juliaglmakie",{"2":{"103":1}}],["juliagetloopchunks",{"2":{"88":1}}],["juliagetouttype",{"2":{"88":1}}],["juliagetoutaxis",{"2":{"88":1}}],["juliaget",{"2":{"88":1}}],["juliagetaxis",{"2":{"87":1}}],["juliagettarrayaxes",{"2":{"46":1}}],["juliagen",{"2":{"20":1}}],["juliax",{"2":{"95":1}}],["juliapkg>",{"2":{"89":1,"92":1,"94":1}}],["juliapermuteloopaxes",{"2":{"88":1}}],["juliaproperties",{"2":{"23":1}}],["juliaoptifunc",{"2":{"88":1}}],["juliaopen",{"2":{"87":2}}],["juliaoutdims",{"2":{"87":1}}],["juliaoffset",{"2":{"17":1}}],["juliacopydata",{"2":{"88":1}}],["juliacollect",{"2":{"34":1,"85":1}}],["juliaclean",{"2":{"88":1}}],["juliacube",{"2":{"87":1}}],["juliacubefittable",{"2":{"87":1}}],["juliacubetable",{"2":{"87":1}}],["juliacaxes",{"2":{"87":1}}],["julialon",{"2":{"102":1}}],["julialookup",{"2":{"85":1}}],["julialatitudes",{"2":{"40":1}}],["julian",{"2":{"70":1,"72":1}}],["juliasavecube",{"2":{"87":1}}],["juliasavedataset",{"2":{"69":1,"71":1,"73":2,"87":1}}],["juliasetchunks",{"2":{"87":1,"88":1}}],["juliaseasons",{"2":{"59":1}}],["juliawith",{"2":{"62":1}}],["julia>",{"2":{"62":1,"79":1,"89":2,"96":2}}],["juliaurl",{"2":{"56":1}}],["juliausing",{"2":{"0":1,"2":1,"4":1,"5":1,"6":1,"8":1,"9":1,"11":1,"12":1,"13":1,"14":1,"20":1,"21":1,"26":1,"27":2,"29":2,"32":1,"33":1,"35":1,"37":1,"39":1,"40":1,"42":2,"46":1,"49":1,"50":1,"51":1,"54":1,"62":1,"68":1,"69":1,"71":1,"75":1,"80":1,"82":1,"84":1,"90":4,"93":1,"95":1,"102":1,"106":1}}],["juliakeylist",{"2":{"45":1}}],["juliaylonlat",{"2":{"37":1}}],["juliaytime3",{"2":{"37":1}}],["juliaytime2",{"2":{"37":1}}],["juliaytime",{"2":{"37":1}}],["juliay",{"2":{"37":1}}],["juliayaxcolumn",{"2":{"88":1}}],["juliayaxarray",{"2":{"87":1}}],["juliayax",{"2":{"0":1,"46":2}}],["juliato",{"2":{"87":1}}],["juliatos",{"2":{"81":2,"82":2,"83":3,"84":1,"85":1}}],["juliatempo",{"2":{"60":1}}],["juliatest",{"2":{"47":2}}],["juliat",{"2":{"37":1,"42":1,"95":1}}],["juliatspan",{"2":{"20":1}}],["juliavector",{"2":{"26":1}}],["juliar",{"2":{"75":1}}],["juliareadcubedata",{"2":{"53":1,"87":1}}],["juliaregions",{"2":{"26":2}}],["juliarandom",{"2":{"25":2}}],["juliaras2",{"2":{"12":1}}],["juliadataset",{"2":{"87":2}}],["juliadata3",{"2":{"30":1}}],["juliads2",{"2":{"74":1}}],["juliads",{"2":{"22":2,"24":2,"25":1,"39":1,"40":1,"49":1,"50":1,"53":2,"72":1,"75":2,"76":3}}],["juliadimarray",{"2":{"26":1}}],["juliadim",{"2":{"13":1}}],["juliaindims",{"2":{"22":1,"24":1,"87":1}}],["juliaimport",{"2":{"18":1,"92":1}}],["juliajulia>",{"2":{"20":5,"32":3,"33":2,"34":1,"35":1,"41":3,"42":3,"44":1,"45":1,"46":2,"57":2,"58":1,"60":2,"61":2,"62":3,"74":1,"75":1,"84":4,"89":1,"96":2,"102":3}}],["juliamutable",{"2":{"88":1}}],["juliamatch",{"2":{"88":1}}],["juliamapcube",{"2":{"87":2}}],["juliamapslices",{"2":{"18":1,"27":1}}],["juliamovingwindow",{"2":{"87":1}}],["juliamean",{"2":{"62":1}}],["juliamy",{"2":{"50":1}}],["juliam2",{"2":{"11":1}}],["julia",{"2":{"10":1,"50":1,"56":1,"79":1,"88":1,"89":2,"92":2,"93":1,"94":2}}],["juliaall",{"2":{"75":1}}],["juliaaxes",{"2":{"37":1}}],["juliaa2",{"2":{"16":2,"29":2,"93":1}}],["juliaa",{"2":{"2":1,"15":3}}],["juliafig",{"2":{"95":1,"97":1,"104":1,"105":1}}],["juliafindaxis",{"2":{"88":1}}],["juliafiles",{"2":{"87":2}}],["juliafittable",{"2":{"87":2}}],["juliafunction",{"2":{"20":1,"22":1,"23":1,"25":1,"57":1,"87":1,"88":1,"96":1}}],["juliaf",{"2":{"2":1,"4":1,"5":1,"6":1,"20":1}}],["jun",{"2":{"57":4,"58":2,"59":1,"60":4,"61":4,"62":6}}],["jussieu",{"2":{"50":1,"68":1,"74":1,"80":1}}],["just",{"2":{"26":1,"64":1,"66":1,"87":1,"88":2}}],["jl`",{"2":{"57":1}}],["jl",{"0":{"77":1,"89":1},"1":{"78":1,"79":1},"2":{"12":1,"13":1,"42":1,"46":2,"56":1,"62":1,"64":1,"67":1,"77":1,"79":2,"89":2,"92":1,"93":2,"94":3,"100":1}}],["86",{"2":{"85":2}}],["860688",{"2":{"76":2}}],["86457",{"2":{"62":1}}],["862644",{"2":{"13":1}}],["891257",{"2":{"76":2}}],["8984",{"2":{"62":1}}],["89237",{"2":{"62":1}}],["8901",{"2":{"51":1}}],["89",{"2":{"49":4,"50":2,"51":1,"53":3,"68":1,"74":1,"80":1,"81":2,"82":1,"83":1,"84":5,"85":3,"102":2}}],["855984",{"2":{"93":1}}],["85",{"2":{"85":2,"104":1,"105":1}}],["850",{"2":{"62":1}}],["85ºn",{"2":{"40":1}}],["85714",{"2":{"26":1}}],["88",{"2":{"35":1,"49":4,"85":2,"93":1,"102":2}}],["889583",{"2":{"26":1}}],["816865",{"2":{"93":1}}],["81",{"2":{"29":1}}],["8256",{"2":{"93":1}}],["82421875",{"2":{"51":2}}],["824354",{"2":{"26":1}}],["829062",{"2":{"26":1}}],["84",{"2":{"51":2}}],["840389",{"2":{"26":1}}],["845983",{"2":{"11":1}}],["8",{"2":{"20":12,"26":2,"34":1,"37":1,"50":2,"53":3,"68":1,"74":1,"80":1,"81":2,"96":1}}],["80759",{"2":{"62":1}}],["800",{"2":{"33":3,"34":1,"37":1}}],["80",{"2":{"20":1,"40":2}}],["87",{"2":{"85":2}}],["87705",{"2":{"62":1}}],["875658",{"2":{"26":1}}],["872575",{"2":{"13":1}}],["870826",{"2":{"11":1}}],["839919",{"2":{"93":1}}],["830391",{"2":{"11":1}}],["83556",{"2":{"11":1}}],["991786",{"2":{"93":1}}],["990276",{"2":{"93":1}}],["922125",{"2":{"93":1}}],["926096",{"2":{"13":1}}],["9538",{"2":{"93":1}}],["953391",{"2":{"13":1}}],["95",{"2":{"62":1}}],["959",{"2":{"62":1}}],["971131",{"2":{"93":1}}],["97649",{"2":{"62":1}}],["97047",{"2":{"62":1}}],["973332",{"2":{"13":1}}],["948244",{"2":{"76":2}}],["94534",{"2":{"62":1}}],["9404",{"2":{"57":1,"58":1}}],["9432",{"2":{"57":1,"58":1}}],["949935",{"2":{"11":1}}],["986",{"2":{"62":1}}],["98",{"2":{"40":6}}],["984803",{"2":{"26":1}}],["90712",{"2":{"62":1}}],["90365",{"2":{"62":1}}],["90",{"2":{"40":2,"51":1,"84":5}}],["935884",{"2":{"93":1}}],["935631",{"2":{"11":1}}],["939296",{"2":{"93":1}}],["93986",{"2":{"26":1}}],["9362",{"2":{"62":1}}],["93743",{"2":{"62":1}}],["9375",{"2":{"49":2,"102":1}}],["9",{"2":{"20":14,"26":2,"34":1,"37":1,"56":2,"60":4,"70":2,"72":1,"83":4,"88":1}}],["9192",{"2":{"62":1}}],["9122",{"2":{"51":1}}],["91",{"2":{"32":1,"84":5}}],["916686",{"2":{"13":1}}],["918555",{"2":{"11":1}}],["961913",{"2":{"93":1}}],["9682",{"2":{"57":1,"58":1}}],["96921e36",{"2":{"56":2}}],["96x71x19",{"2":{"50":1,"68":1,"74":1,"80":1}}],["96f0",{"2":{"50":1,"68":1,"80":1}}],["960",{"2":{"21":1,"22":1,"26":1}}],["96",{"2":{"8":1,"9":1,"40":6,"74":1,"82":2}}],["v",{"2":{"50":1,"68":1,"74":1,"80":1}}],["v1",{"2":{"50":2,"68":2,"74":2,"80":2,"92":1}}],["v20190710",{"2":{"49":1,"102":2}}],["vol",{"2":{"50":1,"68":1,"74":1,"80":1}}],["volume",{"2":{"46":4}}],["voilà",{"2":{"46":1}}],["video",{"2":{"98":1}}],["videos",{"2":{"98":1}}],["via",{"2":{"57":1}}],["visualization",{"2":{"42":1}}],["view",{"2":{"26":1,"93":1}}],["vice",{"2":{"10":1}}],["vector",{"0":{"26":1},"2":{"26":4,"34":1,"47":1,"57":1,"59":1,"60":3,"61":2,"62":1,"64":1,"87":2,"88":3}}],["verify",{"2":{"61":1,"76":1}}],["version",{"2":{"49":1,"50":1,"68":1,"74":1,"80":1,"87":1,"89":1,"94":2,"102":1}}],["versa",{"2":{"10":1}}],["very",{"2":{"17":1,"42":1,"64":1}}],["val",{"2":{"34":2,"85":1}}],["vals",{"2":{"26":1}}],["value",{"2":{"16":1,"18":3,"20":2,"41":1,"50":1,"53":3,"81":2,"82":3,"83":3,"84":5,"87":4,"88":1}}],["values=ds1",{"2":{"42":1}}],["values",{"0":{"34":1,"76":1},"2":{"9":1,"24":1,"25":1,"26":2,"28":1,"29":2,"32":2,"33":1,"34":1,"40":3,"42":4,"45":1,"46":2,"64":1,"65":1,"75":1,"76":3,"83":1,"85":2,"87":9,"93":1,"102":1}}],["varoables",{"2":{"87":1}}],["variant",{"2":{"49":1,"102":1}}],["variable",{"0":{"5":1,"43":1,"44":1,"45":1},"1":{"44":1,"45":1},"2":{"5":1,"9":1,"40":3,"49":1,"53":2,"75":2,"87":1,"88":6,"93":1,"95":1,"96":1,"97":1,"102":1}}],["variables=at",{"2":{"41":2,"93":1}}],["variables",{"0":{"6":1,"39":1,"40":1},"2":{"4":5,"5":4,"6":2,"9":4,"10":1,"21":2,"22":1,"23":1,"24":1,"25":1,"30":1,"35":2,"38":1,"39":2,"40":11,"44":1,"45":4,"46":11,"49":4,"50":1,"51":1,"52":1,"53":1,"65":1,"66":1,"68":1,"74":4,"75":1,"80":1,"87":5,"88":1,"93":2,"102":4}}],["varlist",{"2":{"45":2}}],["var2=var2",{"2":{"39":1}}],["var2",{"2":{"35":2,"39":3,"41":1}}],["var1=var1",{"2":{"39":1}}],["var1",{"2":{"35":2,"39":3,"41":1}}],["var",{"2":{"9":2,"95":2,"96":2,"97":2}}],["046745",{"2":{"93":1}}],["0465",{"2":{"62":1}}],["0e8",{"2":{"87":1}}],["030090414984429516",{"2":{"96":1}}],["03361",{"2":{"62":1}}],["0358348",{"2":{"11":1}}],["0617443331324013",{"2":{"96":1}}],["06755",{"2":{"62":1}}],["0625",{"2":{"49":2,"102":1}}],["0620649",{"2":{"13":1}}],["08536931940151503",{"2":{"96":1}}],["0893687",{"2":{"93":1}}],["0887544",{"2":{"76":2}}],["08",{"2":{"56":2,"60":1}}],["09779224328472132",{"2":{"96":1}}],["0900259",{"2":{"93":1}}],["09",{"2":{"56":2,"60":1}}],["02",{"2":{"49":1}}],["0210077",{"2":{"11":1}}],["0214057",{"2":{"11":1}}],["0f20",{"2":{"49":1,"50":2,"53":6,"81":4,"82":6,"83":6,"84":10}}],["0f32",{"2":{"20":2}}],["0ºe",{"2":{"40":1}}],["07565180270644235",{"2":{"96":1}}],["0766027",{"2":{"93":1}}],["07",{"2":{"49":2,"102":1}}],["0723492",{"2":{"26":1}}],["0702532",{"2":{"13":1}}],["0012862484521267356",{"2":{"96":1}}],["00372526",{"2":{"93":1}}],["00388",{"2":{"62":1}}],["00277787",{"2":{"76":2}}],["00722034",{"2":{"62":1}}],["00709111",{"2":{"62":1}}],["006364171431821925",{"2":{"96":1}}],["00684233",{"2":{"62":1}}],["00693713",{"2":{"62":1}}],["00990356",{"2":{"62":1}}],["0057",{"2":{"62":1}}],["00",{"2":{"24":4,"46":16,"49":9,"50":8,"53":12,"56":8,"60":4,"68":4,"74":4,"80":4,"81":8,"82":8,"83":12,"84":20,"102":5}}],["019199882044045064",{"2":{"96":1}}],["019016",{"2":{"62":1}}],["0178074",{"2":{"62":1}}],["0174532925199433",{"2":{"51":1}}],["0118366",{"2":{"93":1}}],["0117519",{"2":{"62":1}}],["0115514",{"2":{"62":1}}],["0127077",{"2":{"62":1}}],["0123091",{"2":{"62":1}}],["0121037",{"2":{"62":1}}],["018571",{"2":{"62":1}}],["0182373",{"2":{"62":1}}],["0180572",{"2":{"62":1}}],["0183003",{"2":{"62":1}}],["018",{"2":{"57":1,"58":1}}],["01t03",{"2":{"49":2,"102":1}}],["01t00",{"2":{"24":1,"46":4,"49":2,"102":1}}],["01",{"2":{"14":6,"16":3,"17":3,"18":3,"20":12,"21":6,"22":3,"24":2,"25":9,"26":9,"27":3,"29":9,"30":3,"37":22,"39":8,"40":11,"46":8,"49":5,"50":4,"53":6,"68":2,"74":2,"80":2,"81":4,"82":6,"83":6,"84":10,"95":2,"96":4,"102":5}}],["05203842202056678",{"2":{"96":1}}],["052264",{"2":{"13":1}}],["0586963181904983",{"2":{"96":1}}],["05846",{"2":{"62":1}}],["0537",{"2":{"57":1,"58":1}}],["053923887690016103",{"2":{"15":1}}],["05t00",{"2":{"24":1}}],["05",{"2":{"21":2,"22":1,"25":3,"37":3}}],["0566881",{"2":{"13":1}}],["0",{"2":{"8":1,"9":1,"11":36,"13":45,"14":6,"15":2,"16":6,"17":6,"18":7,"20":303,"21":7,"22":7,"23":7,"24":6,"25":10,"26":75,"29":12,"30":6,"33":3,"34":1,"35":9,"37":1,"40":4,"41":27,"42":11,"47":2,"49":7,"50":10,"51":6,"53":12,"60":2,"61":40,"62":19,"68":6,"70":1,"72":1,"73":1,"74":6,"75":1,"76":40,"80":6,"81":8,"82":6,"83":14,"84":20,"85":7,"87":2,"88":1,"93":80,"94":1,"95":2,"96":19,"97":1,"102":4,"104":2,"105":2,"106":2}}],["┤",{"2":{"8":2,"9":2,"11":2,"13":3,"14":2,"16":2,"17":2,"18":4,"20":10,"21":2,"22":2,"23":2,"25":6,"26":5,"29":4,"32":2,"33":6,"34":2,"35":2,"37":10,"41":6,"42":6,"47":4,"49":2,"50":2,"53":6,"56":4,"57":4,"58":2,"60":6,"61":3,"62":6,"75":2,"81":4,"82":5,"83":6,"84":10,"93":4,"96":2}}],["┐",{"2":{"8":2,"9":2,"11":2,"13":4,"14":2,"16":2,"17":2,"18":4,"20":10,"21":2,"22":2,"23":2,"25":6,"26":8,"29":4,"32":2,"33":6,"34":2,"35":2,"37":10,"41":6,"42":6,"47":4,"49":2,"50":2,"53":6,"56":4,"57":3,"58":1,"60":5,"61":3,"62":3,"75":2,"81":4,"82":7,"83":6,"84":10,"85":2,"93":4,"96":2}}],["┌",{"2":{"8":1,"9":1,"11":1,"13":2,"14":1,"16":1,"17":1,"18":2,"20":5,"21":1,"22":1,"23":1,"25":3,"26":4,"29":2,"32":1,"33":3,"34":1,"35":1,"37":5,"41":3,"42":3,"47":2,"49":1,"50":1,"53":3,"56":2,"57":2,"58":1,"60":3,"61":2,"62":3,"75":1,"81":2,"82":3,"83":3,"84":5,"85":1,"93":2,"96":1}}],["76",{"2":{"85":2}}],["730",{"2":{"97":1}}],["735264",{"2":{"93":1}}],["733172",{"2":{"93":1}}],["738327",{"2":{"93":1}}],["7341",{"2":{"62":1}}],["73",{"2":{"62":1}}],["731779",{"2":{"13":1}}],["75",{"2":{"85":2}}],["7593",{"2":{"62":1}}],["75891",{"2":{"62":1}}],["752417",{"2":{"26":1}}],["75269",{"2":{"11":1}}],["771179",{"2":{"93":1}}],["771583",{"2":{"93":1}}],["778954",{"2":{"93":1}}],["77",{"2":{"85":2}}],["77687",{"2":{"62":1}}],["77587",{"2":{"62":1}}],["770949",{"2":{"13":1}}],["709999",{"2":{"93":1}}],["70",{"2":{"83":3}}],["7030",{"2":{"51":1}}],["701332",{"2":{"26":1}}],["79502",{"2":{"62":1}}],["79",{"2":{"50":2,"53":3,"68":1,"74":1,"80":1,"81":2,"82":2,"83":4,"84":5,"85":3}}],["796375",{"2":{"13":1}}],["749822",{"2":{"93":1}}],["74",{"2":{"85":2}}],["744521",{"2":{"13":1}}],["74732",{"2":{"11":1}}],["711506",{"2":{"93":1}}],["7119",{"2":{"57":1,"58":1}}],["717",{"2":{"84":5}}],["71",{"2":{"83":1}}],["719692",{"2":{"76":2}}],["7158",{"2":{"57":1,"58":1}}],["71429",{"2":{"26":2}}],["718667",{"2":{"13":1}}],["71314",{"2":{"13":1}}],["783581",{"2":{"93":1}}],["78",{"2":{"83":1,"85":2}}],["781572",{"2":{"76":2}}],["781773",{"2":{"26":1}}],["782494",{"2":{"76":2}}],["78467",{"2":{"11":1}}],["789891",{"2":{"11":1}}],["7",{"2":{"8":1,"20":10,"25":3,"26":1,"29":1,"34":1,"49":1,"56":2,"72":1,"102":1}}],["→",{"2":{"4":1,"5":1,"6":1,"9":1,"11":1,"13":3,"14":1,"16":1,"17":1,"18":1,"20":2,"21":1,"22":1,"23":1,"24":1,"25":3,"26":6,"29":3,"30":1,"32":3,"33":3,"34":1,"35":1,"37":6,"39":2,"40":2,"41":3,"42":2,"45":2,"46":4,"47":2,"49":2,"50":2,"51":1,"53":3,"56":2,"57":1,"68":1,"74":2,"75":2,"80":1,"81":2,"82":1,"83":3,"84":5,"93":2,"102":1}}],["↓",{"2":{"4":3,"5":3,"6":1,"8":1,"9":1,"11":1,"13":3,"14":1,"16":1,"17":1,"18":2,"20":5,"21":1,"22":1,"23":1,"24":1,"25":3,"26":6,"29":3,"30":1,"32":3,"33":3,"34":1,"35":1,"37":6,"39":2,"40":8,"41":3,"42":3,"44":1,"45":3,"46":4,"47":2,"49":2,"50":2,"51":1,"53":3,"56":2,"57":3,"58":1,"60":4,"61":2,"62":3,"68":1,"74":2,"75":2,"80":1,"81":2,"82":3,"83":3,"84":5,"85":1,"93":2,"96":2,"102":1}}],["457345",{"2":{"93":1}}],["45015",{"2":{"93":1}}],["45354",{"2":{"93":1}}],["45×170×24",{"2":{"84":5}}],["456765",{"2":{"11":1}}],["414006",{"2":{"76":2}}],["4198",{"2":{"62":1}}],["41241",{"2":{"62":1}}],["41049",{"2":{"62":1}}],["41634",{"2":{"62":1}}],["417937",{"2":{"26":1}}],["48367",{"2":{"62":1}}],["48",{"2":{"56":2,"93":1}}],["480",{"2":{"25":2,"42":1}}],["405317",{"2":{"93":1}}],["409244",{"2":{"93":1}}],["40",{"2":{"40":2}}],["400731",{"2":{"93":1}}],["400",{"2":{"11":1,"75":1,"95":1,"97":1}}],["44",{"2":{"37":1,"41":3}}],["4×30",{"2":{"26":1}}],["4×3×7",{"2":{"25":1}}],["4×3×2",{"2":{"23":1}}],["49909",{"2":{"62":1}}],["4947",{"2":{"62":1}}],["497189",{"2":{"26":1}}],["492817",{"2":{"13":1}}],["46506",{"2":{"62":1}}],["465103",{"2":{"26":1}}],["46",{"2":{"35":1,"93":1}}],["463503",{"2":{"26":1}}],["43254",{"2":{"62":1}}],["4325",{"2":{"57":1,"58":1}}],["4326",{"2":{"51":1}}],["432286",{"2":{"26":1}}],["435994",{"2":{"13":1}}],["475594",{"2":{"93":1}}],["475725",{"2":{"13":1}}],["472308",{"2":{"26":1}}],["427021",{"2":{"93":1}}],["42857",{"2":{"26":2}}],["42",{"2":{"15":3}}],["426519",{"2":{"11":1}}],["4",{"2":{"4":4,"5":4,"13":1,"20":4,"21":4,"22":2,"23":2,"24":1,"25":8,"26":9,"34":1,"35":1,"40":6,"57":2,"58":1,"59":1,"60":2,"61":2,"62":4,"75":3,"76":2,"93":3,"95":1,"97":1}}],["3d",{"0":{"106":1}}],["34818",{"2":{"62":1}}],["34832",{"2":{"62":1}}],["348362",{"2":{"11":1}}],["34549",{"2":{"62":1}}],["34218",{"2":{"62":1}}],["33565",{"2":{"62":1}}],["337926",{"2":{"11":1}}],["32876",{"2":{"93":1}}],["32555",{"2":{"62":1}}],["3252",{"2":{"57":1,"58":1}}],["32149",{"2":{"62":1}}],["3hr",{"2":{"49":2,"102":3}}],["3×3",{"2":{"47":1}}],["3×20",{"2":{"42":1}}],["3866",{"2":{"62":1}}],["38364",{"2":{"62":1}}],["3835",{"2":{"57":1,"58":1}}],["384×192×251288",{"2":{"49":1}}],["38",{"2":{"37":1,"83":3}}],["319698",{"2":{"93":1}}],["312",{"2":{"62":1}}],["31753",{"2":{"62":1}}],["3169",{"2":{"62":1}}],["3188",{"2":{"62":1}}],["31",{"2":{"37":2,"39":1,"40":1,"95":1,"96":2}}],["372",{"2":{"62":1}}],["372761",{"2":{"26":1}}],["37878",{"2":{"62":1}}],["37",{"2":{"50":2,"53":3,"68":1,"74":1,"80":1,"81":2,"82":3,"83":3,"84":5}}],["376135",{"2":{"26":1}}],["35432",{"2":{"62":1}}],["35483",{"2":{"62":1}}],["35700351866494",{"2":{"49":4,"102":2}}],["359",{"2":{"40":1,"49":2,"50":2,"53":3,"68":1,"74":1,"80":1,"81":2,"82":1,"85":2,"102":1}}],["35",{"2":{"14":1,"16":1,"17":1,"26":1,"29":1}}],["395451",{"2":{"93":1}}],["391546",{"2":{"93":1}}],["39",{"2":{"14":1,"20":3,"22":1,"23":1,"33":1,"35":1,"37":1,"39":1,"40":1,"41":2,"52":1,"53":1,"62":1,"67":1,"70":1,"78":4,"80":1,"87":2,"96":3}}],["366",{"2":{"97":1}}],["366625",{"2":{"13":1}}],["365×1",{"2":{"96":1}}],["365",{"2":{"96":1,"97":4}}],["360748",{"2":{"93":1}}],["3600",{"2":{"37":1,"39":2}}],["363668",{"2":{"76":2}}],["36126",{"2":{"62":1}}],["36142",{"2":{"62":1}}],["36836",{"2":{"62":1}}],["369",{"2":{"40":1}}],["36",{"2":{"37":1,"39":2,"40":1,"60":1}}],["364288",{"2":{"11":1}}],["3069",{"2":{"62":1}}],["30018",{"2":{"62":1}}],["30142",{"2":{"62":1}}],["30113",{"2":{"62":1}}],["307f8f0e584a39a050c042849004e6a2bd674f99",{"2":{"51":1}}],["30×15×10",{"2":{"20":1}}],["30×10×15",{"2":{"14":1,"16":1,"17":1,"26":1,"29":1}}],["30",{"2":{"12":2,"14":3,"16":1,"17":1,"18":2,"20":5,"26":5,"27":2,"29":4,"30":2,"49":1,"50":1,"53":3,"62":2,"81":2,"82":3,"83":3,"84":5,"102":1}}],["3",{"2":{"4":8,"5":8,"6":10,"13":1,"14":1,"15":3,"16":3,"17":2,"20":4,"21":3,"22":1,"23":3,"24":1,"25":14,"26":6,"29":3,"32":5,"34":1,"37":4,"41":4,"42":5,"46":1,"47":2,"49":1,"50":1,"53":3,"56":2,"57":2,"62":31,"74":1,"75":3,"81":2,"83":4,"84":5,"87":1,"93":3,"95":2}}],["zoom",{"2":{"106":1}}],["zopen",{"2":{"49":1,"76":1,"102":1}}],["zeros",{"2":{"75":3,"96":1}}],["z",{"2":{"4":2,"5":3,"6":2,"74":2}}],["zarray",{"2":{"76":1}}],["zarr",{"0":{"49":1,"69":1,"70":1,"101":1},"1":{"70":1},"2":{"0":1,"2":2,"4":2,"5":2,"6":2,"13":1,"20":5,"21":1,"24":2,"27":1,"47":1,"49":3,"69":5,"70":5,"73":3,"74":4,"75":6,"76":2,"87":2,"88":2,"90":2,"102":1}}],["xticklabelalign",{"2":{"95":1,"97":1}}],["xticklabelrotation",{"2":{"95":1,"97":1}}],["xlabel=",{"2":{"95":1,"97":1}}],["xc",{"2":{"56":2}}],["xarray",{"2":{"55":1,"56":1}}],["xx",{"2":{"50":1,"68":1,"74":1,"80":1}}],["x26",{"2":{"26":12,"40":12}}],["x3c",{"2":{"26":12,"40":4,"87":1}}],["xyz",{"2":{"25":2}}],["xy",{"2":{"23":2}}],["xyt",{"2":{"23":2,"25":2}}],["xin",{"2":{"22":8,"23":11,"25":8,"26":3,"41":3}}],["xout",{"2":{"20":2,"22":6,"23":6,"25":2,"26":3}}],["x",{"2":{"4":2,"5":3,"6":2,"12":1,"13":3,"17":2,"41":4,"47":2,"51":1,"56":2,"57":2,"58":1,"62":3,"64":1,"76":2,"88":1,"93":3,"95":1,"96":6}}],["ndata",{"2":{"104":2,"105":1,"106":1}}],["ndays",{"2":{"96":4}}],["nlon",{"2":{"104":2,"105":1}}],["npy",{"2":{"95":2,"96":2}}],["nin",{"2":{"88":2}}],["ntr",{"2":{"88":1}}],["ntuple",{"2":{"88":4}}],["nthreads",{"2":{"87":2}}],["nvalid",{"2":{"87":1}}],["n",{"2":{"63":1,"87":3}}],["n256",{"2":{"62":1}}],["nan",{"2":{"56":2,"57":48,"58":48,"62":384}}],["name=cube",{"2":{"87":1}}],["named",{"2":{"64":1,"80":1,"82":1,"83":1,"87":2,"94":1}}],["namedtuple",{"2":{"22":1,"24":1,"87":1,"88":3}}],["names",{"0":{"25":1,"32":1,"43":1,"45":1},"1":{"33":1,"44":1,"45":1},"2":{"29":2,"46":1,"59":1,"64":2,"87":2,"88":1}}],["namely",{"2":{"20":1,"21":1}}],["name",{"0":{"44":1},"2":{"2":1,"22":4,"24":1,"45":1,"49":3,"50":4,"53":12,"56":4,"57":1,"62":1,"67":1,"75":2,"81":8,"82":12,"83":12,"84":20,"87":6,"88":5,"93":1}}],["number",{"2":{"55":1,"60":1,"70":1,"72":1,"87":2,"88":1,"96":1}}],["numbers",{"2":{"14":1,"93":1}}],["nc",{"2":{"50":2,"56":2,"68":2,"71":2,"72":3,"80":2,"87":6}}],["neighbour",{"2":{"87":1}}],["neighboring",{"2":{"17":1}}],["near",{"2":{"49":2,"84":1,"102":1}}],["needed",{"2":{"87":1}}],["need",{"2":{"45":1,"76":1,"78":1,"87":1,"88":1}}],["next",{"2":{"41":1,"42":1,"59":1,"79":2}}],["necessary",{"2":{"20":1,"55":1,"56":1,"76":1,"88":4}}],["netcdf4",{"2":{"50":1}}],["netcdf",{"0":{"50":1,"71":1,"72":1},"1":{"72":1},"2":{"13":1,"47":1,"50":4,"52":1,"54":2,"65":3,"68":2,"71":3,"72":2,"73":1,"80":2,"87":2,"90":2}}],["newdim",{"2":{"87":1}}],["new",{"0":{"9":1},"2":{"14":1,"16":1,"20":1,"29":1,"32":1,"33":3,"54":1,"59":1,"66":1,"73":1,"74":1,"75":1,"78":6,"87":5,"88":4,"96":1}}],["nout",{"2":{"88":2}}],["normal",{"2":{"87":1,"106":1}}],["north",{"2":{"51":1}}],["nometadata",{"2":{"57":3,"58":2,"60":3,"61":1,"62":10}}],["nov",{"2":{"57":4,"58":2,"59":1,"60":4,"61":4,"62":6}}],["november",{"2":{"50":1,"68":1,"74":1,"80":1}}],["nonmissingtype",{"2":{"88":1}}],["none",{"2":{"40":2,"45":1,"46":1,"49":1,"74":1,"102":1}}],["non",{"2":{"27":1,"87":1,"88":1,"95":1}}],["now",{"2":{"20":3,"22":1,"26":1,"33":1,"35":1,"37":1,"42":1,"46":1,"57":1,"58":1,"60":1,"62":1,"75":2,"76":1,"79":1}}],["no",{"2":{"13":1,"18":1,"25":1,"36":1,"70":1,"72":1,"75":1,"87":1,"88":1}}],["notice",{"2":{"70":1}}],["notation",{"2":{"37":1,"84":1}}],["nothing",{"2":{"22":1,"23":1,"25":1,"57":2,"60":4,"61":2,"62":5,"73":1,"87":1,"88":1}}],["note",{"2":{"9":1,"17":1,"20":4,"22":1,"25":1,"26":1,"33":1,"40":1,"47":1,"50":1,"53":1,"57":1,"58":1,"75":1,"87":1,"88":1}}],["not",{"0":{"40":1},"2":{"0":1,"1":1,"17":1,"36":1,"40":3,"45":1,"46":2,"47":1,"50":1,"56":1,"75":2,"87":3,"88":3}}],["bits",{"2":{"87":2}}],["big",{"2":{"64":1}}],["black",{"2":{"97":1}}],["blocks",{"2":{"87":1}}],["blosccompressor",{"2":{"70":1}}],["blue",{"2":{"51":1,"65":1}}],["bonito",{"2":{"106":1}}],["boundaries",{"2":{"88":1}}],["bounds",{"2":{"87":1}}],["bold",{"2":{"62":1}}],["bool=true",{"2":{"88":1}}],["bool=false",{"2":{"87":1,"88":1}}],["boolean",{"2":{"87":3}}],["bool",{"2":{"47":3,"88":6}}],["bwr",{"2":{"62":1}}],["b`",{"2":{"37":1}}],["broad",{"2":{"99":1}}],["broadcasts",{"2":{"88":1}}],["broadcast",{"2":{"57":1,"62":1}}],["broadcasted",{"2":{"20":2,"87":1,"88":1}}],["brown",{"2":{"97":1}}],["browser",{"2":{"79":1}}],["brightness",{"2":{"64":1,"65":1}}],["brings",{"2":{"88":1}}],["bring",{"2":{"34":1}}],["branch",{"2":{"49":1,"102":1}}],["bug",{"2":{"77":1}}],["bundle",{"2":{"65":1}}],["build",{"0":{"79":1},"2":{"32":1,"79":1}}],["but",{"0":{"40":1},"2":{"8":1,"20":2,"32":1,"33":2,"40":2,"45":1,"46":2,"50":1,"82":1,"83":1,"87":2}}],["b",{"2":{"21":2,"22":1,"23":1,"24":1,"26":13,"45":2,"84":2,"87":2}}],["backgroundcolor=",{"2":{"106":1}}],["back",{"2":{"87":1}}],["backend",{"2":{"73":2,"87":8}}],["backendlist",{"2":{"54":1,"87":1}}],["backend=",{"2":{"2":1,"20":2,"74":1}}],["based",{"0":{"101":1},"2":{"87":1,"88":1}}],["base",{"0":{"11":1},"2":{"4":4,"5":4,"6":2,"11":4,"22":1,"24":1,"29":3,"32":9,"33":6,"44":1,"45":5,"47":4,"75":6,"88":1,"93":2}}],["by=",{"2":{"42":2,"87":2}}],["bytes",{"2":{"8":1,"9":1,"11":1,"13":1,"18":1,"20":3,"21":1,"22":1,"23":1,"25":3,"26":1,"33":3,"34":1,"37":1,"42":2,"47":2,"60":1,"72":4,"75":1,"82":2,"93":1}}],["by",{"0":{"4":1,"5":1},"2":{"2":1,"14":2,"18":1,"20":1,"26":1,"28":1,"29":1,"33":1,"36":1,"37":6,"40":2,"42":1,"49":1,"50":1,"55":1,"56":1,"59":1,"60":1,"61":1,"62":1,"64":3,"66":1,"67":1,"73":1,"76":2,"78":1,"79":1,"87":12,"88":6,"92":1,"96":1}}],["beware",{"2":{"98":1}}],["best",{"2":{"88":1,"100":1}}],["become",{"2":{"87":1}}],["because",{"2":{"1":1,"17":1,"18":1,"20":1}}],["before",{"2":{"75":1,"79":1,"87":1}}],["belonging",{"2":{"65":1}}],["belongs",{"2":{"26":1}}],["being",{"2":{"46":1}}],["been",{"2":{"40":1,"76":1}}],["begin",{"2":{"27":1}}],["between",{"2":{"12":1,"13":1,"37":1,"39":1,"40":2,"70":1,"72":1,"84":1,"87":1}}],["be",{"2":{"0":5,"2":1,"3":1,"4":1,"10":1,"17":1,"19":1,"20":2,"26":1,"37":1,"40":1,"41":1,"42":2,"45":1,"46":1,"49":2,"50":1,"51":1,"52":2,"53":1,"56":1,"64":1,"66":2,"73":1,"74":1,"75":1,"78":1,"85":1,"87":23,"88":9,"89":1,"94":1,"98":1,"102":1}}],["629872",{"2":{"93":1}}],["62639",{"2":{"76":2}}],["663392",{"2":{"93":1}}],["669125",{"2":{"76":2}}],["66729",{"2":{"76":2}}],["665723",{"2":{"11":1}}],["600",{"2":{"95":1,"97":1,"103":1,"104":1,"105":1}}],["607943",{"2":{"93":1}}],["60918",{"2":{"62":1}}],["60175",{"2":{"62":1}}],["60265",{"2":{"49":1,"102":1}}],["657324",{"2":{"93":1}}],["65105",{"2":{"62":1}}],["652339",{"2":{"11":1}}],["641411",{"2":{"93":1}}],["647058",{"2":{"93":1}}],["64976",{"2":{"62":1}}],["642",{"2":{"56":1}}],["645758",{"2":{"11":1}}],["63291",{"2":{"93":1}}],["6326",{"2":{"51":1}}],["630988",{"2":{"93":1}}],["630526",{"2":{"76":2}}],["63006",{"2":{"62":1}}],["6378137",{"2":{"51":1}}],["69085",{"2":{"62":1}}],["69",{"2":{"49":1}}],["684389",{"2":{"26":1}}],["685454",{"2":{"26":1}}],["687891",{"2":{"13":1}}],["671473",{"2":{"93":1}}],["671662",{"2":{"26":1}}],["678562",{"2":{"93":1}}],["672",{"2":{"25":1}}],["673373",{"2":{"11":1}}],["6122",{"2":{"62":1}}],["61197",{"2":{"62":1}}],["611084",{"2":{"11":1}}],["619",{"2":{"57":1,"58":1}}],["617023",{"2":{"13":1}}],["6×2",{"2":{"9":1}}],["6",{"2":{"2":6,"4":6,"5":6,"6":6,"8":4,"9":5,"20":8,"26":1,"34":1,"37":1,"49":1,"102":1}}],["1e8",{"2":{"88":1}}],["1f2",{"2":{"47":1}}],["182827",{"2":{"93":1}}],["1851357399351781",{"2":{"96":1}}],["1850454989838767",{"2":{"96":1}}],["18507",{"2":{"93":1}}],["18583",{"2":{"62":1}}],["18892",{"2":{"62":1}}],["18434",{"2":{"62":1}}],["180×170",{"2":{"82":1}}],["180×170×24",{"2":{"50":1,"53":3,"81":2}}],["180",{"2":{"40":2,"51":1,"84":5,"104":1}}],["180ºe",{"2":{"40":1}}],["18",{"2":{"20":18}}],["170",{"2":{"85":1}}],["17434",{"2":{"62":1}}],["174934",{"2":{"11":1}}],["17852",{"2":{"62":1}}],["17863",{"2":{"62":1}}],["178603",{"2":{"26":1}}],["17647",{"2":{"62":1}}],["1762",{"2":{"57":1,"58":1}}],["17t00",{"2":{"56":2,"60":1}}],["179",{"2":{"51":1,"84":5}}],["17578125",{"2":{"51":2}}],["17593",{"2":{"26":1}}],["172",{"2":{"47":1}}],["17",{"2":{"18":1,"20":22,"42":1,"83":1}}],["191654",{"2":{"93":1}}],["1992",{"2":{"87":1}}],["1991",{"2":{"87":1}}],["1990",{"2":{"87":1}}],["195437",{"2":{"76":2}}],["1983",{"2":{"56":2,"60":1}}],["1980",{"2":{"56":2,"60":1}}],["1984",{"2":{"51":1}}],["19241",{"2":{"62":1}}],["192",{"2":{"23":1,"104":1}}],["19",{"2":{"20":16,"83":3,"84":5}}],["193109",{"2":{"13":1}}],["197238",{"2":{"11":1}}],["148753",{"2":{"93":1}}],["1437",{"2":{"62":1}}],["145747",{"2":{"26":1}}],["14286",{"2":{"26":1}}],["14",{"2":{"13":1,"20":20}}],["13102300858571433",{"2":{"96":1}}],["1373199053065047",{"2":{"96":1}}],["1372",{"2":{"57":1,"58":1}}],["13068",{"2":{"93":1}}],["1363",{"2":{"57":1,"58":1}}],["136",{"2":{"50":1,"68":1,"74":1,"80":1}}],["13z",{"2":{"49":2,"102":1}}],["13205",{"2":{"13":1}}],["13",{"2":{"13":1,"20":20,"50":1,"68":1,"74":1,"80":1}}],["1644",{"2":{"62":1}}],["16824",{"2":{"62":1}}],["16581",{"2":{"62":1}}],["166982",{"2":{"93":1}}],["16631",{"2":{"62":1}}],["166212",{"2":{"11":1}}],["16713",{"2":{"62":1}}],["167676",{"2":{"26":1}}],["16258",{"2":{"62":1}}],["16t12",{"2":{"56":2,"60":1}}],["16t00",{"2":{"50":4,"53":6,"68":2,"74":2,"80":2,"81":4,"82":4,"83":6,"84":10}}],["16",{"2":{"14":1,"16":1,"17":1,"20":20,"26":1,"29":1,"50":2,"53":3,"68":1,"74":1,"80":1,"81":2,"82":4,"83":3,"84":5}}],["169284",{"2":{"11":1}}],["1578236499134987",{"2":{"96":1}}],["159",{"2":{"83":1}}],["15644",{"2":{"62":1}}],["15532",{"2":{"62":1}}],["15394",{"2":{"26":1}}],["15×10×30",{"2":{"20":1}}],["15×10",{"2":{"20":2}}],["15",{"2":{"13":4,"14":1,"20":25,"26":6,"27":1,"29":1,"30":1,"35":2,"42":1,"56":2,"93":1}}],["151146",{"2":{"11":1}}],["152534",{"2":{"11":1}}],["128",{"2":{"106":1}}],["128204",{"2":{"11":1}}],["12673714160438732",{"2":{"96":1}}],["125769",{"2":{"76":2}}],["12575",{"2":{"62":1}}],["1242",{"2":{"62":1}}],["121",{"2":{"47":1}}],["121947",{"2":{"26":1}}],["123",{"2":{"21":1,"25":2}}],["1200",{"2":{"103":1,"104":1,"105":1}}],["120997",{"2":{"26":1}}],["120",{"2":{"20":1}}],["12",{"2":{"8":4,"13":1,"20":20,"37":10,"39":3,"40":4,"50":2,"53":3,"68":1,"74":1,"80":1,"81":2,"82":2,"83":3,"84":5,"95":1,"96":2}}],["1=5",{"2":{"2":1}}],["11037641658890784",{"2":{"96":1}}],["119937",{"2":{"93":1}}],["119",{"2":{"82":1}}],["1159916",{"2":{"72":1}}],["1181",{"2":{"62":1}}],["113553",{"2":{"61":3}}],["112319",{"2":{"61":12}}],["114815",{"2":{"61":6}}],["11",{"2":{"2":6,"4":6,"5":6,"6":6,"8":1,"13":1,"20":18,"50":2,"53":3,"57":4,"58":4,"62":4,"68":1,"74":1,"80":1,"81":2,"82":3,"83":3,"84":5}}],["1",{"2":{"2":12,"4":19,"5":20,"6":22,"8":5,"9":3,"11":1,"12":2,"13":6,"14":8,"15":3,"16":7,"17":5,"18":6,"20":24,"21":10,"22":9,"23":8,"24":5,"25":17,"26":34,"27":3,"29":15,"30":4,"32":3,"33":3,"34":8,"35":8,"37":23,"39":10,"40":8,"41":15,"42":14,"44":1,"45":3,"46":1,"47":5,"49":4,"50":12,"53":12,"56":4,"57":4,"58":2,"60":6,"61":10,"62":54,"68":4,"74":11,"75":2,"76":2,"80":4,"81":8,"82":13,"83":18,"84":15,"85":4,"88":1,"93":11,"95":2,"96":5,"97":5,"102":3,"104":4,"105":2,"106":5}}],["10986528577255357",{"2":{"96":1}}],["10989",{"2":{"61":6}}],["1095",{"2":{"96":1}}],["10mb",{"2":{"87":2}}],["102816",{"2":{"76":2}}],["102333",{"2":{"76":2}}],["10850864324777372",{"2":{"96":1}}],["1083",{"2":{"62":1}}],["108696",{"2":{"61":6}}],["103704",{"2":{"61":3}}],["10×170×24",{"2":{"83":1}}],["10×10×24",{"2":{"83":2}}],["10×10×8",{"2":{"37":1}}],["10×10×12",{"2":{"37":1}}],["10×10×36",{"2":{"37":1}}],["10×10×5",{"2":{"32":1}}],["10×10",{"2":{"33":3,"34":1,"37":1}}],["10×15×20",{"2":{"41":1}}],["10×15",{"2":{"18":1,"26":2,"42":1,"93":1}}],["10×20×5",{"2":{"29":1}}],["10x15",{"2":{"26":1}}],["101524",{"2":{"26":1}}],["100",{"2":{"40":7}}],["100622",{"2":{"13":1}}],["1000",{"2":{"0":1,"104":1,"105":1}}],["10",{"2":{"2":14,"4":16,"5":18,"6":17,"11":2,"13":4,"14":3,"16":1,"17":1,"18":1,"20":21,"26":15,"27":3,"29":6,"30":2,"32":8,"33":12,"34":5,"35":4,"37":16,"39":10,"41":3,"42":2,"44":2,"45":4,"49":1,"50":2,"53":3,"74":2,"81":2,"82":3,"83":6,"84":5,"92":1,"93":3}}],["garbage",{"2":{"88":1}}],["gc",{"2":{"88":2}}],["gt",{"2":{"79":1,"87":1,"88":3}}],["ggplot2",{"2":{"62":1}}],["github",{"2":{"51":1,"56":2,"77":1}}],["gives",{"2":{"26":1}}],["given",{"2":{"2":1,"26":2,"64":1,"66":1,"73":1,"87":6,"88":3,"93":1}}],["gdalworkshop",{"2":{"51":1}}],["gdal",{"0":{"51":1},"2":{"51":1}}],["gb",{"2":{"49":1}}],["gn",{"2":{"49":1,"102":2}}],["gs",{"2":{"49":1,"102":2}}],["glob",{"2":{"87":1}}],["globalproperties=dict",{"2":{"88":1}}],["global",{"2":{"87":1,"88":1}}],["glmakie",{"2":{"42":2,"90":1,"102":2}}],["glue",{"2":{"8":1}}],["gradient",{"2":{"103":1,"104":1,"105":1,"106":1}}],["gradually",{"2":{"75":1}}],["grouped",{"2":{"87":1}}],["groups",{"2":{"61":1}}],["groupby",{"0":{"57":1,"60":1},"1":{"58":1,"59":1,"61":1,"62":1},"2":{"54":1,"56":1,"57":6,"58":1,"59":1,"60":3,"61":3,"62":3,"87":1,"96":1}}],["group",{"0":{"54":1},"1":{"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1},"2":{"57":1,"59":1,"60":2,"65":1,"87":3}}],["grouping",{"2":{"42":2,"59":2}}],["grey25",{"2":{"106":1}}],["grey15",{"2":{"42":1,"62":1}}],["greenwich",{"2":{"51":1}}],["green",{"2":{"51":1,"65":1}}],["grid=false",{"2":{"62":1}}],["grid",{"2":{"27":1,"64":1,"87":1}}],["gridchunks",{"2":{"2":3,"4":1,"5":1,"6":1,"87":1,"88":1}}],["going",{"2":{"88":1}}],["go",{"2":{"79":2}}],["good",{"2":{"62":1}}],["goal",{"2":{"25":1,"33":1,"55":1}}],["goes",{"2":{"20":2,"87":1,"88":1}}],["guide",{"2":{"14":2,"16":1,"17":1,"27":1,"29":3,"30":1}}],["gen",{"2":{"20":6}}],["general",{"0":{"99":1},"2":{"87":1,"89":1}}],["generated",{"2":{"50":1,"68":1,"74":1,"80":1,"88":1}}],["generate",{"2":{"20":2,"37":1,"39":1,"40":1,"79":1,"87":1}}],["generic",{"2":{"20":2,"22":1,"23":1,"25":1,"29":1,"87":1}}],["getting",{"0":{"91":1},"1":{"92":1,"93":1,"94":1}}],["gettarrayaxes",{"2":{"46":1}}],["getarrayinfo",{"2":{"88":1}}],["getaxis",{"2":{"34":1,"42":2,"87":1}}],["getloopchunks",{"2":{"88":1}}],["getloopcachesize",{"2":{"88":1}}],["getouttype",{"2":{"88":1}}],["getoutaxis",{"2":{"88":1}}],["getfrontperm",{"2":{"88":1}}],["gets",{"2":{"87":1,"88":1}}],["get",{"0":{"85":1},"2":{"14":1,"22":1,"32":1,"60":1,"81":1,"83":1,"85":1,"88":3,"93":1,"96":1,"102":1}}],["geoaxis",{"2":{"104":1,"105":1}}],["geometrybasics",{"2":{"102":1}}],["geomakie",{"2":{"90":1,"102":1,"104":2,"105":1}}],["geogcs",{"2":{"51":1}}],["geojson",{"0":{"51":1}}],["geotiff",{"0":{"51":1}}],["geo",{"2":{"1":1}}],["g",{"2":{"7":1,"14":1,"15":1,"17":1,"20":4,"27":1,"29":1,"57":26,"58":2,"59":2,"60":2,"61":1,"62":18,"64":1,"67":1,"85":1,"87":5,"102":2}}],["2π",{"2":{"95":1}}],["2×3",{"2":{"93":1}}],["2×2×3",{"2":{"4":1,"5":1,"6":1}}],["2×2",{"2":{"2":3,"47":1}}],["2963860",{"2":{"72":1}}],["29473",{"2":{"62":1}}],["29564",{"2":{"62":1}}],["29816",{"2":{"62":1}}],["298",{"2":{"51":1}}],["271921",{"2":{"93":1}}],["2747",{"2":{"62":1}}],["273",{"2":{"60":1}}],["276",{"2":{"60":2}}],["270",{"2":{"60":1}}],["27",{"2":{"57":1,"58":1,"62":1}}],["275×205×9",{"2":{"57":4}}],["275×205×36",{"2":{"56":2}}],["275",{"2":{"56":2}}],["2x2l31",{"2":{"50":1,"68":1,"74":1,"80":1}}],["2f0",{"2":{"47":1}}],["284649",{"2":{"93":1}}],["28422753251364",{"2":{"49":4,"102":2}}],["28008",{"2":{"62":1}}],["2894",{"2":{"62":1}}],["288",{"2":{"60":1}}],["2818",{"2":{"57":1,"58":1}}],["28",{"2":{"37":1,"57":3,"58":3,"62":3}}],["28571",{"2":{"26":2}}],["2857142857142857",{"2":{"14":1,"16":1,"17":1,"18":1,"26":3,"29":2,"30":1,"35":1,"41":3,"42":1,"93":1}}],["2d",{"2":{"23":5,"24":3,"25":2}}],["230869",{"2":{"93":1}}],["23",{"2":{"20":8,"41":3,"50":2,"53":3,"62":1,"68":1,"74":1,"80":1,"81":2,"82":3,"83":3,"84":5}}],["223412",{"2":{"93":1}}],["22211",{"2":{"62":1}}],["22",{"2":{"20":10}}],["225542",{"2":{"13":1}}],["21699",{"2":{"62":1}}],["21209",{"2":{"62":1}}],["21t06",{"2":{"49":2,"102":1}}],["21t19",{"2":{"46":4}}],["2101",{"2":{"49":2,"102":1}}],["21",{"2":{"20":12,"57":8,"58":8,"62":8}}],["215973",{"2":{"13":1}}],["263789",{"2":{"93":1}}],["26274",{"2":{"62":1}}],["26",{"2":{"20":2,"49":2,"102":1}}],["268675",{"2":{"13":1}}],["265797",{"2":{"11":1}}],["24375",{"2":{"62":1}}],["2434",{"2":{"62":1}}],["24",{"2":{"20":6,"42":1,"82":2}}],["240",{"2":{"13":1,"18":1,"20":1}}],["241882",{"2":{"11":1}}],["253963",{"2":{"93":1}}],["25153",{"2":{"62":1}}],["257223563",{"2":{"51":1}}],["25",{"2":{"12":2,"20":4,"37":1,"95":1}}],["2=10",{"2":{"2":1}}],["2",{"2":{"2":3,"4":8,"5":9,"6":10,"8":1,"9":1,"11":2,"13":3,"15":3,"16":2,"17":1,"18":1,"21":1,"22":2,"23":2,"24":1,"26":9,"27":1,"29":1,"32":3,"33":6,"34":3,"37":1,"40":6,"42":6,"45":4,"46":1,"47":8,"49":3,"50":3,"53":6,"57":1,"58":1,"62":40,"68":1,"74":2,"75":2,"80":1,"81":4,"82":2,"83":2,"84":5,"85":2,"87":2,"93":5,"102":3,"104":2,"106":1}}],["205",{"2":{"56":2}}],["2003",{"2":{"50":1,"68":1,"74":1,"80":1}}],["2004",{"2":{"50":1,"68":1,"74":1,"80":1}}],["2005",{"2":{"50":2,"53":3,"68":1,"74":1,"80":1,"81":2,"82":3,"83":3,"84":5}}],["2002",{"2":{"50":3,"53":3,"68":2,"74":1,"80":2,"81":2,"82":2,"83":3,"84":5}}],["2001",{"2":{"50":3,"53":3,"68":2,"74":1,"80":2,"81":2,"82":3,"83":3,"84":5}}],["2000",{"2":{"12":1}}],["2019",{"2":{"49":2,"102":1}}],["2015",{"2":{"49":2,"50":1,"68":1,"74":1,"80":1,"102":2}}],["20×10×15",{"2":{"41":2}}],["20×10×15×2",{"2":{"35":1,"93":1}}],["20ºn",{"2":{"40":1}}],["2023",{"2":{"95":1,"96":2}}],["2021",{"2":{"37":9,"95":1,"96":2,"97":1}}],["2020",{"2":{"37":5,"39":3,"40":4,"46":8,"66":1}}],["2022",{"2":{"14":4,"16":2,"17":2,"18":2,"20":8,"21":4,"22":2,"24":2,"25":6,"26":6,"27":2,"29":6,"30":2,"37":5,"39":3,"40":4,"97":1}}],["2024",{"2":{"12":1}}],["203714",{"2":{"13":1}}],["20",{"2":{"2":7,"4":10,"5":10,"6":10,"20":14,"29":2,"35":4,"40":2,"41":3,"42":1,"62":1,"74":2,"93":3}}],["5173",{"2":{"79":1}}],["514979",{"2":{"26":1}}],["527401",{"2":{"76":2}}],["52419",{"2":{"62":1}}],["55",{"2":{"96":1}}],["553602",{"2":{"93":1}}],["558193",{"2":{"76":2}}],["551732",{"2":{"26":1}}],["5e8",{"2":{"73":1,"87":1}}],["5743",{"2":{"62":1}}],["57873",{"2":{"62":1}}],["57695",{"2":{"62":1}}],["57143",{"2":{"26":2}}],["56632",{"2":{"62":1}}],["508557",{"2":{"26":1}}],["50089",{"2":{"62":1}}],["500",{"2":{"0":1,"62":1,"106":2}}],["500mb",{"2":{"0":2}}],["59212",{"2":{"62":1}}],["59085",{"2":{"62":1}}],["595405",{"2":{"26":1}}],["594514",{"2":{"11":1}}],["536094",{"2":{"93":1}}],["536399",{"2":{"26":1}}],["531649",{"2":{"93":1}}],["53",{"2":{"82":1}}],["538981",{"2":{"26":1}}],["582329",{"2":{"93":1}}],["58548",{"2":{"93":1}}],["580668",{"2":{"93":1}}],["5843",{"2":{"57":1,"58":1}}],["58",{"2":{"20":2}}],["581312",{"2":{"11":1}}],["540514",{"2":{"13":1}}],["5×4",{"2":{"76":2}}],["5×4×5",{"2":{"75":1}}],["5×4×3",{"2":{"25":2}}],["5×4×3×2",{"2":{"21":1,"22":1}}],["5×6×36",{"2":{"37":1}}],["5×6",{"2":{"13":2}}],["5×10",{"2":{"11":2}}],["5",{"2":{"2":7,"4":16,"5":18,"6":7,"11":2,"13":4,"14":2,"16":3,"17":2,"18":1,"20":6,"21":2,"25":4,"26":10,"27":1,"29":5,"30":1,"32":4,"34":1,"35":2,"37":3,"39":4,"41":3,"42":2,"45":4,"50":4,"53":6,"62":5,"68":2,"74":4,"75":6,"76":3,"80":2,"81":4,"82":3,"83":10,"84":10,"85":24,"93":2,"94":1,"97":2,"106":2}}],["rotate",{"2":{"106":1}}],["row",{"2":{"67":1,"87":1}}],["rowgap",{"2":{"62":1}}],["right",{"2":{"95":1,"97":1}}],["rights",{"2":{"76":1}}],["r",{"2":{"75":1}}],["r1i1p1f1",{"2":{"49":2,"102":3}}],["running",{"2":{"79":1}}],["run",{"2":{"27":1,"79":3,"89":2}}],["runs",{"2":{"17":1,"88":1}}],["rafaqz",{"2":{"56":1}}],["ram",{"2":{"52":1}}],["raw",{"2":{"51":1,"56":1}}],["race",{"2":{"50":1}}],["ranges",{"0":{"83":1},"2":{"34":1,"80":1}}],["range",{"2":{"14":2,"20":2,"21":2,"26":2,"27":2,"29":2,"35":3,"37":1,"88":1,"93":3,"95":1}}],["randn",{"2":{"95":1}}],["random",{"2":{"21":2,"40":2,"46":3,"93":1}}],["rand",{"2":{"2":1,"4":3,"5":3,"6":3,"8":2,"9":2,"11":1,"12":1,"13":1,"14":1,"21":1,"23":1,"25":3,"26":1,"27":1,"29":2,"30":1,"32":1,"33":2,"35":2,"40":3,"42":1,"44":1,"45":3,"74":1,"76":1,"93":2}}],["rasm",{"2":{"56":2}}],["ras",{"2":{"12":3}}],["rasters",{"2":{"12":2}}],["raster",{"0":{"12":1},"2":{"12":3,"26":11}}],["recommend",{"2":{"94":1}}],["recommended",{"2":{"84":1}}],["rechunking",{"2":{"88":1}}],["recalculate",{"2":{"88":1}}],["recal",{"2":{"88":1}}],["recently",{"2":{"0":1}}],["relational",{"2":{"64":1}}],["related",{"2":{"56":1}}],["reverse",{"2":{"62":1}}],["reverseordered",{"2":{"9":1,"51":1,"93":1}}],["red",{"2":{"51":1,"62":1,"65":1}}],["reduce",{"2":{"14":1,"18":1,"23":1}}],["reentrantlock",{"2":{"50":1}}],["rewrote",{"2":{"49":1,"50":1,"68":1,"74":1,"80":1,"102":1}}],["realization",{"2":{"50":1,"68":1,"74":1,"80":1}}],["realm",{"2":{"49":1,"102":1}}],["readcubedata",{"0":{"53":1},"2":{"40":2,"52":1,"53":1,"87":1}}],["read",{"0":{"48":1,"49":1,"50":1,"51":1},"1":{"49":1,"50":1,"51":1,"52":1,"53":1},"2":{"1":1,"40":1,"48":1,"51":1,"83":1,"87":1}}],["rename",{"2":{"45":1}}],["resets",{"2":{"87":1,"88":1}}],["respectively",{"2":{"65":1}}],["reshape",{"2":{"37":1,"39":2}}],["result",{"2":{"34":1,"42":1}}],["resulting",{"2":{"8":1,"9":1,"18":1,"87":1,"88":1}}],["results",{"0":{"97":1},"2":{"2":1,"5":1,"62":2,"87":1,"88":1}}],["referencing",{"2":{"57":1}}],["references",{"2":{"50":1,"68":1,"74":1,"80":1}}],["reference",{"0":{"86":1},"1":{"87":1,"88":1},"2":{"46":1}}],["ref",{"2":{"35":1,"87":1,"88":1}}],["rebuild",{"0":{"33":1},"2":{"32":1,"33":2,"46":2,"56":1}}],["repeat",{"2":{"95":1}}],["repl",{"2":{"89":1,"92":1}}],["replace",{"2":{"27":1,"56":2,"106":1}}],["repository",{"2":{"77":1,"98":1}}],["reports",{"2":{"77":1}}],["rep",{"2":{"56":2}}],["reproduces",{"2":{"55":1}}],["represented",{"2":{"87":1,"100":1}}],["represents",{"2":{"65":1}}],["representing",{"2":{"26":2,"88":1}}],["representation",{"2":{"1":1,"87":2,"88":3}}],["re",{"2":{"26":1}}],["registry",{"2":{"89":1}}],["registration",{"2":{"88":2}}],["registered",{"2":{"88":1,"89":1}}],["regions",{"2":{"26":8}}],["region",{"2":{"26":12}}],["regular",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"11":2,"13":4,"14":3,"16":3,"17":3,"18":3,"20":9,"21":3,"22":3,"23":2,"24":2,"25":9,"26":8,"29":9,"30":3,"32":9,"33":6,"34":2,"35":3,"37":14,"39":6,"40":4,"41":9,"42":3,"44":1,"45":5,"47":4,"49":2,"50":4,"51":2,"53":6,"56":4,"57":2,"58":2,"62":6,"68":2,"74":5,"75":6,"80":2,"81":4,"82":2,"83":3,"84":10,"85":3,"93":5,"96":1,"102":1}}],["regularchunks",{"2":{"2":6,"4":3,"5":3,"6":3}}],["returned",{"2":{"87":1}}],["returns",{"2":{"87":5,"88":2}}],["return",{"2":{"22":1,"23":1,"25":2,"26":4,"57":1,"87":1,"88":1,"96":1}}],["requests",{"2":{"77":1}}],["requested",{"2":{"17":1}}],["requirements",{"2":{"50":1,"68":1,"74":1,"80":1}}],["required",{"2":{"37":1}}],["requires",{"2":{"20":1}}],["removes",{"2":{"88":1}}],["remove",{"2":{"58":1}}],["removed",{"2":{"19":1,"88":1}}],["remote",{"2":{"0":1}}],["http",{"2":{"79":1}}],["https",{"2":{"50":1,"51":1,"56":2,"65":1,"68":1,"80":1}}],["html",{"2":{"65":1}}],["hm",{"2":{"62":8}}],["hdf5",{"2":{"50":1}}],["hidedecorations",{"2":{"62":1}}],["history",{"2":{"49":2,"50":2,"53":3,"68":1,"74":1,"80":1,"81":2,"82":3,"83":3,"84":5,"102":1}}],["highclip",{"2":{"62":4}}],["high",{"2":{"46":4}}],["hr",{"2":{"49":1,"102":2}}],["hold",{"2":{"87":1}}],["holds",{"2":{"87":1,"88":1}}],["ho",{"0":{"46":1}}],["however",{"2":{"10":1,"37":1}}],["how",{"0":{"35":1,"36":1,"41":1,"42":1,"43":1,"89":1},"1":{"37":1,"38":1,"39":1,"40":1,"44":1,"45":1},"2":{"6":1,"7":1,"10":1,"14":1,"21":2,"22":1,"28":1,"31":1,"42":1,"48":1,"53":3,"57":1,"76":1,"87":1,"98":1,"100":1}}],["happens",{"2":{"88":1}}],["had",{"2":{"76":1,"87":1,"88":1}}],["hamman",{"2":{"55":1,"62":1}}],["hard",{"2":{"53":1}}],["handled",{"2":{"88":1}}],["handle",{"2":{"64":1,"88":1}}],["handling",{"2":{"9":1,"87":1}}],["handy",{"2":{"42":1}}],["has",{"2":{"8":1,"9":1,"12":1,"13":1,"26":1,"40":1,"55":1,"58":1,"88":1}}],["half",{"2":{"8":5}}],["have",{"2":{"6":1,"9":1,"26":1,"29":1,"38":1,"40":2,"57":1,"66":1,"87":3}}],["having",{"2":{"1":1,"26":1}}],["help",{"2":{"87":1,"88":2}}],["height",{"2":{"49":2,"102":1}}],["heatmap",{"0":{"103":1},"2":{"42":1,"62":3,"103":1}}],["hereby",{"2":{"26":1}}],["here",{"2":{"8":1,"9":1,"17":1,"20":2,"21":1,"25":1,"26":1,"36":1,"42":1,"75":1,"78":2,"83":1}}],["hence",{"2":{"1":1}}],["ylabel=",{"2":{"95":1,"97":1}}],["ylabel",{"2":{"62":3}}],["yc",{"2":{"56":2}}],["yet",{"2":{"87":1}}],["yeesian",{"2":{"51":1}}],["years",{"2":{"37":1,"95":1,"96":1}}],["year",{"2":{"8":4,"97":1}}],["yyyy",{"2":{"50":2,"68":2,"74":2,"80":2}}],["yasxa",{"2":{"40":6}}],["yaxcolumn",{"2":{"88":1}}],["yaxconvert",{"2":{"13":2}}],["yaxdefaults",{"2":{"88":1}}],["yaxarraybase",{"2":{"13":1,"87":1,"88":1}}],["yaxarray",{"0":{"15":1,"21":1,"29":1,"36":1,"37":1,"47":1,"64":1,"81":1},"1":{"22":1,"23":1,"24":1,"37":1,"38":1,"39":1,"40":1},"2":{"2":1,"4":4,"5":4,"6":4,"7":1,"8":3,"9":3,"11":4,"12":2,"13":5,"14":2,"16":1,"17":1,"18":2,"20":8,"21":2,"22":1,"23":2,"24":1,"25":6,"26":3,"27":1,"29":5,"30":2,"32":3,"33":5,"34":1,"35":3,"36":1,"37":15,"39":4,"40":6,"41":3,"42":4,"44":2,"45":4,"46":4,"47":4,"49":2,"50":2,"51":1,"53":3,"56":2,"57":7,"58":1,"60":9,"61":1,"62":3,"64":1,"66":1,"68":1,"69":1,"71":1,"74":2,"75":4,"80":2,"81":2,"82":3,"83":3,"84":5,"87":10,"88":3,"93":5,"96":2,"100":1,"102":1}}],["yaxarrays",{"0":{"0":1,"1":1,"2":1,"7":1,"10":1,"14":1,"20":1,"28":1,"43":1,"48":1,"54":1,"68":1,"77":1,"80":1,"89":1,"99":1,"100":1},"1":{"2":1,"3":1,"4":1,"5":1,"6":1,"8":1,"9":1,"11":1,"12":1,"13":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"29":1,"30":1,"44":1,"45":1,"49":1,"50":1,"51":1,"52":1,"53":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"78":1,"79":1,"81":1,"82":1,"83":1,"84":1,"85":1},"2":{"0":3,"2":1,"4":1,"5":1,"6":1,"8":3,"9":3,"10":2,"11":1,"14":4,"20":6,"21":3,"26":3,"27":4,"29":3,"32":1,"33":1,"35":3,"36":1,"37":1,"38":1,"39":2,"40":4,"44":1,"45":1,"46":4,"48":1,"49":1,"50":1,"51":2,"54":3,"57":1,"60":2,"61":1,"62":1,"63":1,"65":1,"68":1,"73":1,"75":1,"77":1,"79":1,"80":1,"87":28,"88":28,"89":4,"92":3,"93":5,"94":2,"96":3,"98":1,"99":1,"102":1}}],["yax",{"2":{"0":1,"8":3,"9":3,"14":2,"20":11,"21":3,"22":1,"23":1,"24":3,"25":5,"26":2,"27":2,"29":2,"33":1,"35":2,"37":1,"39":1,"40":1,"46":5,"47":2,"54":1,"57":3,"60":1,"87":1,"93":2,"96":2}}],["y",{"2":{"4":2,"5":3,"6":2,"12":1,"13":3,"37":4,"41":4,"51":1,"56":2,"57":2,"58":1,"62":3,"64":1,"93":3}}],["you",{"2":{"1":1,"27":1,"36":1,"40":3,"45":2,"52":1,"53":1,"70":1,"78":1,"79":2,"87":1,"88":2,"89":3,"92":2,"94":1,"98":3,"100":2}}],["yourself",{"2":{"79":1}}],["your",{"2":{"1":2,"40":2,"50":1,"73":2,"75":1,"78":4,"79":4,"87":1}}],["circshift",{"2":{"104":1}}],["ct1",{"2":{"102":4,"103":1}}],["cycle",{"0":{"95":1,"97":1},"1":{"96":1,"97":1},"2":{"96":4}}],["cycle=12",{"2":{"57":2,"58":1,"60":2,"61":2,"62":3}}],["cdata",{"2":{"88":1}}],["center",{"2":{"87":1,"95":1,"97":1}}],["certain",{"2":{"80":2,"88":1}}],["cell",{"2":{"49":2,"50":1,"53":3,"81":2,"82":3,"83":3,"84":5,"87":1}}],["c54",{"2":{"62":1}}],["cb",{"2":{"62":1}}],["cbar",{"2":{"42":1}}],["cftime",{"2":{"50":6,"53":9,"56":6,"57":2,"60":7,"61":2,"62":2,"68":3,"74":3,"80":3,"81":6,"82":7,"83":9,"84":15}}],["cf",{"2":{"49":2,"50":2,"68":2,"74":2,"80":2,"102":2}}],["cmpcachmisses",{"2":{"88":1}}],["cm4",{"2":{"50":4,"68":4,"74":4,"80":4}}],["cmip",{"2":{"49":1,"102":1}}],["cmip6",{"2":{"49":3,"102":6}}],["cmor",{"2":{"49":2,"50":3,"53":3,"68":2,"74":2,"80":2,"81":2,"82":3,"83":3,"84":5,"102":1}}],["cgrad",{"2":{"42":1}}],["cl",{"2":{"104":1,"105":1}}],["cl=lines",{"2":{"104":1,"105":1}}],["clean",{"2":{"88":1}}],["cleanme",{"2":{"88":4}}],["cleaner",{"2":{"87":2}}],["clevel=n",{"2":{"70":1}}],["clashes",{"2":{"57":1}}],["classes=classes",{"2":{"42":1}}],["classes",{"2":{"42":8}}],["classification",{"2":{"42":2}}],["class",{"2":{"42":3}}],["climate",{"2":{"50":1,"68":1,"74":1,"80":1}}],["closedinterval",{"2":{"84":1}}],["closed",{"0":{"84":1},"2":{"84":3}}],["close",{"2":{"46":4}}],["cloud",{"2":{"15":1,"49":1}}],["clustermanagers",{"2":{"27":2}}],["cluster",{"2":{"27":1}}],["cpus",{"2":{"27":1}}],["cpu",{"2":{"27":1}}],["c",{"2":{"26":11,"32":5,"33":7,"34":3,"42":2,"45":2,"56":2,"65":1,"70":1,"72":4,"87":5,"88":3,"96":4,"102":2}}],["custom",{"2":{"29":1,"87":1}}],["current",{"2":{"26":2,"65":1,"87":1,"97":1}}],["currently",{"2":{"20":1,"46":1,"56":1,"98":1}}],["cubeaxis",{"2":{"88":1}}],["cubeaxes",{"2":{"87":1}}],["cubedir",{"2":{"88":1}}],["cube2",{"2":{"87":1}}],["cube1",{"2":{"87":1}}],["cubelist",{"2":{"87":1}}],["cubefittable",{"2":{"42":2,"87":1}}],["cubetable",{"0":{"42":1},"2":{"42":3,"87":3}}],["cubes",{"0":{"35":1},"2":{"9":2,"21":1,"25":1,"35":2,"40":1,"41":2,"42":1,"66":1,"81":1,"87":18,"88":9}}],["cube",{"0":{"32":1,"34":1,"36":1,"66":1,"96":1},"1":{"33":1,"37":1,"38":1,"39":1,"40":1},"2":{"2":1,"4":1,"5":1,"6":1,"20":11,"21":2,"23":2,"25":2,"32":1,"34":1,"36":2,"40":1,"41":1,"42":2,"56":1,"66":3,"75":1,"87":34,"88":19,"100":1}}],["chose",{"2":{"65":1}}],["child",{"2":{"49":1,"102":1}}],["check",{"2":{"20":1,"75":1,"94":1}}],["changed",{"2":{"94":1,"98":1}}],["changes",{"2":{"53":1}}],["change",{"2":{"14":1,"87":1,"88":1}}],["chunkoffset",{"2":{"88":1}}],["chunksize`",{"2":{"88":1}}],["chunksizes",{"2":{"87":2}}],["chunksize",{"2":{"87":1,"88":3}}],["chunks",{"0":{"4":1},"2":{"2":5,"4":1,"5":1,"6":2,"87":4,"88":11}}],["chunked",{"2":{"2":5}}],["chunking",{"0":{"2":1,"3":1,"5":1,"6":1},"1":{"4":1,"5":1,"6":1},"2":{"1":1,"5":1,"87":4,"88":3}}],["chunk",{"0":{"1":1},"1":{"2":1,"3":1,"4":1,"5":1,"6":1},"2":{"1":1,"2":1,"4":1,"5":1,"87":4,"88":4}}],["criteria",{"2":{"42":1}}],["creation",{"2":{"47":1}}],["creating",{"0":{"26":1},"2":{"14":1,"33":1,"37":1,"75":1,"78":1}}],["createdataset",{"2":{"88":2}}],["created",{"2":{"88":2}}],["creates",{"2":{"42":1,"87":2,"88":1}}],["create",{"0":{"28":1,"29":1,"30":1,"47":1},"1":{"29":1,"30":1},"2":{"14":1,"20":1,"26":2,"28":1,"29":1,"33":1,"35":1,"37":2,"42":1,"46":1,"60":1,"68":1,"73":1,"75":3,"87":1,"88":1,"93":1,"95":1}}],["crucial",{"2":{"1":1}}],["coastlines",{"2":{"104":3,"105":1}}],["cosd",{"2":{"87":1}}],["country",{"2":{"87":4}}],["country=cube2",{"2":{"87":1}}],["could",{"2":{"33":1,"46":1,"52":1}}],["copies",{"2":{"88":1}}],["copied",{"2":{"75":1}}],["copybuf",{"2":{"88":2}}],["copydata",{"2":{"88":1}}],["copy",{"2":{"32":1,"79":1,"87":1}}],["coordinates",{"2":{"49":1,"56":2}}],["college",{"2":{"98":1}}],["collected",{"2":{"88":1}}],["collectfromhandle",{"2":{"88":1}}],["collection",{"2":{"31":1,"64":1}}],["collect",{"2":{"11":1,"34":3,"96":1}}],["colonperm",{"2":{"88":1}}],["color=",{"2":{"97":3}}],["color",{"2":{"95":1,"104":1,"105":1,"106":1}}],["colormap=",{"2":{"62":1}}],["colormap=makie",{"2":{"42":1}}],["colormap",{"2":{"62":3,"103":1,"104":1,"105":1,"106":1}}],["colorrange=",{"2":{"62":1}}],["colorrange",{"2":{"62":3}}],["colorbar",{"2":{"42":1,"62":2}}],["column",{"2":{"67":1,"88":1}}],["colgap",{"2":{"62":1}}],["colnames",{"2":{"46":1}}],["configuration",{"2":{"88":2}}],["concatenating",{"2":{"87":1}}],["concatenates",{"2":{"87":2}}],["concatenate",{"0":{"35":1},"2":{"35":2,"87":2}}],["concatenatecubes",{"0":{"9":1},"2":{"9":2,"35":2,"87":2}}],["concrete",{"2":{"87":2}}],["contrast",{"2":{"87":1}}],["contributing",{"2":{"78":1}}],["contribute",{"0":{"77":1,"78":1},"1":{"78":1,"79":2}}],["content",{"2":{"87":1}}],["continue",{"2":{"57":1}}],["contact",{"2":{"50":1,"68":1,"74":1,"80":1}}],["contains",{"2":{"84":1,"87":1,"88":1}}],["contain",{"2":{"49":1,"50":1,"88":1}}],["containing",{"0":{"47":1},"2":{"8":1,"42":1,"65":1,"66":1,"87":1}}],["consolidated=true",{"2":{"49":1,"102":1}}],["constructor",{"2":{"87":1}}],["constructs",{"2":{"87":1}}],["construct",{"0":{"46":1},"2":{"87":2}}],["consistent",{"2":{"49":1,"102":1}}],["consisting",{"2":{"8":1}}],["considering",{"2":{"55":1}}],["considered",{"2":{"42":1}}],["consider",{"2":{"21":1,"23":1,"25":1,"33":1}}],["convinient",{"2":{"31":1}}],["convenience",{"2":{"57":1}}],["convenient",{"2":{"27":1}}],["conventions",{"2":{"50":1,"68":1,"74":1,"80":1}}],["conversion",{"2":{"10":1,"12":1,"13":1}}],["conversions",{"2":{"10":1}}],["converted",{"2":{"66":1}}],["convert",{"0":{"10":1,"11":1,"12":1,"13":1},"1":{"11":1,"12":1,"13":1},"2":{"10":1,"11":2,"13":2,"87":1,"88":1}}],["corresponding",{"2":{"7":1,"25":2,"26":2,"66":1,"87":1}}],["combining",{"0":{"101":1}}],["combined",{"2":{"9":2,"66":2}}],["combine",{"0":{"7":1},"1":{"8":1,"9":1},"2":{"7":1,"8":1,"9":1,"100":1}}],["com",{"2":{"51":1,"56":2}}],["command",{"2":{"89":2}}],["comment",{"2":{"49":1}}],["common",{"2":{"40":5,"87":1}}],["compiler",{"2":{"94":1}}],["compuation",{"2":{"87":1}}],["computing",{"2":{"42":1}}],["computations",{"2":{"17":1,"41":1}}],["computation",{"0":{"27":1},"2":{"17":1,"64":1,"87":3,"88":3}}],["computed",{"2":{"88":1}}],["compute",{"0":{"14":1},"1":{"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1},"2":{"96":1}}],["compares",{"2":{"88":1}}],["comparing",{"2":{"72":1}}],["compatible",{"2":{"51":1}}],["compress",{"2":{"72":2}}],["compress=n",{"2":{"72":1}}],["compressors",{"2":{"70":1}}],["compressor=compression",{"2":{"70":1}}],["compression",{"0":{"70":1,"72":1},"2":{"70":5,"72":4}}],["completely",{"2":{"52":1}}],["complexity",{"2":{"41":1}}],["complex",{"2":{"14":2,"93":1}}],["comply",{"2":{"50":1,"68":1,"74":1,"80":1}}],["comes",{"2":{"1":1}}],["code",{"2":{"6":1,"17":1,"27":2,"31":1,"46":1,"50":2}}],["captialisation",{"2":{"88":1}}],["cameracontrols",{"2":{"106":1}}],["came",{"2":{"66":1}}],["cairomakie",{"2":{"62":1,"95":2}}],["caxes",{"2":{"32":2,"87":2}}],["car",{"2":{"26":1}}],["cartesianindex",{"2":{"26":11}}],["caluclate",{"2":{"87":1}}],["calculations",{"2":{"62":1,"88":1}}],["calculating",{"2":{"18":1,"87":1}}],["calculates",{"2":{"87":1}}],["calculated",{"2":{"42":2,"57":1}}],["calculate",{"2":{"18":1,"26":1,"42":2,"54":1,"55":2,"57":1,"62":1,"88":2,"96":1}}],["calling",{"2":{"62":1}}],["called",{"2":{"20":1,"57":1,"64":3,"88":1}}],["call",{"2":{"1":1,"27":1}}],["case",{"2":{"17":1,"23":1,"40":1,"49":1,"53":1,"59":1}}],["cases",{"2":{"0":1,"52":1,"84":1,"98":1}}],["cataxis",{"2":{"87":2}}],["categoricalaxis",{"2":{"87":1}}],["categorical",{"2":{"9":1,"21":1,"22":1,"23":1,"26":1,"35":1,"42":1,"46":4,"57":2,"58":1,"59":1,"60":2,"61":2,"62":3,"87":1,"88":1,"93":1}}],["cat",{"0":{"8":1},"2":{"8":2}}],["cache=1gb```",{"2":{"87":1}}],["cache=1e9",{"2":{"20":2}}],["cache=",{"2":{"87":1}}],["cache=5",{"2":{"87":1}}],["cache=yaxdefaults",{"2":{"87":1}}],["caches",{"2":{"0":1}}],["cachesize",{"2":{"0":2,"88":1}}],["cache",{"2":{"0":6,"73":1,"87":4,"88":7}}],["caching",{"0":{"0":1}}],["can",{"2":{"0":5,"2":1,"3":1,"17":2,"18":1,"20":3,"24":1,"26":1,"27":3,"29":2,"35":1,"36":1,"38":1,"40":1,"41":1,"42":2,"46":1,"49":2,"50":1,"51":1,"52":1,"58":1,"62":1,"64":3,"65":2,"66":1,"74":1,"75":1,"76":1,"78":1,"85":1,"87":13,"88":6,"89":2,"92":2,"98":2}}],["msc",{"2":{"96":3,"97":2}}],["mscarray",{"2":{"96":2}}],["mfdataset",{"2":{"87":5}}],["md",{"2":{"78":2}}],["mpi",{"2":{"49":1,"102":2}}],["mm",{"2":{"24":3,"50":2,"68":2,"74":2,"80":2}}],["mymean",{"2":{"27":4}}],["my",{"2":{"20":2,"50":1}}],["miss",{"2":{"88":1}}],["missing",{"2":{"18":2,"20":6,"22":1,"25":1,"26":2,"41":1,"42":2,"50":12,"53":6,"75":3,"76":1,"81":4,"82":6,"83":6,"84":10,"87":2,"88":2,"106":1}}],["minimized",{"2":{"88":1}}],["minutes",{"2":{"50":1,"53":3,"81":2,"82":3,"83":3,"84":5}}],["mix",{"2":{"25":2}}],["might",{"2":{"10":1,"52":1,"98":1}}],["mahecha",{"2":{"66":1}}],["mar",{"2":{"57":4,"58":2,"59":1,"60":4,"61":4,"62":6}}],["marketdata",{"2":{"46":2}}],["master",{"2":{"56":1,"89":1}}],["mask",{"2":{"42":2}}],["manager",{"2":{"92":1}}],["manual",{"2":{"50":1}}],["many",{"0":{"22":1,"23":2},"2":{"22":2,"23":2,"24":4,"53":1,"64":1,"88":1}}],["makie",{"2":{"62":1,"106":1}}],["making",{"2":{"15":1,"50":1,"80":1}}],["make",{"2":{"39":1,"40":2,"75":1,"79":1,"87":1,"88":2,"106":1}}],["main",{"2":{"36":1,"88":1}}],["machine",{"2":{"27":1,"64":1}}],["matching",{"2":{"93":1}}],["match",{"2":{"88":2}}],["matched",{"2":{"87":1}}],["matches",{"2":{"24":1}}],["mat",{"2":{"26":4}}],["matrix",{"2":{"11":1,"20":2,"26":1,"46":1,"58":1,"62":2,"64":1,"76":2,"96":1}}],["maximal",{"2":{"88":1}}],["maximum",{"2":{"41":1,"87":1,"88":1}}],["maxbuf",{"2":{"88":1}}],["max",{"2":{"20":2,"70":1,"72":1,"73":1,"87":7,"88":2}}],["maxsize",{"2":{"0":2}}],["may",{"2":{"14":1,"19":1,"49":1,"50":1,"57":4,"58":2,"59":1,"60":4,"61":4,"62":6,"94":1}}],["maps",{"0":{"102":1},"1":{"103":1}}],["mapslice",{"2":{"27":1}}],["mapslices",{"0":{"18":1},"2":{"14":1,"17":1,"18":1,"27":1,"41":1,"96":1}}],["mapped",{"2":{"87":1}}],["mapping",{"2":{"87":1,"88":3}}],["mapcube",{"0":{"19":1},"1":{"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1},"2":{"14":1,"17":1,"19":1,"20":4,"22":1,"24":1,"25":2,"26":2,"27":3,"87":5,"88":2}}],["map",{"0":{"17":1,"41":1},"2":{"14":1,"17":2,"25":1,"26":3,"27":3,"41":4,"42":1,"57":2,"61":1,"62":1,"87":2,"93":1,"96":2}}],["m",{"2":{"11":2}}],["moll",{"0":{"105":1}}],["mowingwindow",{"2":{"87":1}}],["module",{"2":{"87":1}}],["model",{"2":{"50":1,"65":2,"68":1,"74":1,"80":1}}],["modification",{"2":{"15":1,"27":1}}],["modify",{"0":{"15":1}}],["monthday",{"2":{"96":4}}],["monthly",{"0":{"55":1}}],["month",{"2":{"37":7,"39":3,"40":4,"55":1,"57":4,"58":1,"59":1,"60":5,"61":2,"62":3,"87":1,"96":2}}],["movingwindow",{"2":{"25":1,"87":4}}],["moment",{"2":{"13":1}}],["more",{"2":{"9":1,"14":1,"36":1,"41":1,"42":1,"66":1,"70":1,"73":1,"83":1,"84":1,"87":3,"88":1,"93":1}}],["most",{"2":{"1":1,"10":1,"19":1}}],["mesh",{"2":{"106":2}}],["merely",{"2":{"75":1}}],["measured",{"2":{"65":1,"66":1}}],["measure",{"2":{"64":1}}],["measures",{"2":{"49":1}}],["means",{"0":{"55":1},"2":{"18":1,"87":1}}],["mean",{"0":{"95":1,"97":1},"1":{"96":1,"97":1},"2":{"14":1,"18":3,"27":4,"42":4,"49":1,"50":1,"53":3,"57":10,"58":2,"59":1,"62":2,"81":2,"82":3,"83":3,"84":5,"87":1,"96":5}}],["meter",{"2":{"49":1}}],["method",{"2":{"20":2,"22":1,"23":1,"25":1,"87":1}}],["methods",{"2":{"7":1,"27":1,"49":1,"50":1,"53":3,"81":2,"82":3,"83":3,"84":5}}],["metadata",{"2":{"8":1,"9":1,"10":1,"11":1,"13":3,"14":1,"16":1,"17":1,"18":2,"20":5,"21":1,"22":1,"23":1,"25":3,"26":3,"29":2,"32":1,"33":3,"34":1,"35":1,"37":5,"41":3,"42":3,"47":2,"49":1,"50":1,"53":3,"56":2,"57":2,"58":1,"60":3,"61":2,"62":3,"75":2,"81":2,"82":3,"83":3,"84":5,"87":1,"93":3,"96":1}}],["members",{"2":{"88":1}}],["member",{"2":{"6":1}}],["memory",{"0":{"52":1},"1":{"53":1},"2":{"1":1,"8":1,"10":3,"11":1,"13":1,"14":1,"16":1,"17":1,"18":2,"20":3,"21":1,"22":1,"23":1,"25":3,"26":3,"29":2,"32":1,"33":3,"34":1,"37":5,"40":4,"41":3,"42":3,"47":2,"52":1,"53":4,"56":3,"60":1,"64":1,"75":2,"87":2,"88":1,"93":2,"96":1}}],["multi",{"2":{"21":2,"25":2}}],["multiplying",{"2":{"41":1}}],["multiply",{"2":{"14":1,"41":1}}],["multiple",{"0":{"45":1,"101":1},"2":{"7":1,"25":1,"27":1,"49":1,"50":1,"64":1,"87":1}}],["must",{"2":{"0":1,"66":1,"87":1,"88":1}}],["mb",{"2":{"0":1,"50":1,"53":3,"56":2,"81":2}}],["pkg",{"2":{"89":2,"90":8,"92":2}}],["pkg>",{"2":{"79":1,"89":1}}],["purple",{"2":{"95":1}}],["purpose",{"2":{"31":1,"41":1}}],["public",{"0":{"87":1}}],["published",{"2":{"62":1}}],["pull",{"2":{"77":1}}],["pydata",{"2":{"56":1}}],["p",{"2":{"40":10,"50":1,"68":1,"74":1,"80":1}}],["picture",{"2":{"64":1,"65":1}}],["pieces",{"2":{"31":1}}],["pixel",{"0":{"95":1},"1":{"96":1,"97":1},"2":{"25":1,"27":2}}],["plt",{"2":{"103":1}}],["place",{"2":{"88":1}}],["plots",{"2":{"106":1}}],["plot",{"0":{"97":1,"103":1,"106":1},"2":{"62":2}}],["plotting",{"0":{"102":1},"1":{"103":1},"2":{"0":1,"90":1}}],["please",{"2":{"50":1,"70":1}}],["plus",{"2":{"22":3,"56":1,"87":1}}],["post=getpostfunction",{"2":{"87":1}}],["positions",{"2":{"88":2}}],["positional",{"2":{"82":1,"83":1}}],["position",{"2":{"64":1}}],["pos",{"2":{"26":2}}],["possible",{"2":{"10":1,"27":2,"35":1,"47":1,"75":1,"87":3,"88":1}}],["point3f",{"2":{"106":1}}],["point",{"2":{"26":3,"49":1,"93":1}}],["points",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"11":2,"13":4,"14":3,"16":3,"17":3,"18":4,"20":9,"21":3,"22":3,"23":2,"24":3,"25":9,"26":16,"27":1,"29":9,"30":3,"32":9,"33":6,"34":2,"35":3,"37":14,"39":6,"40":21,"41":9,"42":5,"44":1,"45":5,"46":4,"47":4,"49":6,"50":6,"51":2,"53":9,"56":6,"57":3,"58":2,"60":3,"61":1,"62":7,"64":2,"65":1,"68":3,"74":6,"75":6,"80":3,"81":6,"82":4,"83":9,"84":16,"85":3,"93":5,"96":1,"102":3}}],["page",{"2":{"106":1}}],["pair",{"2":{"88":1}}],["pairs",{"2":{"22":1,"24":1}}],["pass",{"2":{"87":1}}],["passed",{"2":{"87":4}}],["passing",{"2":{"25":1,"87":3}}],["paste",{"2":{"79":1}}],["partitioned",{"2":{"88":1}}],["participate",{"2":{"87":1}}],["particular",{"2":{"67":1}}],["parts",{"2":{"87":1}}],["parent",{"2":{"49":1,"102":1}}],["parallelized",{"2":{"88":1}}],["parallelisation",{"2":{"87":1}}],["parallel",{"2":{"27":1,"64":1}}],["package",{"2":{"27":1,"83":1,"85":1,"86":1,"90":1,"92":1}}],["packages",{"2":{"10":1,"20":1}}],["paths",{"2":{"87":1,"88":2}}],["path=",{"2":{"20":2,"49":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"88":1}}],["path=f",{"2":{"4":1,"5":1,"6":1}}],["path",{"0":{"24":1},"2":{"0":1,"24":1,"49":3,"50":2,"51":2,"56":2,"68":2,"73":3,"79":1,"80":2,"87":4}}],["pr",{"2":{"79":1}}],["println",{"2":{"72":1}}],["printed",{"2":{"46":2}}],["primem",{"2":{"51":1}}],["prior",{"2":{"1":1}}],["props",{"2":{"93":2}}],["properly",{"2":{"55":1}}],["properties=dict",{"2":{"88":1}}],["properties=properties",{"2":{"22":2}}],["properties",{"0":{"21":1},"1":{"22":1,"23":1,"24":1},"2":{"14":2,"21":2,"22":2,"23":1,"24":2,"25":2,"27":2,"29":3,"30":3,"49":1,"50":1,"51":1,"56":1,"62":1,"68":1,"74":1,"80":1,"87":5,"88":1,"102":1}}],["probably",{"2":{"88":1}}],["provide",{"2":{"87":1}}],["provides",{"2":{"64":1,"99":1}}],["provided",{"2":{"36":1,"75":1,"87":2}}],["process",{"2":{"64":1,"88":2}}],["processed",{"2":{"17":1}}],["progressmeter",{"2":{"87":1}}],["progress",{"2":{"56":1,"98":1,"100":1}}],["projection",{"0":{"104":1,"105":1},"1":{"105":1,"106":1},"2":{"51":1}}],["product",{"2":{"26":1}}],["pressing",{"2":{"92":1}}],["pressed",{"2":{"89":1}}],["pre",{"2":{"87":2}}],["previous",{"2":{"62":1,"73":1,"75":1,"87":1}}],["previously",{"2":{"42":1}}],["preferred",{"2":{"56":2}}],["prepared",{"2":{"50":1,"68":1,"74":1,"80":1}}],["prep",{"2":{"9":2}}],["precipitation",{"2":{"9":2,"65":1,"66":1,"93":2}}],["permute",{"2":{"88":1}}],["permuteloopaxes",{"2":{"88":1}}],["permutation",{"2":{"88":1}}],["persistend",{"2":{"88":1}}],["persistency",{"2":{"88":1}}],["persistent",{"2":{"87":1,"88":2}}],["persist",{"2":{"73":1,"87":1,"88":1}}],["perform",{"2":{"88":1}}],["performed",{"2":{"17":2}}],["performing",{"2":{"14":1}}],["per",{"2":{"7":1,"18":1,"57":1,"60":1,"61":1}}],["=interval",{"2":{"84":2}}],["===",{"2":{"46":1}}],["==",{"2":{"16":1,"46":1,"96":1}}],["=>nan",{"2":{"106":1}}],["=>",{"2":{"14":2,"16":1,"17":1,"20":2,"21":2,"22":3,"23":2,"24":1,"25":2,"26":5,"27":1,"29":3,"30":3,"44":1,"45":1,"46":5,"49":20,"50":20,"51":1,"53":30,"56":15,"57":5,"58":1,"60":3,"61":2,"62":3,"68":10,"74":10,"80":10,"81":20,"82":30,"83":30,"84":50,"93":6,"102":10}}],["=>2",{"2":{"4":1}}],["=>10",{"2":{"4":1}}],["=>5",{"2":{"4":1,"5":1}}],["=",{"2":{"0":5,"2":4,"4":9,"5":15,"6":9,"8":5,"9":5,"11":3,"12":5,"13":4,"14":4,"15":1,"16":1,"17":1,"20":14,"21":4,"22":14,"23":7,"24":11,"25":12,"26":16,"27":5,"29":5,"30":4,"32":1,"33":3,"35":6,"37":7,"39":6,"40":17,"42":7,"44":1,"45":3,"46":7,"47":4,"49":2,"50":3,"51":2,"53":1,"56":5,"57":16,"58":1,"59":1,"60":4,"61":1,"62":22,"68":2,"70":2,"72":3,"73":8,"74":2,"75":4,"76":5,"80":2,"81":2,"82":6,"83":6,"84":3,"87":13,"88":7,"93":5,"95":10,"96":11,"97":5,"102":8,"103":5,"104":7,"105":5,"106":6}}],["dc",{"2":{"88":2}}],["dkrz",{"2":{"49":1,"102":2}}],["due",{"2":{"59":1}}],["dufresne",{"2":{"50":1,"68":1,"74":1,"80":1}}],["dummy",{"2":{"35":1,"37":1,"95":1,"96":1}}],["during",{"2":{"10":1,"26":1,"27":1}}],["dd",{"2":{"32":1,"87":4,"96":1}}],["d",{"2":{"26":5,"46":5,"62":3,"96":1}}],["drop",{"2":{"62":1}}],["dropdims",{"0":{"58":1},"2":{"57":2,"58":2,"62":1}}],["drivers",{"2":{"87":1}}],["driver",{"2":{"54":1,"73":2,"87":6}}],["driver=",{"2":{"4":1,"5":1,"6":1,"69":2,"70":1,"71":2,"72":1,"73":3,"74":1,"75":2,"87":3}}],["drei",{"2":{"23":2}}],["dash",{"2":{"97":1}}],["danger",{"2":{"73":1}}],["daysinmonth",{"2":{"57":1,"60":1}}],["days",{"2":{"55":1,"57":2,"59":1,"60":2,"61":2}}],["dayofyear",{"2":{"20":1}}],["day",{"2":{"14":2,"16":1,"17":1,"18":1,"20":4,"21":2,"22":1,"25":3,"26":3,"27":1,"29":3,"30":1,"95":1,"96":4,"97":1}}],["datconfig",{"2":{"88":2}}],["datset",{"2":{"87":1}}],["dat",{"2":{"87":8,"88":16}}],["datum",{"2":{"51":1}}],["datetimenoleap",{"2":{"56":6,"57":2,"60":7,"61":2,"62":2}}],["datetime360day",{"2":{"50":6,"53":9,"68":3,"74":3,"80":3,"81":6,"82":7,"83":9,"84":15}}],["datetime",{"2":{"24":1,"46":5,"49":2,"102":1}}],["date",{"2":{"14":5,"16":3,"17":3,"18":3,"20":12,"21":5,"22":3,"25":8,"26":11,"27":3,"29":8,"30":3,"37":24,"39":8,"40":11,"64":1,"95":2,"96":5,"102":1}}],["datesid",{"2":{"96":2}}],["dates",{"2":{"14":2,"16":1,"17":1,"18":1,"20":5,"21":2,"22":1,"25":2,"26":3,"27":1,"29":3,"30":1,"37":8,"39":4,"40":5,"54":1,"66":1,"95":1,"96":2,"102":1}}],["data=cube1",{"2":{"87":1}}],["databases",{"2":{"64":1}}],["dataframe",{"2":{"42":1,"87":1}}],["dataframes",{"2":{"42":1}}],["datacubes",{"2":{"87":1}}],["datacube",{"0":{"101":1},"2":{"42":2,"75":1,"87":1}}],["datatypes",{"2":{"36":1}}],["data1",{"2":{"35":2}}],["data3",{"2":{"30":1}}],["data2",{"2":{"29":2,"35":2}}],["datasetaxis",{"2":{"87":2,"88":1}}],["datasetaxis=",{"2":{"87":1,"88":1}}],["dataset",{"0":{"30":1,"36":1,"38":1,"39":1,"40":1,"43":1,"46":1,"65":1,"73":1,"74":1,"76":1},"1":{"37":1,"38":1,"39":2,"40":2,"44":1,"45":1},"2":{"0":3,"3":1,"4":4,"5":2,"6":3,"9":1,"10":1,"14":1,"22":1,"24":2,"30":2,"38":1,"39":3,"40":5,"44":2,"45":3,"46":5,"49":3,"50":3,"51":3,"65":3,"66":2,"68":3,"69":1,"70":1,"71":1,"72":1,"73":3,"74":4,"75":2,"76":2,"80":3,"81":1,"87":18,"88":9,"102":2}}],["datasets",{"0":{"3":1,"28":1,"48":1,"54":1,"68":1,"80":1},"1":{"4":1,"5":1,"6":1,"29":1,"30":1,"49":1,"50":1,"51":1,"52":1,"53":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"81":1,"82":1,"83":1,"84":1,"85":1},"2":{"0":2,"10":1,"28":1,"40":1,"48":1,"52":1,"73":1,"87":9,"88":4,"100":1}}],["data",{"0":{"34":1,"52":1,"56":1,"66":1},"1":{"53":1},"2":{"0":3,"1":2,"7":1,"8":2,"9":1,"11":2,"12":1,"13":1,"14":3,"15":1,"16":1,"17":1,"18":2,"20":9,"21":3,"22":1,"23":1,"25":6,"26":4,"27":2,"29":2,"32":1,"33":3,"34":2,"35":1,"37":6,"39":1,"40":2,"41":3,"42":5,"49":3,"50":7,"53":6,"56":4,"60":1,"63":1,"64":3,"65":2,"66":3,"68":3,"73":2,"74":3,"75":4,"76":1,"80":3,"81":4,"82":6,"83":6,"84":10,"87":20,"88":12,"93":6,"94":1,"95":2,"96":2,"100":4,"102":5,"104":1}}],["detect",{"2":{"87":1,"88":1}}],["determined",{"2":{"88":1}}],["determines",{"2":{"87":1}}],["determine",{"2":{"1":1,"53":1,"87":1}}],["dev",{"2":{"79":1}}],["dependencies",{"2":{"79":1}}],["depth",{"2":{"25":8}}],["deletes",{"2":{"73":1,"87":1}}],["delete",{"2":{"73":2,"75":1}}],["denoting",{"2":{"87":1}}],["dense",{"2":{"64":1}}],["denvil",{"2":{"50":2,"68":2,"74":2,"80":2}}],["dec",{"2":{"57":4,"58":2,"59":1,"60":4,"61":4,"62":6}}],["degree",{"2":{"51":1}}],["degc",{"2":{"50":1,"53":3,"81":2,"82":3,"83":3,"84":5}}],["defaultfillval",{"2":{"88":1}}],["defaults",{"2":{"87":7}}],["default",{"2":{"22":1,"72":3,"75":1,"87":1,"88":4}}],["definition",{"2":{"66":1}}],["definitions",{"2":{"21":1,"23":1}}],["defining",{"2":{"27":1}}],["defines",{"2":{"87":1}}],["define",{"0":{"96":1},"2":{"20":2,"22":1,"37":1,"42":1,"62":1,"87":2,"95":1}}],["defined",{"2":{"12":1,"13":1,"22":1,"42":1,"57":1,"62":1,"64":1,"67":1,"75":1,"85":1,"93":1}}],["deal",{"2":{"21":1}}],["demand",{"2":{"17":1}}],["dest",{"2":{"105":1}}],["desc",{"2":{"87":3,"88":3}}],["descriptor",{"2":{"88":4}}],["descriptors",{"2":{"87":2}}],["descriptions",{"2":{"87":1}}],["description",{"2":{"21":2,"23":2,"25":2,"36":1,"87":4,"88":11}}],["described",{"2":{"100":1}}],["describe",{"2":{"87":2}}],["describes",{"2":{"7":1,"10":1,"14":1,"28":1,"48":1,"63":1,"84":1,"86":1,"88":1}}],["describing",{"2":{"87":1}}],["desired",{"2":{"20":1,"88":4}}],["designed",{"2":{"10":2,"64":1}}],["diverging",{"2":{"62":1}}],["divided",{"2":{"41":1}}],["differing",{"2":{"87":1}}],["difference",{"2":{"62":1}}],["differences",{"2":{"46":1,"57":1,"62":1,"88":1}}],["different",{"0":{"25":1},"2":{"9":2,"20":1,"21":2,"27":1,"32":1,"33":1,"45":1,"55":1,"65":1,"87":3,"88":2,"98":1}}],["diff",{"2":{"57":2,"62":3}}],["directory",{"2":{"49":1,"69":2,"71":2}}],["directories",{"2":{"48":1,"88":1}}],["direct",{"2":{"46":1}}],["directly",{"2":{"13":1,"20":1,"24":1,"28":1,"29":1,"76":2}}],["dictionary",{"2":{"65":1,"87":3}}],["dict",{"2":{"4":1,"5":1,"8":1,"9":1,"11":1,"13":3,"14":2,"16":1,"17":1,"18":2,"20":5,"21":2,"22":3,"23":2,"24":1,"25":4,"26":4,"27":1,"29":4,"30":2,"32":1,"33":3,"34":1,"35":1,"37":5,"41":3,"42":3,"46":2,"47":2,"49":2,"50":2,"51":1,"53":3,"56":2,"57":3,"58":2,"60":4,"61":3,"62":3,"68":1,"74":1,"75":1,"80":1,"81":2,"82":3,"83":3,"84":5,"87":3,"93":3,"96":1,"102":1}}],["dimvector",{"2":{"60":1,"87":1}}],["dimgroupbyarray",{"2":{"57":1,"60":1}}],["dime",{"2":{"49":1}}],["dimensional",{"2":{"21":2,"23":2,"25":2,"63":1,"64":2,"87":1}}],["dimensionaldata",{"2":{"13":2,"26":1,"32":1,"33":1,"37":1,"39":1,"40":1,"46":1,"54":1,"56":1,"57":15,"58":10,"60":12,"61":5,"62":38,"64":1,"67":1,"83":1,"84":2,"85":3,"90":1,"94":3,"96":1,"102":1}}],["dimensions",{"0":{"39":1,"40":1},"2":{"9":1,"14":1,"17":1,"19":1,"20":2,"24":1,"25":1,"26":2,"27":1,"29":2,"33":1,"35":1,"38":1,"40":3,"41":2,"45":1,"53":1,"57":15,"58":10,"60":11,"61":5,"62":38,"64":3,"65":1,"80":1,"85":2,"87":8,"88":3,"93":3,"94":1}}],["dimension",{"0":{"8":1,"9":1,"67":1,"85":1},"2":{"2":1,"8":2,"9":1,"14":1,"18":2,"20":3,"22":1,"23":1,"26":3,"37":1,"40":1,"57":1,"58":1,"59":1,"62":1,"64":1,"66":1,"67":1,"83":1,"85":1,"87":7,"88":3,"93":1}}],["dimarray",{"0":{"13":1},"2":{"13":6,"26":3,"57":1,"58":1,"60":1,"61":2,"62":3,"64":1,"85":1,"87":2}}],["dims=2",{"2":{"96":1}}],["dims=",{"2":{"18":2,"27":1,"41":1,"57":5,"58":1,"60":1,"62":1}}],["dims",{"2":{"8":3,"9":1,"11":1,"12":1,"13":2,"14":1,"16":1,"17":1,"18":2,"20":5,"21":1,"22":1,"23":1,"25":3,"26":4,"29":2,"32":3,"33":4,"34":1,"35":1,"37":5,"41":3,"42":3,"46":1,"47":2,"49":1,"50":1,"53":3,"56":2,"57":6,"58":1,"60":5,"61":2,"62":5,"75":1,"81":2,"82":3,"83":3,"84":5,"85":1,"93":2,"96":1}}],["dim",{"2":{"2":2,"4":7,"5":8,"6":2,"11":2,"13":2,"25":1,"26":1,"29":4,"32":9,"33":6,"34":3,"35":1,"40":1,"44":1,"45":5,"47":4,"57":2,"58":2,"62":6,"74":3,"75":6,"87":1,"93":2}}],["disregard",{"2":{"88":1}}],["dispatch",{"2":{"88":1}}],["displayed",{"2":{"53":1}}],["discribe",{"2":{"87":2}}],["discussion",{"2":{"70":1}}],["distribute",{"2":{"27":1}}],["distributed",{"0":{"27":1},"2":{"0":1,"27":2}}],["diskarray",{"2":{"87":1}}],["diskarrays",{"2":{"2":9,"4":4,"5":4,"6":4,"87":2,"88":1}}],["disk",{"2":{"1":1,"13":1,"20":1,"24":1,"64":1,"75":3,"76":2,"87":1,"88":2}}],["dodgerblue",{"2":{"97":1}}],["documenter",{"2":{"106":1}}],["documentation",{"0":{"78":1},"1":{"79":1}}],["doc",{"2":{"73":1}}],["docstring",{"2":{"87":1}}],["docs",{"0":{"79":1},"2":{"65":1,"78":2,"79":6,"94":1}}],["don",{"2":{"70":1}}],["done",{"2":{"33":1,"41":1,"52":1,"62":1,"78":2}}],["double",{"2":{"56":2}}],["download",{"0":{"56":1},"2":{"50":2,"51":2,"56":1,"68":2,"80":2}}],["downloads",{"2":{"50":1,"51":1,"54":1,"56":1,"68":1,"80":1}}],["doing",{"2":{"27":1,"32":1,"34":1,"79":1}}],["does",{"2":{"27":1,"75":1,"87":2,"88":1}}],["dot",{"2":{"25":1,"97":1}}],["do",{"0":{"35":1,"36":1,"41":1,"42":1,"43":1,"46":1},"1":{"37":1,"38":1,"39":1,"40":1,"44":1,"45":1},"2":{"1":1,"17":1,"20":1,"26":3,"27":1,"31":2,"41":1,"55":1,"62":1,"75":1,"76":1,"79":1,"88":1,"92":1}}],["dsw",{"2":{"57":2,"62":2}}],["dsfinal",{"2":{"35":1,"41":2,"42":2}}],["ds2",{"2":{"35":3,"41":1,"74":1}}],["ds1",{"2":{"35":3,"41":3,"42":1}}],["dschunked",{"2":{"4":3,"5":3,"6":3}}],["ds",{"2":{"0":3,"4":2,"5":2,"6":2,"30":1,"39":2,"40":12,"44":1,"45":1,"46":2,"49":1,"50":2,"51":1,"53":3,"56":4,"57":10,"60":1,"62":3,"68":1,"69":3,"70":2,"71":3,"72":7,"73":3,"74":2,"75":1,"76":5,"80":1,"81":2,"87":4,"88":1,"106":2}}],["wglmakie",{"2":{"106":2}}],["wgs",{"2":{"51":3}}],["would",{"2":{"87":2}}],["world",{"2":{"51":2}}],["workdir",{"2":{"88":1}}],["worker",{"2":{"87":1}}],["workers",{"2":{"87":1}}],["workflow",{"2":{"52":1}}],["workflows",{"2":{"1":1}}],["workload",{"2":{"27":1}}],["working",{"2":{"20":1,"76":1}}],["work",{"2":{"10":2,"56":1,"63":1,"87":1,"98":2,"100":1}}],["works",{"2":{"6":1,"34":1,"39":1,"40":1,"75":1}}],["written",{"2":{"87":1,"88":1}}],["writing",{"2":{"76":1}}],["writefac",{"2":{"88":1}}],["writefac=4",{"2":{"73":1,"87":1}}],["writes",{"2":{"87":1}}],["write",{"0":{"68":1,"69":1,"71":1},"1":{"69":1,"70":2,"71":1,"72":2,"73":1,"74":1,"75":1,"76":1},"2":{"75":1,"87":2}}],["wrapping",{"2":{"59":1,"85":2}}],["wrapped",{"2":{"20":1}}],["wrap",{"2":{"0":1,"87":1}}],["w",{"2":{"62":2,"76":2}}],["www",{"2":{"50":1,"68":1,"80":1}}],["was",{"2":{"24":1,"26":1,"27":1,"88":1}}],["way",{"2":{"10":1,"19":1,"32":1}}],["warning",{"2":{"10":1,"15":1,"32":1,"40":1,"45":1,"47":1,"56":1,"73":1,"75":1,"87":1}}],["wanted",{"2":{"88":1}}],["wants",{"2":{"75":1}}],["want",{"0":{"90":1},"2":{"0":1,"1":1,"52":1,"66":1,"79":1,"88":1,"89":1,"100":1}}],["white",{"2":{"104":1,"105":1}}],["while",{"2":{"75":1}}],["which",{"2":{"9":1,"20":1,"26":2,"33":1,"40":2,"50":1,"53":1,"57":1,"62":1,"66":3,"81":1,"84":1,"85":1,"87":5,"88":4,"100":1}}],["whose",{"0":{"39":1,"40":1}}],["whole",{"2":{"8":3}}],["whether",{"2":{"88":2}}],["when",{"2":{"1":1,"6":1,"17":1,"53":1,"57":1,"66":1,"87":3,"88":1}}],["whereas",{"2":{"64":1}}],["where",{"2":{"0":1,"27":1,"40":4,"55":1,"76":1,"84":1,"87":1,"88":4}}],["wintri",{"0":{"104":1},"1":{"105":1,"106":1}}],["windowloopinds",{"2":{"88":1}}],["window",{"2":{"87":1,"88":1}}],["without",{"2":{"88":1}}],["within",{"2":{"83":1}}],["with",{"0":{"47":1},"2":{"4":1,"5":1,"8":1,"10":1,"14":1,"16":1,"17":1,"20":7,"21":3,"22":2,"23":2,"25":3,"26":4,"27":2,"29":3,"32":1,"33":1,"40":6,"41":2,"42":3,"45":2,"46":3,"47":1,"49":3,"50":2,"53":3,"56":2,"57":4,"58":1,"60":2,"61":2,"62":5,"63":1,"65":1,"68":1,"70":1,"72":1,"73":1,"74":2,"75":2,"76":1,"78":1,"80":1,"81":2,"82":3,"83":3,"84":5,"87":11,"88":1,"93":4,"94":3,"98":1,"100":1,"102":2,"104":1}}],["will",{"2":{"0":1,"1":1,"4":1,"5":1,"17":1,"20":3,"21":2,"22":1,"23":1,"26":1,"36":1,"40":1,"41":2,"42":2,"45":2,"46":1,"50":1,"54":1,"59":2,"73":3,"75":3,"76":1,"87":12,"88":3,"100":1}}],["wether",{"2":{"87":1}}],["weight=",{"2":{"87":1}}],["weight=nothing",{"2":{"87":1}}],["weight",{"0":{"60":1},"1":{"61":1,"62":1},"2":{"59":1,"61":1,"62":1}}],["weights",{"0":{"61":1},"2":{"57":3,"61":2,"62":1}}],["weightedmean",{"2":{"87":1}}],["weighted",{"0":{"62":1},"2":{"42":1,"55":1,"57":8,"62":8,"87":3}}],["well",{"2":{"42":1,"46":1,"75":1,"87":1}}],["welcome",{"2":{"6":1,"77":1}}],["were",{"2":{"17":2,"84":1,"88":1,"95":1}}],["we",{"2":{"0":1,"8":2,"9":1,"17":2,"18":1,"20":5,"21":3,"22":1,"23":1,"24":1,"26":5,"27":2,"29":2,"33":1,"35":1,"36":1,"37":1,"38":1,"40":2,"41":2,"42":5,"46":4,"49":1,"57":3,"58":1,"59":2,"62":1,"66":1,"75":3,"76":4,"83":1,"94":2,"95":1,"102":1}}],["oob",{"2":{"87":1}}],["o",{"2":{"56":3,"62":4,"87":5}}],["oct",{"2":{"57":4,"58":2,"59":1,"60":4,"61":4,"62":6}}],["ocean",{"2":{"50":1,"68":1,"74":1,"80":1}}],["occuring",{"2":{"4":1}}],["o1",{"2":{"50":2,"68":2,"74":1,"80":2}}],["ohlcv",{"2":{"46":3}}],["ouput",{"2":{"79":1}}],["our",{"2":{"41":1,"42":1,"96":1}}],["outcube",{"2":{"88":1}}],["outcubes",{"2":{"88":1}}],["outcs",{"2":{"88":1}}],["outsize",{"2":{"88":1}}],["outar",{"2":{"88":2}}],["out",{"2":{"56":1,"87":2,"88":1}}],["outtype",{"2":{"20":2,"87":1,"88":2}}],["outdims=outdims",{"2":{"26":1,"27":1}}],["outdims",{"0":{"21":1,"22":1,"23":1,"24":1},"1":{"22":1,"23":1,"24":1},"2":{"20":4,"22":12,"23":2,"24":11,"25":3,"87":6}}],["outputcube",{"2":{"88":3}}],["outputs",{"2":{"20":1,"22":2,"25":1}}],["output",{"2":{"6":1,"20":3,"21":1,"22":1,"26":1,"27":3,"50":1,"68":1,"74":1,"80":1,"87":11,"88":9,"106":1}}],["optimal",{"2":{"88":1}}],["optifunc",{"2":{"88":1}}],["optionally",{"2":{"87":1}}],["option",{"2":{"37":1,"39":1,"70":1}}],["options",{"2":{"34":1}}],["operates",{"2":{"87":1}}],["operate",{"2":{"25":1}}],["operation",{"2":{"25":1,"88":1}}],["operations",{"0":{"20":1},"2":{"14":1,"57":1,"87":2,"88":3}}],["operating",{"2":{"23":1}}],["opens",{"2":{"87":1}}],["openinterval",{"2":{"84":1}}],["open",{"0":{"84":1},"2":{"0":2,"22":1,"24":2,"46":4,"49":2,"50":2,"51":1,"68":1,"70":1,"74":1,"76":6,"80":2,"84":2,"87":6,"102":1}}],["obj",{"2":{"42":2,"95":1,"97":1}}],["objects",{"2":{"87":2}}],["object",{"2":{"15":1,"49":1,"87":5,"88":3}}],["obtain",{"0":{"34":1},"2":{"46":1,"59":1}}],["omit",{"2":{"27":1}}],["overview",{"0":{"99":1},"2":{"98":1,"99":1}}],["overwrite",{"0":{"73":1},"2":{"73":3,"87":4,"88":2}}],["overwrite=true",{"2":{"20":2,"73":2,"75":3}}],["over",{"0":{"20":1,"100":1},"2":{"14":1,"19":1,"25":1,"27":1,"62":1,"87":8,"88":1,"100":1}}],["otherwise",{"2":{"87":1}}],["others",{"2":{"25":1,"46":1}}],["other",{"0":{"98":1},"1":{"99":1,"100":1,"101":1},"2":{"10":1,"24":1,"52":1,"98":1,"100":1}}],["ormax",{"2":{"87":1}}],["orca2",{"2":{"50":1,"68":1,"74":1,"80":1}}],["orangered",{"2":{"42":1}}],["ordered",{"2":{"64":1,"65":1}}],["ordereddict",{"2":{"26":1}}],["orderedcollections",{"2":{"26":1}}],["order",{"2":{"20":1,"55":1,"76":1}}],["original",{"2":{"50":2,"53":6,"81":4,"82":6,"83":6,"84":10}}],["originates",{"2":{"9":1}}],["origin",{"2":{"14":2,"16":1,"17":1,"27":1,"29":3,"30":1,"93":2}}],["or",{"0":{"36":1},"1":{"37":1,"38":1,"39":1,"40":1},"2":{"1":2,"6":1,"13":1,"14":1,"17":2,"19":1,"33":1,"38":1,"47":2,"49":1,"52":1,"64":3,"67":2,"70":1,"73":1,"80":2,"87":22,"88":7,"89":1,"92":1,"93":2}}],["once",{"2":{"62":1,"66":1,"78":1,"88":1}}],["onlinestat",{"2":{"87":2}}],["onlinestats",{"2":{"42":2}}],["only",{"2":{"6":1,"10":1,"17":1,"18":1,"20":1,"24":1,"26":1,"29":2,"41":1,"50":1,"57":1,"75":1,"87":2}}],["on",{"2":{"1":2,"6":1,"7":1,"14":2,"17":2,"20":1,"27":2,"31":1,"50":2,"53":3,"64":1,"68":1,"70":1,"74":1,"75":1,"80":1,"81":2,"82":3,"83":3,"84":5,"87":5,"88":4}}],["ones",{"2":{"21":1,"33":1}}],["oneto",{"2":{"4":4,"5":4,"6":2,"11":2,"29":3,"32":9,"33":6,"44":1,"45":5,"47":4,"75":6,"93":2}}],["one",{"0":{"22":1,"44":1},"2":{"0":1,"7":1,"8":2,"18":2,"22":15,"23":5,"24":6,"25":2,"26":2,"42":1,"46":1,"50":1,"58":1,"64":2,"65":1,"75":2,"87":9,"88":3,"98":1}}],["own",{"2":{"0":1,"50":1}}],["offline=true",{"2":{"106":1}}],["offsets",{"2":{"88":1}}],["offset",{"2":{"17":1}}],["often",{"2":{"7":1}}],["of",{"0":{"15":1,"40":1,"55":1,"76":1,"99":2},"2":{"0":2,"1":1,"6":1,"8":3,"9":1,"10":1,"12":1,"13":1,"14":2,"15":1,"16":1,"17":2,"18":1,"19":1,"26":7,"27":3,"31":3,"32":3,"36":1,"37":2,"38":1,"39":1,"40":2,"41":1,"42":1,"50":1,"53":1,"55":1,"56":1,"60":1,"64":7,"65":1,"66":2,"67":2,"68":1,"74":1,"75":1,"76":1,"80":3,"81":1,"83":1,"85":1,"86":1,"87":53,"88":42,"93":1,"94":2,"96":2,"97":1,"98":1,"99":1}}],["eo",{"2":{"98":1}}],["esdltutorials",{"2":{"98":1}}],["esm1",{"2":{"49":1,"102":2}}],["eltype",{"2":{"93":1}}],["elementtype",{"2":{"88":1}}],["element",{"2":{"8":1,"9":1,"14":2,"17":2,"18":1,"20":3,"26":2,"34":1,"42":1,"57":2,"58":1,"59":1,"60":7,"61":2,"62":3,"65":1,"66":2,"82":2,"85":1,"87":1,"88":1,"96":1}}],["elements",{"0":{"15":1,"82":1},"2":{"8":1,"16":1,"17":2,"27":1,"64":1,"80":1,"87":1,"88":1}}],["empty",{"2":{"88":1}}],["embeds",{"2":{"87":1}}],["either",{"2":{"87":2}}],["error",{"2":{"73":1}}],["equivalent",{"2":{"62":1,"85":1}}],["equally",{"2":{"0":1}}],["epsg",{"2":{"51":5}}],["et",{"2":{"50":1,"66":1,"68":1,"74":1,"80":1}}],["edu",{"2":{"50":1,"65":1,"68":1,"80":1}}],["effectively",{"2":{"41":1}}],["env",{"2":{"79":1}}],["ensure",{"2":{"50":1}}],["enabling",{"2":{"29":1}}],["enumerate",{"2":{"26":2,"62":2}}],["end",{"2":{"17":1,"20":1,"22":1,"23":2,"25":2,"26":4,"27":2,"41":1,"50":1,"57":2,"62":2,"96":2,"106":1}}],["enter",{"2":{"92":1}}],["entries",{"2":{"26":1,"46":1,"49":1,"50":1,"53":3,"56":2,"76":1,"81":2,"82":3,"83":3,"84":5,"87":1,"93":1}}],["entry",{"2":{"14":1,"16":1,"17":1,"20":2,"21":1,"22":1,"23":1,"25":1,"29":2,"57":2,"58":1,"60":2,"61":2,"62":3,"78":3,"87":1}}],["entire",{"2":{"10":1,"26":1,"69":1,"71":1}}],["exist",{"2":{"87":1}}],["exists",{"2":{"73":1,"87":1,"88":1}}],["existing",{"0":{"8":1},"2":{"73":1,"74":1}}],["exportable=true",{"2":{"106":1}}],["expression",{"2":{"87":1}}],["experiment",{"2":{"50":3,"68":3,"74":3,"80":3}}],["explicitly",{"2":{"17":1,"33":1,"36":1,"57":1,"88":1}}],["executes",{"2":{"87":1}}],["execute",{"2":{"27":1}}],["extension",{"2":{"87":2}}],["extended",{"2":{"20":1,"87":1,"88":2}}],["external",{"2":{"49":1,"102":1}}],["extracts",{"2":{"88":1}}],["extract",{"0":{"32":1},"1":{"33":1},"2":{"88":1}}],["extracted",{"2":{"25":1}}],["extra",{"2":{"27":1}}],["exactly",{"2":{"5":1,"34":1,"46":1}}],["examples",{"2":{"6":1,"34":2,"50":1,"54":1,"68":1,"78":1,"80":1}}],["example",{"2":{"0":1,"1":1,"5":1,"14":1,"21":1,"25":1,"27":2,"33":1,"39":1,"40":1,"41":1,"42":1,"50":1,"52":1,"55":1,"64":2,"65":1,"66":1,"68":2,"78":2,"80":2,"87":4,"88":1,"93":2}}],["e",{"2":{"7":1,"8":1,"12":1,"13":1,"14":1,"15":1,"17":1,"26":2,"27":1,"29":1,"37":1,"50":1,"64":1,"67":1,"73":1,"79":1,"85":1,"87":6,"88":1,"93":1}}],["east",{"2":{"51":1}}],["easier",{"2":{"29":1,"80":1}}],["easily",{"2":{"0":1,"27":1}}],["easy",{"2":{"12":1,"13":1}}],["each",{"2":{"4":1,"5":1,"14":1,"17":1,"24":1,"26":5,"27":2,"41":2,"42":2,"53":1,"55":1,"59":1,"65":1,"67":1,"87":3,"88":3,"93":1}}],["everywhere",{"2":{"27":2}}],["every",{"2":{"0":1,"14":1,"17":1,"87":1}}],["features",{"2":{"99":1}}],["feel",{"2":{"70":1}}],["feb",{"2":{"57":4,"58":2,"59":1,"60":4,"61":4,"62":6}}],["frame",{"2":{"100":1}}],["frames",{"2":{"64":1}}],["front",{"2":{"88":1}}],["from",{"0":{"32":1,"34":2,"46":1,"55":1},"1":{"33":1},"2":{"0":1,"8":1,"9":1,"10":1,"32":1,"33":1,"34":4,"40":3,"46":2,"53":1,"57":1,"66":2,"76":1,"84":1,"87":6,"88":6,"93":1,"96":1}}],["free",{"2":{"70":1}}],["frequently",{"0":{"31":1},"1":{"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1}}],["fr",{"2":{"50":1,"68":1,"74":1,"80":1}}],["fallback",{"2":{"88":1}}],["falls",{"2":{"87":1}}],["false",{"2":{"22":1,"24":1,"47":1,"73":2,"87":3,"88":1}}],["fails",{"2":{"87":1}}],["faq",{"0":{"31":1},"1":{"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1}}],["faster",{"2":{"88":1}}],["fastest",{"2":{"1":1}}],["fast",{"2":{"1":1,"17":1}}],["f2mix",{"2":{"23":3}}],["f2",{"2":{"22":3}}],["f1",{"2":{"22":2,"23":1}}],["fu",{"2":{"88":1}}],["funtion",{"2":{"96":1}}],["fun",{"2":{"87":5}}],["functionality",{"0":{"99":1}}],["functions",{"2":{"14":2,"25":1,"64":2,"86":1,"87":1,"88":1}}],["function",{"0":{"42":1},"2":{"0":1,"1":1,"17":2,"19":1,"20":6,"21":1,"22":2,"23":2,"25":5,"27":6,"32":2,"35":1,"41":1,"42":1,"46":1,"52":1,"54":1,"57":1,"59":1,"62":1,"75":1,"84":1,"87":22,"88":12}}],["future",{"2":{"56":1}}],["further",{"2":{"17":1,"98":1}}],["flag",{"2":{"88":3}}],["flat",{"2":{"22":4,"23":2,"24":2}}],["float32",{"2":{"20":6,"49":1,"50":1,"53":3,"75":2,"76":4,"81":2,"82":3,"83":3,"84":5,"88":1}}],["float64",{"2":{"8":1,"9":1,"11":2,"13":4,"14":3,"16":3,"17":3,"18":4,"21":2,"22":2,"23":2,"24":2,"25":3,"26":9,"29":6,"30":2,"32":1,"33":3,"35":4,"41":12,"42":5,"46":2,"49":4,"50":4,"51":2,"53":6,"56":2,"57":3,"58":2,"61":3,"62":6,"68":2,"74":2,"80":2,"81":4,"82":2,"83":6,"84":10,"85":4,"87":1,"88":1,"93":7,"96":2,"102":2}}],["flexible",{"2":{"9":1,"19":1}}],["found",{"2":{"87":1,"88":1}}],["fourth",{"2":{"50":2,"68":2,"74":2,"80":2}}],["folder",{"2":{"79":1}}],["follow",{"2":{"79":1,"98":1}}],["follows",{"2":{"20":2,"23":1,"25":1,"57":1,"62":1,"76":1}}],["following",{"2":{"2":1,"5":1,"6":1,"20":1,"21":1,"22":1,"25":1,"27":1,"33":1,"54":1,"55":1,"56":1,"87":2,"88":4,"89":2,"90":1,"98":1}}],["fontsize=24",{"2":{"103":1}}],["fontsize=18",{"2":{"62":1}}],["font=",{"2":{"62":1}}],["forwarded",{"2":{"87":1}}],["forwardordered",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"11":2,"13":4,"14":3,"16":3,"17":3,"18":3,"20":9,"21":4,"22":4,"23":3,"24":3,"25":9,"26":9,"29":9,"30":3,"32":9,"33":6,"34":2,"35":4,"37":14,"39":6,"40":10,"41":9,"42":5,"44":1,"45":5,"46":4,"47":4,"49":6,"50":6,"51":1,"53":9,"56":6,"57":3,"58":2,"60":3,"61":1,"62":7,"68":3,"74":6,"75":6,"80":3,"81":6,"82":4,"83":9,"84":15,"85":3,"93":5,"96":1,"102":3}}],["force",{"2":{"87":1}}],["forcing",{"2":{"49":1,"102":1}}],["forms",{"2":{"87":1,"88":2}}],["format",{"2":{"70":1,"72":1,"73":1,"87":1,"96":1}}],["formal",{"2":{"66":1}}],["former",{"2":{"32":1}}],["for",{"0":{"6":1,"95":1},"1":{"96":1,"97":1},"2":{"0":2,"1":3,"4":1,"5":1,"6":1,"24":1,"26":4,"27":1,"37":1,"39":2,"40":2,"41":4,"42":6,"46":5,"50":2,"52":2,"53":1,"56":1,"57":1,"60":1,"62":3,"64":4,"65":3,"66":1,"68":1,"73":1,"74":1,"75":2,"80":1,"84":1,"85":1,"87":20,"88":16,"90":1,"95":1,"96":2,"98":1}}],["f",{"2":{"2":2,"20":3}}],["field",{"2":{"87":1}}],["fields",{"2":{"42":1,"87":1,"88":4}}],["figure=",{"2":{"97":1}}],["figure",{"2":{"62":2,"95":1,"97":1,"103":1,"104":1,"105":1,"106":1}}],["fig",{"2":{"42":3,"62":8,"95":1,"97":1,"103":2,"104":2,"105":2,"106":3}}],["filterig",{"2":{"96":1}}],["filter",{"2":{"87":2}}],["fillarrays",{"2":{"75":3}}],["fill",{"2":{"75":1,"87":1,"88":1}}],["fillvalue=",{"2":{"88":1}}],["fillvalue",{"2":{"49":1,"50":1,"53":3,"56":6,"81":2,"82":3,"83":3,"84":5}}],["filling",{"2":{"28":1,"29":1}}],["filename",{"2":{"56":2,"87":1}}],["files",{"0":{"101":1},"2":{"7":1,"48":1,"51":1,"79":1,"87":5,"88":2}}],["file",{"2":{"2":1,"7":1,"13":1,"40":1,"50":2,"72":3,"73":2,"75":1,"78":4,"87":2}}],["findaxis",{"2":{"88":1}}],["findall",{"2":{"26":1,"96":1}}],["find",{"2":{"36":1,"88":1,"98":1}}],["finalizer",{"2":{"88":1}}],["finalize",{"2":{"88":1}}],["finally",{"2":{"26":1,"87":1}}],["final",{"2":{"25":1,"26":1}}],["firstly",{"2":{"37":1}}],["first",{"2":{"8":4,"20":3,"22":1,"26":1,"42":1,"45":1,"62":1,"76":1,"78":1,"87":4,"88":1,"93":1,"102":1}}],["fitting",{"2":{"87":1}}],["fittable",{"2":{"87":2}}],["fitcube",{"2":{"42":2}}],["fitsym",{"2":{"87":4}}],["fits",{"2":{"10":1}}],["fit",{"2":{"1":1,"52":1,"64":1}}],["t=union",{"2":{"88":1}}],["typing",{"2":{"92":1}}],["typically",{"2":{"87":1}}],["type",{"2":{"33":1,"47":1,"56":2,"64":1,"66":1,"87":8,"88":3,"93":1,"94":1}}],["types",{"0":{"63":1},"1":{"64":1,"65":1,"66":1,"67":1},"2":{"10":2,"12":1,"13":1,"47":1,"65":1,"82":1,"87":2,"94":1}}],["tutorial",{"2":{"98":2,"99":1,"100":1}}],["tutorials",{"0":{"98":1},"1":{"99":1,"100":1,"101":1},"2":{"84":1,"98":3}}],["turn",{"2":{"87":1}}],["tuple",{"2":{"2":3,"4":1,"5":1,"6":1,"22":1,"24":1,"57":2,"58":1,"60":5,"61":2,"62":4,"87":5,"88":1}}],["tbl",{"2":{"42":2}}],["target",{"2":{"88":1}}],["tab",{"2":{"87":4}}],["tables",{"2":{"100":1}}],["tableaggregator",{"2":{"87":1}}],["table",{"0":{"100":1},"2":{"42":2,"49":1,"50":2,"68":2,"74":2,"80":2,"87":4,"88":1,"102":1}}],["tair",{"2":{"56":2,"62":1,"87":1}}],["tas",{"2":{"49":5,"102":5}}],["ta",{"2":{"46":3}}],["takes",{"2":{"87":4}}],["taken",{"2":{"40":2}}],["take",{"2":{"20":1,"79":1,"87":1,"88":2}}],["treat",{"2":{"87":1}}],["treatment",{"2":{"87":1,"88":1}}],["treated",{"2":{"49":1}}],["tries",{"2":{"87":1}}],["translate",{"2":{"104":1,"105":1}}],["transformed",{"2":{"50":1,"68":1,"74":1,"80":1}}],["transformations",{"2":{"104":1}}],["transformation",{"2":{"26":1}}],["transform",{"2":{"26":2}}],["track",{"2":{"87":1}}],["true",{"2":{"16":1,"47":1,"52":1,"73":1,"75":1,"87":4,"88":1,"106":1}}],["tesselation",{"2":{"106":1}}],["testrange",{"2":{"88":1}}],["test1",{"2":{"47":1}}],["test2",{"2":{"47":2}}],["test",{"2":{"21":4,"22":1,"23":3,"24":4,"25":4,"47":3,"88":1,"102":1}}],["terminal",{"2":{"79":1}}],["text",{"2":{"78":1}}],["tensors",{"2":{"64":1}}],["tell",{"2":{"36":1}}],["temporary",{"2":{"88":1}}],["temporal",{"2":{"41":1,"54":1,"64":1}}],["tempo",{"2":{"57":6,"60":4,"61":1}}],["temp",{"2":{"9":2}}],["temperature=temperature",{"2":{"40":1}}],["temperature",{"2":{"9":2,"40":4,"49":3,"50":2,"53":6,"56":2,"62":2,"64":1,"65":1,"66":1,"81":5,"82":6,"83":6,"84":10,"93":4}}],["tempname",{"2":{"2":1,"4":1,"5":1,"6":1}}],["tspan",{"2":{"20":1}}],["t",{"2":{"20":4,"37":1,"39":2,"40":2,"42":3,"50":1,"53":4,"70":1,"81":2,"82":3,"83":3,"84":5,"87":1,"88":2,"95":1,"96":1}}],["tip",{"2":{"94":1}}],["tidy",{"2":{"87":1}}],["tick",{"2":{"67":1,"85":1,"93":1}}],["ticks",{"2":{"64":1}}],["ticks=false",{"2":{"62":1}}],["tiff",{"0":{"101":1}}],["tif",{"2":{"51":2,"90":1}}],["title",{"2":{"50":1,"62":1,"68":1,"74":1,"78":1,"80":1}}],["ti",{"2":{"12":1}}],["time1",{"2":{"82":2}}],["time`",{"2":{"57":1}}],["timearray",{"0":{"46":1},"2":{"46":3}}],["time=1",{"2":{"93":1}}],["time=>cyclicbins",{"2":{"57":2,"58":1,"60":2,"61":2,"62":3}}],["time=date",{"2":{"37":1}}],["time=at",{"2":{"37":1,"62":3}}],["time=between",{"2":{"37":1}}],["time",{"0":{"55":1},"2":{"1":1,"7":1,"8":4,"9":3,"12":2,"14":3,"16":1,"17":1,"18":7,"20":14,"21":2,"22":4,"23":1,"24":5,"25":10,"26":8,"27":5,"29":3,"30":1,"35":2,"37":8,"39":4,"40":7,"41":4,"42":3,"46":5,"49":4,"50":4,"53":6,"56":4,"57":15,"58":3,"59":2,"60":9,"61":3,"62":7,"64":2,"65":1,"68":1,"74":1,"80":1,"81":4,"82":6,"83":6,"84":10,"87":6,"93":4,"95":1,"96":4,"102":4}}],["timestamp",{"2":{"46":1}}],["timestep",{"2":{"42":1}}],["timeseries",{"2":{"46":3}}],["times",{"2":{"0":1}}],["two",{"2":{"8":1,"9":1,"22":8,"23":4,"24":3,"25":2,"34":2,"35":1,"64":1,"88":1}}],["toghether",{"2":{"88":1}}],["together",{"2":{"46":1,"66":1}}],["touches",{"2":{"84":1}}],["tolerances",{"2":{"83":1}}],["top",{"2":{"62":1}}],["tos",{"2":{"50":5,"53":6,"68":2,"69":2,"71":2,"74":1,"80":2,"81":4,"82":4,"83":3,"84":9,"85":2}}],["too",{"2":{"40":1,"64":1,"87":1}}],["todo",{"2":{"25":1,"96":1}}],["toy",{"2":{"25":1,"75":1}}],["to",{"0":{"9":1,"22":1,"23":1,"43":1,"74":1,"77":1,"78":1,"89":1},"1":{"44":1,"45":1,"78":1,"79":2},"2":{"0":4,"1":4,"3":1,"4":1,"6":2,"7":1,"8":1,"9":1,"10":3,"11":2,"13":3,"14":8,"16":1,"19":1,"20":2,"21":1,"22":2,"23":1,"24":4,"25":3,"26":2,"27":6,"28":1,"31":2,"32":2,"34":3,"35":1,"37":2,"39":2,"40":6,"41":1,"42":1,"45":2,"46":2,"47":1,"48":1,"49":3,"50":2,"52":1,"53":2,"54":1,"55":3,"56":2,"57":1,"58":1,"59":1,"62":1,"63":1,"64":5,"65":3,"66":2,"67":2,"68":1,"69":2,"70":2,"71":2,"72":2,"73":1,"74":2,"75":4,"76":3,"78":2,"79":3,"80":3,"84":1,"85":1,"87":48,"88":19,"89":1,"94":2,"98":1,"100":3,"102":2,"106":1}}],["though",{"2":{"75":1}}],["those",{"2":{"10":1,"12":1,"13":1,"15":1,"45":1,"65":1,"76":1}}],["through",{"2":{"87":5,"88":5,"92":1}}],["thrown",{"2":{"73":1}}],["three",{"2":{"36":1,"65":1,"95":1}}],["threaded",{"2":{"50":1}}],["threads",{"2":{"50":2,"87":2}}],["thread",{"2":{"27":1,"50":3}}],["than",{"2":{"10":1,"36":1,"41":1,"42":1}}],["that",{"2":{"0":1,"9":2,"10":1,"14":1,"17":1,"20":5,"24":1,"25":1,"26":2,"27":1,"33":1,"35":1,"38":1,"40":2,"42":1,"46":1,"47":1,"50":2,"52":1,"55":1,"58":1,"61":1,"64":1,"65":2,"67":1,"75":2,"85":1,"87":13,"88":13,"98":1,"100":1}}],["things",{"2":{"31":1}}],["think",{"2":{"1":1}}],["thinking",{"2":{"1":1}}],["this",{"2":{"0":1,"1":1,"4":1,"7":1,"10":1,"14":1,"17":2,"20":4,"21":1,"23":2,"26":3,"27":1,"28":1,"31":1,"34":1,"39":1,"40":2,"41":2,"42":2,"45":1,"46":1,"48":1,"49":1,"50":1,"52":1,"53":2,"55":1,"57":1,"59":2,"63":1,"66":1,"70":1,"76":2,"78":1,"79":2,"84":1,"86":2,"87":7,"88":10,"99":1,"100":1}}],["they",{"2":{"46":4,"53":1}}],["their",{"0":{"39":1,"40":1},"2":{"38":1,"40":1,"47":1,"64":1,"87":3,"88":2}}],["then",{"2":{"25":2,"26":2,"33":1,"41":1,"46":1,"75":1,"76":1,"79":2,"92":1}}],["thereby",{"2":{"87":1}}],["therefore",{"2":{"42":1,"94":1}}],["there",{"2":{"13":1,"18":2,"25":1,"34":1,"46":2,"53":1,"87":1}}],["theme",{"2":{"62":2}}],["them",{"2":{"7":1,"14":1,"36":1,"52":1,"76":1,"87":1}}],["these",{"2":{"0":1,"6":1,"34":1,"36":1,"47":1,"64":1,"85":1}}],["the",{"0":{"32":1,"34":1,"42":1,"56":1,"96":1,"99":1},"1":{"33":1},"2":{"0":5,"1":4,"2":3,"4":1,"5":4,"6":4,"8":6,"9":3,"10":2,"13":1,"14":1,"15":1,"17":3,"18":2,"19":1,"20":12,"21":3,"22":5,"23":2,"24":3,"25":10,"26":14,"27":7,"29":3,"31":1,"32":3,"33":5,"34":3,"35":2,"36":2,"37":9,"39":3,"40":10,"41":3,"42":10,"45":1,"46":7,"50":2,"52":3,"53":6,"54":2,"55":5,"56":2,"57":4,"58":1,"59":2,"60":2,"61":2,"62":9,"63":1,"64":5,"65":4,"66":4,"72":1,"73":3,"74":1,"75":10,"76":2,"77":1,"78":1,"79":6,"80":1,"81":5,"82":3,"83":5,"84":6,"85":1,"87":122,"88":83,"89":5,"90":1,"92":2,"93":6,"94":8,"95":1,"96":4,"98":6,"99":1,"100":5,"102":1}}],["switched",{"2":{"94":1}}],["syntax",{"2":{"94":1,"98":1}}],["system",{"2":{"79":1}}],["symbol",{"2":{"14":1,"16":1,"17":1,"22":1,"24":1,"29":2,"46":5,"57":4,"58":2,"59":2,"60":5,"61":4,"62":6,"87":3,"88":1}}],["src",{"2":{"78":1}}],["sres",{"2":{"50":2,"68":2,"74":2,"80":2}}],["skipped",{"2":{"87":1}}],["skip",{"2":{"87":1}}],["skipmissing",{"2":{"27":1,"41":1}}],["skeleton=a",{"2":{"75":1}}],["skeleton=true",{"2":{"75":2}}],["skeleton=false",{"2":{"73":1,"87":1}}],["skeleton",{"0":{"75":1},"2":{"75":8,"76":4}}],["ssp585",{"2":{"49":1,"102":2}}],["snow3",{"2":{"42":1}}],["snippet",{"2":{"6":1}}],["small",{"2":{"31":1,"46":1}}],["slightly",{"2":{"98":1}}],["slicing",{"2":{"20":1}}],["slices",{"2":{"87":3}}],["slice",{"2":{"20":1,"102":4,"103":1}}],["slow",{"2":{"40":1,"87":1}}],["slurmmanager",{"2":{"27":1}}],["shinclude",{"2":{"79":1}}],["shdocs>",{"2":{"79":1}}],["shnpm",{"2":{"79":2}}],["shouldn",{"2":{"53":1}}],["should",{"2":{"37":1,"46":1,"52":1,"53":1,"56":1,"78":1,"79":1,"87":3,"88":1,"89":1}}],["showprog",{"2":{"87":1}}],["shows",{"2":{"62":1}}],["shown",{"2":{"53":1,"87":1}}],["showing",{"2":{"46":1}}],["show",{"2":{"27":1,"76":1,"106":1}}],["shading=false",{"2":{"104":1,"105":1,"106":1}}],["shall",{"2":{"87":5,"88":1}}],["shares",{"2":{"40":1}}],["share",{"0":{"39":1,"40":1},"2":{"38":1,"40":1,"65":1,"87":1}}],["shared",{"2":{"4":1,"5":1,"6":1,"24":1,"30":1,"35":1,"39":2,"40":3,"44":1,"45":1,"46":2,"49":1,"50":1,"51":1,"68":1,"74":1,"75":1,"80":1,"102":1}}],["shape",{"2":{"6":1}}],["scene",{"2":{"106":3}}],["scenariomip",{"2":{"49":1,"102":2}}],["scenarios",{"2":{"21":1,"102":1}}],["scope",{"2":{"87":1,"88":1}}],["scripts",{"2":{"79":1}}],["scalar",{"2":{"49":1}}],["scattered",{"2":{"7":1}}],["s",{"2":{"14":1,"20":3,"22":1,"23":1,"25":2,"33":1,"35":1,"37":1,"39":1,"40":2,"52":1,"62":7,"67":1,"75":1,"80":1,"87":2,"88":1,"90":1,"96":1}}],["sure",{"2":{"106":1}}],["surface",{"2":{"49":2,"50":2,"53":6,"56":2,"62":2,"81":5,"82":6,"83":6,"84":10,"104":1,"105":1}}],["such",{"2":{"53":1,"84":1,"87":1,"94":1}}],["subcubes",{"2":{"87":1}}],["subtype",{"2":{"64":1,"88":1,"94":1}}],["subtables",{"2":{"42":1}}],["subsetextensions",{"2":{"88":1}}],["subsetcube",{"2":{"87":1}}],["subseting",{"2":{"85":1}}],["subsetting",{"0":{"37":1,"38":1,"39":1,"40":1},"1":{"39":1,"40":1},"2":{"49":1,"50":1,"88":1,"96":1}}],["subset",{"0":{"36":1},"1":{"37":1,"38":1,"39":1,"40":1},"2":{"37":5,"40":4,"80":1,"83":1,"87":1,"88":1,"102":1}}],["subsets",{"2":{"19":1,"67":1}}],["subsequent",{"2":{"21":1}}],["summarysize",{"2":{"47":2}}],["sum",{"2":{"22":1,"23":1,"25":1,"26":2,"41":1,"57":4,"60":2,"61":4,"62":2}}],["supposed",{"2":{"87":1}}],["support",{"2":{"13":1,"46":1}}],["supertype",{"2":{"12":1,"13":1}}],["suggestions",{"2":{"6":1}}],["style",{"0":{"100":1}}],["st",{"2":{"94":1}}],["stdzero",{"2":{"87":1}}],["stock3",{"2":{"46":4}}],["stock2",{"2":{"46":4}}],["stock1",{"2":{"46":4}}],["stocks",{"2":{"46":7}}],["storing",{"2":{"65":1}}],["storage",{"2":{"15":1,"49":1}}],["stored",{"2":{"64":3,"88":2}}],["stores",{"2":{"64":1,"87":1}}],["store",{"2":{"0":1,"49":4,"64":1,"65":1,"102":2}}],["struct",{"2":{"87":1,"88":4}}],["structures",{"2":{"63":1}}],["structure",{"2":{"33":2,"46":1,"66":1}}],["strings",{"0":{"47":1}}],["string",{"2":{"8":1,"9":2,"11":1,"13":3,"14":1,"16":1,"17":1,"18":2,"20":5,"21":3,"22":4,"23":3,"24":1,"25":4,"26":6,"29":3,"32":1,"33":3,"34":1,"35":2,"37":5,"41":3,"42":3,"47":5,"49":2,"50":2,"51":1,"53":3,"56":2,"57":1,"58":1,"60":2,"61":1,"62":1,"68":1,"73":1,"74":1,"75":1,"80":1,"81":2,"82":3,"83":3,"84":5,"87":6,"88":4,"93":4,"96":1,"102":1}}],["stable",{"2":{"94":1}}],["stat",{"2":{"72":2}}],["status",{"2":{"53":2}}],["statistics",{"2":{"18":1,"27":1,"42":3,"54":1,"95":1}}],["standard",{"2":{"49":1,"50":1,"53":3,"81":2,"82":3,"83":3,"84":5}}],["standards",{"2":{"49":1,"50":1,"68":1,"74":1,"80":1,"102":1}}],["stack",{"2":{"47":1}}],["started",{"0":{"91":1},"1":{"92":1,"93":1,"94":1}}],["start=12",{"2":{"57":2,"58":1,"60":2,"61":2,"62":3}}],["start=december",{"2":{"57":3,"60":1}}],["start",{"2":{"14":1,"37":1,"70":1,"76":1}}],["still",{"2":{"8":1,"26":1,"65":1,"98":1}}],["step=3",{"2":{"57":2,"58":1,"60":2,"61":2,"62":3}}],["steps",{"2":{"14":1,"18":1,"62":1,"79":1,"87":1}}],["step",{"2":{"7":1,"18":1,"24":1,"41":2,"87":1,"88":2,"102":1}}],["sphere",{"0":{"106":1},"2":{"106":3}}],["spheroid",{"2":{"51":1}}],["split",{"2":{"87":1}}],["splitted",{"2":{"2":1}}],["special",{"2":{"82":1,"87":1,"88":1}}],["specifiers",{"2":{"88":1}}],["specifier",{"2":{"87":1}}],["specifies",{"2":{"87":3}}],["specified",{"2":{"87":8,"88":1}}],["specific",{"2":{"37":1,"87":2}}],["specifying",{"2":{"87":2,"88":1}}],["specify",{"0":{"24":1},"2":{"21":1,"29":1,"87":1}}],["spectral",{"2":{"62":1}}],["specs",{"2":{"49":1,"102":1}}],["sparse",{"2":{"64":1}}],["spatio",{"2":{"41":1}}],["spatial",{"2":{"1":1,"18":1,"26":5,"27":1,"54":1,"64":1}}],["span",{"2":{"37":1,"95":1}}],["space",{"2":{"1":1,"20":1}}],["safe",{"2":{"50":2}}],["sampled",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"11":2,"13":4,"14":3,"16":3,"17":3,"18":3,"20":9,"21":3,"22":3,"23":2,"24":3,"25":9,"26":8,"29":9,"30":3,"32":9,"33":6,"34":2,"35":3,"37":14,"39":6,"40":10,"41":9,"42":5,"44":1,"45":5,"46":4,"47":4,"49":6,"50":6,"51":2,"53":9,"56":6,"57":3,"58":2,"60":3,"61":1,"62":7,"68":3,"74":6,"75":6,"80":3,"81":6,"82":4,"83":9,"84":15,"85":3,"93":5,"96":1,"102":3}}],["same",{"2":{"0":1,"2":1,"5":1,"6":1,"9":1,"12":1,"13":1,"20":1,"24":1,"25":1,"26":2,"33":2,"34":2,"35":1,"40":1,"45":1,"46":2,"52":1,"64":1,"65":3,"66":2,"79":1,"81":1,"82":1,"83":1,"87":1,"88":1}}],["saves",{"2":{"73":1,"87":1}}],["save",{"0":{"75":1},"2":{"13":1,"16":1,"45":1,"47":1,"69":2,"70":1,"71":2,"72":1,"75":1,"87":2}}],["savecube",{"2":{"2":1,"69":1,"71":1,"75":1,"87":2}}],["savedataset",{"2":{"4":1,"5":1,"6":1,"70":1,"72":1,"73":1,"74":1,"75":2,"87":1,"88":1}}],["saved",{"2":{"2":1,"15":1,"24":1,"72":1,"73":1}}],["saving",{"2":{"1":1,"4":1,"5":1,"6":1,"20":1}}],["serve",{"2":{"88":1}}],["series",{"0":{"55":1},"2":{"27":1}}],["sequence",{"2":{"64":1}}],["separate",{"2":{"87":1,"88":1}}],["separated",{"2":{"65":1}}],["separately",{"2":{"5":1,"26":1,"27":1}}],["sep",{"2":{"57":4,"58":2,"59":1,"60":4,"61":4,"62":6}}],["seaborn",{"2":{"103":1,"104":1,"105":1,"106":1}}],["searching",{"2":{"87":1}}],["search",{"2":{"87":1}}],["season",{"2":{"57":1,"60":2,"61":1}}],["seasons",{"0":{"57":1,"59":1,"62":1},"1":{"58":1,"59":1},"2":{"57":9,"60":1,"62":5}}],["seasonal",{"0":{"55":1,"95":1,"97":1},"1":{"96":1,"97":1},"2":{"55":1,"61":1,"62":1,"95":1,"96":4}}],["sea",{"2":{"50":3,"53":6,"68":1,"74":1,"80":1,"81":5,"82":6,"83":6,"84":10}}],["sebastien",{"2":{"50":2,"68":2,"74":2,"80":2}}],["selected",{"2":{"88":1,"95":1}}],["select",{"0":{"80":1,"81":1,"82":1,"83":1},"1":{"81":1,"82":1,"83":1,"84":1,"85":1},"2":{"40":1,"80":1}}],["selectors",{"2":{"84":1}}],["selector",{"2":{"40":1,"83":1}}],["selection",{"2":{"40":2}}],["selecting",{"2":{"37":1,"39":1,"40":1}}],["seed",{"2":{"21":1,"25":2}}],["see",{"2":{"20":1,"22":1,"84":1,"87":1,"94":1}}],["second",{"2":{"8":3,"22":1,"23":1,"87":1}}],["section",{"2":{"7":1,"10":1,"14":1,"28":1,"31":1,"46":1,"48":1,"63":1,"86":1}}],["setting",{"2":{"73":1,"87":1,"88":1}}],["sets",{"2":{"6":1,"56":1}}],["set",{"0":{"4":1,"5":1,"6":1},"2":{"4":1,"5":1,"23":2,"26":1,"49":1,"73":1,"79":1,"87":1,"88":2}}],["setchunks",{"2":{"1":1,"2":2,"3":1,"4":1,"5":1,"6":1,"87":1,"88":1}}],["several",{"0":{"20":1},"2":{"0":1,"20":1,"35":1,"38":1}}],["significant",{"2":{"70":1}}],["sin",{"2":{"95":1}}],["sink",{"2":{"88":1}}],["since",{"2":{"53":1,"89":1}}],["single",{"0":{"95":1},"1":{"96":1,"97":1},"2":{"0":1,"7":1,"8":1,"50":1,"66":1,"69":1,"71":1,"87":6,"88":1}}],["simulate",{"2":{"46":1}}],["simplicity",{"2":{"95":1}}],["simply",{"2":{"27":1,"47":1,"76":1,"79":1,"89":1}}],["simple",{"2":{"20":1,"31":1,"93":1}}],["situations",{"2":{"1":1}}],["size=",{"2":{"104":1,"105":1,"106":1}}],["sizes",{"2":{"2":1,"87":2,"88":2}}],["size",{"2":{"0":1,"1":1,"4":1,"5":1,"8":1,"9":1,"11":1,"13":1,"14":1,"16":1,"17":1,"18":2,"20":5,"21":1,"22":1,"23":1,"25":3,"26":2,"29":2,"32":1,"33":3,"34":1,"35":1,"37":5,"41":3,"42":3,"49":1,"50":1,"53":3,"56":2,"60":1,"62":1,"72":4,"75":1,"76":1,"81":2,"82":3,"83":3,"84":5,"87":3,"88":4,"93":3,"95":1,"96":2,"97":1,"103":1}}],["sosstsst",{"2":{"50":1,"53":3,"81":2,"82":3,"83":3,"84":5}}],["software",{"2":{"50":1,"68":1,"80":1}}],["sort",{"2":{"26":1}}],["so",{"2":{"2":1,"27":1,"36":1,"40":1,"87":1,"88":1}}],["source",{"2":{"0":2,"50":1,"68":1,"73":1,"74":1,"80":1,"87":25,"88":24}}],["sometimes",{"2":{"75":1,"100":1}}],["some",{"0":{"40":1},"2":{"0":1,"15":1,"38":1,"40":1,"41":1,"46":2,"62":1,"87":1,"95":1,"104":1}}],["again",{"2":{"73":1,"76":1}}],["agreement",{"2":{"62":1}}],["aggregation",{"2":{"27":1}}],["aggregate",{"2":{"26":1}}],["aug",{"2":{"57":4,"58":2,"59":1,"60":4,"61":4,"62":6}}],["authority",{"2":{"51":5}}],["auto",{"2":{"22":1,"24":1,"87":1}}],["api",{"0":{"86":1,"87":1,"88":1},"1":{"87":1,"88":1}}],["apr",{"2":{"57":4,"58":2,"59":1,"60":4,"61":4,"62":6}}],["approximated",{"2":{"88":1}}],["approx",{"2":{"87":1,"88":1}}],["appropriate",{"2":{"78":1}}],["approach",{"2":{"9":1,"57":1}}],["append=true",{"2":{"74":2}}],["append",{"0":{"74":1},"2":{"73":1,"87":1}}],["apply",{"0":{"41":1},"2":{"14":2,"17":1,"19":1,"25":1,"27":1,"62":1,"96":1}}],["application",{"2":{"25":1}}],["applications",{"2":{"0":1}}],["applies",{"2":{"17":1}}],["applied",{"2":{"0":1,"3":1,"4":1,"26":1,"87":2,"88":1}}],["advance",{"2":{"53":1}}],["addargs",{"2":{"87":3,"88":1}}],["adds",{"2":{"64":2,"67":1}}],["addprocs",{"2":{"27":2}}],["added",{"2":{"19":1,"74":1,"87":1,"88":1}}],["addition",{"2":{"10":1,"26":1,"64":1}}],["additional",{"2":{"4":3,"5":3,"9":1,"20":1,"25":1,"40":10,"45":4,"46":4,"49":2,"74":3,"87":4,"88":3,"102":2}}],["add",{"2":{"6":1,"14":1,"16":1,"41":1,"50":1,"78":2,"89":3,"90":4,"92":2,"104":1}}],["air",{"2":{"49":3,"56":2,"62":2}}],["a3",{"2":{"30":4}}],["a2",{"2":{"29":1,"30":3,"50":2,"68":2,"74":2,"80":2,"93":1}}],["a1",{"2":{"29":1}}],["after",{"2":{"18":1,"20":1,"51":1,"87":3}}],["atol",{"2":{"83":1}}],["attributes",{"2":{"62":1,"87":1,"88":1}}],["atmosphere",{"2":{"50":1,"68":1,"74":1,"80":1}}],["atmos",{"2":{"49":1,"102":1}}],["at",{"2":{"13":1,"25":1,"26":4,"40":1,"46":3,"50":3,"53":3,"62":1,"65":1,"66":2,"68":1,"73":2,"74":1,"77":1,"78":2,"79":2,"80":1,"81":2,"82":6,"83":7,"84":5,"87":3,"88":2,"93":1,"98":2}}],["able",{"2":{"45":1}}],["abstractstring",{"2":{"87":1}}],["abstractdict",{"2":{"87":1,"88":3}}],["abstractdimarray",{"2":{"12":1,"13":1,"64":1}}],["abs",{"2":{"25":1}}],["about",{"2":{"1":2,"36":1,"83":1,"93":1,"99":1}}],["above",{"2":{"0":1,"5":1,"20":1,"75":1,"92":1}}],["asaxisarray",{"2":{"87":1}}],["aspect=dataaspect",{"2":{"62":1,"103":1}}],["assemble",{"2":{"93":1}}],["assessment",{"2":{"50":2,"68":2,"74":2,"80":2}}],["associated",{"2":{"87":1}}],["assign",{"0":{"43":1},"1":{"44":1,"45":1}}],["asked",{"0":{"31":1},"1":{"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1}}],["as",{"2":{"5":1,"8":1,"9":1,"12":1,"13":2,"14":1,"16":1,"20":6,"21":1,"22":1,"23":1,"25":1,"26":2,"27":2,"29":1,"33":2,"34":1,"35":1,"40":1,"42":1,"46":3,"49":1,"50":1,"51":1,"52":1,"54":1,"57":2,"62":1,"64":1,"67":1,"75":1,"76":1,"81":1,"84":1,"85":1,"87":11,"88":3,"93":1,"94":1,"96":1,"100":1,"102":1}}],["axs",{"2":{"62":9}}],["ax",{"2":{"42":1,"95":3,"97":3,"103":1,"104":3,"105":3,"106":5}}],["axlist",{"2":{"14":2,"21":2,"23":1,"25":4,"26":2,"27":2,"29":2,"30":1,"35":3,"88":5,"93":3}}],["axessmall",{"2":{"88":2}}],["axes",{"0":{"32":1,"34":1},"1":{"33":1},"2":{"4":4,"5":4,"6":1,"24":1,"29":1,"30":1,"32":2,"33":1,"34":2,"37":2,"39":5,"40":13,"44":1,"45":5,"46":8,"49":3,"50":1,"51":1,"64":2,"68":1,"74":4,"75":1,"80":2,"87":15,"88":11,"93":1,"96":2,"102":3}}],["axislegend",{"2":{"97":1}}],["axis=false",{"2":{"106":1}}],["axis=",{"2":{"95":1}}],["axisdescriptor",{"2":{"88":1}}],["axisdesc",{"2":{"87":3}}],["axis",{"0":{"4":1},"2":{"4":1,"9":2,"20":3,"34":1,"37":1,"39":1,"40":7,"46":1,"51":2,"62":1,"67":1,"75":1,"85":1,"87":16,"88":14,"93":1,"97":1,"102":1,"103":1}}],["always",{"2":{"77":1,"87":2,"88":1,"94":1}}],["already",{"2":{"53":1,"73":1,"87":1,"88":1}}],["al",{"2":{"50":1,"66":1,"68":1,"74":1,"80":1}}],["alternatives",{"2":{"87":1}}],["alternatively",{"2":{"0":1,"2":1,"87":2,"92":1}}],["altered",{"2":{"49":1,"50":1,"53":3,"81":2,"82":3,"83":3,"84":5}}],["although",{"2":{"46":1,"47":1,"84":1}}],["algebraofgraphics",{"2":{"90":1}}],["algebra",{"0":{"41":1},"2":{"41":1}}],["along",{"0":{"8":1},"2":{"8":1,"20":1,"87":6,"88":2,"98":1}}],["allaxes",{"2":{"88":1}}],["allinaxes",{"2":{"88":1}}],["allmissing",{"2":{"87":1}}],["allocate",{"2":{"75":1}}],["allocation",{"2":{"26":1}}],["allow",{"2":{"88":1}}],["allowed",{"2":{"47":1}}],["allows",{"2":{"27":1}}],["allowing",{"2":{"12":1,"13":1,"65":1}}],["all",{"0":{"6":1,"39":1,"40":1},"2":{"4":1,"6":2,"14":1,"16":1,"17":1,"18":2,"26":1,"27":4,"38":1,"40":2,"46":3,"51":1,"62":2,"64":1,"66":2,"73":3,"75":1,"79":1,"84":1,"86":1,"87":6,"88":7}}],["also",{"2":{"2":1,"3":1,"18":1,"25":1,"27":1,"29":1,"32":1,"40":1,"42":1,"64":2,"65":1,"70":1,"75":2,"87":1,"92":1}}],["annual",{"2":{"87":1}}],["analog",{"2":{"65":1}}],["analyzing",{"2":{"1":1}}],["anchor",{"2":{"25":1}}],["another",{"2":{"20":1,"40":1}}],["anynymous",{"2":{"87":1}}],["anyocean",{"2":{"87":1}}],["anymissing",{"2":{"87":1}}],["anymore",{"2":{"25":1}}],["any",{"2":{"8":1,"9":1,"11":1,"13":3,"14":1,"15":1,"18":2,"20":5,"22":3,"24":1,"25":2,"26":4,"29":1,"32":1,"33":3,"34":1,"35":1,"37":6,"41":3,"42":3,"47":4,"49":2,"50":3,"51":1,"53":3,"56":2,"57":3,"58":2,"60":4,"61":3,"62":3,"68":1,"74":1,"75":1,"80":1,"81":2,"82":3,"83":3,"84":5,"87":4,"88":9,"93":1,"96":1,"102":1}}],["an",{"0":{"8":1},"2":{"9":1,"14":4,"16":1,"17":1,"19":1,"27":2,"33":1,"34":1,"39":1,"40":1,"42":1,"47":1,"52":1,"64":1,"65":1,"67":1,"68":1,"69":1,"70":1,"71":1,"73":1,"74":1,"80":3,"83":1,"87":19,"88":8}}],["and",{"0":{"21":1,"28":1,"34":1,"48":1,"54":1,"68":1,"80":1,"84":1},"1":{"22":1,"23":1,"24":1,"29":1,"30":1,"49":1,"50":1,"51":1,"52":1,"53":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"81":1,"82":1,"83":1,"84":1,"85":1},"2":{"0":1,"2":1,"5":1,"6":1,"7":1,"8":1,"10":1,"16":1,"20":4,"21":2,"22":2,"24":2,"25":4,"26":2,"28":1,"29":1,"32":1,"35":1,"37":1,"40":6,"41":1,"42":6,"46":5,"48":2,"49":1,"50":1,"53":1,"54":1,"55":1,"56":1,"57":2,"62":1,"64":5,"65":3,"66":2,"68":1,"70":2,"72":1,"73":1,"74":1,"75":3,"76":1,"77":1,"79":4,"80":1,"84":1,"87":19,"88":6,"92":1,"93":2,"95":1,"102":1,"104":1}}],["available",{"2":{"75":1,"84":2,"86":1,"87":2,"92":1}}],["avariable",{"2":{"0":1}}],["avoid",{"2":{"50":1,"57":1}}],["avoids",{"2":{"26":1}}],["avoided",{"2":{"0":1}}],["averaging",{"2":{"18":1}}],["averages",{"0":{"55":1},"2":{"54":1}}],["average",{"2":{"18":1,"55":2}}],["arg",{"2":{"87":1}}],["argument",{"2":{"27":1,"75":1,"87":4,"88":2}}],["arguments",{"2":{"25":1,"62":1,"87":11,"88":3}}],["artype",{"2":{"87":2}}],["archgdaldatasets",{"2":{"51":1}}],["archgdal",{"2":{"51":2,"90":1}}],["arbitrary",{"2":{"20":1}}],["arithmetics",{"0":{"16":1},"2":{"14":1}}],["arr2",{"2":{"13":1}}],["arr",{"2":{"13":2,"26":7}}],["arrayinfo",{"2":{"88":1}}],["arrays",{"2":{"6":1,"7":1,"8":2,"9":1,"15":1,"28":1,"30":2,"49":2,"50":2,"63":1,"64":4,"65":3,"66":3,"87":2,"88":1}}],["array",{"0":{"11":1,"26":1},"2":{"0":1,"1":1,"8":2,"9":2,"11":2,"14":3,"16":2,"17":2,"19":1,"22":1,"24":1,"26":8,"34":1,"57":1,"62":1,"64":4,"65":1,"66":1,"67":2,"75":5,"76":5,"80":1,"87":10,"88":4,"93":3}}],["areas",{"2":{"87":1}}],["area",{"2":{"49":2,"87":1}}],["areacella",{"2":{"49":2,"102":1}}],["are",{"2":{"0":1,"10":3,"15":1,"22":1,"23":1,"34":1,"36":1,"40":1,"46":3,"53":2,"57":2,"62":2,"64":3,"65":2,"66":3,"75":1,"77":1,"79":1,"80":1,"84":1,"85":1,"87":11,"88":6,"98":2,"100":1}}],["according",{"2":{"87":1}}],["accessible",{"2":{"57":1}}],["access",{"2":{"1":2,"17":1,"29":1,"64":1,"67":1}}],["accessed",{"2":{"0":2,"49":1,"50":2}}],["activate",{"2":{"42":1,"79":2,"95":1,"103":1,"106":1}}],["actually",{"2":{"88":1}}],["actual",{"2":{"17":1,"50":1,"75":1,"88":1,"93":1}}],["achieves",{"2":{"33":1}}],["achieved",{"2":{"0":1}}],["across",{"2":{"0":1,"7":1,"20":1,"64":3}}],["a",{"0":{"9":1,"15":1,"26":1,"29":1,"30":1,"32":1,"36":1,"37":1,"38":1,"39":1,"40":1,"43":1,"46":2,"47":1,"73":1,"74":1,"81":1,"85":1,"95":1,"101":1},"1":{"33":1,"37":1,"38":1,"39":2,"40":2,"44":1,"45":1,"96":1,"97":1},"2":{"0":4,"2":7,"3":1,"4":1,"7":1,"8":1,"9":2,"11":2,"12":5,"13":8,"14":3,"15":1,"16":4,"17":2,"18":2,"19":1,"20":5,"21":2,"22":1,"23":2,"24":1,"26":75,"27":11,"29":1,"31":1,"32":2,"33":2,"34":1,"36":4,"37":3,"38":1,"40":2,"42":3,"44":2,"45":2,"46":4,"49":6,"50":4,"51":1,"55":1,"60":1,"62":2,"64":12,"65":4,"66":8,"67":1,"69":3,"70":3,"71":3,"72":1,"73":4,"75":5,"78":2,"79":2,"83":2,"84":4,"85":1,"87":64,"88":31,"93":4,"94":1,"99":1,"100":1}}],["iall",{"2":{"88":1}}],["iwindow",{"2":{"88":1}}],["icolon",{"2":{"88":1}}],["icefire",{"2":{"103":1,"104":1,"105":1,"106":1}}],["ice",{"2":{"50":1,"68":1,"74":1,"80":1}}],["ipcc",{"2":{"50":3,"68":3,"74":3,"80":3}}],["ipsl",{"2":{"50":6,"68":6,"74":6,"80":6}}],["idx",{"2":{"96":3}}],["identical",{"2":{"87":1}}],["id",{"2":{"49":2,"50":2,"68":2,"74":2,"80":2,"102":2}}],["irregular",{"2":{"24":1,"40":6,"42":2,"46":4,"49":4,"50":2,"53":3,"56":2,"57":1,"60":3,"61":1,"62":1,"68":1,"74":1,"80":1,"81":2,"82":2,"83":6,"84":5,"88":1,"102":2}}],["illustrate",{"2":{"21":1}}],["immutable",{"2":{"15":1}}],["improving",{"2":{"94":1}}],["improvement",{"2":{"70":1}}],["improve",{"2":{"6":1}}],["implementing",{"2":{"87":1}}],["importance",{"2":{"88":1}}],["important",{"2":{"1":1}}],["impossible",{"2":{"15":1}}],["i",{"0":{"35":1,"36":1,"41":1,"42":1,"43":1,"46":1},"1":{"37":1,"38":1,"39":1,"40":1,"44":1,"45":1},"2":{"8":1,"12":1,"13":1,"26":3,"37":1,"50":2,"62":2,"73":1,"79":2,"87":7,"88":4,"93":1,"96":3}}],["ispar",{"2":{"87":1,"88":1}}],["ismissing",{"2":{"75":1}}],["issue",{"2":{"70":1}}],["issues",{"2":{"56":1}}],["isequal",{"2":{"26":1}}],["is",{"2":{"1":2,"2":1,"6":1,"7":1,"9":1,"10":1,"13":1,"17":1,"18":2,"19":1,"20":4,"25":2,"26":2,"27":3,"31":1,"33":2,"35":1,"36":1,"40":2,"41":1,"42":4,"46":2,"47":2,"50":2,"53":2,"55":2,"56":2,"57":2,"61":1,"64":4,"65":1,"66":2,"67":1,"75":4,"76":1,"78":1,"81":1,"84":2,"85":1,"87":12,"88":10,"89":1,"92":1,"94":1,"98":1,"100":1}}],["if",{"2":{"0":1,"10":1,"22":1,"23":1,"40":3,"70":1,"73":1,"75":2,"79":1,"87":12,"88":6,"89":1,"98":1}}],["inline",{"2":{"106":2}}],["incubes",{"2":{"88":1}}],["incs",{"2":{"88":1}}],["include",{"2":{"87":2,"88":1}}],["included",{"2":{"84":1}}],["inarbc",{"2":{"88":1}}],["inar",{"2":{"88":2}}],["inplace",{"2":{"87":3,"88":1}}],["inputcube",{"2":{"88":2}}],["inputs",{"2":{"22":1}}],["input",{"2":{"20":1,"21":1,"22":1,"24":1,"27":2,"42":1,"87":13,"88":8}}],["innerchunks",{"2":{"88":1}}],["inner",{"2":{"87":9,"88":3}}],["insize",{"2":{"88":1}}],["inside",{"2":{"87":3}}],["installed",{"2":{"94":1}}],["installation",{"0":{"92":1}}],["install",{"0":{"89":1},"2":{"79":1,"90":1,"92":1}}],["instantaneous",{"2":{"56":2}}],["instead",{"2":{"8":1,"9":1,"17":1,"32":1,"37":1,"64":1,"84":1}}],["initialization",{"2":{"49":1,"102":1}}],["initially",{"2":{"26":1}}],["inds",{"2":{"88":1}}],["indeed",{"2":{"76":1}}],["indexing",{"2":{"76":1,"82":2,"83":2,"94":1}}],["index",{"2":{"49":2,"88":2,"102":2}}],["independently",{"2":{"46":1}}],["indices",{"2":{"88":1,"96":1}}],["indicate",{"2":{"87":1}}],["indicating",{"2":{"9":1,"26":1,"87":1}}],["indims=indims",{"2":{"26":1,"27":1}}],["indims",{"0":{"22":1,"23":1,"25":1},"2":{"20":8,"22":4,"24":7,"25":3,"87":7}}],["individually",{"2":{"17":2}}],["individual",{"2":{"0":1,"49":1,"50":1}}],["information",{"2":{"53":1,"73":1,"88":2}}],["info",{"2":{"13":1,"20":2,"32":1,"50":11,"54":1,"72":4,"75":1,"94":1}}],["introducing",{"2":{"66":1}}],["int",{"2":{"33":1,"47":1,"96":3}}],["interoperability",{"0":{"90":1}}],["internal",{"0":{"88":1},"2":{"88":9}}],["internally",{"2":{"65":1}}],["interface",{"2":{"87":2,"100":1}}],["interested",{"2":{"98":1}}],["interest",{"2":{"53":1}}],["interval",{"2":{"50":1,"53":3,"81":2,"82":3,"83":4,"84":6}}],["intervalsets",{"2":{"84":1}}],["intervals",{"0":{"84":1},"2":{"37":1}}],["interactive",{"2":{"0":1}}],["integer",{"2":{"29":1,"64":1,"82":1,"83":1}}],["int64",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"11":2,"13":2,"20":8,"21":1,"22":1,"23":1,"25":7,"29":3,"32":9,"33":7,"34":4,"37":15,"39":4,"40":7,"42":3,"44":1,"45":5,"47":5,"56":4,"57":6,"58":6,"60":5,"62":18,"74":3,"75":6,"88":1,"93":2}}],["into",{"0":{"52":1,"101":1},"1":{"53":1},"2":{"0":1,"1":1,"2":1,"7":1,"8":1,"10":2,"13":1,"20":1,"26":1,"40":4,"47":1,"48":1,"52":1,"56":1,"66":2,"73":1,"76":1,"79":1,"87":6,"88":3,"106":1}}],["in",{"0":{"24":1,"43":1},"1":{"44":1,"45":1},"2":{"0":5,"1":1,"2":1,"4":2,"5":1,"8":1,"9":1,"10":2,"11":1,"12":1,"13":2,"14":1,"15":1,"16":1,"17":2,"18":4,"20":5,"21":1,"22":2,"23":2,"25":5,"26":8,"27":3,"29":2,"32":1,"33":3,"34":2,"37":5,"38":1,"40":1,"41":3,"42":5,"46":4,"47":2,"49":2,"50":4,"52":1,"53":9,"55":2,"56":3,"57":1,"59":3,"60":1,"62":4,"63":1,"64":5,"65":1,"66":2,"75":2,"76":1,"79":2,"81":2,"82":3,"83":4,"84":7,"85":1,"87":15,"88":9,"89":2,"92":1,"93":4,"96":2,"98":3,"100":4,"102":1}}],["iter",{"2":{"87":1}}],["iterate",{"2":{"100":1}}],["iteration",{"0":{"100":1}}],["iterator",{"2":{"42":1}}],["iterators",{"2":{"26":1}}],["iterable",{"2":{"42":2,"87":2}}],["itself",{"2":{"87":1,"88":1}}],["its",{"2":{"0":1}}],["it",{"2":{"0":2,"1":3,"16":1,"20":1,"22":1,"24":1,"27":2,"32":1,"34":1,"35":1,"40":2,"42":2,"46":2,"47":1,"50":1,"58":1,"60":1,"62":1,"64":2,"65":1,"67":1,"72":1,"73":1,"75":2,"76":1,"79":1,"80":1,"87":10,"88":5,"92":1}}],["lscene",{"2":{"106":1}}],["lmdz",{"2":{"50":1,"68":1,"74":1,"80":1}}],["link",{"2":{"78":1}}],["linewidth=0",{"2":{"104":1,"105":1}}],["linewidth=2",{"2":{"97":2}}],["linewidth=1",{"2":{"95":1,"97":1}}],["linestyle=",{"2":{"97":2}}],["lines",{"2":{"95":1,"97":3}}],["line",{"2":{"42":1}}],["lim",{"2":{"50":1,"68":1,"74":1,"80":1}}],["libraries",{"2":{"37":1,"64":1}}],["libray",{"2":{"36":1}}],["little",{"2":{"27":1}}],["list",{"2":{"26":1,"46":5,"87":7,"88":6}}],["like",{"2":{"0":1,"42":1,"46":1,"78":1,"87":2,"88":1}}],["learn",{"2":{"100":1}}],["learning",{"2":{"64":1,"98":1}}],["leap",{"2":{"95":1}}],["least",{"2":{"40":1,"46":1,"87":1}}],["length",{"2":{"57":2,"58":1,"60":3,"87":1,"88":3}}],["length=20",{"2":{"35":1,"93":1}}],["length=365",{"2":{"95":1}}],["length=3",{"2":{"21":1}}],["length=4",{"2":{"21":1}}],["length=15",{"2":{"14":1,"26":1,"27":1,"29":1,"35":1,"93":1}}],["length=10",{"2":{"14":1,"26":1,"27":1,"29":1,"35":1,"93":1}}],["level",{"2":{"25":1,"46":1,"70":1,"72":1,"78":1,"79":1}}],["left",{"2":{"18":2}}],["let",{"2":{"14":1,"20":2,"22":1,"23":1,"33":1,"35":1,"37":1,"39":1,"40":1,"52":1,"62":1,"80":1,"96":1}}],["loopinds",{"2":{"88":2}}],["looping",{"2":{"87":1,"88":1}}],["loopcachesize",{"2":{"88":1}}],["loopchunksize",{"2":{"87":1}}],["loopaxes",{"2":{"88":1}}],["loopvars",{"2":{"87":1,"88":1}}],["loops",{"2":{"87":1}}],["loop",{"2":{"87":1,"88":2}}],["looped",{"2":{"87":3,"88":3}}],["look",{"2":{"73":1,"78":1,"79":1,"87":1,"88":1}}],["lookups",{"2":{"57":15,"58":10,"60":11,"61":5,"62":38,"85":3}}],["lookup",{"2":{"57":1,"59":1,"102":3}}],["looks",{"2":{"42":1,"46":1}}],["location",{"2":{"88":3}}],["locations",{"2":{"65":1,"66":1}}],["located",{"2":{"98":1}}],["locate",{"2":{"79":1}}],["localhost",{"2":{"79":1}}],["locally",{"0":{"79":1},"2":{"79":1}}],["local",{"2":{"27":1,"49":1}}],["lock",{"2":{"50":3}}],["locks",{"2":{"50":1}}],["lowclip",{"2":{"62":4}}],["low",{"2":{"46":4}}],["lo",{"2":{"20":4}}],["loadorgenerate",{"2":{"88":1}}],["loading",{"2":{"51":1,"53":1,"76":1}}],["load",{"0":{"52":1},"1":{"53":1},"2":{"20":1,"37":1,"40":2,"52":1,"53":1,"56":1,"64":1}}],["loaded",{"2":{"8":1,"9":1,"11":1,"13":1,"14":1,"16":1,"17":1,"18":2,"20":5,"21":1,"22":1,"23":1,"25":3,"26":2,"29":2,"32":1,"33":3,"34":1,"35":1,"37":5,"40":2,"41":3,"42":3,"47":2,"49":1,"50":1,"53":8,"56":2,"60":1,"75":1,"81":2,"82":3,"83":3,"84":5,"93":2,"96":1}}],["long",{"2":{"49":1,"50":1,"53":4,"56":2,"62":1,"81":2,"82":3,"83":3,"84":5}}],["longitudes=longitudes",{"2":{"40":1}}],["longitudes",{"2":{"40":12}}],["longitude",{"2":{"25":1,"37":1,"51":1,"93":2}}],["lonlat",{"2":{"39":1}}],["lon=1",{"2":{"37":1,"39":1}}],["lon",{"2":{"12":2,"14":2,"16":1,"17":1,"18":2,"20":10,"21":2,"22":1,"23":1,"24":1,"25":5,"26":12,"27":1,"29":3,"30":1,"35":2,"37":7,"39":3,"41":4,"42":3,"49":2,"50":2,"53":3,"68":1,"74":1,"80":1,"81":2,"82":3,"83":6,"84":10,"85":2,"93":2,"102":2,"104":3}}],["lost",{"2":{"10":1}}],["lazy",{"2":{"87":1}}],["lazily",{"2":{"9":1,"17":1,"20":2,"35":1,"49":1,"50":1,"53":1,"56":1,"81":2,"82":3,"83":3,"84":5}}],["layername",{"2":{"87":2}}],["layername=",{"2":{"75":2,"88":1}}],["layer",{"2":{"75":1,"87":1,"88":1}}],["layout",{"2":{"62":2}}],["labelled",{"2":{"87":1}}],["labels",{"2":{"62":1,"66":1,"67":1,"85":1}}],["label=false",{"2":{"62":1}}],["label=",{"2":{"62":1,"97":3}}],["label=cb",{"2":{"62":1}}],["label",{"2":{"49":1,"62":3,"102":1}}],["last",{"2":{"20":1,"27":1}}],["la",{"2":{"20":4}}],["latest",{"2":{"89":1,"94":1}}],["later",{"2":{"22":1}}],["lat=5",{"2":{"37":1,"39":1}}],["latitudes=latitudes",{"2":{"40":1}}],["latitudes",{"2":{"40":11}}],["latitude",{"2":{"25":1,"37":1,"51":1,"93":2}}],["lat",{"2":{"12":2,"14":2,"16":1,"17":1,"18":2,"20":7,"21":2,"22":1,"23":1,"24":1,"25":5,"26":12,"27":1,"29":3,"30":1,"35":2,"37":7,"39":3,"41":4,"42":3,"49":2,"50":2,"53":3,"68":1,"74":1,"80":1,"81":2,"82":3,"83":5,"84":5,"85":2,"87":1,"93":2,"102":3,"104":1,"105":1}}],["larger",{"2":{"10":1}}],["large",{"2":{"0":2,"10":1,"56":1,"64":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/previews/PR479/assets/chunks/VPLocalSearchBox.FXHmopTJ.js b/previews/PR479/assets/chunks/VPLocalSearchBox.DqU7th2f.js similarity index 99% rename from previews/PR479/assets/chunks/VPLocalSearchBox.FXHmopTJ.js rename to previews/PR479/assets/chunks/VPLocalSearchBox.DqU7th2f.js index bfcb2d10..2b4ee61e 100644 --- a/previews/PR479/assets/chunks/VPLocalSearchBox.FXHmopTJ.js +++ b/previews/PR479/assets/chunks/VPLocalSearchBox.DqU7th2f.js @@ -1,4 +1,4 @@ -var Ft=Object.defineProperty;var Ot=(a,e,t)=>e in a?Ft(a,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):a[e]=t;var Ae=(a,e,t)=>Ot(a,typeof e!="symbol"?e+"":e,t);import{V as Ct,p as ie,h as me,aj as tt,ak as Rt,al as At,q as $e,am as Mt,d as Lt,D as xe,an as st,ao as Dt,ap as zt,s as Pt,aq as jt,v as Me,P as he,O as _e,ar as Vt,as as $t,W as Bt,R as Wt,$ as Kt,o as H,b as Jt,j as _,a0 as Ut,k as L,at as qt,au as Gt,av as Ht,c as Z,n as nt,e as Se,C as it,F as rt,a as fe,t as pe,aw as Qt,ax as at,ay as Yt,a9 as Zt,af as Xt,az as es,_ as ts}from"./framework.DYY3HcdR.js";import{u as ss,d as ns}from"./theme.Cb66Hod8.js";const is={root:()=>Ct(()=>import("./@localSearchIndexroot.DBpPZp1N.js"),[])};/*! +var Ft=Object.defineProperty;var Ot=(a,e,t)=>e in a?Ft(a,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):a[e]=t;var Ae=(a,e,t)=>Ot(a,typeof e!="symbol"?e+"":e,t);import{V as Ct,p as ie,h as me,aj as tt,ak as Rt,al as At,q as $e,am as Mt,d as Lt,D as xe,an as st,ao as Dt,ap as zt,s as Pt,aq as jt,v as Me,P as he,O as _e,ar as Vt,as as $t,W as Bt,R as Wt,$ as Kt,o as H,b as Jt,j as _,a0 as Ut,k as L,at as qt,au as Gt,av as Ht,c as Z,n as nt,e as Se,C as it,F as rt,a as fe,t as pe,aw as Qt,ax as at,ay as Yt,a9 as Zt,af as Xt,az as es,_ as ts}from"./framework.DYY3HcdR.js";import{u as ss,d as ns}from"./theme.6qbPyd-G.js";const is={root:()=>Ct(()=>import("./@localSearchIndexroot.DspHECeV.js"),[])};/*! * tabbable 6.2.0 * @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE */var mt=["input:not([inert])","select:not([inert])","textarea:not([inert])","a[href]:not([inert])","button:not([inert])","[tabindex]:not(slot):not([inert])","audio[controls]:not([inert])","video[controls]:not([inert])",'[contenteditable]:not([contenteditable="false"]):not([inert])',"details>summary:first-of-type:not([inert])","details:not([inert])"],Ne=mt.join(","),gt=typeof Element>"u",ae=gt?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,Fe=!gt&&Element.prototype.getRootNode?function(a){var e;return a==null||(e=a.getRootNode)===null||e===void 0?void 0:e.call(a)}:function(a){return a==null?void 0:a.ownerDocument},Oe=function a(e,t){var s;t===void 0&&(t=!0);var n=e==null||(s=e.getAttribute)===null||s===void 0?void 0:s.call(e,"inert"),r=n===""||n==="true",i=r||t&&e&&a(e.parentNode);return i},rs=function(e){var t,s=e==null||(t=e.getAttribute)===null||t===void 0?void 0:t.call(e,"contenteditable");return s===""||s==="true"},bt=function(e,t,s){if(Oe(e))return[];var n=Array.prototype.slice.apply(e.querySelectorAll(Ne));return t&&ae.call(e,Ne)&&n.unshift(e),n=n.filter(s),n},yt=function a(e,t,s){for(var n=[],r=Array.from(e);r.length;){var i=r.shift();if(!Oe(i,!1))if(i.tagName==="SLOT"){var o=i.assignedElements(),l=o.length?o:i.children,c=a(l,!0,s);s.flatten?n.push.apply(n,c):n.push({scopeParent:i,candidates:c})}else{var h=ae.call(i,Ne);h&&s.filter(i)&&(t||!e.includes(i))&&n.push(i);var m=i.shadowRoot||typeof s.getShadowRoot=="function"&&s.getShadowRoot(i),f=!Oe(m,!1)&&(!s.shadowRootFilter||s.shadowRootFilter(i));if(m&&f){var b=a(m===!0?i.children:m.children,!0,s);s.flatten?n.push.apply(n,b):n.push({scopeParent:i,candidates:b})}else r.unshift.apply(r,i.children)}}return n},wt=function(e){return!isNaN(parseInt(e.getAttribute("tabindex"),10))},re=function(e){if(!e)throw new Error("No node provided");return e.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName)||rs(e))&&!wt(e)?0:e.tabIndex},as=function(e,t){var s=re(e);return s<0&&t&&!wt(e)?0:s},os=function(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex},xt=function(e){return e.tagName==="INPUT"},ls=function(e){return xt(e)&&e.type==="hidden"},cs=function(e){var t=e.tagName==="DETAILS"&&Array.prototype.slice.apply(e.children).some(function(s){return s.tagName==="SUMMARY"});return t},us=function(e,t){for(var s=0;ssummary:first-of-type"),i=r?e.parentElement:e;if(ae.call(i,"details:not([open]) *"))return!0;if(!s||s==="full"||s==="legacy-full"){if(typeof n=="function"){for(var o=e;e;){var l=e.parentElement,c=Fe(e);if(l&&!l.shadowRoot&&n(l)===!0)return ot(e);e.assignedSlot?e=e.assignedSlot:!l&&c!==e.ownerDocument?e=c.host:e=l}e=o}if(ps(e))return!e.getClientRects().length;if(s!=="legacy-full")return!0}else if(s==="non-zero-area")return ot(e);return!1},ms=function(e){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))for(var t=e.parentElement;t;){if(t.tagName==="FIELDSET"&&t.disabled){for(var s=0;s=0)},bs=function a(e){var t=[],s=[];return e.forEach(function(n,r){var i=!!n.scopeParent,o=i?n.scopeParent:n,l=as(o,i),c=i?a(n.candidates):o;l===0?i?t.push.apply(t,c):t.push(o):s.push({documentOrder:r,tabIndex:l,item:n,isScope:i,content:c})}),s.sort(os).reduce(function(n,r){return r.isScope?n.push.apply(n,r.content):n.push(r.content),n},[]).concat(t)},ys=function(e,t){t=t||{};var s;return t.getShadowRoot?s=yt([e],t.includeContainer,{filter:Be.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:gs}):s=bt(e,t.includeContainer,Be.bind(null,t)),bs(s)},ws=function(e,t){t=t||{};var s;return t.getShadowRoot?s=yt([e],t.includeContainer,{filter:Ce.bind(null,t),flatten:!0,getShadowRoot:t.getShadowRoot}):s=bt(e,t.includeContainer,Ce.bind(null,t)),s},oe=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return ae.call(e,Ne)===!1?!1:Be(t,e)},xs=mt.concat("iframe").join(","),Le=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return ae.call(e,xs)===!1?!1:Ce(t,e)};/*! diff --git a/previews/PR479/assets/chunks/theme.Cb66Hod8.js b/previews/PR479/assets/chunks/theme.6qbPyd-G.js similarity index 99% rename from previews/PR479/assets/chunks/theme.Cb66Hod8.js rename to previews/PR479/assets/chunks/theme.6qbPyd-G.js index 768d1a51..ad01d65f 100644 --- a/previews/PR479/assets/chunks/theme.Cb66Hod8.js +++ b/previews/PR479/assets/chunks/theme.6qbPyd-G.js @@ -1,2 +1,2 @@ -const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/VPLocalSearchBox.FXHmopTJ.js","assets/chunks/framework.DYY3HcdR.js"])))=>i.map(i=>d[i]); -import{d as b,o,c as l,r as u,n as T,a as F,t as I,b as $,w as f,e as m,T as pe,_ as k,u as Se,i as Je,f as Ke,g as ve,h as y,j as p,k as i,l as J,m as ie,p as S,q as W,s as q,v as O,x as fe,y as me,z as je,A as ze,B as G,F as C,C as B,D as Ie,E as x,G as g,H,I as Ne,J as ee,K as R,L as j,M as Ze,N as Te,O as le,P as he,Q as Ce,R as te,S as Ye,U as Xe,V as qe,W as we,X as _e,Y as xe,Z as et,$ as tt,a0 as st,a1 as Me,a2 as nt,a3 as at,a4 as ot,a5 as Ae}from"./framework.DYY3HcdR.js";const rt=b({__name:"VPBadge",props:{text:{},type:{default:"tip"}},setup(a){return(e,t)=>(o(),l("span",{class:T(["VPBadge",e.type])},[u(e.$slots,"default",{},()=>[F(I(e.text),1)])],2))}}),it={key:0,class:"VPBackdrop"},lt=b({__name:"VPBackdrop",props:{show:{type:Boolean}},setup(a){return(e,t)=>(o(),$(pe,{name:"fade"},{default:f(()=>[e.show?(o(),l("div",it)):m("",!0)]),_:1}))}}),ct=k(lt,[["__scopeId","data-v-b06cdb19"]]),V=Se;function ut(a,e){let t,n=!1;return()=>{t&&clearTimeout(t),n?t=setTimeout(a,e):(a(),(n=!0)&&setTimeout(()=>n=!1,e))}}function ce(a){return/^\//.test(a)?a:`/${a}`}function be(a){const{pathname:e,search:t,hash:n,protocol:s}=new URL(a,"http://a.com");if(Je(a)||a.startsWith("#")||!s.startsWith("http")||!Ke(e))return a;const{site:r}=V(),c=e.endsWith("/")||e.endsWith(".html")?a:a.replace(/(?:(^\.+)\/)?.*$/,`$1${e.replace(/(\.md)?$/,r.value.cleanUrls?"":".html")}${t}${n}`);return ve(c)}function Z({correspondingLink:a=!1}={}){const{site:e,localeIndex:t,page:n,theme:s,hash:r}=V(),c=y(()=>{var d,h;return{label:(d=e.value.locales[t.value])==null?void 0:d.label,link:((h=e.value.locales[t.value])==null?void 0:h.link)||(t.value==="root"?"/":`/${t.value}/`)}});return{localeLinks:y(()=>Object.entries(e.value.locales).flatMap(([d,h])=>c.value.label===h.label?[]:{text:h.label,link:dt(h.link||(d==="root"?"/":`/${d}/`),s.value.i18nRouting!==!1&&a,n.value.relativePath.slice(c.value.link.length-1),!e.value.cleanUrls)+r.value})),currentLang:c}}function dt(a,e,t,n){return e?a.replace(/\/$/,"")+ce(t.replace(/(^|\/)index\.md$/,"$1").replace(/\.md$/,n?".html":"")):a}const pt={class:"NotFound"},vt={class:"code"},ft={class:"title"},mt={class:"quote"},ht={class:"action"},_t=["href","aria-label"],bt=b({__name:"NotFound",setup(a){const{theme:e}=V(),{currentLang:t}=Z();return(n,s)=>{var r,c,v,d,h;return o(),l("div",pt,[p("p",vt,I(((r=i(e).notFound)==null?void 0:r.code)??"404"),1),p("h1",ft,I(((c=i(e).notFound)==null?void 0:c.title)??"PAGE NOT FOUND"),1),s[0]||(s[0]=p("div",{class:"divider"},null,-1)),p("blockquote",mt,I(((v=i(e).notFound)==null?void 0:v.quote)??"But if you don't change your direction, and if you keep looking, you may end up where you are heading."),1),p("div",ht,[p("a",{class:"link",href:i(ve)(i(t).link),"aria-label":((d=i(e).notFound)==null?void 0:d.linkLabel)??"go to home"},I(((h=i(e).notFound)==null?void 0:h.linkText)??"Take me home"),9,_t)])])}}}),gt=k(bt,[["__scopeId","data-v-951cab6c"]]);function Be(a,e){if(Array.isArray(a))return Y(a);if(a==null)return[];e=ce(e);const t=Object.keys(a).sort((s,r)=>r.split("/").length-s.split("/").length).find(s=>e.startsWith(ce(s))),n=t?a[t]:[];return Array.isArray(n)?Y(n):Y(n.items,n.base)}function kt(a){const e=[];let t=0;for(const n in a){const s=a[n];if(s.items){t=e.push(s);continue}e[t]||e.push({items:[]}),e[t].items.push(s)}return e}function $t(a){const e=[];function t(n){for(const s of n)s.text&&s.link&&e.push({text:s.text,link:s.link,docFooterText:s.docFooterText}),s.items&&t(s.items)}return t(a),e}function ue(a,e){return Array.isArray(e)?e.some(t=>ue(a,t)):J(a,e.link)?!0:e.items?ue(a,e.items):!1}function Y(a,e){return[...a].map(t=>{const n={...t},s=n.base||e;return s&&n.link&&(n.link=s+n.link),n.items&&(n.items=Y(n.items,s)),n})}function D(){const{frontmatter:a,page:e,theme:t}=V(),n=ie("(min-width: 960px)"),s=S(!1),r=y(()=>{const M=t.value.sidebar,N=e.value.relativePath;return M?Be(M,N):[]}),c=S(r.value);W(r,(M,N)=>{JSON.stringify(M)!==JSON.stringify(N)&&(c.value=r.value)});const v=y(()=>a.value.sidebar!==!1&&c.value.length>0&&a.value.layout!=="home"),d=y(()=>h?a.value.aside==null?t.value.aside==="left":a.value.aside==="left":!1),h=y(()=>a.value.layout==="home"?!1:a.value.aside!=null?!!a.value.aside:t.value.aside!==!1),A=y(()=>v.value&&n.value),_=y(()=>v.value?kt(c.value):[]);function P(){s.value=!0}function L(){s.value=!1}function w(){s.value?L():P()}return{isOpen:s,sidebar:c,sidebarGroups:_,hasSidebar:v,hasAside:h,leftAside:d,isSidebarEnabled:A,open:P,close:L,toggle:w}}function yt(a,e){let t;q(()=>{t=a.value?document.activeElement:void 0}),O(()=>{window.addEventListener("keyup",n)}),fe(()=>{window.removeEventListener("keyup",n)});function n(s){s.key==="Escape"&&a.value&&(e(),t==null||t.focus())}}function At(a){const{page:e,hash:t}=V(),n=S(!1),s=y(()=>a.value.collapsed!=null),r=y(()=>!!a.value.link),c=S(!1),v=()=>{c.value=J(e.value.relativePath,a.value.link)};W([e,a,t],v),O(v);const d=y(()=>c.value?!0:a.value.items?ue(e.value.relativePath,a.value.items):!1),h=y(()=>!!(a.value.items&&a.value.items.length));q(()=>{n.value=!!(s.value&&a.value.collapsed)}),me(()=>{(c.value||d.value)&&(n.value=!1)});function A(){s.value&&(n.value=!n.value)}return{collapsed:n,collapsible:s,isLink:r,isActiveLink:c,hasActiveLink:d,hasChildren:h,toggle:A}}function Pt(){const{hasSidebar:a}=D(),e=ie("(min-width: 960px)"),t=ie("(min-width: 1280px)");return{isAsideEnabled:y(()=>!t.value&&!e.value?!1:a.value?t.value:e.value)}}const de=[];function Ee(a){return typeof a.outline=="object"&&!Array.isArray(a.outline)&&a.outline.label||a.outlineTitle||"On this page"}function ge(a){const e=[...document.querySelectorAll(".VPDoc :where(h1,h2,h3,h4,h5,h6)")].filter(t=>t.id&&t.hasChildNodes()).map(t=>{const n=Number(t.tagName[1]);return{element:t,title:Lt(t),link:"#"+t.id,level:n}});return Vt(e,a)}function Lt(a){let e="";for(const t of a.childNodes)if(t.nodeType===1){if(t.classList.contains("VPBadge")||t.classList.contains("header-anchor")||t.classList.contains("ignore-header"))continue;e+=t.textContent}else t.nodeType===3&&(e+=t.textContent);return e.trim()}function Vt(a,e){if(e===!1)return[];const t=(typeof e=="object"&&!Array.isArray(e)?e.level:e)||2,[n,s]=typeof t=="number"?[t,t]:t==="deep"?[2,6]:t;return Nt(a,n,s)}function St(a,e){const{isAsideEnabled:t}=Pt(),n=ut(r,100);let s=null;O(()=>{requestAnimationFrame(r),window.addEventListener("scroll",n)}),je(()=>{c(location.hash)}),fe(()=>{window.removeEventListener("scroll",n)});function r(){if(!t.value)return;const v=window.scrollY,d=window.innerHeight,h=document.body.offsetHeight,A=Math.abs(v+d-h)<1,_=de.map(({element:L,link:w})=>({link:w,top:It(L)})).filter(({top:L})=>!Number.isNaN(L)).sort((L,w)=>L.top-w.top);if(!_.length){c(null);return}if(v<1){c(null);return}if(A){c(_[_.length-1].link);return}let P=null;for(const{link:L,top:w}of _){if(w>v+ze()+4)break;P=L}c(P)}function c(v){s&&s.classList.remove("active"),v==null?s=null:s=a.value.querySelector(`a[href="${decodeURIComponent(v)}"]`);const d=s;d?(d.classList.add("active"),e.value.style.top=d.offsetTop+39+"px",e.value.style.opacity="1"):(e.value.style.top="33px",e.value.style.opacity="0")}}function It(a){let e=0;for(;a!==document.body;){if(a===null)return NaN;e+=a.offsetTop,a=a.offsetParent}return e}function Nt(a,e,t){de.length=0;const n=[],s=[];return a.forEach(r=>{const c={...r,children:[]};let v=s[s.length-1];for(;v&&v.level>=c.level;)s.pop(),v=s[s.length-1];if(c.element.classList.contains("ignore-header")||v&&"shouldIgnore"in v){s.push({level:c.level,shouldIgnore:!0});return}c.level>t||c.level{const s=G("VPDocOutlineItem",!0);return o(),l("ul",{class:T(["VPDocOutlineItem",t.root?"root":"nested"])},[(o(!0),l(C,null,B(t.headers,({children:r,link:c,title:v})=>(o(),l("li",null,[p("a",{class:"outline-link",href:c,onClick:e,title:v},I(v),9,Tt),r!=null&&r.length?(o(),$(s,{key:0,headers:r},null,8,["headers"])):m("",!0)]))),256))],2)}}}),Qe=k(Ct,[["__scopeId","data-v-3f927ebe"]]),wt={class:"content"},Mt={"aria-level":"2",class:"outline-title",id:"doc-outline-aria-label",role:"heading"},Bt=b({__name:"VPDocAsideOutline",setup(a){const{frontmatter:e,theme:t}=V(),n=Ie([]);x(()=>{n.value=ge(e.value.outline??t.value.outline)});const s=S(),r=S();return St(s,r),(c,v)=>(o(),l("nav",{"aria-labelledby":"doc-outline-aria-label",class:T(["VPDocAsideOutline",{"has-outline":n.value.length>0}]),ref_key:"container",ref:s},[p("div",wt,[p("div",{class:"outline-marker",ref_key:"marker",ref:r},null,512),p("div",Mt,I(i(Ee)(i(t))),1),g(Qe,{headers:n.value,root:!0},null,8,["headers"])])],2))}}),Et=k(Bt,[["__scopeId","data-v-b38bf2ff"]]),Qt={class:"VPDocAsideCarbonAds"},Ht=b({__name:"VPDocAsideCarbonAds",props:{carbonAds:{}},setup(a){const e=()=>null;return(t,n)=>(o(),l("div",Qt,[g(i(e),{"carbon-ads":t.carbonAds},null,8,["carbon-ads"])]))}}),Ft={class:"VPDocAside"},Wt=b({__name:"VPDocAside",setup(a){const{theme:e}=V();return(t,n)=>(o(),l("div",Ft,[u(t.$slots,"aside-top",{},void 0,!0),u(t.$slots,"aside-outline-before",{},void 0,!0),g(Et),u(t.$slots,"aside-outline-after",{},void 0,!0),n[0]||(n[0]=p("div",{class:"spacer"},null,-1)),u(t.$slots,"aside-ads-before",{},void 0,!0),i(e).carbonAds?(o(),$(Ht,{key:0,"carbon-ads":i(e).carbonAds},null,8,["carbon-ads"])):m("",!0),u(t.$slots,"aside-ads-after",{},void 0,!0),u(t.$slots,"aside-bottom",{},void 0,!0)]))}}),Ot=k(Wt,[["__scopeId","data-v-6d7b3c46"]]);function Dt(){const{theme:a,page:e}=V();return y(()=>{const{text:t="Edit this page",pattern:n=""}=a.value.editLink||{};let s;return typeof n=="function"?s=n(e.value):s=n.replace(/:path/g,e.value.filePath),{url:s,text:t}})}function Ut(){const{page:a,theme:e,frontmatter:t}=V();return y(()=>{var h,A,_,P,L,w,M,N;const n=Be(e.value.sidebar,a.value.relativePath),s=$t(n),r=Rt(s,E=>E.link.replace(/[?#].*$/,"")),c=r.findIndex(E=>J(a.value.relativePath,E.link)),v=((h=e.value.docFooter)==null?void 0:h.prev)===!1&&!t.value.prev||t.value.prev===!1,d=((A=e.value.docFooter)==null?void 0:A.next)===!1&&!t.value.next||t.value.next===!1;return{prev:v?void 0:{text:(typeof t.value.prev=="string"?t.value.prev:typeof t.value.prev=="object"?t.value.prev.text:void 0)??((_=r[c-1])==null?void 0:_.docFooterText)??((P=r[c-1])==null?void 0:P.text),link:(typeof t.value.prev=="object"?t.value.prev.link:void 0)??((L=r[c-1])==null?void 0:L.link)},next:d?void 0:{text:(typeof t.value.next=="string"?t.value.next:typeof t.value.next=="object"?t.value.next.text:void 0)??((w=r[c+1])==null?void 0:w.docFooterText)??((M=r[c+1])==null?void 0:M.text),link:(typeof t.value.next=="object"?t.value.next.link:void 0)??((N=r[c+1])==null?void 0:N.link)}}})}function Rt(a,e){const t=new Set;return a.filter(n=>{const s=e(n);return t.has(s)?!1:t.add(s)})}const Q=b({__name:"VPLink",props:{tag:{},href:{},noIcon:{type:Boolean},target:{},rel:{}},setup(a){const e=a,t=y(()=>e.tag??(e.href?"a":"span")),n=y(()=>e.href&&Ne.test(e.href)||e.target==="_blank");return(s,r)=>(o(),$(H(t.value),{class:T(["VPLink",{link:s.href,"vp-external-link-icon":n.value,"no-icon":s.noIcon}]),href:s.href?i(be)(s.href):void 0,target:s.target??(n.value?"_blank":void 0),rel:s.rel??(n.value?"noreferrer":void 0)},{default:f(()=>[u(s.$slots,"default")]),_:3},8,["class","href","target","rel"]))}}),Gt={class:"VPLastUpdated"},Jt=["datetime"],Kt=b({__name:"VPDocFooterLastUpdated",setup(a){const{theme:e,page:t,lang:n}=V(),s=y(()=>new Date(t.value.lastUpdated)),r=y(()=>s.value.toISOString()),c=S("");return O(()=>{q(()=>{var v,d,h;c.value=new Intl.DateTimeFormat((d=(v=e.value.lastUpdated)==null?void 0:v.formatOptions)!=null&&d.forceLocale?n.value:void 0,((h=e.value.lastUpdated)==null?void 0:h.formatOptions)??{dateStyle:"short",timeStyle:"short"}).format(s.value)})}),(v,d)=>{var h;return o(),l("p",Gt,[F(I(((h=i(e).lastUpdated)==null?void 0:h.text)||i(e).lastUpdatedText||"Last updated")+": ",1),p("time",{datetime:r.value},I(c.value),9,Jt)])}}}),jt=k(Kt,[["__scopeId","data-v-475f71b8"]]),zt={key:0,class:"VPDocFooter"},Zt={key:0,class:"edit-info"},Yt={key:0,class:"edit-link"},Xt={key:1,class:"last-updated"},qt={key:1,class:"prev-next","aria-labelledby":"doc-footer-aria-label"},xt={class:"pager"},es=["innerHTML"],ts=["innerHTML"],ss={class:"pager"},ns=["innerHTML"],as=["innerHTML"],os=b({__name:"VPDocFooter",setup(a){const{theme:e,page:t,frontmatter:n}=V(),s=Dt(),r=Ut(),c=y(()=>e.value.editLink&&n.value.editLink!==!1),v=y(()=>t.value.lastUpdated),d=y(()=>c.value||v.value||r.value.prev||r.value.next);return(h,A)=>{var _,P,L,w;return d.value?(o(),l("footer",zt,[u(h.$slots,"doc-footer-before",{},void 0,!0),c.value||v.value?(o(),l("div",Zt,[c.value?(o(),l("div",Yt,[g(Q,{class:"edit-link-button",href:i(s).url,"no-icon":!0},{default:f(()=>[A[0]||(A[0]=p("span",{class:"vpi-square-pen edit-link-icon"},null,-1)),F(" "+I(i(s).text),1)]),_:1},8,["href"])])):m("",!0),v.value?(o(),l("div",Xt,[g(jt)])):m("",!0)])):m("",!0),(_=i(r).prev)!=null&&_.link||(P=i(r).next)!=null&&P.link?(o(),l("nav",qt,[A[1]||(A[1]=p("span",{class:"visually-hidden",id:"doc-footer-aria-label"},"Pager",-1)),p("div",xt,[(L=i(r).prev)!=null&&L.link?(o(),$(Q,{key:0,class:"pager-link prev",href:i(r).prev.link},{default:f(()=>{var M;return[p("span",{class:"desc",innerHTML:((M=i(e).docFooter)==null?void 0:M.prev)||"Previous page"},null,8,es),p("span",{class:"title",innerHTML:i(r).prev.text},null,8,ts)]}),_:1},8,["href"])):m("",!0)]),p("div",ss,[(w=i(r).next)!=null&&w.link?(o(),$(Q,{key:0,class:"pager-link next",href:i(r).next.link},{default:f(()=>{var M;return[p("span",{class:"desc",innerHTML:((M=i(e).docFooter)==null?void 0:M.next)||"Next page"},null,8,ns),p("span",{class:"title",innerHTML:i(r).next.text},null,8,as)]}),_:1},8,["href"])):m("",!0)])])):m("",!0)])):m("",!0)}}}),rs=k(os,[["__scopeId","data-v-4f9813fa"]]),is={class:"container"},ls={class:"aside-container"},cs={class:"aside-content"},us={class:"content"},ds={class:"content-container"},ps={class:"main"},vs=b({__name:"VPDoc",setup(a){const{theme:e}=V(),t=ee(),{hasSidebar:n,hasAside:s,leftAside:r}=D(),c=y(()=>t.path.replace(/[./]+/g,"_").replace(/_html$/,""));return(v,d)=>{const h=G("Content");return o(),l("div",{class:T(["VPDoc",{"has-sidebar":i(n),"has-aside":i(s)}])},[u(v.$slots,"doc-top",{},void 0,!0),p("div",is,[i(s)?(o(),l("div",{key:0,class:T(["aside",{"left-aside":i(r)}])},[d[0]||(d[0]=p("div",{class:"aside-curtain"},null,-1)),p("div",ls,[p("div",cs,[g(Ot,null,{"aside-top":f(()=>[u(v.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[u(v.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[u(v.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(v.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(v.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(v.$slots,"aside-ads-after",{},void 0,!0)]),_:3})])])],2)):m("",!0),p("div",us,[p("div",ds,[u(v.$slots,"doc-before",{},void 0,!0),p("main",ps,[g(h,{class:T(["vp-doc",[c.value,i(e).externalLinkIcon&&"external-link-icon-enabled"]])},null,8,["class"])]),g(rs,null,{"doc-footer-before":f(()=>[u(v.$slots,"doc-footer-before",{},void 0,!0)]),_:3}),u(v.$slots,"doc-after",{},void 0,!0)])])]),u(v.$slots,"doc-bottom",{},void 0,!0)],2)}}}),fs=k(vs,[["__scopeId","data-v-83890dd9"]]),ms=b({__name:"VPButton",props:{tag:{},size:{default:"medium"},theme:{default:"brand"},text:{},href:{},target:{},rel:{}},setup(a){const e=a,t=y(()=>e.href&&Ne.test(e.href)),n=y(()=>e.tag||(e.href?"a":"button"));return(s,r)=>(o(),$(H(n.value),{class:T(["VPButton",[s.size,s.theme]]),href:s.href?i(be)(s.href):void 0,target:e.target??(t.value?"_blank":void 0),rel:e.rel??(t.value?"noreferrer":void 0)},{default:f(()=>[F(I(s.text),1)]),_:1},8,["class","href","target","rel"]))}}),hs=k(ms,[["__scopeId","data-v-906d7fb4"]]),_s=["src","alt"],bs=b({inheritAttrs:!1,__name:"VPImage",props:{image:{},alt:{}},setup(a){return(e,t)=>{const n=G("VPImage",!0);return e.image?(o(),l(C,{key:0},[typeof e.image=="string"||"src"in e.image?(o(),l("img",R({key:0,class:"VPImage"},typeof e.image=="string"?e.$attrs:{...e.image,...e.$attrs},{src:i(ve)(typeof e.image=="string"?e.image:e.image.src),alt:e.alt??(typeof e.image=="string"?"":e.image.alt||"")}),null,16,_s)):(o(),l(C,{key:1},[g(n,R({class:"dark",image:e.image.dark,alt:e.image.alt},e.$attrs),null,16,["image","alt"]),g(n,R({class:"light",image:e.image.light,alt:e.image.alt},e.$attrs),null,16,["image","alt"])],64))],64)):m("",!0)}}}),X=k(bs,[["__scopeId","data-v-35a7d0b8"]]),gs={class:"container"},ks={class:"main"},$s={key:0,class:"name"},ys=["innerHTML"],As=["innerHTML"],Ps=["innerHTML"],Ls={key:0,class:"actions"},Vs={key:0,class:"image"},Ss={class:"image-container"},Is=b({__name:"VPHero",props:{name:{},text:{},tagline:{},image:{},actions:{}},setup(a){const e=j("hero-image-slot-exists");return(t,n)=>(o(),l("div",{class:T(["VPHero",{"has-image":t.image||i(e)}])},[p("div",gs,[p("div",ks,[u(t.$slots,"home-hero-info-before",{},void 0,!0),u(t.$slots,"home-hero-info",{},()=>[t.name?(o(),l("h1",$s,[p("span",{innerHTML:t.name,class:"clip"},null,8,ys)])):m("",!0),t.text?(o(),l("p",{key:1,innerHTML:t.text,class:"text"},null,8,As)):m("",!0),t.tagline?(o(),l("p",{key:2,innerHTML:t.tagline,class:"tagline"},null,8,Ps)):m("",!0)],!0),u(t.$slots,"home-hero-info-after",{},void 0,!0),t.actions?(o(),l("div",Ls,[(o(!0),l(C,null,B(t.actions,s=>(o(),l("div",{key:s.link,class:"action"},[g(hs,{tag:"a",size:"medium",theme:s.theme,text:s.text,href:s.link,target:s.target,rel:s.rel},null,8,["theme","text","href","target","rel"])]))),128))])):m("",!0),u(t.$slots,"home-hero-actions-after",{},void 0,!0)]),t.image||i(e)?(o(),l("div",Vs,[p("div",Ss,[n[0]||(n[0]=p("div",{class:"image-bg"},null,-1)),u(t.$slots,"home-hero-image",{},()=>[t.image?(o(),$(X,{key:0,class:"image-src",image:t.image},null,8,["image"])):m("",!0)],!0)])])):m("",!0)])],2))}}),Ns=k(Is,[["__scopeId","data-v-955009fc"]]),Ts=b({__name:"VPHomeHero",setup(a){const{frontmatter:e}=V();return(t,n)=>i(e).hero?(o(),$(Ns,{key:0,class:"VPHomeHero",name:i(e).hero.name,text:i(e).hero.text,tagline:i(e).hero.tagline,image:i(e).hero.image,actions:i(e).hero.actions},{"home-hero-info-before":f(()=>[u(t.$slots,"home-hero-info-before")]),"home-hero-info":f(()=>[u(t.$slots,"home-hero-info")]),"home-hero-info-after":f(()=>[u(t.$slots,"home-hero-info-after")]),"home-hero-actions-after":f(()=>[u(t.$slots,"home-hero-actions-after")]),"home-hero-image":f(()=>[u(t.$slots,"home-hero-image")]),_:3},8,["name","text","tagline","image","actions"])):m("",!0)}}),Cs={class:"box"},ws={key:0,class:"icon"},Ms=["innerHTML"],Bs=["innerHTML"],Es=["innerHTML"],Qs={key:4,class:"link-text"},Hs={class:"link-text-value"},Fs=b({__name:"VPFeature",props:{icon:{},title:{},details:{},link:{},linkText:{},rel:{},target:{}},setup(a){return(e,t)=>(o(),$(Q,{class:"VPFeature",href:e.link,rel:e.rel,target:e.target,"no-icon":!0,tag:e.link?"a":"div"},{default:f(()=>[p("article",Cs,[typeof e.icon=="object"&&e.icon.wrap?(o(),l("div",ws,[g(X,{image:e.icon,alt:e.icon.alt,height:e.icon.height||48,width:e.icon.width||48},null,8,["image","alt","height","width"])])):typeof e.icon=="object"?(o(),$(X,{key:1,image:e.icon,alt:e.icon.alt,height:e.icon.height||48,width:e.icon.width||48},null,8,["image","alt","height","width"])):e.icon?(o(),l("div",{key:2,class:"icon",innerHTML:e.icon},null,8,Ms)):m("",!0),p("h2",{class:"title",innerHTML:e.title},null,8,Bs),e.details?(o(),l("p",{key:3,class:"details",innerHTML:e.details},null,8,Es)):m("",!0),e.linkText?(o(),l("div",Qs,[p("p",Hs,[F(I(e.linkText)+" ",1),t[0]||(t[0]=p("span",{class:"vpi-arrow-right link-text-icon"},null,-1))])])):m("",!0)])]),_:1},8,["href","rel","target","tag"]))}}),Ws=k(Fs,[["__scopeId","data-v-f5e9645b"]]),Os={key:0,class:"VPFeatures"},Ds={class:"container"},Us={class:"items"},Rs=b({__name:"VPFeatures",props:{features:{}},setup(a){const e=a,t=y(()=>{const n=e.features.length;if(n){if(n===2)return"grid-2";if(n===3)return"grid-3";if(n%3===0)return"grid-6";if(n>3)return"grid-4"}else return});return(n,s)=>n.features?(o(),l("div",Os,[p("div",Ds,[p("div",Us,[(o(!0),l(C,null,B(n.features,r=>(o(),l("div",{key:r.title,class:T(["item",[t.value]])},[g(Ws,{icon:r.icon,title:r.title,details:r.details,link:r.link,"link-text":r.linkText,rel:r.rel,target:r.target},null,8,["icon","title","details","link","link-text","rel","target"])],2))),128))])])])):m("",!0)}}),Gs=k(Rs,[["__scopeId","data-v-d0a190d7"]]),Js=b({__name:"VPHomeFeatures",setup(a){const{frontmatter:e}=V();return(t,n)=>i(e).features?(o(),$(Gs,{key:0,class:"VPHomeFeatures",features:i(e).features},null,8,["features"])):m("",!0)}}),Ks=b({__name:"VPHomeContent",setup(a){const{width:e}=Ze({initialWidth:0,includeScrollbar:!1});return(t,n)=>(o(),l("div",{class:"vp-doc container",style:Te(i(e)?{"--vp-offset":`calc(50% - ${i(e)/2}px)`}:{})},[u(t.$slots,"default",{},void 0,!0)],4))}}),js=k(Ks,[["__scopeId","data-v-7a48a447"]]),zs={class:"VPHome"},Zs=b({__name:"VPHome",setup(a){const{frontmatter:e}=V();return(t,n)=>{const s=G("Content");return o(),l("div",zs,[u(t.$slots,"home-hero-before",{},void 0,!0),g(Ts,null,{"home-hero-info-before":f(()=>[u(t.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(t.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(t.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(t.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(t.$slots,"home-hero-image",{},void 0,!0)]),_:3}),u(t.$slots,"home-hero-after",{},void 0,!0),u(t.$slots,"home-features-before",{},void 0,!0),g(Js),u(t.$slots,"home-features-after",{},void 0,!0),i(e).markdownStyles!==!1?(o(),$(js,{key:0},{default:f(()=>[g(s)]),_:1})):(o(),$(s,{key:1}))])}}}),Ys=k(Zs,[["__scopeId","data-v-cbb6ec48"]]),Xs={},qs={class:"VPPage"};function xs(a,e){const t=G("Content");return o(),l("div",qs,[u(a.$slots,"page-top"),g(t),u(a.$slots,"page-bottom")])}const en=k(Xs,[["render",xs]]),tn=b({__name:"VPContent",setup(a){const{page:e,frontmatter:t}=V(),{hasSidebar:n}=D();return(s,r)=>(o(),l("div",{class:T(["VPContent",{"has-sidebar":i(n),"is-home":i(t).layout==="home"}]),id:"VPContent"},[i(e).isNotFound?u(s.$slots,"not-found",{key:0},()=>[g(gt)],!0):i(t).layout==="page"?(o(),$(en,{key:1},{"page-top":f(()=>[u(s.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[u(s.$slots,"page-bottom",{},void 0,!0)]),_:3})):i(t).layout==="home"?(o(),$(Ys,{key:2},{"home-hero-before":f(()=>[u(s.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[u(s.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(s.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(s.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(s.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(s.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[u(s.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[u(s.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[u(s.$slots,"home-features-after",{},void 0,!0)]),_:3})):i(t).layout&&i(t).layout!=="doc"?(o(),$(H(i(t).layout),{key:3})):(o(),$(fs,{key:4},{"doc-top":f(()=>[u(s.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[u(s.$slots,"doc-bottom",{},void 0,!0)]),"doc-footer-before":f(()=>[u(s.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[u(s.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[u(s.$slots,"doc-after",{},void 0,!0)]),"aside-top":f(()=>[u(s.$slots,"aside-top",{},void 0,!0)]),"aside-outline-before":f(()=>[u(s.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(s.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(s.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(s.$slots,"aside-ads-after",{},void 0,!0)]),"aside-bottom":f(()=>[u(s.$slots,"aside-bottom",{},void 0,!0)]),_:3}))],2))}}),sn=k(tn,[["__scopeId","data-v-91765379"]]),nn={class:"container"},an=["innerHTML"],on=["innerHTML"],rn=b({__name:"VPFooter",setup(a){const{theme:e,frontmatter:t}=V(),{hasSidebar:n}=D();return(s,r)=>i(e).footer&&i(t).footer!==!1?(o(),l("footer",{key:0,class:T(["VPFooter",{"has-sidebar":i(n)}])},[p("div",nn,[i(e).footer.message?(o(),l("p",{key:0,class:"message",innerHTML:i(e).footer.message},null,8,an)):m("",!0),i(e).footer.copyright?(o(),l("p",{key:1,class:"copyright",innerHTML:i(e).footer.copyright},null,8,on)):m("",!0)])],2)):m("",!0)}}),ln=k(rn,[["__scopeId","data-v-c970a860"]]);function cn(){const{theme:a,frontmatter:e}=V(),t=Ie([]),n=y(()=>t.value.length>0);return x(()=>{t.value=ge(e.value.outline??a.value.outline)}),{headers:t,hasLocalNav:n}}const un={class:"menu-text"},dn={class:"header"},pn={class:"outline"},vn=b({__name:"VPLocalNavOutlineDropdown",props:{headers:{},navHeight:{}},setup(a){const e=a,{theme:t}=V(),n=S(!1),s=S(0),r=S(),c=S();function v(_){var P;(P=r.value)!=null&&P.contains(_.target)||(n.value=!1)}W(n,_=>{if(_){document.addEventListener("click",v);return}document.removeEventListener("click",v)}),le("Escape",()=>{n.value=!1}),x(()=>{n.value=!1});function d(){n.value=!n.value,s.value=window.innerHeight+Math.min(window.scrollY-e.navHeight,0)}function h(_){_.target.classList.contains("outline-link")&&(c.value&&(c.value.style.transition="none"),he(()=>{n.value=!1}))}function A(){n.value=!1,window.scrollTo({top:0,left:0,behavior:"smooth"})}return(_,P)=>(o(),l("div",{class:"VPLocalNavOutlineDropdown",style:Te({"--vp-vh":s.value+"px"}),ref_key:"main",ref:r},[_.headers.length>0?(o(),l("button",{key:0,onClick:d,class:T({open:n.value})},[p("span",un,I(i(Ee)(i(t))),1),P[0]||(P[0]=p("span",{class:"vpi-chevron-right icon"},null,-1))],2)):(o(),l("button",{key:1,onClick:A},I(i(t).returnToTopLabel||"Return to top"),1)),g(pe,{name:"flyout"},{default:f(()=>[n.value?(o(),l("div",{key:0,ref_key:"items",ref:c,class:"items",onClick:h},[p("div",dn,[p("a",{class:"top-link",href:"#",onClick:A},I(i(t).returnToTopLabel||"Return to top"),1)]),p("div",pn,[g(Qe,{headers:_.headers},null,8,["headers"])])],512)):m("",!0)]),_:1})],4))}}),fn=k(vn,[["__scopeId","data-v-bc9dc845"]]),mn={class:"container"},hn=["aria-expanded"],_n={class:"menu-text"},bn=b({__name:"VPLocalNav",props:{open:{type:Boolean}},emits:["open-menu"],setup(a){const{theme:e,frontmatter:t}=V(),{hasSidebar:n}=D(),{headers:s}=cn(),{y:r}=Ce(),c=S(0);O(()=>{c.value=parseInt(getComputedStyle(document.documentElement).getPropertyValue("--vp-nav-height"))}),x(()=>{s.value=ge(t.value.outline??e.value.outline)});const v=y(()=>s.value.length===0),d=y(()=>v.value&&!n.value),h=y(()=>({VPLocalNav:!0,"has-sidebar":n.value,empty:v.value,fixed:d.value}));return(A,_)=>i(t).layout!=="home"&&(!d.value||i(r)>=c.value)?(o(),l("div",{key:0,class:T(h.value)},[p("div",mn,[i(n)?(o(),l("button",{key:0,class:"menu","aria-expanded":A.open,"aria-controls":"VPSidebarNav",onClick:_[0]||(_[0]=P=>A.$emit("open-menu"))},[_[1]||(_[1]=p("span",{class:"vpi-align-left menu-icon"},null,-1)),p("span",_n,I(i(e).sidebarMenuLabel||"Menu"),1)],8,hn)):m("",!0),g(fn,{headers:i(s),navHeight:c.value},null,8,["headers","navHeight"])])],2)):m("",!0)}}),gn=k(bn,[["__scopeId","data-v-070ab83d"]]);function kn(){const a=S(!1);function e(){a.value=!0,window.addEventListener("resize",s)}function t(){a.value=!1,window.removeEventListener("resize",s)}function n(){a.value?t():e()}function s(){window.outerWidth>=768&&t()}const r=ee();return W(()=>r.path,t),{isScreenOpen:a,openScreen:e,closeScreen:t,toggleScreen:n}}const $n={},yn={class:"VPSwitch",type:"button",role:"switch"},An={class:"check"},Pn={key:0,class:"icon"};function Ln(a,e){return o(),l("button",yn,[p("span",An,[a.$slots.default?(o(),l("span",Pn,[u(a.$slots,"default",{},void 0,!0)])):m("",!0)])])}const Vn=k($n,[["render",Ln],["__scopeId","data-v-4a1c76db"]]),Sn=b({__name:"VPSwitchAppearance",setup(a){const{isDark:e,theme:t}=V(),n=j("toggle-appearance",()=>{e.value=!e.value}),s=S("");return me(()=>{s.value=e.value?t.value.lightModeSwitchTitle||"Switch to light theme":t.value.darkModeSwitchTitle||"Switch to dark theme"}),(r,c)=>(o(),$(Vn,{title:s.value,class:"VPSwitchAppearance","aria-checked":i(e),onClick:i(n)},{default:f(()=>c[0]||(c[0]=[p("span",{class:"vpi-sun sun"},null,-1),p("span",{class:"vpi-moon moon"},null,-1)])),_:1},8,["title","aria-checked","onClick"]))}}),ke=k(Sn,[["__scopeId","data-v-e40a8bb6"]]),In={key:0,class:"VPNavBarAppearance"},Nn=b({__name:"VPNavBarAppearance",setup(a){const{site:e}=V();return(t,n)=>i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(o(),l("div",In,[g(ke)])):m("",!0)}}),Tn=k(Nn,[["__scopeId","data-v-af096f4a"]]),$e=S();let He=!1,re=0;function Cn(a){const e=S(!1);if(te){!He&&wn(),re++;const t=W($e,n=>{var s,r,c;n===a.el.value||(s=a.el.value)!=null&&s.contains(n)?(e.value=!0,(r=a.onFocus)==null||r.call(a)):(e.value=!1,(c=a.onBlur)==null||c.call(a))});fe(()=>{t(),re--,re||Mn()})}return Ye(e)}function wn(){document.addEventListener("focusin",Fe),He=!0,$e.value=document.activeElement}function Mn(){document.removeEventListener("focusin",Fe)}function Fe(){$e.value=document.activeElement}const Bn={class:"VPMenuLink"},En=["innerHTML"],Qn=b({__name:"VPMenuLink",props:{item:{}},setup(a){const{page:e}=V();return(t,n)=>(o(),l("div",Bn,[g(Q,{class:T({active:i(J)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,target:t.item.target,rel:t.item.rel,"no-icon":t.item.noIcon},{default:f(()=>[p("span",{innerHTML:t.item.text},null,8,En)]),_:1},8,["class","href","target","rel","no-icon"])]))}}),se=k(Qn,[["__scopeId","data-v-acbfed09"]]),Hn={class:"VPMenuGroup"},Fn={key:0,class:"title"},Wn=b({__name:"VPMenuGroup",props:{text:{},items:{}},setup(a){return(e,t)=>(o(),l("div",Hn,[e.text?(o(),l("p",Fn,I(e.text),1)):m("",!0),(o(!0),l(C,null,B(e.items,n=>(o(),l(C,null,["link"in n?(o(),$(se,{key:0,item:n},null,8,["item"])):m("",!0)],64))),256))]))}}),On=k(Wn,[["__scopeId","data-v-48c802d0"]]),Dn={class:"VPMenu"},Un={key:0,class:"items"},Rn=b({__name:"VPMenu",props:{items:{}},setup(a){return(e,t)=>(o(),l("div",Dn,[e.items?(o(),l("div",Un,[(o(!0),l(C,null,B(e.items,n=>(o(),l(C,{key:JSON.stringify(n)},["link"in n?(o(),$(se,{key:0,item:n},null,8,["item"])):"component"in n?(o(),$(H(n.component),R({key:1,ref_for:!0},n.props),null,16)):(o(),$(On,{key:2,text:n.text,items:n.items},null,8,["text","items"]))],64))),128))])):m("",!0),u(e.$slots,"default",{},void 0,!0)]))}}),Gn=k(Rn,[["__scopeId","data-v-7dd3104a"]]),Jn=["aria-expanded","aria-label"],Kn={key:0,class:"text"},jn=["innerHTML"],zn={key:1,class:"vpi-more-horizontal icon"},Zn={class:"menu"},Yn=b({__name:"VPFlyout",props:{icon:{},button:{},label:{},items:{}},setup(a){const e=S(!1),t=S();Cn({el:t,onBlur:n});function n(){e.value=!1}return(s,r)=>(o(),l("div",{class:"VPFlyout",ref_key:"el",ref:t,onMouseenter:r[1]||(r[1]=c=>e.value=!0),onMouseleave:r[2]||(r[2]=c=>e.value=!1)},[p("button",{type:"button",class:"button","aria-haspopup":"true","aria-expanded":e.value,"aria-label":s.label,onClick:r[0]||(r[0]=c=>e.value=!e.value)},[s.button||s.icon?(o(),l("span",Kn,[s.icon?(o(),l("span",{key:0,class:T([s.icon,"option-icon"])},null,2)):m("",!0),s.button?(o(),l("span",{key:1,innerHTML:s.button},null,8,jn)):m("",!0),r[3]||(r[3]=p("span",{class:"vpi-chevron-down text-icon"},null,-1))])):(o(),l("span",zn))],8,Jn),p("div",Zn,[g(Gn,{items:s.items},{default:f(()=>[u(s.$slots,"default",{},void 0,!0)]),_:3},8,["items"])])],544))}}),ye=k(Yn,[["__scopeId","data-v-04f5c5e9"]]),Xn=["href","aria-label","innerHTML"],qn=b({__name:"VPSocialLink",props:{icon:{},link:{},ariaLabel:{}},setup(a){const e=a,t=S();O(async()=>{var r;await he();const s=(r=t.value)==null?void 0:r.children[0];s instanceof HTMLElement&&s.className.startsWith("vpi-social-")&&(getComputedStyle(s).maskImage||getComputedStyle(s).webkitMaskImage)==="none"&&s.style.setProperty("--icon",`url('https://api.iconify.design/simple-icons/${e.icon}.svg')`)});const n=y(()=>typeof e.icon=="object"?e.icon.svg:``);return(s,r)=>(o(),l("a",{ref_key:"el",ref:t,class:"VPSocialLink no-icon",href:s.link,"aria-label":s.ariaLabel??(typeof s.icon=="string"?s.icon:""),target:"_blank",rel:"noopener",innerHTML:n.value},null,8,Xn))}}),xn=k(qn,[["__scopeId","data-v-d26d30cb"]]),ea={class:"VPSocialLinks"},ta=b({__name:"VPSocialLinks",props:{links:{}},setup(a){return(e,t)=>(o(),l("div",ea,[(o(!0),l(C,null,B(e.links,({link:n,icon:s,ariaLabel:r})=>(o(),$(xn,{key:n,icon:s,link:n,ariaLabel:r},null,8,["icon","link","ariaLabel"]))),128))]))}}),ne=k(ta,[["__scopeId","data-v-ee7a9424"]]),sa={key:0,class:"group translations"},na={class:"trans-title"},aa={key:1,class:"group"},oa={class:"item appearance"},ra={class:"label"},ia={class:"appearance-action"},la={key:2,class:"group"},ca={class:"item social-links"},ua=b({__name:"VPNavBarExtra",setup(a){const{site:e,theme:t}=V(),{localeLinks:n,currentLang:s}=Z({correspondingLink:!0}),r=y(()=>n.value.length&&s.value.label||e.value.appearance||t.value.socialLinks);return(c,v)=>r.value?(o(),$(ye,{key:0,class:"VPNavBarExtra",label:"extra navigation"},{default:f(()=>[i(n).length&&i(s).label?(o(),l("div",sa,[p("p",na,I(i(s).label),1),(o(!0),l(C,null,B(i(n),d=>(o(),$(se,{key:d.link,item:d},null,8,["item"]))),128))])):m("",!0),i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(o(),l("div",aa,[p("div",oa,[p("p",ra,I(i(t).darkModeSwitchLabel||"Appearance"),1),p("div",ia,[g(ke)])])])):m("",!0),i(t).socialLinks?(o(),l("div",la,[p("div",ca,[g(ne,{class:"social-links-list",links:i(t).socialLinks},null,8,["links"])])])):m("",!0)]),_:1})):m("",!0)}}),da=k(ua,[["__scopeId","data-v-925effce"]]),pa=["aria-expanded"],va=b({__name:"VPNavBarHamburger",props:{active:{type:Boolean}},emits:["click"],setup(a){return(e,t)=>(o(),l("button",{type:"button",class:T(["VPNavBarHamburger",{active:e.active}]),"aria-label":"mobile navigation","aria-expanded":e.active,"aria-controls":"VPNavScreen",onClick:t[0]||(t[0]=n=>e.$emit("click"))},t[1]||(t[1]=[p("span",{class:"container"},[p("span",{class:"top"}),p("span",{class:"middle"}),p("span",{class:"bottom"})],-1)]),10,pa))}}),fa=k(va,[["__scopeId","data-v-5dea55bf"]]),ma=["innerHTML"],ha=b({__name:"VPNavBarMenuLink",props:{item:{}},setup(a){const{page:e}=V();return(t,n)=>(o(),$(Q,{class:T({VPNavBarMenuLink:!0,active:i(J)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,target:t.item.target,rel:t.item.rel,"no-icon":t.item.noIcon,tabindex:"0"},{default:f(()=>[p("span",{innerHTML:t.item.text},null,8,ma)]),_:1},8,["class","href","target","rel","no-icon"]))}}),_a=k(ha,[["__scopeId","data-v-956ec74c"]]),We=b({__name:"VPNavBarMenuGroup",props:{item:{}},setup(a){const e=a,{page:t}=V(),n=r=>"component"in r?!1:"link"in r?J(t.value.relativePath,r.link,!!e.item.activeMatch):r.items.some(n),s=y(()=>n(e.item));return(r,c)=>(o(),$(ye,{class:T({VPNavBarMenuGroup:!0,active:i(J)(i(t).relativePath,r.item.activeMatch,!!r.item.activeMatch)||s.value}),button:r.item.text,items:r.item.items},null,8,["class","button","items"]))}}),ba={key:0,"aria-labelledby":"main-nav-aria-label",class:"VPNavBarMenu"},ga=b({__name:"VPNavBarMenu",setup(a){const{theme:e}=V();return(t,n)=>i(e).nav?(o(),l("nav",ba,[n[0]||(n[0]=p("span",{id:"main-nav-aria-label",class:"visually-hidden"}," Main Navigation ",-1)),(o(!0),l(C,null,B(i(e).nav,s=>(o(),l(C,{key:JSON.stringify(s)},["link"in s?(o(),$(_a,{key:0,item:s},null,8,["item"])):"component"in s?(o(),$(H(s.component),R({key:1,ref_for:!0},s.props),null,16)):(o(),$(We,{key:2,item:s},null,8,["item"]))],64))),128))])):m("",!0)}}),ka=k(ga,[["__scopeId","data-v-e6d46098"]]);function $a(a){const{localeIndex:e,theme:t}=V();function n(s){var w,M,N;const r=s.split("."),c=(w=t.value.search)==null?void 0:w.options,v=c&&typeof c=="object",d=v&&((N=(M=c.locales)==null?void 0:M[e.value])==null?void 0:N.translations)||null,h=v&&c.translations||null;let A=d,_=h,P=a;const L=r.pop();for(const E of r){let U=null;const K=P==null?void 0:P[E];K&&(U=P=K);const ae=_==null?void 0:_[E];ae&&(U=_=ae);const oe=A==null?void 0:A[E];oe&&(U=A=oe),K||(P=U),ae||(_=U),oe||(A=U)}return(A==null?void 0:A[L])??(_==null?void 0:_[L])??(P==null?void 0:P[L])??""}return n}const ya=["aria-label"],Aa={class:"DocSearch-Button-Container"},Pa={class:"DocSearch-Button-Placeholder"},Pe=b({__name:"VPNavBarSearchButton",setup(a){const t=$a({button:{buttonText:"Search",buttonAriaLabel:"Search"}});return(n,s)=>(o(),l("button",{type:"button",class:"DocSearch DocSearch-Button","aria-label":i(t)("button.buttonAriaLabel")},[p("span",Aa,[s[0]||(s[0]=p("span",{class:"vp-icon DocSearch-Search-Icon"},null,-1)),p("span",Pa,I(i(t)("button.buttonText")),1)]),s[1]||(s[1]=p("span",{class:"DocSearch-Button-Keys"},[p("kbd",{class:"DocSearch-Button-Key"}),p("kbd",{class:"DocSearch-Button-Key"},"K")],-1))],8,ya))}}),La={class:"VPNavBarSearch"},Va={id:"local-search"},Sa={key:1,id:"docsearch"},Ia=b({__name:"VPNavBarSearch",setup(a){const e=Xe(()=>qe(()=>import("./VPLocalSearchBox.FXHmopTJ.js"),__vite__mapDeps([0,1]))),t=()=>null,{theme:n}=V(),s=S(!1),r=S(!1);O(()=>{});function c(){s.value||(s.value=!0,setTimeout(v,16))}function v(){const _=new Event("keydown");_.key="k",_.metaKey=!0,window.dispatchEvent(_),setTimeout(()=>{document.querySelector(".DocSearch-Modal")||v()},16)}function d(_){const P=_.target,L=P.tagName;return P.isContentEditable||L==="INPUT"||L==="SELECT"||L==="TEXTAREA"}const h=S(!1);le("k",_=>{(_.ctrlKey||_.metaKey)&&(_.preventDefault(),h.value=!0)}),le("/",_=>{d(_)||(_.preventDefault(),h.value=!0)});const A="local";return(_,P)=>{var L;return o(),l("div",La,[i(A)==="local"?(o(),l(C,{key:0},[h.value?(o(),$(i(e),{key:0,onClose:P[0]||(P[0]=w=>h.value=!1)})):m("",!0),p("div",Va,[g(Pe,{onClick:P[1]||(P[1]=w=>h.value=!0)})])],64)):i(A)==="algolia"?(o(),l(C,{key:1},[s.value?(o(),$(i(t),{key:0,algolia:((L=i(n).search)==null?void 0:L.options)??i(n).algolia,onVnodeBeforeMount:P[2]||(P[2]=w=>r.value=!0)},null,8,["algolia"])):m("",!0),r.value?m("",!0):(o(),l("div",Sa,[g(Pe,{onClick:c})]))],64)):m("",!0)])}}}),Na=b({__name:"VPNavBarSocialLinks",setup(a){const{theme:e}=V();return(t,n)=>i(e).socialLinks?(o(),$(ne,{key:0,class:"VPNavBarSocialLinks",links:i(e).socialLinks},null,8,["links"])):m("",!0)}}),Ta=k(Na,[["__scopeId","data-v-164c457f"]]),Ca=["href","rel","target"],wa=["innerHTML"],Ma={key:2},Ba=b({__name:"VPNavBarTitle",setup(a){const{site:e,theme:t}=V(),{hasSidebar:n}=D(),{currentLang:s}=Z(),r=y(()=>{var d;return typeof t.value.logoLink=="string"?t.value.logoLink:(d=t.value.logoLink)==null?void 0:d.link}),c=y(()=>{var d;return typeof t.value.logoLink=="string"||(d=t.value.logoLink)==null?void 0:d.rel}),v=y(()=>{var d;return typeof t.value.logoLink=="string"||(d=t.value.logoLink)==null?void 0:d.target});return(d,h)=>(o(),l("div",{class:T(["VPNavBarTitle",{"has-sidebar":i(n)}])},[p("a",{class:"title",href:r.value??i(be)(i(s).link),rel:c.value,target:v.value},[u(d.$slots,"nav-bar-title-before",{},void 0,!0),i(t).logo?(o(),$(X,{key:0,class:"logo",image:i(t).logo},null,8,["image"])):m("",!0),i(t).siteTitle?(o(),l("span",{key:1,innerHTML:i(t).siteTitle},null,8,wa)):i(t).siteTitle===void 0?(o(),l("span",Ma,I(i(e).title),1)):m("",!0),u(d.$slots,"nav-bar-title-after",{},void 0,!0)],8,Ca)],2))}}),Ea=k(Ba,[["__scopeId","data-v-0f4f798b"]]),Qa={class:"items"},Ha={class:"title"},Fa=b({__name:"VPNavBarTranslations",setup(a){const{theme:e}=V(),{localeLinks:t,currentLang:n}=Z({correspondingLink:!0});return(s,r)=>i(t).length&&i(n).label?(o(),$(ye,{key:0,class:"VPNavBarTranslations",icon:"vpi-languages",label:i(e).langMenuLabel||"Change language"},{default:f(()=>[p("div",Qa,[p("p",Ha,I(i(n).label),1),(o(!0),l(C,null,B(i(t),c=>(o(),$(se,{key:c.link,item:c},null,8,["item"]))),128))])]),_:1},8,["label"])):m("",!0)}}),Wa=k(Fa,[["__scopeId","data-v-c80d9ad0"]]),Oa={class:"wrapper"},Da={class:"container"},Ua={class:"title"},Ra={class:"content"},Ga={class:"content-body"},Ja=b({__name:"VPNavBar",props:{isScreenOpen:{type:Boolean}},emits:["toggle-screen"],setup(a){const e=a,{y:t}=Ce(),{hasSidebar:n}=D(),{frontmatter:s}=V(),r=S({});return me(()=>{r.value={"has-sidebar":n.value,home:s.value.layout==="home",top:t.value===0,"screen-open":e.isScreenOpen}}),(c,v)=>(o(),l("div",{class:T(["VPNavBar",r.value])},[p("div",Oa,[p("div",Da,[p("div",Ua,[g(Ea,null,{"nav-bar-title-before":f(()=>[u(c.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(c.$slots,"nav-bar-title-after",{},void 0,!0)]),_:3})]),p("div",Ra,[p("div",Ga,[u(c.$slots,"nav-bar-content-before",{},void 0,!0),g(Ia,{class:"search"}),g(ka,{class:"menu"}),g(Wa,{class:"translations"}),g(Tn,{class:"appearance"}),g(Ta,{class:"social-links"}),g(da,{class:"extra"}),u(c.$slots,"nav-bar-content-after",{},void 0,!0),g(fa,{class:"hamburger",active:c.isScreenOpen,onClick:v[0]||(v[0]=d=>c.$emit("toggle-screen"))},null,8,["active"])])])])]),v[1]||(v[1]=p("div",{class:"divider"},[p("div",{class:"divider-line"})],-1))],2))}}),Ka=k(Ja,[["__scopeId","data-v-822684d1"]]),ja={key:0,class:"VPNavScreenAppearance"},za={class:"text"},Za=b({__name:"VPNavScreenAppearance",setup(a){const{site:e,theme:t}=V();return(n,s)=>i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(o(),l("div",ja,[p("p",za,I(i(t).darkModeSwitchLabel||"Appearance"),1),g(ke)])):m("",!0)}}),Ya=k(Za,[["__scopeId","data-v-ffb44008"]]),Xa=["innerHTML"],qa=b({__name:"VPNavScreenMenuLink",props:{item:{}},setup(a){const e=j("close-screen");return(t,n)=>(o(),$(Q,{class:"VPNavScreenMenuLink",href:t.item.link,target:t.item.target,rel:t.item.rel,"no-icon":t.item.noIcon,onClick:i(e)},{default:f(()=>[p("span",{innerHTML:t.item.text},null,8,Xa)]),_:1},8,["href","target","rel","no-icon","onClick"]))}}),xa=k(qa,[["__scopeId","data-v-735512b8"]]),eo=["innerHTML"],to=b({__name:"VPNavScreenMenuGroupLink",props:{item:{}},setup(a){const e=j("close-screen");return(t,n)=>(o(),$(Q,{class:"VPNavScreenMenuGroupLink",href:t.item.link,target:t.item.target,rel:t.item.rel,"no-icon":t.item.noIcon,onClick:i(e)},{default:f(()=>[p("span",{innerHTML:t.item.text},null,8,eo)]),_:1},8,["href","target","rel","no-icon","onClick"]))}}),Oe=k(to,[["__scopeId","data-v-372ae7c0"]]),so={class:"VPNavScreenMenuGroupSection"},no={key:0,class:"title"},ao=b({__name:"VPNavScreenMenuGroupSection",props:{text:{},items:{}},setup(a){return(e,t)=>(o(),l("div",so,[e.text?(o(),l("p",no,I(e.text),1)):m("",!0),(o(!0),l(C,null,B(e.items,n=>(o(),$(Oe,{key:n.text,item:n},null,8,["item"]))),128))]))}}),oo=k(ao,[["__scopeId","data-v-4b8941ac"]]),ro=["aria-controls","aria-expanded"],io=["innerHTML"],lo=["id"],co={key:0,class:"item"},uo={key:1,class:"item"},po={key:2,class:"group"},vo=b({__name:"VPNavScreenMenuGroup",props:{text:{},items:{}},setup(a){const e=a,t=S(!1),n=y(()=>`NavScreenGroup-${e.text.replace(" ","-").toLowerCase()}`);function s(){t.value=!t.value}return(r,c)=>(o(),l("div",{class:T(["VPNavScreenMenuGroup",{open:t.value}])},[p("button",{class:"button","aria-controls":n.value,"aria-expanded":t.value,onClick:s},[p("span",{class:"button-text",innerHTML:r.text},null,8,io),c[0]||(c[0]=p("span",{class:"vpi-plus button-icon"},null,-1))],8,ro),p("div",{id:n.value,class:"items"},[(o(!0),l(C,null,B(r.items,v=>(o(),l(C,{key:JSON.stringify(v)},["link"in v?(o(),l("div",co,[g(Oe,{item:v},null,8,["item"])])):"component"in v?(o(),l("div",uo,[(o(),$(H(v.component),R({ref_for:!0},v.props,{"screen-menu":""}),null,16))])):(o(),l("div",po,[g(oo,{text:v.text,items:v.items},null,8,["text","items"])]))],64))),128))],8,lo)],2))}}),De=k(vo,[["__scopeId","data-v-875057a5"]]),fo={key:0,class:"VPNavScreenMenu"},mo=b({__name:"VPNavScreenMenu",setup(a){const{theme:e}=V();return(t,n)=>i(e).nav?(o(),l("nav",fo,[(o(!0),l(C,null,B(i(e).nav,s=>(o(),l(C,{key:JSON.stringify(s)},["link"in s?(o(),$(xa,{key:0,item:s},null,8,["item"])):"component"in s?(o(),$(H(s.component),R({key:1,ref_for:!0},s.props,{"screen-menu":""}),null,16)):(o(),$(De,{key:2,text:s.text||"",items:s.items},null,8,["text","items"]))],64))),128))])):m("",!0)}}),ho=b({__name:"VPNavScreenSocialLinks",setup(a){const{theme:e}=V();return(t,n)=>i(e).socialLinks?(o(),$(ne,{key:0,class:"VPNavScreenSocialLinks",links:i(e).socialLinks},null,8,["links"])):m("",!0)}}),_o={class:"list"},bo=b({__name:"VPNavScreenTranslations",setup(a){const{localeLinks:e,currentLang:t}=Z({correspondingLink:!0}),n=S(!1);function s(){n.value=!n.value}return(r,c)=>i(e).length&&i(t).label?(o(),l("div",{key:0,class:T(["VPNavScreenTranslations",{open:n.value}])},[p("button",{class:"title",onClick:s},[c[0]||(c[0]=p("span",{class:"vpi-languages icon lang"},null,-1)),F(" "+I(i(t).label)+" ",1),c[1]||(c[1]=p("span",{class:"vpi-chevron-down icon chevron"},null,-1))]),p("ul",_o,[(o(!0),l(C,null,B(i(e),v=>(o(),l("li",{key:v.link,class:"item"},[g(Q,{class:"link",href:v.link},{default:f(()=>[F(I(v.text),1)]),_:2},1032,["href"])]))),128))])],2)):m("",!0)}}),go=k(bo,[["__scopeId","data-v-362991c2"]]),ko={class:"container"},$o=b({__name:"VPNavScreen",props:{open:{type:Boolean}},setup(a){const e=S(null),t=we(te?document.body:null);return(n,s)=>(o(),$(pe,{name:"fade",onEnter:s[0]||(s[0]=r=>t.value=!0),onAfterLeave:s[1]||(s[1]=r=>t.value=!1)},{default:f(()=>[n.open?(o(),l("div",{key:0,class:"VPNavScreen",ref_key:"screen",ref:e,id:"VPNavScreen"},[p("div",ko,[u(n.$slots,"nav-screen-content-before",{},void 0,!0),g(mo,{class:"menu"}),g(go,{class:"translations"}),g(Ya,{class:"appearance"}),g(ho,{class:"social-links"}),u(n.$slots,"nav-screen-content-after",{},void 0,!0)])],512)):m("",!0)]),_:3}))}}),yo=k($o,[["__scopeId","data-v-833aabba"]]),Ao={key:0,class:"VPNav"},Po=b({__name:"VPNav",setup(a){const{isScreenOpen:e,closeScreen:t,toggleScreen:n}=kn(),{frontmatter:s}=V(),r=y(()=>s.value.navbar!==!1);return _e("close-screen",t),q(()=>{te&&document.documentElement.classList.toggle("hide-nav",!r.value)}),(c,v)=>r.value?(o(),l("header",Ao,[g(Ka,{"is-screen-open":i(e),onToggleScreen:i(n)},{"nav-bar-title-before":f(()=>[u(c.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(c.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[u(c.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[u(c.$slots,"nav-bar-content-after",{},void 0,!0)]),_:3},8,["is-screen-open","onToggleScreen"]),g(yo,{open:i(e)},{"nav-screen-content-before":f(()=>[u(c.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[u(c.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3},8,["open"])])):m("",!0)}}),Lo=k(Po,[["__scopeId","data-v-f1e365da"]]),Vo=["role","tabindex"],So={key:1,class:"items"},Io=b({__name:"VPSidebarItem",props:{item:{},depth:{}},setup(a){const e=a,{collapsed:t,collapsible:n,isLink:s,isActiveLink:r,hasActiveLink:c,hasChildren:v,toggle:d}=At(y(()=>e.item)),h=y(()=>v.value?"section":"div"),A=y(()=>s.value?"a":"div"),_=y(()=>v.value?e.depth+2===7?"p":`h${e.depth+2}`:"p"),P=y(()=>s.value?void 0:"button"),L=y(()=>[[`level-${e.depth}`],{collapsible:n.value},{collapsed:t.value},{"is-link":s.value},{"is-active":r.value},{"has-active":c.value}]);function w(N){"key"in N&&N.key!=="Enter"||!e.item.link&&d()}function M(){e.item.link&&d()}return(N,E)=>{const U=G("VPSidebarItem",!0);return o(),$(H(h.value),{class:T(["VPSidebarItem",L.value])},{default:f(()=>[N.item.text?(o(),l("div",R({key:0,class:"item",role:P.value},xe(N.item.items?{click:w,keydown:w}:{},!0),{tabindex:N.item.items&&0}),[E[1]||(E[1]=p("div",{class:"indicator"},null,-1)),N.item.link?(o(),$(Q,{key:0,tag:A.value,class:"link",href:N.item.link,rel:N.item.rel,target:N.item.target},{default:f(()=>[(o(),$(H(_.value),{class:"text",innerHTML:N.item.text},null,8,["innerHTML"]))]),_:1},8,["tag","href","rel","target"])):(o(),$(H(_.value),{key:1,class:"text",innerHTML:N.item.text},null,8,["innerHTML"])),N.item.collapsed!=null&&N.item.items&&N.item.items.length?(o(),l("div",{key:2,class:"caret",role:"button","aria-label":"toggle section",onClick:M,onKeydown:et(M,["enter"]),tabindex:"0"},E[0]||(E[0]=[p("span",{class:"vpi-chevron-right caret-icon"},null,-1)]),32)):m("",!0)],16,Vo)):m("",!0),N.item.items&&N.item.items.length?(o(),l("div",So,[N.depth<5?(o(!0),l(C,{key:0},B(N.item.items,K=>(o(),$(U,{key:K.text,item:K,depth:N.depth+1},null,8,["item","depth"]))),128)):m("",!0)])):m("",!0)]),_:1},8,["class"])}}}),No=k(Io,[["__scopeId","data-v-196b2e5f"]]),To=b({__name:"VPSidebarGroup",props:{items:{}},setup(a){const e=S(!0);let t=null;return O(()=>{t=setTimeout(()=>{t=null,e.value=!1},300)}),tt(()=>{t!=null&&(clearTimeout(t),t=null)}),(n,s)=>(o(!0),l(C,null,B(n.items,r=>(o(),l("div",{key:r.text,class:T(["group",{"no-transition":e.value}])},[g(No,{item:r,depth:0},null,8,["item"])],2))),128))}}),Co=k(To,[["__scopeId","data-v-9e426adc"]]),wo={class:"nav",id:"VPSidebarNav","aria-labelledby":"sidebar-aria-label",tabindex:"-1"},Mo=b({__name:"VPSidebar",props:{open:{type:Boolean}},setup(a){const{sidebarGroups:e,hasSidebar:t}=D(),n=a,s=S(null),r=we(te?document.body:null);W([n,s],()=>{var v;n.open?(r.value=!0,(v=s.value)==null||v.focus()):r.value=!1},{immediate:!0,flush:"post"});const c=S(0);return W(e,()=>{c.value+=1},{deep:!0}),(v,d)=>i(t)?(o(),l("aside",{key:0,class:T(["VPSidebar",{open:v.open}]),ref_key:"navEl",ref:s,onClick:d[0]||(d[0]=st(()=>{},["stop"]))},[d[2]||(d[2]=p("div",{class:"curtain"},null,-1)),p("nav",wo,[d[1]||(d[1]=p("span",{class:"visually-hidden",id:"sidebar-aria-label"}," Sidebar Navigation ",-1)),u(v.$slots,"sidebar-nav-before",{},void 0,!0),(o(),$(Co,{items:i(e),key:c.value},null,8,["items"])),u(v.$slots,"sidebar-nav-after",{},void 0,!0)])],2)):m("",!0)}}),Bo=k(Mo,[["__scopeId","data-v-18756405"]]),Eo=b({__name:"VPSkipLink",setup(a){const e=ee(),t=S();W(()=>e.path,()=>t.value.focus());function n({target:s}){const r=document.getElementById(decodeURIComponent(s.hash).slice(1));if(r){const c=()=>{r.removeAttribute("tabindex"),r.removeEventListener("blur",c)};r.setAttribute("tabindex","-1"),r.addEventListener("blur",c),r.focus(),window.scrollTo(0,0)}}return(s,r)=>(o(),l(C,null,[p("span",{ref_key:"backToTop",ref:t,tabindex:"-1"},null,512),p("a",{href:"#VPContent",class:"VPSkipLink visually-hidden",onClick:n}," Skip to content ")],64))}}),Qo=k(Eo,[["__scopeId","data-v-c3508ec8"]]),Ho=b({__name:"Layout",setup(a){const{isOpen:e,open:t,close:n}=D(),s=ee();W(()=>s.path,n),yt(e,n);const{frontmatter:r}=V(),c=Me(),v=y(()=>!!c["home-hero-image"]);return _e("hero-image-slot-exists",v),(d,h)=>{const A=G("Content");return i(r).layout!==!1?(o(),l("div",{key:0,class:T(["Layout",i(r).pageClass])},[u(d.$slots,"layout-top",{},void 0,!0),g(Qo),g(ct,{class:"backdrop",show:i(e),onClick:i(n)},null,8,["show","onClick"]),g(Lo,null,{"nav-bar-title-before":f(()=>[u(d.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(d.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[u(d.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[u(d.$slots,"nav-bar-content-after",{},void 0,!0)]),"nav-screen-content-before":f(()=>[u(d.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[u(d.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3}),g(gn,{open:i(e),onOpenMenu:i(t)},null,8,["open","onOpenMenu"]),g(Bo,{open:i(e)},{"sidebar-nav-before":f(()=>[u(d.$slots,"sidebar-nav-before",{},void 0,!0)]),"sidebar-nav-after":f(()=>[u(d.$slots,"sidebar-nav-after",{},void 0,!0)]),_:3},8,["open"]),g(sn,null,{"page-top":f(()=>[u(d.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[u(d.$slots,"page-bottom",{},void 0,!0)]),"not-found":f(()=>[u(d.$slots,"not-found",{},void 0,!0)]),"home-hero-before":f(()=>[u(d.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[u(d.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(d.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(d.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(d.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(d.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[u(d.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[u(d.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[u(d.$slots,"home-features-after",{},void 0,!0)]),"doc-footer-before":f(()=>[u(d.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[u(d.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[u(d.$slots,"doc-after",{},void 0,!0)]),"doc-top":f(()=>[u(d.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[u(d.$slots,"doc-bottom",{},void 0,!0)]),"aside-top":f(()=>[u(d.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[u(d.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[u(d.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(d.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(d.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(d.$slots,"aside-ads-after",{},void 0,!0)]),_:3}),g(ln),u(d.$slots,"layout-bottom",{},void 0,!0)],2)):(o(),$(A,{key:1}))}}}),Fo=k(Ho,[["__scopeId","data-v-a9a9e638"]]),Wo={},Oo={class:"VPTeamPage"};function Do(a,e){return o(),l("div",Oo,[u(a.$slots,"default")])}const Fr=k(Wo,[["render",Do],["__scopeId","data-v-c2f8e101"]]),Uo={},Ro={class:"VPTeamPageTitle"},Go={key:0,class:"title"},Jo={key:1,class:"lead"};function Ko(a,e){return o(),l("div",Ro,[a.$slots.title?(o(),l("h1",Go,[u(a.$slots,"title",{},void 0,!0)])):m("",!0),a.$slots.lead?(o(),l("p",Jo,[u(a.$slots,"lead",{},void 0,!0)])):m("",!0)])}const Wr=k(Uo,[["render",Ko],["__scopeId","data-v-e277e15c"]]),jo={},zo={class:"VPTeamPageSection"},Zo={class:"title"},Yo={key:0,class:"title-text"},Xo={key:0,class:"lead"},qo={key:1,class:"members"};function xo(a,e){return o(),l("section",zo,[p("div",Zo,[e[0]||(e[0]=p("div",{class:"title-line"},null,-1)),a.$slots.title?(o(),l("h2",Yo,[u(a.$slots,"title",{},void 0,!0)])):m("",!0)]),a.$slots.lead?(o(),l("p",Xo,[u(a.$slots,"lead",{},void 0,!0)])):m("",!0),a.$slots.members?(o(),l("div",qo,[u(a.$slots,"members",{},void 0,!0)])):m("",!0)])}const Or=k(jo,[["render",xo],["__scopeId","data-v-d43bc49d"]]),er={class:"profile"},tr={class:"avatar"},sr=["src","alt"],nr={class:"data"},ar={class:"name"},or={key:0,class:"affiliation"},rr={key:0,class:"title"},ir={key:1,class:"at"},lr=["innerHTML"],cr={key:2,class:"links"},ur={key:0,class:"sp"},dr=b({__name:"VPTeamMembersItem",props:{size:{default:"medium"},member:{}},setup(a){return(e,t)=>(o(),l("article",{class:T(["VPTeamMembersItem",[e.size]])},[p("div",er,[p("figure",tr,[p("img",{class:"avatar-img",src:e.member.avatar,alt:e.member.name},null,8,sr)]),p("div",nr,[p("h1",ar,I(e.member.name),1),e.member.title||e.member.org?(o(),l("p",or,[e.member.title?(o(),l("span",rr,I(e.member.title),1)):m("",!0),e.member.title&&e.member.org?(o(),l("span",ir," @ ")):m("",!0),e.member.org?(o(),$(Q,{key:2,class:T(["org",{link:e.member.orgLink}]),href:e.member.orgLink,"no-icon":""},{default:f(()=>[F(I(e.member.org),1)]),_:1},8,["class","href"])):m("",!0)])):m("",!0),e.member.desc?(o(),l("p",{key:1,class:"desc",innerHTML:e.member.desc},null,8,lr)):m("",!0),e.member.links?(o(),l("div",cr,[g(ne,{links:e.member.links},null,8,["links"])])):m("",!0)])]),e.member.sponsor?(o(),l("div",ur,[g(Q,{class:"sp-link",href:e.member.sponsor,"no-icon":""},{default:f(()=>[t[0]||(t[0]=p("span",{class:"vpi-heart sp-icon"},null,-1)),F(" "+I(e.member.actionText||"Sponsor"),1)]),_:1},8,["href"])])):m("",!0)],2))}}),pr=k(dr,[["__scopeId","data-v-f9987cb6"]]),vr={class:"container"},fr=b({__name:"VPTeamMembers",props:{size:{default:"medium"},members:{}},setup(a){const e=a,t=y(()=>[e.size,`count-${e.members.length}`]);return(n,s)=>(o(),l("div",{class:T(["VPTeamMembers",t.value])},[p("div",vr,[(o(!0),l(C,null,B(n.members,r=>(o(),l("div",{key:r.name,class:"item"},[g(pr,{size:n.size,member:r},null,8,["size","member"])]))),128))])],2))}}),Dr=k(fr,[["__scopeId","data-v-fba19bad"]]),Le={Layout:Fo,enhanceApp:({app:a})=>{a.component("Badge",rt)}},mr={},hr={style:{"text-align":"center"}};function _r(a,e){const t=G("font");return o(),l(C,null,[e[1]||(e[1]=p("br",null,null,-1)),p("h1",hr,[p("strong",null,[g(t,{color:"orange"},{default:f(()=>e[0]||(e[0]=[F(" Package Ecosystem")])),_:1})])]),e[2]||(e[2]=nt('

Read n-d array like-data

DiskArrays.jl

Get your chunks!

Named Dimensions

DimensionalData.jl

Select & Index!

Out of memory data

Zarr.jl

Chunkerd, compressed !

Rasterized spatial data

Rasters.jl

Read and manipulate !

Array-oriented data

NetCDF.jl

Scientific binary data.

Raster and vector data

ArchGDAL.jl

GDAL in Julia.

An interface for

GeoInterface.jl

geospatial data in Julia.

A higher level interface

GRIBDatasets.jl

for reading GRIB files.

Array-oriented data

NCDatasets.jl

Scientific binary data.

',9))],64)}const br=k(mr,[["render",_r]]),gr=b({__name:"VersionPicker",props:{screenMenu:{type:Boolean}},setup(a){const e=S([]),t=S("Versions"),n=S(!1);Se();const s=()=>typeof window<"u"&&(window.location.hostname==="localhost"||window.location.hostname==="127.0.0.1"),r=()=>{if(typeof window>"u")return"";const{origin:d,pathname:h}=window.location;if(d.includes("github.io")){const A=h.split("/").filter(Boolean),_=A.length>0?`/${A[0]}/`:"/";return`${d}${_}`}else return d},c=()=>new Promise(d=>{if(s()){d(!1);return}const h=setInterval(()=>{window.DOC_VERSIONS&&window.DOCUMENTER_CURRENT_VERSION&&(clearInterval(h),d(!0))},100);setTimeout(()=>{clearInterval(h),d(!1)},5e3)});return O(async()=>{if(!(typeof window>"u")){try{if(s()){const d=["dev"];e.value=d.map(h=>({text:h,link:"/"})),t.value="dev"}else{const d=await c(),h=y(()=>r());if(d&&window.DOC_VERSIONS&&window.DOCUMENTER_CURRENT_VERSION)e.value=window.DOC_VERSIONS.map(A=>({text:A,link:`${h.value}/${A}/`})),t.value=window.DOCUMENTER_CURRENT_VERSION;else{const A=["dev"];e.value=A.map(_=>({text:_,link:`${h.value}/${_}/`})),t.value="dev"}}}catch(d){console.warn("Error loading versions:",d);const h=["dev"],A=y(()=>r());e.value=h.map(_=>({text:_,link:`${A.value}/${_}/`})),t.value="dev"}n.value=!0}}),(d,h)=>n.value?(o(),l(C,{key:0},[!d.screenMenu&&e.value.length>0?(o(),$(We,{key:0,item:{text:t.value,items:e.value},class:"VPVersionPicker"},null,8,["item"])):d.screenMenu&&e.value.length>0?(o(),$(De,{key:1,text:t.value,items:e.value,class:"VPVersionPicker"},null,8,["text","items"])):m("",!0)],64)):m("",!0)}}),kr=k(gr,[["__scopeId","data-v-f465cb49"]]),$r=a=>{if(typeof document>"u")return{stabilizeScrollPosition:s=>async(...r)=>s(...r)};const e=document.documentElement;return{stabilizeScrollPosition:n=>async(...s)=>{const r=n(...s),c=a.value;if(!c)return r;const v=c.offsetTop-e.scrollTop;return await he(),e.scrollTop=c.offsetTop-v,r}}},Ue="vitepress:tabSharedState",z=typeof localStorage<"u"?localStorage:null,Re="vitepress:tabsSharedState",yr=()=>{const a=z==null?void 0:z.getItem(Re);if(a)try{return JSON.parse(a)}catch{}return{}},Ar=a=>{z&&z.setItem(Re,JSON.stringify(a))},Pr=a=>{const e=at({});W(()=>e.content,(t,n)=>{t&&n&&Ar(t)},{deep:!0}),a.provide(Ue,e)},Lr=(a,e)=>{const t=j(Ue);if(!t)throw new Error("[vitepress-plugin-tabs] TabsSharedState should be injected");O(()=>{t.content||(t.content=yr())});const n=S(),s=y({get(){var d;const c=e.value,v=a.value;if(c){const h=(d=t.content)==null?void 0:d[c];if(h&&v.includes(h))return h}else{const h=n.value;if(h)return h}return v[0]},set(c){const v=e.value;v?t.content&&(t.content[v]=c):n.value=c}});return{selected:s,select:c=>{s.value=c}}};let Ve=0;const Vr=()=>(Ve++,""+Ve);function Sr(){const a=Me();return y(()=>{var n;const t=(n=a.default)==null?void 0:n.call(a);return t?t.filter(s=>typeof s.type=="object"&&"__name"in s.type&&s.type.__name==="PluginTabsTab"&&s.props).map(s=>{var r;return(r=s.props)==null?void 0:r.label}):[]})}const Ge="vitepress:tabSingleState",Ir=a=>{_e(Ge,a)},Nr=()=>{const a=j(Ge);if(!a)throw new Error("[vitepress-plugin-tabs] TabsSingleState should be injected");return a},Tr={class:"plugin-tabs"},Cr=["id","aria-selected","aria-controls","tabindex","onClick"],wr=b({__name:"PluginTabs",props:{sharedStateKey:{}},setup(a){const e=a,t=Sr(),{selected:n,select:s}=Lr(t,ot(e,"sharedStateKey")),r=S(),{stabilizeScrollPosition:c}=$r(r),v=c(s),d=S([]),h=_=>{var w;const P=t.value.indexOf(n.value);let L;_.key==="ArrowLeft"?L=P>=1?P-1:t.value.length-1:_.key==="ArrowRight"&&(L=P(o(),l("div",Tr,[p("div",{ref_key:"tablist",ref:r,class:"plugin-tabs--tab-list",role:"tablist",onKeydown:h},[(o(!0),l(C,null,B(i(t),L=>(o(),l("button",{id:`tab-${L}-${i(A)}`,ref_for:!0,ref_key:"buttonRefs",ref:d,key:L,role:"tab",class:"plugin-tabs--tab","aria-selected":L===i(n),"aria-controls":`panel-${L}-${i(A)}`,tabindex:L===i(n)?0:-1,onClick:()=>i(v)(L)},I(L),9,Cr))),128))],544),u(_.$slots,"default")]))}}),Mr=["id","aria-labelledby"],Br=b({__name:"PluginTabsTab",props:{label:{}},setup(a){const{uid:e,selected:t}=Nr();return(n,s)=>i(t)===n.label?(o(),l("div",{key:0,id:`panel-${n.label}-${i(e)}`,class:"plugin-tabs--content",role:"tabpanel",tabindex:"0","aria-labelledby":`tab-${n.label}-${i(e)}`},[u(n.$slots,"default",{},void 0,!0)],8,Mr)):m("",!0)}}),Er=k(Br,[["__scopeId","data-v-9b0d03d2"]]),Qr=a=>{Pr(a),a.component("PluginTabs",wr),a.component("PluginTabsTab",Er)},Ur={extends:Le,Layout(){return Ae(Le.Layout,null,{"aside-ads-before":()=>Ae(br)})},enhanceApp({app:a,router:e,siteData:t}){Qr(a),a.component("VersionPicker",kr)}};export{Ur as R,Wr as V,Dr as a,Or as b,Fr as c,$a as d,V as u}; +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/VPLocalSearchBox.DqU7th2f.js","assets/chunks/framework.DYY3HcdR.js"])))=>i.map(i=>d[i]); +import{d as b,o,c as l,r as u,n as T,a as F,t as I,b as $,w as f,e as m,T as pe,_ as k,u as Se,i as Je,f as Ke,g as ve,h as y,j as p,k as i,l as J,m as ie,p as S,q as W,s as q,v as O,x as fe,y as me,z as je,A as ze,B as G,F as C,C as B,D as Ie,E as x,G as g,H,I as Ne,J as ee,K as R,L as j,M as Ze,N as Te,O as le,P as he,Q as Ce,R as te,S as Ye,U as Xe,V as qe,W as we,X as _e,Y as xe,Z as et,$ as tt,a0 as st,a1 as Me,a2 as nt,a3 as at,a4 as ot,a5 as Ae}from"./framework.DYY3HcdR.js";const rt=b({__name:"VPBadge",props:{text:{},type:{default:"tip"}},setup(a){return(e,t)=>(o(),l("span",{class:T(["VPBadge",e.type])},[u(e.$slots,"default",{},()=>[F(I(e.text),1)])],2))}}),it={key:0,class:"VPBackdrop"},lt=b({__name:"VPBackdrop",props:{show:{type:Boolean}},setup(a){return(e,t)=>(o(),$(pe,{name:"fade"},{default:f(()=>[e.show?(o(),l("div",it)):m("",!0)]),_:1}))}}),ct=k(lt,[["__scopeId","data-v-b06cdb19"]]),V=Se;function ut(a,e){let t,n=!1;return()=>{t&&clearTimeout(t),n?t=setTimeout(a,e):(a(),(n=!0)&&setTimeout(()=>n=!1,e))}}function ce(a){return/^\//.test(a)?a:`/${a}`}function be(a){const{pathname:e,search:t,hash:n,protocol:s}=new URL(a,"http://a.com");if(Je(a)||a.startsWith("#")||!s.startsWith("http")||!Ke(e))return a;const{site:r}=V(),c=e.endsWith("/")||e.endsWith(".html")?a:a.replace(/(?:(^\.+)\/)?.*$/,`$1${e.replace(/(\.md)?$/,r.value.cleanUrls?"":".html")}${t}${n}`);return ve(c)}function Z({correspondingLink:a=!1}={}){const{site:e,localeIndex:t,page:n,theme:s,hash:r}=V(),c=y(()=>{var d,h;return{label:(d=e.value.locales[t.value])==null?void 0:d.label,link:((h=e.value.locales[t.value])==null?void 0:h.link)||(t.value==="root"?"/":`/${t.value}/`)}});return{localeLinks:y(()=>Object.entries(e.value.locales).flatMap(([d,h])=>c.value.label===h.label?[]:{text:h.label,link:dt(h.link||(d==="root"?"/":`/${d}/`),s.value.i18nRouting!==!1&&a,n.value.relativePath.slice(c.value.link.length-1),!e.value.cleanUrls)+r.value})),currentLang:c}}function dt(a,e,t,n){return e?a.replace(/\/$/,"")+ce(t.replace(/(^|\/)index\.md$/,"$1").replace(/\.md$/,n?".html":"")):a}const pt={class:"NotFound"},vt={class:"code"},ft={class:"title"},mt={class:"quote"},ht={class:"action"},_t=["href","aria-label"],bt=b({__name:"NotFound",setup(a){const{theme:e}=V(),{currentLang:t}=Z();return(n,s)=>{var r,c,v,d,h;return o(),l("div",pt,[p("p",vt,I(((r=i(e).notFound)==null?void 0:r.code)??"404"),1),p("h1",ft,I(((c=i(e).notFound)==null?void 0:c.title)??"PAGE NOT FOUND"),1),s[0]||(s[0]=p("div",{class:"divider"},null,-1)),p("blockquote",mt,I(((v=i(e).notFound)==null?void 0:v.quote)??"But if you don't change your direction, and if you keep looking, you may end up where you are heading."),1),p("div",ht,[p("a",{class:"link",href:i(ve)(i(t).link),"aria-label":((d=i(e).notFound)==null?void 0:d.linkLabel)??"go to home"},I(((h=i(e).notFound)==null?void 0:h.linkText)??"Take me home"),9,_t)])])}}}),gt=k(bt,[["__scopeId","data-v-951cab6c"]]);function Be(a,e){if(Array.isArray(a))return Y(a);if(a==null)return[];e=ce(e);const t=Object.keys(a).sort((s,r)=>r.split("/").length-s.split("/").length).find(s=>e.startsWith(ce(s))),n=t?a[t]:[];return Array.isArray(n)?Y(n):Y(n.items,n.base)}function kt(a){const e=[];let t=0;for(const n in a){const s=a[n];if(s.items){t=e.push(s);continue}e[t]||e.push({items:[]}),e[t].items.push(s)}return e}function $t(a){const e=[];function t(n){for(const s of n)s.text&&s.link&&e.push({text:s.text,link:s.link,docFooterText:s.docFooterText}),s.items&&t(s.items)}return t(a),e}function ue(a,e){return Array.isArray(e)?e.some(t=>ue(a,t)):J(a,e.link)?!0:e.items?ue(a,e.items):!1}function Y(a,e){return[...a].map(t=>{const n={...t},s=n.base||e;return s&&n.link&&(n.link=s+n.link),n.items&&(n.items=Y(n.items,s)),n})}function D(){const{frontmatter:a,page:e,theme:t}=V(),n=ie("(min-width: 960px)"),s=S(!1),r=y(()=>{const M=t.value.sidebar,N=e.value.relativePath;return M?Be(M,N):[]}),c=S(r.value);W(r,(M,N)=>{JSON.stringify(M)!==JSON.stringify(N)&&(c.value=r.value)});const v=y(()=>a.value.sidebar!==!1&&c.value.length>0&&a.value.layout!=="home"),d=y(()=>h?a.value.aside==null?t.value.aside==="left":a.value.aside==="left":!1),h=y(()=>a.value.layout==="home"?!1:a.value.aside!=null?!!a.value.aside:t.value.aside!==!1),A=y(()=>v.value&&n.value),_=y(()=>v.value?kt(c.value):[]);function P(){s.value=!0}function L(){s.value=!1}function w(){s.value?L():P()}return{isOpen:s,sidebar:c,sidebarGroups:_,hasSidebar:v,hasAside:h,leftAside:d,isSidebarEnabled:A,open:P,close:L,toggle:w}}function yt(a,e){let t;q(()=>{t=a.value?document.activeElement:void 0}),O(()=>{window.addEventListener("keyup",n)}),fe(()=>{window.removeEventListener("keyup",n)});function n(s){s.key==="Escape"&&a.value&&(e(),t==null||t.focus())}}function At(a){const{page:e,hash:t}=V(),n=S(!1),s=y(()=>a.value.collapsed!=null),r=y(()=>!!a.value.link),c=S(!1),v=()=>{c.value=J(e.value.relativePath,a.value.link)};W([e,a,t],v),O(v);const d=y(()=>c.value?!0:a.value.items?ue(e.value.relativePath,a.value.items):!1),h=y(()=>!!(a.value.items&&a.value.items.length));q(()=>{n.value=!!(s.value&&a.value.collapsed)}),me(()=>{(c.value||d.value)&&(n.value=!1)});function A(){s.value&&(n.value=!n.value)}return{collapsed:n,collapsible:s,isLink:r,isActiveLink:c,hasActiveLink:d,hasChildren:h,toggle:A}}function Pt(){const{hasSidebar:a}=D(),e=ie("(min-width: 960px)"),t=ie("(min-width: 1280px)");return{isAsideEnabled:y(()=>!t.value&&!e.value?!1:a.value?t.value:e.value)}}const de=[];function Ee(a){return typeof a.outline=="object"&&!Array.isArray(a.outline)&&a.outline.label||a.outlineTitle||"On this page"}function ge(a){const e=[...document.querySelectorAll(".VPDoc :where(h1,h2,h3,h4,h5,h6)")].filter(t=>t.id&&t.hasChildNodes()).map(t=>{const n=Number(t.tagName[1]);return{element:t,title:Lt(t),link:"#"+t.id,level:n}});return Vt(e,a)}function Lt(a){let e="";for(const t of a.childNodes)if(t.nodeType===1){if(t.classList.contains("VPBadge")||t.classList.contains("header-anchor")||t.classList.contains("ignore-header"))continue;e+=t.textContent}else t.nodeType===3&&(e+=t.textContent);return e.trim()}function Vt(a,e){if(e===!1)return[];const t=(typeof e=="object"&&!Array.isArray(e)?e.level:e)||2,[n,s]=typeof t=="number"?[t,t]:t==="deep"?[2,6]:t;return Nt(a,n,s)}function St(a,e){const{isAsideEnabled:t}=Pt(),n=ut(r,100);let s=null;O(()=>{requestAnimationFrame(r),window.addEventListener("scroll",n)}),je(()=>{c(location.hash)}),fe(()=>{window.removeEventListener("scroll",n)});function r(){if(!t.value)return;const v=window.scrollY,d=window.innerHeight,h=document.body.offsetHeight,A=Math.abs(v+d-h)<1,_=de.map(({element:L,link:w})=>({link:w,top:It(L)})).filter(({top:L})=>!Number.isNaN(L)).sort((L,w)=>L.top-w.top);if(!_.length){c(null);return}if(v<1){c(null);return}if(A){c(_[_.length-1].link);return}let P=null;for(const{link:L,top:w}of _){if(w>v+ze()+4)break;P=L}c(P)}function c(v){s&&s.classList.remove("active"),v==null?s=null:s=a.value.querySelector(`a[href="${decodeURIComponent(v)}"]`);const d=s;d?(d.classList.add("active"),e.value.style.top=d.offsetTop+39+"px",e.value.style.opacity="1"):(e.value.style.top="33px",e.value.style.opacity="0")}}function It(a){let e=0;for(;a!==document.body;){if(a===null)return NaN;e+=a.offsetTop,a=a.offsetParent}return e}function Nt(a,e,t){de.length=0;const n=[],s=[];return a.forEach(r=>{const c={...r,children:[]};let v=s[s.length-1];for(;v&&v.level>=c.level;)s.pop(),v=s[s.length-1];if(c.element.classList.contains("ignore-header")||v&&"shouldIgnore"in v){s.push({level:c.level,shouldIgnore:!0});return}c.level>t||c.level{const s=G("VPDocOutlineItem",!0);return o(),l("ul",{class:T(["VPDocOutlineItem",t.root?"root":"nested"])},[(o(!0),l(C,null,B(t.headers,({children:r,link:c,title:v})=>(o(),l("li",null,[p("a",{class:"outline-link",href:c,onClick:e,title:v},I(v),9,Tt),r!=null&&r.length?(o(),$(s,{key:0,headers:r},null,8,["headers"])):m("",!0)]))),256))],2)}}}),Qe=k(Ct,[["__scopeId","data-v-3f927ebe"]]),wt={class:"content"},Mt={"aria-level":"2",class:"outline-title",id:"doc-outline-aria-label",role:"heading"},Bt=b({__name:"VPDocAsideOutline",setup(a){const{frontmatter:e,theme:t}=V(),n=Ie([]);x(()=>{n.value=ge(e.value.outline??t.value.outline)});const s=S(),r=S();return St(s,r),(c,v)=>(o(),l("nav",{"aria-labelledby":"doc-outline-aria-label",class:T(["VPDocAsideOutline",{"has-outline":n.value.length>0}]),ref_key:"container",ref:s},[p("div",wt,[p("div",{class:"outline-marker",ref_key:"marker",ref:r},null,512),p("div",Mt,I(i(Ee)(i(t))),1),g(Qe,{headers:n.value,root:!0},null,8,["headers"])])],2))}}),Et=k(Bt,[["__scopeId","data-v-b38bf2ff"]]),Qt={class:"VPDocAsideCarbonAds"},Ht=b({__name:"VPDocAsideCarbonAds",props:{carbonAds:{}},setup(a){const e=()=>null;return(t,n)=>(o(),l("div",Qt,[g(i(e),{"carbon-ads":t.carbonAds},null,8,["carbon-ads"])]))}}),Ft={class:"VPDocAside"},Wt=b({__name:"VPDocAside",setup(a){const{theme:e}=V();return(t,n)=>(o(),l("div",Ft,[u(t.$slots,"aside-top",{},void 0,!0),u(t.$slots,"aside-outline-before",{},void 0,!0),g(Et),u(t.$slots,"aside-outline-after",{},void 0,!0),n[0]||(n[0]=p("div",{class:"spacer"},null,-1)),u(t.$slots,"aside-ads-before",{},void 0,!0),i(e).carbonAds?(o(),$(Ht,{key:0,"carbon-ads":i(e).carbonAds},null,8,["carbon-ads"])):m("",!0),u(t.$slots,"aside-ads-after",{},void 0,!0),u(t.$slots,"aside-bottom",{},void 0,!0)]))}}),Ot=k(Wt,[["__scopeId","data-v-6d7b3c46"]]);function Dt(){const{theme:a,page:e}=V();return y(()=>{const{text:t="Edit this page",pattern:n=""}=a.value.editLink||{};let s;return typeof n=="function"?s=n(e.value):s=n.replace(/:path/g,e.value.filePath),{url:s,text:t}})}function Ut(){const{page:a,theme:e,frontmatter:t}=V();return y(()=>{var h,A,_,P,L,w,M,N;const n=Be(e.value.sidebar,a.value.relativePath),s=$t(n),r=Rt(s,E=>E.link.replace(/[?#].*$/,"")),c=r.findIndex(E=>J(a.value.relativePath,E.link)),v=((h=e.value.docFooter)==null?void 0:h.prev)===!1&&!t.value.prev||t.value.prev===!1,d=((A=e.value.docFooter)==null?void 0:A.next)===!1&&!t.value.next||t.value.next===!1;return{prev:v?void 0:{text:(typeof t.value.prev=="string"?t.value.prev:typeof t.value.prev=="object"?t.value.prev.text:void 0)??((_=r[c-1])==null?void 0:_.docFooterText)??((P=r[c-1])==null?void 0:P.text),link:(typeof t.value.prev=="object"?t.value.prev.link:void 0)??((L=r[c-1])==null?void 0:L.link)},next:d?void 0:{text:(typeof t.value.next=="string"?t.value.next:typeof t.value.next=="object"?t.value.next.text:void 0)??((w=r[c+1])==null?void 0:w.docFooterText)??((M=r[c+1])==null?void 0:M.text),link:(typeof t.value.next=="object"?t.value.next.link:void 0)??((N=r[c+1])==null?void 0:N.link)}}})}function Rt(a,e){const t=new Set;return a.filter(n=>{const s=e(n);return t.has(s)?!1:t.add(s)})}const Q=b({__name:"VPLink",props:{tag:{},href:{},noIcon:{type:Boolean},target:{},rel:{}},setup(a){const e=a,t=y(()=>e.tag??(e.href?"a":"span")),n=y(()=>e.href&&Ne.test(e.href)||e.target==="_blank");return(s,r)=>(o(),$(H(t.value),{class:T(["VPLink",{link:s.href,"vp-external-link-icon":n.value,"no-icon":s.noIcon}]),href:s.href?i(be)(s.href):void 0,target:s.target??(n.value?"_blank":void 0),rel:s.rel??(n.value?"noreferrer":void 0)},{default:f(()=>[u(s.$slots,"default")]),_:3},8,["class","href","target","rel"]))}}),Gt={class:"VPLastUpdated"},Jt=["datetime"],Kt=b({__name:"VPDocFooterLastUpdated",setup(a){const{theme:e,page:t,lang:n}=V(),s=y(()=>new Date(t.value.lastUpdated)),r=y(()=>s.value.toISOString()),c=S("");return O(()=>{q(()=>{var v,d,h;c.value=new Intl.DateTimeFormat((d=(v=e.value.lastUpdated)==null?void 0:v.formatOptions)!=null&&d.forceLocale?n.value:void 0,((h=e.value.lastUpdated)==null?void 0:h.formatOptions)??{dateStyle:"short",timeStyle:"short"}).format(s.value)})}),(v,d)=>{var h;return o(),l("p",Gt,[F(I(((h=i(e).lastUpdated)==null?void 0:h.text)||i(e).lastUpdatedText||"Last updated")+": ",1),p("time",{datetime:r.value},I(c.value),9,Jt)])}}}),jt=k(Kt,[["__scopeId","data-v-475f71b8"]]),zt={key:0,class:"VPDocFooter"},Zt={key:0,class:"edit-info"},Yt={key:0,class:"edit-link"},Xt={key:1,class:"last-updated"},qt={key:1,class:"prev-next","aria-labelledby":"doc-footer-aria-label"},xt={class:"pager"},es=["innerHTML"],ts=["innerHTML"],ss={class:"pager"},ns=["innerHTML"],as=["innerHTML"],os=b({__name:"VPDocFooter",setup(a){const{theme:e,page:t,frontmatter:n}=V(),s=Dt(),r=Ut(),c=y(()=>e.value.editLink&&n.value.editLink!==!1),v=y(()=>t.value.lastUpdated),d=y(()=>c.value||v.value||r.value.prev||r.value.next);return(h,A)=>{var _,P,L,w;return d.value?(o(),l("footer",zt,[u(h.$slots,"doc-footer-before",{},void 0,!0),c.value||v.value?(o(),l("div",Zt,[c.value?(o(),l("div",Yt,[g(Q,{class:"edit-link-button",href:i(s).url,"no-icon":!0},{default:f(()=>[A[0]||(A[0]=p("span",{class:"vpi-square-pen edit-link-icon"},null,-1)),F(" "+I(i(s).text),1)]),_:1},8,["href"])])):m("",!0),v.value?(o(),l("div",Xt,[g(jt)])):m("",!0)])):m("",!0),(_=i(r).prev)!=null&&_.link||(P=i(r).next)!=null&&P.link?(o(),l("nav",qt,[A[1]||(A[1]=p("span",{class:"visually-hidden",id:"doc-footer-aria-label"},"Pager",-1)),p("div",xt,[(L=i(r).prev)!=null&&L.link?(o(),$(Q,{key:0,class:"pager-link prev",href:i(r).prev.link},{default:f(()=>{var M;return[p("span",{class:"desc",innerHTML:((M=i(e).docFooter)==null?void 0:M.prev)||"Previous page"},null,8,es),p("span",{class:"title",innerHTML:i(r).prev.text},null,8,ts)]}),_:1},8,["href"])):m("",!0)]),p("div",ss,[(w=i(r).next)!=null&&w.link?(o(),$(Q,{key:0,class:"pager-link next",href:i(r).next.link},{default:f(()=>{var M;return[p("span",{class:"desc",innerHTML:((M=i(e).docFooter)==null?void 0:M.next)||"Next page"},null,8,ns),p("span",{class:"title",innerHTML:i(r).next.text},null,8,as)]}),_:1},8,["href"])):m("",!0)])])):m("",!0)])):m("",!0)}}}),rs=k(os,[["__scopeId","data-v-4f9813fa"]]),is={class:"container"},ls={class:"aside-container"},cs={class:"aside-content"},us={class:"content"},ds={class:"content-container"},ps={class:"main"},vs=b({__name:"VPDoc",setup(a){const{theme:e}=V(),t=ee(),{hasSidebar:n,hasAside:s,leftAside:r}=D(),c=y(()=>t.path.replace(/[./]+/g,"_").replace(/_html$/,""));return(v,d)=>{const h=G("Content");return o(),l("div",{class:T(["VPDoc",{"has-sidebar":i(n),"has-aside":i(s)}])},[u(v.$slots,"doc-top",{},void 0,!0),p("div",is,[i(s)?(o(),l("div",{key:0,class:T(["aside",{"left-aside":i(r)}])},[d[0]||(d[0]=p("div",{class:"aside-curtain"},null,-1)),p("div",ls,[p("div",cs,[g(Ot,null,{"aside-top":f(()=>[u(v.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[u(v.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[u(v.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(v.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(v.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(v.$slots,"aside-ads-after",{},void 0,!0)]),_:3})])])],2)):m("",!0),p("div",us,[p("div",ds,[u(v.$slots,"doc-before",{},void 0,!0),p("main",ps,[g(h,{class:T(["vp-doc",[c.value,i(e).externalLinkIcon&&"external-link-icon-enabled"]])},null,8,["class"])]),g(rs,null,{"doc-footer-before":f(()=>[u(v.$slots,"doc-footer-before",{},void 0,!0)]),_:3}),u(v.$slots,"doc-after",{},void 0,!0)])])]),u(v.$slots,"doc-bottom",{},void 0,!0)],2)}}}),fs=k(vs,[["__scopeId","data-v-83890dd9"]]),ms=b({__name:"VPButton",props:{tag:{},size:{default:"medium"},theme:{default:"brand"},text:{},href:{},target:{},rel:{}},setup(a){const e=a,t=y(()=>e.href&&Ne.test(e.href)),n=y(()=>e.tag||(e.href?"a":"button"));return(s,r)=>(o(),$(H(n.value),{class:T(["VPButton",[s.size,s.theme]]),href:s.href?i(be)(s.href):void 0,target:e.target??(t.value?"_blank":void 0),rel:e.rel??(t.value?"noreferrer":void 0)},{default:f(()=>[F(I(s.text),1)]),_:1},8,["class","href","target","rel"]))}}),hs=k(ms,[["__scopeId","data-v-906d7fb4"]]),_s=["src","alt"],bs=b({inheritAttrs:!1,__name:"VPImage",props:{image:{},alt:{}},setup(a){return(e,t)=>{const n=G("VPImage",!0);return e.image?(o(),l(C,{key:0},[typeof e.image=="string"||"src"in e.image?(o(),l("img",R({key:0,class:"VPImage"},typeof e.image=="string"?e.$attrs:{...e.image,...e.$attrs},{src:i(ve)(typeof e.image=="string"?e.image:e.image.src),alt:e.alt??(typeof e.image=="string"?"":e.image.alt||"")}),null,16,_s)):(o(),l(C,{key:1},[g(n,R({class:"dark",image:e.image.dark,alt:e.image.alt},e.$attrs),null,16,["image","alt"]),g(n,R({class:"light",image:e.image.light,alt:e.image.alt},e.$attrs),null,16,["image","alt"])],64))],64)):m("",!0)}}}),X=k(bs,[["__scopeId","data-v-35a7d0b8"]]),gs={class:"container"},ks={class:"main"},$s={key:0,class:"name"},ys=["innerHTML"],As=["innerHTML"],Ps=["innerHTML"],Ls={key:0,class:"actions"},Vs={key:0,class:"image"},Ss={class:"image-container"},Is=b({__name:"VPHero",props:{name:{},text:{},tagline:{},image:{},actions:{}},setup(a){const e=j("hero-image-slot-exists");return(t,n)=>(o(),l("div",{class:T(["VPHero",{"has-image":t.image||i(e)}])},[p("div",gs,[p("div",ks,[u(t.$slots,"home-hero-info-before",{},void 0,!0),u(t.$slots,"home-hero-info",{},()=>[t.name?(o(),l("h1",$s,[p("span",{innerHTML:t.name,class:"clip"},null,8,ys)])):m("",!0),t.text?(o(),l("p",{key:1,innerHTML:t.text,class:"text"},null,8,As)):m("",!0),t.tagline?(o(),l("p",{key:2,innerHTML:t.tagline,class:"tagline"},null,8,Ps)):m("",!0)],!0),u(t.$slots,"home-hero-info-after",{},void 0,!0),t.actions?(o(),l("div",Ls,[(o(!0),l(C,null,B(t.actions,s=>(o(),l("div",{key:s.link,class:"action"},[g(hs,{tag:"a",size:"medium",theme:s.theme,text:s.text,href:s.link,target:s.target,rel:s.rel},null,8,["theme","text","href","target","rel"])]))),128))])):m("",!0),u(t.$slots,"home-hero-actions-after",{},void 0,!0)]),t.image||i(e)?(o(),l("div",Vs,[p("div",Ss,[n[0]||(n[0]=p("div",{class:"image-bg"},null,-1)),u(t.$slots,"home-hero-image",{},()=>[t.image?(o(),$(X,{key:0,class:"image-src",image:t.image},null,8,["image"])):m("",!0)],!0)])])):m("",!0)])],2))}}),Ns=k(Is,[["__scopeId","data-v-955009fc"]]),Ts=b({__name:"VPHomeHero",setup(a){const{frontmatter:e}=V();return(t,n)=>i(e).hero?(o(),$(Ns,{key:0,class:"VPHomeHero",name:i(e).hero.name,text:i(e).hero.text,tagline:i(e).hero.tagline,image:i(e).hero.image,actions:i(e).hero.actions},{"home-hero-info-before":f(()=>[u(t.$slots,"home-hero-info-before")]),"home-hero-info":f(()=>[u(t.$slots,"home-hero-info")]),"home-hero-info-after":f(()=>[u(t.$slots,"home-hero-info-after")]),"home-hero-actions-after":f(()=>[u(t.$slots,"home-hero-actions-after")]),"home-hero-image":f(()=>[u(t.$slots,"home-hero-image")]),_:3},8,["name","text","tagline","image","actions"])):m("",!0)}}),Cs={class:"box"},ws={key:0,class:"icon"},Ms=["innerHTML"],Bs=["innerHTML"],Es=["innerHTML"],Qs={key:4,class:"link-text"},Hs={class:"link-text-value"},Fs=b({__name:"VPFeature",props:{icon:{},title:{},details:{},link:{},linkText:{},rel:{},target:{}},setup(a){return(e,t)=>(o(),$(Q,{class:"VPFeature",href:e.link,rel:e.rel,target:e.target,"no-icon":!0,tag:e.link?"a":"div"},{default:f(()=>[p("article",Cs,[typeof e.icon=="object"&&e.icon.wrap?(o(),l("div",ws,[g(X,{image:e.icon,alt:e.icon.alt,height:e.icon.height||48,width:e.icon.width||48},null,8,["image","alt","height","width"])])):typeof e.icon=="object"?(o(),$(X,{key:1,image:e.icon,alt:e.icon.alt,height:e.icon.height||48,width:e.icon.width||48},null,8,["image","alt","height","width"])):e.icon?(o(),l("div",{key:2,class:"icon",innerHTML:e.icon},null,8,Ms)):m("",!0),p("h2",{class:"title",innerHTML:e.title},null,8,Bs),e.details?(o(),l("p",{key:3,class:"details",innerHTML:e.details},null,8,Es)):m("",!0),e.linkText?(o(),l("div",Qs,[p("p",Hs,[F(I(e.linkText)+" ",1),t[0]||(t[0]=p("span",{class:"vpi-arrow-right link-text-icon"},null,-1))])])):m("",!0)])]),_:1},8,["href","rel","target","tag"]))}}),Ws=k(Fs,[["__scopeId","data-v-f5e9645b"]]),Os={key:0,class:"VPFeatures"},Ds={class:"container"},Us={class:"items"},Rs=b({__name:"VPFeatures",props:{features:{}},setup(a){const e=a,t=y(()=>{const n=e.features.length;if(n){if(n===2)return"grid-2";if(n===3)return"grid-3";if(n%3===0)return"grid-6";if(n>3)return"grid-4"}else return});return(n,s)=>n.features?(o(),l("div",Os,[p("div",Ds,[p("div",Us,[(o(!0),l(C,null,B(n.features,r=>(o(),l("div",{key:r.title,class:T(["item",[t.value]])},[g(Ws,{icon:r.icon,title:r.title,details:r.details,link:r.link,"link-text":r.linkText,rel:r.rel,target:r.target},null,8,["icon","title","details","link","link-text","rel","target"])],2))),128))])])])):m("",!0)}}),Gs=k(Rs,[["__scopeId","data-v-d0a190d7"]]),Js=b({__name:"VPHomeFeatures",setup(a){const{frontmatter:e}=V();return(t,n)=>i(e).features?(o(),$(Gs,{key:0,class:"VPHomeFeatures",features:i(e).features},null,8,["features"])):m("",!0)}}),Ks=b({__name:"VPHomeContent",setup(a){const{width:e}=Ze({initialWidth:0,includeScrollbar:!1});return(t,n)=>(o(),l("div",{class:"vp-doc container",style:Te(i(e)?{"--vp-offset":`calc(50% - ${i(e)/2}px)`}:{})},[u(t.$slots,"default",{},void 0,!0)],4))}}),js=k(Ks,[["__scopeId","data-v-7a48a447"]]),zs={class:"VPHome"},Zs=b({__name:"VPHome",setup(a){const{frontmatter:e}=V();return(t,n)=>{const s=G("Content");return o(),l("div",zs,[u(t.$slots,"home-hero-before",{},void 0,!0),g(Ts,null,{"home-hero-info-before":f(()=>[u(t.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(t.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(t.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(t.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(t.$slots,"home-hero-image",{},void 0,!0)]),_:3}),u(t.$slots,"home-hero-after",{},void 0,!0),u(t.$slots,"home-features-before",{},void 0,!0),g(Js),u(t.$slots,"home-features-after",{},void 0,!0),i(e).markdownStyles!==!1?(o(),$(js,{key:0},{default:f(()=>[g(s)]),_:1})):(o(),$(s,{key:1}))])}}}),Ys=k(Zs,[["__scopeId","data-v-cbb6ec48"]]),Xs={},qs={class:"VPPage"};function xs(a,e){const t=G("Content");return o(),l("div",qs,[u(a.$slots,"page-top"),g(t),u(a.$slots,"page-bottom")])}const en=k(Xs,[["render",xs]]),tn=b({__name:"VPContent",setup(a){const{page:e,frontmatter:t}=V(),{hasSidebar:n}=D();return(s,r)=>(o(),l("div",{class:T(["VPContent",{"has-sidebar":i(n),"is-home":i(t).layout==="home"}]),id:"VPContent"},[i(e).isNotFound?u(s.$slots,"not-found",{key:0},()=>[g(gt)],!0):i(t).layout==="page"?(o(),$(en,{key:1},{"page-top":f(()=>[u(s.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[u(s.$slots,"page-bottom",{},void 0,!0)]),_:3})):i(t).layout==="home"?(o(),$(Ys,{key:2},{"home-hero-before":f(()=>[u(s.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[u(s.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(s.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(s.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(s.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(s.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[u(s.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[u(s.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[u(s.$slots,"home-features-after",{},void 0,!0)]),_:3})):i(t).layout&&i(t).layout!=="doc"?(o(),$(H(i(t).layout),{key:3})):(o(),$(fs,{key:4},{"doc-top":f(()=>[u(s.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[u(s.$slots,"doc-bottom",{},void 0,!0)]),"doc-footer-before":f(()=>[u(s.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[u(s.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[u(s.$slots,"doc-after",{},void 0,!0)]),"aside-top":f(()=>[u(s.$slots,"aside-top",{},void 0,!0)]),"aside-outline-before":f(()=>[u(s.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(s.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(s.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(s.$slots,"aside-ads-after",{},void 0,!0)]),"aside-bottom":f(()=>[u(s.$slots,"aside-bottom",{},void 0,!0)]),_:3}))],2))}}),sn=k(tn,[["__scopeId","data-v-91765379"]]),nn={class:"container"},an=["innerHTML"],on=["innerHTML"],rn=b({__name:"VPFooter",setup(a){const{theme:e,frontmatter:t}=V(),{hasSidebar:n}=D();return(s,r)=>i(e).footer&&i(t).footer!==!1?(o(),l("footer",{key:0,class:T(["VPFooter",{"has-sidebar":i(n)}])},[p("div",nn,[i(e).footer.message?(o(),l("p",{key:0,class:"message",innerHTML:i(e).footer.message},null,8,an)):m("",!0),i(e).footer.copyright?(o(),l("p",{key:1,class:"copyright",innerHTML:i(e).footer.copyright},null,8,on)):m("",!0)])],2)):m("",!0)}}),ln=k(rn,[["__scopeId","data-v-c970a860"]]);function cn(){const{theme:a,frontmatter:e}=V(),t=Ie([]),n=y(()=>t.value.length>0);return x(()=>{t.value=ge(e.value.outline??a.value.outline)}),{headers:t,hasLocalNav:n}}const un={class:"menu-text"},dn={class:"header"},pn={class:"outline"},vn=b({__name:"VPLocalNavOutlineDropdown",props:{headers:{},navHeight:{}},setup(a){const e=a,{theme:t}=V(),n=S(!1),s=S(0),r=S(),c=S();function v(_){var P;(P=r.value)!=null&&P.contains(_.target)||(n.value=!1)}W(n,_=>{if(_){document.addEventListener("click",v);return}document.removeEventListener("click",v)}),le("Escape",()=>{n.value=!1}),x(()=>{n.value=!1});function d(){n.value=!n.value,s.value=window.innerHeight+Math.min(window.scrollY-e.navHeight,0)}function h(_){_.target.classList.contains("outline-link")&&(c.value&&(c.value.style.transition="none"),he(()=>{n.value=!1}))}function A(){n.value=!1,window.scrollTo({top:0,left:0,behavior:"smooth"})}return(_,P)=>(o(),l("div",{class:"VPLocalNavOutlineDropdown",style:Te({"--vp-vh":s.value+"px"}),ref_key:"main",ref:r},[_.headers.length>0?(o(),l("button",{key:0,onClick:d,class:T({open:n.value})},[p("span",un,I(i(Ee)(i(t))),1),P[0]||(P[0]=p("span",{class:"vpi-chevron-right icon"},null,-1))],2)):(o(),l("button",{key:1,onClick:A},I(i(t).returnToTopLabel||"Return to top"),1)),g(pe,{name:"flyout"},{default:f(()=>[n.value?(o(),l("div",{key:0,ref_key:"items",ref:c,class:"items",onClick:h},[p("div",dn,[p("a",{class:"top-link",href:"#",onClick:A},I(i(t).returnToTopLabel||"Return to top"),1)]),p("div",pn,[g(Qe,{headers:_.headers},null,8,["headers"])])],512)):m("",!0)]),_:1})],4))}}),fn=k(vn,[["__scopeId","data-v-bc9dc845"]]),mn={class:"container"},hn=["aria-expanded"],_n={class:"menu-text"},bn=b({__name:"VPLocalNav",props:{open:{type:Boolean}},emits:["open-menu"],setup(a){const{theme:e,frontmatter:t}=V(),{hasSidebar:n}=D(),{headers:s}=cn(),{y:r}=Ce(),c=S(0);O(()=>{c.value=parseInt(getComputedStyle(document.documentElement).getPropertyValue("--vp-nav-height"))}),x(()=>{s.value=ge(t.value.outline??e.value.outline)});const v=y(()=>s.value.length===0),d=y(()=>v.value&&!n.value),h=y(()=>({VPLocalNav:!0,"has-sidebar":n.value,empty:v.value,fixed:d.value}));return(A,_)=>i(t).layout!=="home"&&(!d.value||i(r)>=c.value)?(o(),l("div",{key:0,class:T(h.value)},[p("div",mn,[i(n)?(o(),l("button",{key:0,class:"menu","aria-expanded":A.open,"aria-controls":"VPSidebarNav",onClick:_[0]||(_[0]=P=>A.$emit("open-menu"))},[_[1]||(_[1]=p("span",{class:"vpi-align-left menu-icon"},null,-1)),p("span",_n,I(i(e).sidebarMenuLabel||"Menu"),1)],8,hn)):m("",!0),g(fn,{headers:i(s),navHeight:c.value},null,8,["headers","navHeight"])])],2)):m("",!0)}}),gn=k(bn,[["__scopeId","data-v-070ab83d"]]);function kn(){const a=S(!1);function e(){a.value=!0,window.addEventListener("resize",s)}function t(){a.value=!1,window.removeEventListener("resize",s)}function n(){a.value?t():e()}function s(){window.outerWidth>=768&&t()}const r=ee();return W(()=>r.path,t),{isScreenOpen:a,openScreen:e,closeScreen:t,toggleScreen:n}}const $n={},yn={class:"VPSwitch",type:"button",role:"switch"},An={class:"check"},Pn={key:0,class:"icon"};function Ln(a,e){return o(),l("button",yn,[p("span",An,[a.$slots.default?(o(),l("span",Pn,[u(a.$slots,"default",{},void 0,!0)])):m("",!0)])])}const Vn=k($n,[["render",Ln],["__scopeId","data-v-4a1c76db"]]),Sn=b({__name:"VPSwitchAppearance",setup(a){const{isDark:e,theme:t}=V(),n=j("toggle-appearance",()=>{e.value=!e.value}),s=S("");return me(()=>{s.value=e.value?t.value.lightModeSwitchTitle||"Switch to light theme":t.value.darkModeSwitchTitle||"Switch to dark theme"}),(r,c)=>(o(),$(Vn,{title:s.value,class:"VPSwitchAppearance","aria-checked":i(e),onClick:i(n)},{default:f(()=>c[0]||(c[0]=[p("span",{class:"vpi-sun sun"},null,-1),p("span",{class:"vpi-moon moon"},null,-1)])),_:1},8,["title","aria-checked","onClick"]))}}),ke=k(Sn,[["__scopeId","data-v-e40a8bb6"]]),In={key:0,class:"VPNavBarAppearance"},Nn=b({__name:"VPNavBarAppearance",setup(a){const{site:e}=V();return(t,n)=>i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(o(),l("div",In,[g(ke)])):m("",!0)}}),Tn=k(Nn,[["__scopeId","data-v-af096f4a"]]),$e=S();let He=!1,re=0;function Cn(a){const e=S(!1);if(te){!He&&wn(),re++;const t=W($e,n=>{var s,r,c;n===a.el.value||(s=a.el.value)!=null&&s.contains(n)?(e.value=!0,(r=a.onFocus)==null||r.call(a)):(e.value=!1,(c=a.onBlur)==null||c.call(a))});fe(()=>{t(),re--,re||Mn()})}return Ye(e)}function wn(){document.addEventListener("focusin",Fe),He=!0,$e.value=document.activeElement}function Mn(){document.removeEventListener("focusin",Fe)}function Fe(){$e.value=document.activeElement}const Bn={class:"VPMenuLink"},En=["innerHTML"],Qn=b({__name:"VPMenuLink",props:{item:{}},setup(a){const{page:e}=V();return(t,n)=>(o(),l("div",Bn,[g(Q,{class:T({active:i(J)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,target:t.item.target,rel:t.item.rel,"no-icon":t.item.noIcon},{default:f(()=>[p("span",{innerHTML:t.item.text},null,8,En)]),_:1},8,["class","href","target","rel","no-icon"])]))}}),se=k(Qn,[["__scopeId","data-v-acbfed09"]]),Hn={class:"VPMenuGroup"},Fn={key:0,class:"title"},Wn=b({__name:"VPMenuGroup",props:{text:{},items:{}},setup(a){return(e,t)=>(o(),l("div",Hn,[e.text?(o(),l("p",Fn,I(e.text),1)):m("",!0),(o(!0),l(C,null,B(e.items,n=>(o(),l(C,null,["link"in n?(o(),$(se,{key:0,item:n},null,8,["item"])):m("",!0)],64))),256))]))}}),On=k(Wn,[["__scopeId","data-v-48c802d0"]]),Dn={class:"VPMenu"},Un={key:0,class:"items"},Rn=b({__name:"VPMenu",props:{items:{}},setup(a){return(e,t)=>(o(),l("div",Dn,[e.items?(o(),l("div",Un,[(o(!0),l(C,null,B(e.items,n=>(o(),l(C,{key:JSON.stringify(n)},["link"in n?(o(),$(se,{key:0,item:n},null,8,["item"])):"component"in n?(o(),$(H(n.component),R({key:1,ref_for:!0},n.props),null,16)):(o(),$(On,{key:2,text:n.text,items:n.items},null,8,["text","items"]))],64))),128))])):m("",!0),u(e.$slots,"default",{},void 0,!0)]))}}),Gn=k(Rn,[["__scopeId","data-v-7dd3104a"]]),Jn=["aria-expanded","aria-label"],Kn={key:0,class:"text"},jn=["innerHTML"],zn={key:1,class:"vpi-more-horizontal icon"},Zn={class:"menu"},Yn=b({__name:"VPFlyout",props:{icon:{},button:{},label:{},items:{}},setup(a){const e=S(!1),t=S();Cn({el:t,onBlur:n});function n(){e.value=!1}return(s,r)=>(o(),l("div",{class:"VPFlyout",ref_key:"el",ref:t,onMouseenter:r[1]||(r[1]=c=>e.value=!0),onMouseleave:r[2]||(r[2]=c=>e.value=!1)},[p("button",{type:"button",class:"button","aria-haspopup":"true","aria-expanded":e.value,"aria-label":s.label,onClick:r[0]||(r[0]=c=>e.value=!e.value)},[s.button||s.icon?(o(),l("span",Kn,[s.icon?(o(),l("span",{key:0,class:T([s.icon,"option-icon"])},null,2)):m("",!0),s.button?(o(),l("span",{key:1,innerHTML:s.button},null,8,jn)):m("",!0),r[3]||(r[3]=p("span",{class:"vpi-chevron-down text-icon"},null,-1))])):(o(),l("span",zn))],8,Jn),p("div",Zn,[g(Gn,{items:s.items},{default:f(()=>[u(s.$slots,"default",{},void 0,!0)]),_:3},8,["items"])])],544))}}),ye=k(Yn,[["__scopeId","data-v-04f5c5e9"]]),Xn=["href","aria-label","innerHTML"],qn=b({__name:"VPSocialLink",props:{icon:{},link:{},ariaLabel:{}},setup(a){const e=a,t=S();O(async()=>{var r;await he();const s=(r=t.value)==null?void 0:r.children[0];s instanceof HTMLElement&&s.className.startsWith("vpi-social-")&&(getComputedStyle(s).maskImage||getComputedStyle(s).webkitMaskImage)==="none"&&s.style.setProperty("--icon",`url('https://api.iconify.design/simple-icons/${e.icon}.svg')`)});const n=y(()=>typeof e.icon=="object"?e.icon.svg:``);return(s,r)=>(o(),l("a",{ref_key:"el",ref:t,class:"VPSocialLink no-icon",href:s.link,"aria-label":s.ariaLabel??(typeof s.icon=="string"?s.icon:""),target:"_blank",rel:"noopener",innerHTML:n.value},null,8,Xn))}}),xn=k(qn,[["__scopeId","data-v-d26d30cb"]]),ea={class:"VPSocialLinks"},ta=b({__name:"VPSocialLinks",props:{links:{}},setup(a){return(e,t)=>(o(),l("div",ea,[(o(!0),l(C,null,B(e.links,({link:n,icon:s,ariaLabel:r})=>(o(),$(xn,{key:n,icon:s,link:n,ariaLabel:r},null,8,["icon","link","ariaLabel"]))),128))]))}}),ne=k(ta,[["__scopeId","data-v-ee7a9424"]]),sa={key:0,class:"group translations"},na={class:"trans-title"},aa={key:1,class:"group"},oa={class:"item appearance"},ra={class:"label"},ia={class:"appearance-action"},la={key:2,class:"group"},ca={class:"item social-links"},ua=b({__name:"VPNavBarExtra",setup(a){const{site:e,theme:t}=V(),{localeLinks:n,currentLang:s}=Z({correspondingLink:!0}),r=y(()=>n.value.length&&s.value.label||e.value.appearance||t.value.socialLinks);return(c,v)=>r.value?(o(),$(ye,{key:0,class:"VPNavBarExtra",label:"extra navigation"},{default:f(()=>[i(n).length&&i(s).label?(o(),l("div",sa,[p("p",na,I(i(s).label),1),(o(!0),l(C,null,B(i(n),d=>(o(),$(se,{key:d.link,item:d},null,8,["item"]))),128))])):m("",!0),i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(o(),l("div",aa,[p("div",oa,[p("p",ra,I(i(t).darkModeSwitchLabel||"Appearance"),1),p("div",ia,[g(ke)])])])):m("",!0),i(t).socialLinks?(o(),l("div",la,[p("div",ca,[g(ne,{class:"social-links-list",links:i(t).socialLinks},null,8,["links"])])])):m("",!0)]),_:1})):m("",!0)}}),da=k(ua,[["__scopeId","data-v-925effce"]]),pa=["aria-expanded"],va=b({__name:"VPNavBarHamburger",props:{active:{type:Boolean}},emits:["click"],setup(a){return(e,t)=>(o(),l("button",{type:"button",class:T(["VPNavBarHamburger",{active:e.active}]),"aria-label":"mobile navigation","aria-expanded":e.active,"aria-controls":"VPNavScreen",onClick:t[0]||(t[0]=n=>e.$emit("click"))},t[1]||(t[1]=[p("span",{class:"container"},[p("span",{class:"top"}),p("span",{class:"middle"}),p("span",{class:"bottom"})],-1)]),10,pa))}}),fa=k(va,[["__scopeId","data-v-5dea55bf"]]),ma=["innerHTML"],ha=b({__name:"VPNavBarMenuLink",props:{item:{}},setup(a){const{page:e}=V();return(t,n)=>(o(),$(Q,{class:T({VPNavBarMenuLink:!0,active:i(J)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,target:t.item.target,rel:t.item.rel,"no-icon":t.item.noIcon,tabindex:"0"},{default:f(()=>[p("span",{innerHTML:t.item.text},null,8,ma)]),_:1},8,["class","href","target","rel","no-icon"]))}}),_a=k(ha,[["__scopeId","data-v-956ec74c"]]),We=b({__name:"VPNavBarMenuGroup",props:{item:{}},setup(a){const e=a,{page:t}=V(),n=r=>"component"in r?!1:"link"in r?J(t.value.relativePath,r.link,!!e.item.activeMatch):r.items.some(n),s=y(()=>n(e.item));return(r,c)=>(o(),$(ye,{class:T({VPNavBarMenuGroup:!0,active:i(J)(i(t).relativePath,r.item.activeMatch,!!r.item.activeMatch)||s.value}),button:r.item.text,items:r.item.items},null,8,["class","button","items"]))}}),ba={key:0,"aria-labelledby":"main-nav-aria-label",class:"VPNavBarMenu"},ga=b({__name:"VPNavBarMenu",setup(a){const{theme:e}=V();return(t,n)=>i(e).nav?(o(),l("nav",ba,[n[0]||(n[0]=p("span",{id:"main-nav-aria-label",class:"visually-hidden"}," Main Navigation ",-1)),(o(!0),l(C,null,B(i(e).nav,s=>(o(),l(C,{key:JSON.stringify(s)},["link"in s?(o(),$(_a,{key:0,item:s},null,8,["item"])):"component"in s?(o(),$(H(s.component),R({key:1,ref_for:!0},s.props),null,16)):(o(),$(We,{key:2,item:s},null,8,["item"]))],64))),128))])):m("",!0)}}),ka=k(ga,[["__scopeId","data-v-e6d46098"]]);function $a(a){const{localeIndex:e,theme:t}=V();function n(s){var w,M,N;const r=s.split("."),c=(w=t.value.search)==null?void 0:w.options,v=c&&typeof c=="object",d=v&&((N=(M=c.locales)==null?void 0:M[e.value])==null?void 0:N.translations)||null,h=v&&c.translations||null;let A=d,_=h,P=a;const L=r.pop();for(const E of r){let U=null;const K=P==null?void 0:P[E];K&&(U=P=K);const ae=_==null?void 0:_[E];ae&&(U=_=ae);const oe=A==null?void 0:A[E];oe&&(U=A=oe),K||(P=U),ae||(_=U),oe||(A=U)}return(A==null?void 0:A[L])??(_==null?void 0:_[L])??(P==null?void 0:P[L])??""}return n}const ya=["aria-label"],Aa={class:"DocSearch-Button-Container"},Pa={class:"DocSearch-Button-Placeholder"},Pe=b({__name:"VPNavBarSearchButton",setup(a){const t=$a({button:{buttonText:"Search",buttonAriaLabel:"Search"}});return(n,s)=>(o(),l("button",{type:"button",class:"DocSearch DocSearch-Button","aria-label":i(t)("button.buttonAriaLabel")},[p("span",Aa,[s[0]||(s[0]=p("span",{class:"vp-icon DocSearch-Search-Icon"},null,-1)),p("span",Pa,I(i(t)("button.buttonText")),1)]),s[1]||(s[1]=p("span",{class:"DocSearch-Button-Keys"},[p("kbd",{class:"DocSearch-Button-Key"}),p("kbd",{class:"DocSearch-Button-Key"},"K")],-1))],8,ya))}}),La={class:"VPNavBarSearch"},Va={id:"local-search"},Sa={key:1,id:"docsearch"},Ia=b({__name:"VPNavBarSearch",setup(a){const e=Xe(()=>qe(()=>import("./VPLocalSearchBox.DqU7th2f.js"),__vite__mapDeps([0,1]))),t=()=>null,{theme:n}=V(),s=S(!1),r=S(!1);O(()=>{});function c(){s.value||(s.value=!0,setTimeout(v,16))}function v(){const _=new Event("keydown");_.key="k",_.metaKey=!0,window.dispatchEvent(_),setTimeout(()=>{document.querySelector(".DocSearch-Modal")||v()},16)}function d(_){const P=_.target,L=P.tagName;return P.isContentEditable||L==="INPUT"||L==="SELECT"||L==="TEXTAREA"}const h=S(!1);le("k",_=>{(_.ctrlKey||_.metaKey)&&(_.preventDefault(),h.value=!0)}),le("/",_=>{d(_)||(_.preventDefault(),h.value=!0)});const A="local";return(_,P)=>{var L;return o(),l("div",La,[i(A)==="local"?(o(),l(C,{key:0},[h.value?(o(),$(i(e),{key:0,onClose:P[0]||(P[0]=w=>h.value=!1)})):m("",!0),p("div",Va,[g(Pe,{onClick:P[1]||(P[1]=w=>h.value=!0)})])],64)):i(A)==="algolia"?(o(),l(C,{key:1},[s.value?(o(),$(i(t),{key:0,algolia:((L=i(n).search)==null?void 0:L.options)??i(n).algolia,onVnodeBeforeMount:P[2]||(P[2]=w=>r.value=!0)},null,8,["algolia"])):m("",!0),r.value?m("",!0):(o(),l("div",Sa,[g(Pe,{onClick:c})]))],64)):m("",!0)])}}}),Na=b({__name:"VPNavBarSocialLinks",setup(a){const{theme:e}=V();return(t,n)=>i(e).socialLinks?(o(),$(ne,{key:0,class:"VPNavBarSocialLinks",links:i(e).socialLinks},null,8,["links"])):m("",!0)}}),Ta=k(Na,[["__scopeId","data-v-164c457f"]]),Ca=["href","rel","target"],wa=["innerHTML"],Ma={key:2},Ba=b({__name:"VPNavBarTitle",setup(a){const{site:e,theme:t}=V(),{hasSidebar:n}=D(),{currentLang:s}=Z(),r=y(()=>{var d;return typeof t.value.logoLink=="string"?t.value.logoLink:(d=t.value.logoLink)==null?void 0:d.link}),c=y(()=>{var d;return typeof t.value.logoLink=="string"||(d=t.value.logoLink)==null?void 0:d.rel}),v=y(()=>{var d;return typeof t.value.logoLink=="string"||(d=t.value.logoLink)==null?void 0:d.target});return(d,h)=>(o(),l("div",{class:T(["VPNavBarTitle",{"has-sidebar":i(n)}])},[p("a",{class:"title",href:r.value??i(be)(i(s).link),rel:c.value,target:v.value},[u(d.$slots,"nav-bar-title-before",{},void 0,!0),i(t).logo?(o(),$(X,{key:0,class:"logo",image:i(t).logo},null,8,["image"])):m("",!0),i(t).siteTitle?(o(),l("span",{key:1,innerHTML:i(t).siteTitle},null,8,wa)):i(t).siteTitle===void 0?(o(),l("span",Ma,I(i(e).title),1)):m("",!0),u(d.$slots,"nav-bar-title-after",{},void 0,!0)],8,Ca)],2))}}),Ea=k(Ba,[["__scopeId","data-v-0f4f798b"]]),Qa={class:"items"},Ha={class:"title"},Fa=b({__name:"VPNavBarTranslations",setup(a){const{theme:e}=V(),{localeLinks:t,currentLang:n}=Z({correspondingLink:!0});return(s,r)=>i(t).length&&i(n).label?(o(),$(ye,{key:0,class:"VPNavBarTranslations",icon:"vpi-languages",label:i(e).langMenuLabel||"Change language"},{default:f(()=>[p("div",Qa,[p("p",Ha,I(i(n).label),1),(o(!0),l(C,null,B(i(t),c=>(o(),$(se,{key:c.link,item:c},null,8,["item"]))),128))])]),_:1},8,["label"])):m("",!0)}}),Wa=k(Fa,[["__scopeId","data-v-c80d9ad0"]]),Oa={class:"wrapper"},Da={class:"container"},Ua={class:"title"},Ra={class:"content"},Ga={class:"content-body"},Ja=b({__name:"VPNavBar",props:{isScreenOpen:{type:Boolean}},emits:["toggle-screen"],setup(a){const e=a,{y:t}=Ce(),{hasSidebar:n}=D(),{frontmatter:s}=V(),r=S({});return me(()=>{r.value={"has-sidebar":n.value,home:s.value.layout==="home",top:t.value===0,"screen-open":e.isScreenOpen}}),(c,v)=>(o(),l("div",{class:T(["VPNavBar",r.value])},[p("div",Oa,[p("div",Da,[p("div",Ua,[g(Ea,null,{"nav-bar-title-before":f(()=>[u(c.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(c.$slots,"nav-bar-title-after",{},void 0,!0)]),_:3})]),p("div",Ra,[p("div",Ga,[u(c.$slots,"nav-bar-content-before",{},void 0,!0),g(Ia,{class:"search"}),g(ka,{class:"menu"}),g(Wa,{class:"translations"}),g(Tn,{class:"appearance"}),g(Ta,{class:"social-links"}),g(da,{class:"extra"}),u(c.$slots,"nav-bar-content-after",{},void 0,!0),g(fa,{class:"hamburger",active:c.isScreenOpen,onClick:v[0]||(v[0]=d=>c.$emit("toggle-screen"))},null,8,["active"])])])])]),v[1]||(v[1]=p("div",{class:"divider"},[p("div",{class:"divider-line"})],-1))],2))}}),Ka=k(Ja,[["__scopeId","data-v-822684d1"]]),ja={key:0,class:"VPNavScreenAppearance"},za={class:"text"},Za=b({__name:"VPNavScreenAppearance",setup(a){const{site:e,theme:t}=V();return(n,s)=>i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(o(),l("div",ja,[p("p",za,I(i(t).darkModeSwitchLabel||"Appearance"),1),g(ke)])):m("",!0)}}),Ya=k(Za,[["__scopeId","data-v-ffb44008"]]),Xa=["innerHTML"],qa=b({__name:"VPNavScreenMenuLink",props:{item:{}},setup(a){const e=j("close-screen");return(t,n)=>(o(),$(Q,{class:"VPNavScreenMenuLink",href:t.item.link,target:t.item.target,rel:t.item.rel,"no-icon":t.item.noIcon,onClick:i(e)},{default:f(()=>[p("span",{innerHTML:t.item.text},null,8,Xa)]),_:1},8,["href","target","rel","no-icon","onClick"]))}}),xa=k(qa,[["__scopeId","data-v-735512b8"]]),eo=["innerHTML"],to=b({__name:"VPNavScreenMenuGroupLink",props:{item:{}},setup(a){const e=j("close-screen");return(t,n)=>(o(),$(Q,{class:"VPNavScreenMenuGroupLink",href:t.item.link,target:t.item.target,rel:t.item.rel,"no-icon":t.item.noIcon,onClick:i(e)},{default:f(()=>[p("span",{innerHTML:t.item.text},null,8,eo)]),_:1},8,["href","target","rel","no-icon","onClick"]))}}),Oe=k(to,[["__scopeId","data-v-372ae7c0"]]),so={class:"VPNavScreenMenuGroupSection"},no={key:0,class:"title"},ao=b({__name:"VPNavScreenMenuGroupSection",props:{text:{},items:{}},setup(a){return(e,t)=>(o(),l("div",so,[e.text?(o(),l("p",no,I(e.text),1)):m("",!0),(o(!0),l(C,null,B(e.items,n=>(o(),$(Oe,{key:n.text,item:n},null,8,["item"]))),128))]))}}),oo=k(ao,[["__scopeId","data-v-4b8941ac"]]),ro=["aria-controls","aria-expanded"],io=["innerHTML"],lo=["id"],co={key:0,class:"item"},uo={key:1,class:"item"},po={key:2,class:"group"},vo=b({__name:"VPNavScreenMenuGroup",props:{text:{},items:{}},setup(a){const e=a,t=S(!1),n=y(()=>`NavScreenGroup-${e.text.replace(" ","-").toLowerCase()}`);function s(){t.value=!t.value}return(r,c)=>(o(),l("div",{class:T(["VPNavScreenMenuGroup",{open:t.value}])},[p("button",{class:"button","aria-controls":n.value,"aria-expanded":t.value,onClick:s},[p("span",{class:"button-text",innerHTML:r.text},null,8,io),c[0]||(c[0]=p("span",{class:"vpi-plus button-icon"},null,-1))],8,ro),p("div",{id:n.value,class:"items"},[(o(!0),l(C,null,B(r.items,v=>(o(),l(C,{key:JSON.stringify(v)},["link"in v?(o(),l("div",co,[g(Oe,{item:v},null,8,["item"])])):"component"in v?(o(),l("div",uo,[(o(),$(H(v.component),R({ref_for:!0},v.props,{"screen-menu":""}),null,16))])):(o(),l("div",po,[g(oo,{text:v.text,items:v.items},null,8,["text","items"])]))],64))),128))],8,lo)],2))}}),De=k(vo,[["__scopeId","data-v-875057a5"]]),fo={key:0,class:"VPNavScreenMenu"},mo=b({__name:"VPNavScreenMenu",setup(a){const{theme:e}=V();return(t,n)=>i(e).nav?(o(),l("nav",fo,[(o(!0),l(C,null,B(i(e).nav,s=>(o(),l(C,{key:JSON.stringify(s)},["link"in s?(o(),$(xa,{key:0,item:s},null,8,["item"])):"component"in s?(o(),$(H(s.component),R({key:1,ref_for:!0},s.props,{"screen-menu":""}),null,16)):(o(),$(De,{key:2,text:s.text||"",items:s.items},null,8,["text","items"]))],64))),128))])):m("",!0)}}),ho=b({__name:"VPNavScreenSocialLinks",setup(a){const{theme:e}=V();return(t,n)=>i(e).socialLinks?(o(),$(ne,{key:0,class:"VPNavScreenSocialLinks",links:i(e).socialLinks},null,8,["links"])):m("",!0)}}),_o={class:"list"},bo=b({__name:"VPNavScreenTranslations",setup(a){const{localeLinks:e,currentLang:t}=Z({correspondingLink:!0}),n=S(!1);function s(){n.value=!n.value}return(r,c)=>i(e).length&&i(t).label?(o(),l("div",{key:0,class:T(["VPNavScreenTranslations",{open:n.value}])},[p("button",{class:"title",onClick:s},[c[0]||(c[0]=p("span",{class:"vpi-languages icon lang"},null,-1)),F(" "+I(i(t).label)+" ",1),c[1]||(c[1]=p("span",{class:"vpi-chevron-down icon chevron"},null,-1))]),p("ul",_o,[(o(!0),l(C,null,B(i(e),v=>(o(),l("li",{key:v.link,class:"item"},[g(Q,{class:"link",href:v.link},{default:f(()=>[F(I(v.text),1)]),_:2},1032,["href"])]))),128))])],2)):m("",!0)}}),go=k(bo,[["__scopeId","data-v-362991c2"]]),ko={class:"container"},$o=b({__name:"VPNavScreen",props:{open:{type:Boolean}},setup(a){const e=S(null),t=we(te?document.body:null);return(n,s)=>(o(),$(pe,{name:"fade",onEnter:s[0]||(s[0]=r=>t.value=!0),onAfterLeave:s[1]||(s[1]=r=>t.value=!1)},{default:f(()=>[n.open?(o(),l("div",{key:0,class:"VPNavScreen",ref_key:"screen",ref:e,id:"VPNavScreen"},[p("div",ko,[u(n.$slots,"nav-screen-content-before",{},void 0,!0),g(mo,{class:"menu"}),g(go,{class:"translations"}),g(Ya,{class:"appearance"}),g(ho,{class:"social-links"}),u(n.$slots,"nav-screen-content-after",{},void 0,!0)])],512)):m("",!0)]),_:3}))}}),yo=k($o,[["__scopeId","data-v-833aabba"]]),Ao={key:0,class:"VPNav"},Po=b({__name:"VPNav",setup(a){const{isScreenOpen:e,closeScreen:t,toggleScreen:n}=kn(),{frontmatter:s}=V(),r=y(()=>s.value.navbar!==!1);return _e("close-screen",t),q(()=>{te&&document.documentElement.classList.toggle("hide-nav",!r.value)}),(c,v)=>r.value?(o(),l("header",Ao,[g(Ka,{"is-screen-open":i(e),onToggleScreen:i(n)},{"nav-bar-title-before":f(()=>[u(c.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(c.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[u(c.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[u(c.$slots,"nav-bar-content-after",{},void 0,!0)]),_:3},8,["is-screen-open","onToggleScreen"]),g(yo,{open:i(e)},{"nav-screen-content-before":f(()=>[u(c.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[u(c.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3},8,["open"])])):m("",!0)}}),Lo=k(Po,[["__scopeId","data-v-f1e365da"]]),Vo=["role","tabindex"],So={key:1,class:"items"},Io=b({__name:"VPSidebarItem",props:{item:{},depth:{}},setup(a){const e=a,{collapsed:t,collapsible:n,isLink:s,isActiveLink:r,hasActiveLink:c,hasChildren:v,toggle:d}=At(y(()=>e.item)),h=y(()=>v.value?"section":"div"),A=y(()=>s.value?"a":"div"),_=y(()=>v.value?e.depth+2===7?"p":`h${e.depth+2}`:"p"),P=y(()=>s.value?void 0:"button"),L=y(()=>[[`level-${e.depth}`],{collapsible:n.value},{collapsed:t.value},{"is-link":s.value},{"is-active":r.value},{"has-active":c.value}]);function w(N){"key"in N&&N.key!=="Enter"||!e.item.link&&d()}function M(){e.item.link&&d()}return(N,E)=>{const U=G("VPSidebarItem",!0);return o(),$(H(h.value),{class:T(["VPSidebarItem",L.value])},{default:f(()=>[N.item.text?(o(),l("div",R({key:0,class:"item",role:P.value},xe(N.item.items?{click:w,keydown:w}:{},!0),{tabindex:N.item.items&&0}),[E[1]||(E[1]=p("div",{class:"indicator"},null,-1)),N.item.link?(o(),$(Q,{key:0,tag:A.value,class:"link",href:N.item.link,rel:N.item.rel,target:N.item.target},{default:f(()=>[(o(),$(H(_.value),{class:"text",innerHTML:N.item.text},null,8,["innerHTML"]))]),_:1},8,["tag","href","rel","target"])):(o(),$(H(_.value),{key:1,class:"text",innerHTML:N.item.text},null,8,["innerHTML"])),N.item.collapsed!=null&&N.item.items&&N.item.items.length?(o(),l("div",{key:2,class:"caret",role:"button","aria-label":"toggle section",onClick:M,onKeydown:et(M,["enter"]),tabindex:"0"},E[0]||(E[0]=[p("span",{class:"vpi-chevron-right caret-icon"},null,-1)]),32)):m("",!0)],16,Vo)):m("",!0),N.item.items&&N.item.items.length?(o(),l("div",So,[N.depth<5?(o(!0),l(C,{key:0},B(N.item.items,K=>(o(),$(U,{key:K.text,item:K,depth:N.depth+1},null,8,["item","depth"]))),128)):m("",!0)])):m("",!0)]),_:1},8,["class"])}}}),No=k(Io,[["__scopeId","data-v-196b2e5f"]]),To=b({__name:"VPSidebarGroup",props:{items:{}},setup(a){const e=S(!0);let t=null;return O(()=>{t=setTimeout(()=>{t=null,e.value=!1},300)}),tt(()=>{t!=null&&(clearTimeout(t),t=null)}),(n,s)=>(o(!0),l(C,null,B(n.items,r=>(o(),l("div",{key:r.text,class:T(["group",{"no-transition":e.value}])},[g(No,{item:r,depth:0},null,8,["item"])],2))),128))}}),Co=k(To,[["__scopeId","data-v-9e426adc"]]),wo={class:"nav",id:"VPSidebarNav","aria-labelledby":"sidebar-aria-label",tabindex:"-1"},Mo=b({__name:"VPSidebar",props:{open:{type:Boolean}},setup(a){const{sidebarGroups:e,hasSidebar:t}=D(),n=a,s=S(null),r=we(te?document.body:null);W([n,s],()=>{var v;n.open?(r.value=!0,(v=s.value)==null||v.focus()):r.value=!1},{immediate:!0,flush:"post"});const c=S(0);return W(e,()=>{c.value+=1},{deep:!0}),(v,d)=>i(t)?(o(),l("aside",{key:0,class:T(["VPSidebar",{open:v.open}]),ref_key:"navEl",ref:s,onClick:d[0]||(d[0]=st(()=>{},["stop"]))},[d[2]||(d[2]=p("div",{class:"curtain"},null,-1)),p("nav",wo,[d[1]||(d[1]=p("span",{class:"visually-hidden",id:"sidebar-aria-label"}," Sidebar Navigation ",-1)),u(v.$slots,"sidebar-nav-before",{},void 0,!0),(o(),$(Co,{items:i(e),key:c.value},null,8,["items"])),u(v.$slots,"sidebar-nav-after",{},void 0,!0)])],2)):m("",!0)}}),Bo=k(Mo,[["__scopeId","data-v-18756405"]]),Eo=b({__name:"VPSkipLink",setup(a){const e=ee(),t=S();W(()=>e.path,()=>t.value.focus());function n({target:s}){const r=document.getElementById(decodeURIComponent(s.hash).slice(1));if(r){const c=()=>{r.removeAttribute("tabindex"),r.removeEventListener("blur",c)};r.setAttribute("tabindex","-1"),r.addEventListener("blur",c),r.focus(),window.scrollTo(0,0)}}return(s,r)=>(o(),l(C,null,[p("span",{ref_key:"backToTop",ref:t,tabindex:"-1"},null,512),p("a",{href:"#VPContent",class:"VPSkipLink visually-hidden",onClick:n}," Skip to content ")],64))}}),Qo=k(Eo,[["__scopeId","data-v-c3508ec8"]]),Ho=b({__name:"Layout",setup(a){const{isOpen:e,open:t,close:n}=D(),s=ee();W(()=>s.path,n),yt(e,n);const{frontmatter:r}=V(),c=Me(),v=y(()=>!!c["home-hero-image"]);return _e("hero-image-slot-exists",v),(d,h)=>{const A=G("Content");return i(r).layout!==!1?(o(),l("div",{key:0,class:T(["Layout",i(r).pageClass])},[u(d.$slots,"layout-top",{},void 0,!0),g(Qo),g(ct,{class:"backdrop",show:i(e),onClick:i(n)},null,8,["show","onClick"]),g(Lo,null,{"nav-bar-title-before":f(()=>[u(d.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(d.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[u(d.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[u(d.$slots,"nav-bar-content-after",{},void 0,!0)]),"nav-screen-content-before":f(()=>[u(d.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[u(d.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3}),g(gn,{open:i(e),onOpenMenu:i(t)},null,8,["open","onOpenMenu"]),g(Bo,{open:i(e)},{"sidebar-nav-before":f(()=>[u(d.$slots,"sidebar-nav-before",{},void 0,!0)]),"sidebar-nav-after":f(()=>[u(d.$slots,"sidebar-nav-after",{},void 0,!0)]),_:3},8,["open"]),g(sn,null,{"page-top":f(()=>[u(d.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[u(d.$slots,"page-bottom",{},void 0,!0)]),"not-found":f(()=>[u(d.$slots,"not-found",{},void 0,!0)]),"home-hero-before":f(()=>[u(d.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[u(d.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(d.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(d.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(d.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(d.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[u(d.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[u(d.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[u(d.$slots,"home-features-after",{},void 0,!0)]),"doc-footer-before":f(()=>[u(d.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[u(d.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[u(d.$slots,"doc-after",{},void 0,!0)]),"doc-top":f(()=>[u(d.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[u(d.$slots,"doc-bottom",{},void 0,!0)]),"aside-top":f(()=>[u(d.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[u(d.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[u(d.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(d.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(d.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(d.$slots,"aside-ads-after",{},void 0,!0)]),_:3}),g(ln),u(d.$slots,"layout-bottom",{},void 0,!0)],2)):(o(),$(A,{key:1}))}}}),Fo=k(Ho,[["__scopeId","data-v-a9a9e638"]]),Wo={},Oo={class:"VPTeamPage"};function Do(a,e){return o(),l("div",Oo,[u(a.$slots,"default")])}const Fr=k(Wo,[["render",Do],["__scopeId","data-v-c2f8e101"]]),Uo={},Ro={class:"VPTeamPageTitle"},Go={key:0,class:"title"},Jo={key:1,class:"lead"};function Ko(a,e){return o(),l("div",Ro,[a.$slots.title?(o(),l("h1",Go,[u(a.$slots,"title",{},void 0,!0)])):m("",!0),a.$slots.lead?(o(),l("p",Jo,[u(a.$slots,"lead",{},void 0,!0)])):m("",!0)])}const Wr=k(Uo,[["render",Ko],["__scopeId","data-v-e277e15c"]]),jo={},zo={class:"VPTeamPageSection"},Zo={class:"title"},Yo={key:0,class:"title-text"},Xo={key:0,class:"lead"},qo={key:1,class:"members"};function xo(a,e){return o(),l("section",zo,[p("div",Zo,[e[0]||(e[0]=p("div",{class:"title-line"},null,-1)),a.$slots.title?(o(),l("h2",Yo,[u(a.$slots,"title",{},void 0,!0)])):m("",!0)]),a.$slots.lead?(o(),l("p",Xo,[u(a.$slots,"lead",{},void 0,!0)])):m("",!0),a.$slots.members?(o(),l("div",qo,[u(a.$slots,"members",{},void 0,!0)])):m("",!0)])}const Or=k(jo,[["render",xo],["__scopeId","data-v-d43bc49d"]]),er={class:"profile"},tr={class:"avatar"},sr=["src","alt"],nr={class:"data"},ar={class:"name"},or={key:0,class:"affiliation"},rr={key:0,class:"title"},ir={key:1,class:"at"},lr=["innerHTML"],cr={key:2,class:"links"},ur={key:0,class:"sp"},dr=b({__name:"VPTeamMembersItem",props:{size:{default:"medium"},member:{}},setup(a){return(e,t)=>(o(),l("article",{class:T(["VPTeamMembersItem",[e.size]])},[p("div",er,[p("figure",tr,[p("img",{class:"avatar-img",src:e.member.avatar,alt:e.member.name},null,8,sr)]),p("div",nr,[p("h1",ar,I(e.member.name),1),e.member.title||e.member.org?(o(),l("p",or,[e.member.title?(o(),l("span",rr,I(e.member.title),1)):m("",!0),e.member.title&&e.member.org?(o(),l("span",ir," @ ")):m("",!0),e.member.org?(o(),$(Q,{key:2,class:T(["org",{link:e.member.orgLink}]),href:e.member.orgLink,"no-icon":""},{default:f(()=>[F(I(e.member.org),1)]),_:1},8,["class","href"])):m("",!0)])):m("",!0),e.member.desc?(o(),l("p",{key:1,class:"desc",innerHTML:e.member.desc},null,8,lr)):m("",!0),e.member.links?(o(),l("div",cr,[g(ne,{links:e.member.links},null,8,["links"])])):m("",!0)])]),e.member.sponsor?(o(),l("div",ur,[g(Q,{class:"sp-link",href:e.member.sponsor,"no-icon":""},{default:f(()=>[t[0]||(t[0]=p("span",{class:"vpi-heart sp-icon"},null,-1)),F(" "+I(e.member.actionText||"Sponsor"),1)]),_:1},8,["href"])])):m("",!0)],2))}}),pr=k(dr,[["__scopeId","data-v-f9987cb6"]]),vr={class:"container"},fr=b({__name:"VPTeamMembers",props:{size:{default:"medium"},members:{}},setup(a){const e=a,t=y(()=>[e.size,`count-${e.members.length}`]);return(n,s)=>(o(),l("div",{class:T(["VPTeamMembers",t.value])},[p("div",vr,[(o(!0),l(C,null,B(n.members,r=>(o(),l("div",{key:r.name,class:"item"},[g(pr,{size:n.size,member:r},null,8,["size","member"])]))),128))])],2))}}),Dr=k(fr,[["__scopeId","data-v-fba19bad"]]),Le={Layout:Fo,enhanceApp:({app:a})=>{a.component("Badge",rt)}},mr={},hr={style:{"text-align":"center"}};function _r(a,e){const t=G("font");return o(),l(C,null,[e[1]||(e[1]=p("br",null,null,-1)),p("h1",hr,[p("strong",null,[g(t,{color:"orange"},{default:f(()=>e[0]||(e[0]=[F(" Package Ecosystem")])),_:1})])]),e[2]||(e[2]=nt('

Read n-d array like-data

DiskArrays.jl

Get your chunks!

Named Dimensions

DimensionalData.jl

Select & Index!

Out of memory data

Zarr.jl

Chunkerd, compressed !

Rasterized spatial data

Rasters.jl

Read and manipulate !

Array-oriented data

NetCDF.jl

Scientific binary data.

Raster and vector data

ArchGDAL.jl

GDAL in Julia.

An interface for

GeoInterface.jl

geospatial data in Julia.

A higher level interface

GRIBDatasets.jl

for reading GRIB files.

Array-oriented data

NCDatasets.jl

Scientific binary data.

',9))],64)}const br=k(mr,[["render",_r]]),gr=b({__name:"VersionPicker",props:{screenMenu:{type:Boolean}},setup(a){const e=S([]),t=S("Versions"),n=S(!1);Se();const s=()=>typeof window<"u"&&(window.location.hostname==="localhost"||window.location.hostname==="127.0.0.1"),r=()=>{if(typeof window>"u")return"";const{origin:d,pathname:h}=window.location;if(d.includes("github.io")){const A=h.split("/").filter(Boolean),_=A.length>0?`/${A[0]}/`:"/";return`${d}${_}`}else return d},c=()=>new Promise(d=>{if(s()){d(!1);return}const h=setInterval(()=>{window.DOC_VERSIONS&&window.DOCUMENTER_CURRENT_VERSION&&(clearInterval(h),d(!0))},100);setTimeout(()=>{clearInterval(h),d(!1)},5e3)});return O(async()=>{if(!(typeof window>"u")){try{if(s()){const d=["dev"];e.value=d.map(h=>({text:h,link:"/"})),t.value="dev"}else{const d=await c(),h=y(()=>r());if(d&&window.DOC_VERSIONS&&window.DOCUMENTER_CURRENT_VERSION)e.value=window.DOC_VERSIONS.map(A=>({text:A,link:`${h.value}/${A}/`})),t.value=window.DOCUMENTER_CURRENT_VERSION;else{const A=["dev"];e.value=A.map(_=>({text:_,link:`${h.value}/${_}/`})),t.value="dev"}}}catch(d){console.warn("Error loading versions:",d);const h=["dev"],A=y(()=>r());e.value=h.map(_=>({text:_,link:`${A.value}/${_}/`})),t.value="dev"}n.value=!0}}),(d,h)=>n.value?(o(),l(C,{key:0},[!d.screenMenu&&e.value.length>0?(o(),$(We,{key:0,item:{text:t.value,items:e.value},class:"VPVersionPicker"},null,8,["item"])):d.screenMenu&&e.value.length>0?(o(),$(De,{key:1,text:t.value,items:e.value,class:"VPVersionPicker"},null,8,["text","items"])):m("",!0)],64)):m("",!0)}}),kr=k(gr,[["__scopeId","data-v-f465cb49"]]),$r=a=>{if(typeof document>"u")return{stabilizeScrollPosition:s=>async(...r)=>s(...r)};const e=document.documentElement;return{stabilizeScrollPosition:n=>async(...s)=>{const r=n(...s),c=a.value;if(!c)return r;const v=c.offsetTop-e.scrollTop;return await he(),e.scrollTop=c.offsetTop-v,r}}},Ue="vitepress:tabSharedState",z=typeof localStorage<"u"?localStorage:null,Re="vitepress:tabsSharedState",yr=()=>{const a=z==null?void 0:z.getItem(Re);if(a)try{return JSON.parse(a)}catch{}return{}},Ar=a=>{z&&z.setItem(Re,JSON.stringify(a))},Pr=a=>{const e=at({});W(()=>e.content,(t,n)=>{t&&n&&Ar(t)},{deep:!0}),a.provide(Ue,e)},Lr=(a,e)=>{const t=j(Ue);if(!t)throw new Error("[vitepress-plugin-tabs] TabsSharedState should be injected");O(()=>{t.content||(t.content=yr())});const n=S(),s=y({get(){var d;const c=e.value,v=a.value;if(c){const h=(d=t.content)==null?void 0:d[c];if(h&&v.includes(h))return h}else{const h=n.value;if(h)return h}return v[0]},set(c){const v=e.value;v?t.content&&(t.content[v]=c):n.value=c}});return{selected:s,select:c=>{s.value=c}}};let Ve=0;const Vr=()=>(Ve++,""+Ve);function Sr(){const a=Me();return y(()=>{var n;const t=(n=a.default)==null?void 0:n.call(a);return t?t.filter(s=>typeof s.type=="object"&&"__name"in s.type&&s.type.__name==="PluginTabsTab"&&s.props).map(s=>{var r;return(r=s.props)==null?void 0:r.label}):[]})}const Ge="vitepress:tabSingleState",Ir=a=>{_e(Ge,a)},Nr=()=>{const a=j(Ge);if(!a)throw new Error("[vitepress-plugin-tabs] TabsSingleState should be injected");return a},Tr={class:"plugin-tabs"},Cr=["id","aria-selected","aria-controls","tabindex","onClick"],wr=b({__name:"PluginTabs",props:{sharedStateKey:{}},setup(a){const e=a,t=Sr(),{selected:n,select:s}=Lr(t,ot(e,"sharedStateKey")),r=S(),{stabilizeScrollPosition:c}=$r(r),v=c(s),d=S([]),h=_=>{var w;const P=t.value.indexOf(n.value);let L;_.key==="ArrowLeft"?L=P>=1?P-1:t.value.length-1:_.key==="ArrowRight"&&(L=P(o(),l("div",Tr,[p("div",{ref_key:"tablist",ref:r,class:"plugin-tabs--tab-list",role:"tablist",onKeydown:h},[(o(!0),l(C,null,B(i(t),L=>(o(),l("button",{id:`tab-${L}-${i(A)}`,ref_for:!0,ref_key:"buttonRefs",ref:d,key:L,role:"tab",class:"plugin-tabs--tab","aria-selected":L===i(n),"aria-controls":`panel-${L}-${i(A)}`,tabindex:L===i(n)?0:-1,onClick:()=>i(v)(L)},I(L),9,Cr))),128))],544),u(_.$slots,"default")]))}}),Mr=["id","aria-labelledby"],Br=b({__name:"PluginTabsTab",props:{label:{}},setup(a){const{uid:e,selected:t}=Nr();return(n,s)=>i(t)===n.label?(o(),l("div",{key:0,id:`panel-${n.label}-${i(e)}`,class:"plugin-tabs--content",role:"tabpanel",tabindex:"0","aria-labelledby":`tab-${n.label}-${i(e)}`},[u(n.$slots,"default",{},void 0,!0)],8,Mr)):m("",!0)}}),Er=k(Br,[["__scopeId","data-v-9b0d03d2"]]),Qr=a=>{Pr(a),a.component("PluginTabs",wr),a.component("PluginTabsTab",Er)},Ur={extends:Le,Layout(){return Ae(Le.Layout,null,{"aside-ads-before":()=>Ae(br)})},enhanceApp({app:a,router:e,siteData:t}){Qr(a),a.component("VersionPicker",kr)}};export{Ur as R,Wr as V,Dr as a,Or as b,Fr as c,$a as d,V as u}; diff --git a/previews/PR479/assets/development_contributors.md.CBWqoCWc.js b/previews/PR479/assets/development_contributors.md.CStJtQsj.js similarity index 98% rename from previews/PR479/assets/development_contributors.md.CBWqoCWc.js rename to previews/PR479/assets/development_contributors.md.CStJtQsj.js index 31f1b3ba..ef549518 100644 --- a/previews/PR479/assets/development_contributors.md.CBWqoCWc.js +++ b/previews/PR479/assets/development_contributors.md.CStJtQsj.js @@ -1 +1 @@ -import{V as u,a as l,b as m,c as g}from"./chunks/theme.Cb66Hod8.js";import{c as h,G as r,w as s,k as n,B as c,o as b,a as e,j as t}from"./chunks/framework.DYY3HcdR.js";const p={align:"justify"},z=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"page"},"headers":[],"relativePath":"development/contributors.md","filePath":"development/contributors.md","lastUpdated":null}'),v={name:"development/contributors.md"},j=Object.assign(v,{setup(f){const o=[{avatar:"https://www.bgc-jena.mpg.de/employee_images/121366-1667825290?t=eyJ3aWR0aCI6MjEzLCJoZWlnaHQiOjI3NCwiZml0IjoiY3JvcCIsImZpbGVfZXh0ZW5zaW9uIjoid2VicCIsInF1YWxpdHkiOjg2fQ%3D%3D--3e1d41ff4b1ea8928e6734bc473242a90f797dea",name:"Fabian Gans",title:"Geoscientific Programmer",links:[{icon:"github",link:"https://github.com/meggart"}]},{avatar:"https://avatars.githubusercontent.com/u/17124431?v=4",name:"Felix Cremer",title:"PhD Candidate in Remote Sensing",links:[{icon:"github",link:"https://github.com/felixcremer"}]},{avatar:"https://avatars.githubusercontent.com/u/2534009?v=4",name:"Rafael Schouten",title:"Spatial/ecological modelling",links:[{icon:"github",link:"https://github.com/rafaqz"}]},{avatar:"https://avatars.githubusercontent.com/u/19525261?v=4",name:"Lazaro Alonso",title:"Scientist. Data Visualization",links:[{icon:"github",link:"https://github.com/lazarusA"},{icon:"x",link:"https://twitter.com/LazarusAlon"},{icon:"linkedin",link:"https://www.linkedin.com/in/lazaro-alonso/"},{icon:"mastodon",link:"https://julialang.social/@LazaroAlonso"}]}];return(d,a)=>{const i=c("font");return b(),h("div",null,[r(n(g),null,{default:s(()=>[r(n(u),null,{title:s(()=>a[0]||(a[0]=[e("Contributors")])),lead:s(()=>[a[8]||(a[8]=t("strong",null,"Current core contributors ",-1)),a[9]||(a[9]=e()),a[10]||(a[10]=t("br",null,null,-1)),t("div",p,[a[4]||(a[4]=e(" They have taking the lead for the ongoing organizational maintenance and technical direction of ")),r(i,{color:"orange"},{default:s(()=>a[1]||(a[1]=[e("YAXArrays.jl")])),_:1}),a[5]||(a[5]=e(", ")),r(i,{color:"orange"},{default:s(()=>a[2]||(a[2]=[e("DiskArrays.jl")])),_:1}),a[6]||(a[6]=e(" and ")),r(i,{color:"orange"},{default:s(()=>a[3]||(a[3]=[e("DimensionalData.jl")])),_:1}),a[7]||(a[7]=e(". "))])]),_:1}),r(n(l),{size:"small",members:o}),r(n(m),null,{title:s(()=>a[11]||(a[11]=[e("Our valuable contributors")])),lead:s(()=>a[12]||(a[12]=[e(" We appreciate all contributions from the Julia community so that this ecosystem can thrive."),t("br",null,null,-1)])),members:s(()=>a[13]||(a[13]=[t("div",{class:"row"},[t("a",{href:"https://github.com/meggart",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2539563?v=4"})]),t("a",{href:"https://github.com/felixcremer",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/17124431?v=4"})]),t("a",{href:"https://github.com/lazarusA",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19525261?v=4"})]),t("a",{href:"https://github.com/gdkrmr",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/12512930?v=4"})]),t("a",{href:"https://github.com/apps/github-actions",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/15368?v=4"})]),t("a",{href:"https://github.com/pdimens",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19176506?v=4"})]),t("a",{href:"https://github.com/twinGu",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/29449917?v=4"})]),t("a",{href:"https://github.com/dpabon",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/13040959?v=4"})]),t("a",{href:"https://github.com/Qfl3x",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/20775896?v=4"})]),t("a",{href:"https://github.com/kongdd",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/9815742?v=4"})]),t("a",{href:"https://github.com/MartinuzziFrancesco",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10376688?v=4"})]),t("a",{href:"https://github.com/Sonicious",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/16307399?v=4"})]),t("a",{href:"https://github.com/rafaqz",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2534009?v=4"})]),t("a",{href:"https://github.com/danlooo",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/5780565?v=4"})]),t("a",{href:"https://github.com/MarkusZehner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/56972144?v=4"})]),t("a",{href:"https://github.com/Balinus",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/3630311?v=4"})]),t("a",{href:"https://github.com/singularitti",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/25192197?v=4"})]),t("a",{href:"https://github.com/ckrich",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/28727495?v=4"})]),t("a",{href:"https://github.com/apps/femtocleaner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/4123?v=4"})]),t("a",{href:"https://github.com/ikselven",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10441332?v=4"})]),t("a",{href:"https://github.com/linamaes",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/7131773?v=4"})])],-1)])),_:1})]),_:1})])}}});export{z as __pageData,j as default}; +import{V as u,a as l,b as m,c as g}from"./chunks/theme.6qbPyd-G.js";import{c as h,G as r,w as s,k as n,B as c,o as b,a as e,j as t}from"./chunks/framework.DYY3HcdR.js";const p={align:"justify"},z=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"page"},"headers":[],"relativePath":"development/contributors.md","filePath":"development/contributors.md","lastUpdated":null}'),v={name:"development/contributors.md"},j=Object.assign(v,{setup(f){const o=[{avatar:"https://www.bgc-jena.mpg.de/employee_images/121366-1667825290?t=eyJ3aWR0aCI6MjEzLCJoZWlnaHQiOjI3NCwiZml0IjoiY3JvcCIsImZpbGVfZXh0ZW5zaW9uIjoid2VicCIsInF1YWxpdHkiOjg2fQ%3D%3D--3e1d41ff4b1ea8928e6734bc473242a90f797dea",name:"Fabian Gans",title:"Geoscientific Programmer",links:[{icon:"github",link:"https://github.com/meggart"}]},{avatar:"https://avatars.githubusercontent.com/u/17124431?v=4",name:"Felix Cremer",title:"PhD Candidate in Remote Sensing",links:[{icon:"github",link:"https://github.com/felixcremer"}]},{avatar:"https://avatars.githubusercontent.com/u/2534009?v=4",name:"Rafael Schouten",title:"Spatial/ecological modelling",links:[{icon:"github",link:"https://github.com/rafaqz"}]},{avatar:"https://avatars.githubusercontent.com/u/19525261?v=4",name:"Lazaro Alonso",title:"Scientist. Data Visualization",links:[{icon:"github",link:"https://github.com/lazarusA"},{icon:"x",link:"https://twitter.com/LazarusAlon"},{icon:"linkedin",link:"https://www.linkedin.com/in/lazaro-alonso/"},{icon:"mastodon",link:"https://julialang.social/@LazaroAlonso"}]}];return(d,a)=>{const i=c("font");return b(),h("div",null,[r(n(g),null,{default:s(()=>[r(n(u),null,{title:s(()=>a[0]||(a[0]=[e("Contributors")])),lead:s(()=>[a[8]||(a[8]=t("strong",null,"Current core contributors ",-1)),a[9]||(a[9]=e()),a[10]||(a[10]=t("br",null,null,-1)),t("div",p,[a[4]||(a[4]=e(" They have taking the lead for the ongoing organizational maintenance and technical direction of ")),r(i,{color:"orange"},{default:s(()=>a[1]||(a[1]=[e("YAXArrays.jl")])),_:1}),a[5]||(a[5]=e(", ")),r(i,{color:"orange"},{default:s(()=>a[2]||(a[2]=[e("DiskArrays.jl")])),_:1}),a[6]||(a[6]=e(" and ")),r(i,{color:"orange"},{default:s(()=>a[3]||(a[3]=[e("DimensionalData.jl")])),_:1}),a[7]||(a[7]=e(". "))])]),_:1}),r(n(l),{size:"small",members:o}),r(n(m),null,{title:s(()=>a[11]||(a[11]=[e("Our valuable contributors")])),lead:s(()=>a[12]||(a[12]=[e(" We appreciate all contributions from the Julia community so that this ecosystem can thrive."),t("br",null,null,-1)])),members:s(()=>a[13]||(a[13]=[t("div",{class:"row"},[t("a",{href:"https://github.com/meggart",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2539563?v=4"})]),t("a",{href:"https://github.com/felixcremer",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/17124431?v=4"})]),t("a",{href:"https://github.com/lazarusA",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19525261?v=4"})]),t("a",{href:"https://github.com/gdkrmr",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/12512930?v=4"})]),t("a",{href:"https://github.com/apps/github-actions",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/15368?v=4"})]),t("a",{href:"https://github.com/pdimens",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19176506?v=4"})]),t("a",{href:"https://github.com/twinGu",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/29449917?v=4"})]),t("a",{href:"https://github.com/dpabon",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/13040959?v=4"})]),t("a",{href:"https://github.com/Qfl3x",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/20775896?v=4"})]),t("a",{href:"https://github.com/kongdd",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/9815742?v=4"})]),t("a",{href:"https://github.com/MartinuzziFrancesco",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10376688?v=4"})]),t("a",{href:"https://github.com/Sonicious",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/16307399?v=4"})]),t("a",{href:"https://github.com/rafaqz",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2534009?v=4"})]),t("a",{href:"https://github.com/danlooo",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/5780565?v=4"})]),t("a",{href:"https://github.com/MarkusZehner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/56972144?v=4"})]),t("a",{href:"https://github.com/Balinus",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/3630311?v=4"})]),t("a",{href:"https://github.com/singularitti",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/25192197?v=4"})]),t("a",{href:"https://github.com/ckrich",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/28727495?v=4"})]),t("a",{href:"https://github.com/apps/femtocleaner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/4123?v=4"})]),t("a",{href:"https://github.com/ikselven",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10441332?v=4"})]),t("a",{href:"https://github.com/linamaes",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/7131773?v=4"})])],-1)])),_:1})]),_:1})])}}});export{z as __pageData,j as default}; diff --git a/previews/PR479/assets/development_contributors.md.CBWqoCWc.lean.js b/previews/PR479/assets/development_contributors.md.CStJtQsj.lean.js similarity index 98% rename from previews/PR479/assets/development_contributors.md.CBWqoCWc.lean.js rename to previews/PR479/assets/development_contributors.md.CStJtQsj.lean.js index 31f1b3ba..ef549518 100644 --- a/previews/PR479/assets/development_contributors.md.CBWqoCWc.lean.js +++ b/previews/PR479/assets/development_contributors.md.CStJtQsj.lean.js @@ -1 +1 @@ -import{V as u,a as l,b as m,c as g}from"./chunks/theme.Cb66Hod8.js";import{c as h,G as r,w as s,k as n,B as c,o as b,a as e,j as t}from"./chunks/framework.DYY3HcdR.js";const p={align:"justify"},z=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"page"},"headers":[],"relativePath":"development/contributors.md","filePath":"development/contributors.md","lastUpdated":null}'),v={name:"development/contributors.md"},j=Object.assign(v,{setup(f){const o=[{avatar:"https://www.bgc-jena.mpg.de/employee_images/121366-1667825290?t=eyJ3aWR0aCI6MjEzLCJoZWlnaHQiOjI3NCwiZml0IjoiY3JvcCIsImZpbGVfZXh0ZW5zaW9uIjoid2VicCIsInF1YWxpdHkiOjg2fQ%3D%3D--3e1d41ff4b1ea8928e6734bc473242a90f797dea",name:"Fabian Gans",title:"Geoscientific Programmer",links:[{icon:"github",link:"https://github.com/meggart"}]},{avatar:"https://avatars.githubusercontent.com/u/17124431?v=4",name:"Felix Cremer",title:"PhD Candidate in Remote Sensing",links:[{icon:"github",link:"https://github.com/felixcremer"}]},{avatar:"https://avatars.githubusercontent.com/u/2534009?v=4",name:"Rafael Schouten",title:"Spatial/ecological modelling",links:[{icon:"github",link:"https://github.com/rafaqz"}]},{avatar:"https://avatars.githubusercontent.com/u/19525261?v=4",name:"Lazaro Alonso",title:"Scientist. Data Visualization",links:[{icon:"github",link:"https://github.com/lazarusA"},{icon:"x",link:"https://twitter.com/LazarusAlon"},{icon:"linkedin",link:"https://www.linkedin.com/in/lazaro-alonso/"},{icon:"mastodon",link:"https://julialang.social/@LazaroAlonso"}]}];return(d,a)=>{const i=c("font");return b(),h("div",null,[r(n(g),null,{default:s(()=>[r(n(u),null,{title:s(()=>a[0]||(a[0]=[e("Contributors")])),lead:s(()=>[a[8]||(a[8]=t("strong",null,"Current core contributors ",-1)),a[9]||(a[9]=e()),a[10]||(a[10]=t("br",null,null,-1)),t("div",p,[a[4]||(a[4]=e(" They have taking the lead for the ongoing organizational maintenance and technical direction of ")),r(i,{color:"orange"},{default:s(()=>a[1]||(a[1]=[e("YAXArrays.jl")])),_:1}),a[5]||(a[5]=e(", ")),r(i,{color:"orange"},{default:s(()=>a[2]||(a[2]=[e("DiskArrays.jl")])),_:1}),a[6]||(a[6]=e(" and ")),r(i,{color:"orange"},{default:s(()=>a[3]||(a[3]=[e("DimensionalData.jl")])),_:1}),a[7]||(a[7]=e(". "))])]),_:1}),r(n(l),{size:"small",members:o}),r(n(m),null,{title:s(()=>a[11]||(a[11]=[e("Our valuable contributors")])),lead:s(()=>a[12]||(a[12]=[e(" We appreciate all contributions from the Julia community so that this ecosystem can thrive."),t("br",null,null,-1)])),members:s(()=>a[13]||(a[13]=[t("div",{class:"row"},[t("a",{href:"https://github.com/meggart",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2539563?v=4"})]),t("a",{href:"https://github.com/felixcremer",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/17124431?v=4"})]),t("a",{href:"https://github.com/lazarusA",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19525261?v=4"})]),t("a",{href:"https://github.com/gdkrmr",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/12512930?v=4"})]),t("a",{href:"https://github.com/apps/github-actions",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/15368?v=4"})]),t("a",{href:"https://github.com/pdimens",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19176506?v=4"})]),t("a",{href:"https://github.com/twinGu",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/29449917?v=4"})]),t("a",{href:"https://github.com/dpabon",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/13040959?v=4"})]),t("a",{href:"https://github.com/Qfl3x",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/20775896?v=4"})]),t("a",{href:"https://github.com/kongdd",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/9815742?v=4"})]),t("a",{href:"https://github.com/MartinuzziFrancesco",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10376688?v=4"})]),t("a",{href:"https://github.com/Sonicious",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/16307399?v=4"})]),t("a",{href:"https://github.com/rafaqz",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2534009?v=4"})]),t("a",{href:"https://github.com/danlooo",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/5780565?v=4"})]),t("a",{href:"https://github.com/MarkusZehner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/56972144?v=4"})]),t("a",{href:"https://github.com/Balinus",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/3630311?v=4"})]),t("a",{href:"https://github.com/singularitti",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/25192197?v=4"})]),t("a",{href:"https://github.com/ckrich",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/28727495?v=4"})]),t("a",{href:"https://github.com/apps/femtocleaner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/4123?v=4"})]),t("a",{href:"https://github.com/ikselven",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10441332?v=4"})]),t("a",{href:"https://github.com/linamaes",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/7131773?v=4"})])],-1)])),_:1})]),_:1})])}}});export{z as __pageData,j as default}; +import{V as u,a as l,b as m,c as g}from"./chunks/theme.6qbPyd-G.js";import{c as h,G as r,w as s,k as n,B as c,o as b,a as e,j as t}from"./chunks/framework.DYY3HcdR.js";const p={align:"justify"},z=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"page"},"headers":[],"relativePath":"development/contributors.md","filePath":"development/contributors.md","lastUpdated":null}'),v={name:"development/contributors.md"},j=Object.assign(v,{setup(f){const o=[{avatar:"https://www.bgc-jena.mpg.de/employee_images/121366-1667825290?t=eyJ3aWR0aCI6MjEzLCJoZWlnaHQiOjI3NCwiZml0IjoiY3JvcCIsImZpbGVfZXh0ZW5zaW9uIjoid2VicCIsInF1YWxpdHkiOjg2fQ%3D%3D--3e1d41ff4b1ea8928e6734bc473242a90f797dea",name:"Fabian Gans",title:"Geoscientific Programmer",links:[{icon:"github",link:"https://github.com/meggart"}]},{avatar:"https://avatars.githubusercontent.com/u/17124431?v=4",name:"Felix Cremer",title:"PhD Candidate in Remote Sensing",links:[{icon:"github",link:"https://github.com/felixcremer"}]},{avatar:"https://avatars.githubusercontent.com/u/2534009?v=4",name:"Rafael Schouten",title:"Spatial/ecological modelling",links:[{icon:"github",link:"https://github.com/rafaqz"}]},{avatar:"https://avatars.githubusercontent.com/u/19525261?v=4",name:"Lazaro Alonso",title:"Scientist. Data Visualization",links:[{icon:"github",link:"https://github.com/lazarusA"},{icon:"x",link:"https://twitter.com/LazarusAlon"},{icon:"linkedin",link:"https://www.linkedin.com/in/lazaro-alonso/"},{icon:"mastodon",link:"https://julialang.social/@LazaroAlonso"}]}];return(d,a)=>{const i=c("font");return b(),h("div",null,[r(n(g),null,{default:s(()=>[r(n(u),null,{title:s(()=>a[0]||(a[0]=[e("Contributors")])),lead:s(()=>[a[8]||(a[8]=t("strong",null,"Current core contributors ",-1)),a[9]||(a[9]=e()),a[10]||(a[10]=t("br",null,null,-1)),t("div",p,[a[4]||(a[4]=e(" They have taking the lead for the ongoing organizational maintenance and technical direction of ")),r(i,{color:"orange"},{default:s(()=>a[1]||(a[1]=[e("YAXArrays.jl")])),_:1}),a[5]||(a[5]=e(", ")),r(i,{color:"orange"},{default:s(()=>a[2]||(a[2]=[e("DiskArrays.jl")])),_:1}),a[6]||(a[6]=e(" and ")),r(i,{color:"orange"},{default:s(()=>a[3]||(a[3]=[e("DimensionalData.jl")])),_:1}),a[7]||(a[7]=e(". "))])]),_:1}),r(n(l),{size:"small",members:o}),r(n(m),null,{title:s(()=>a[11]||(a[11]=[e("Our valuable contributors")])),lead:s(()=>a[12]||(a[12]=[e(" We appreciate all contributions from the Julia community so that this ecosystem can thrive."),t("br",null,null,-1)])),members:s(()=>a[13]||(a[13]=[t("div",{class:"row"},[t("a",{href:"https://github.com/meggart",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2539563?v=4"})]),t("a",{href:"https://github.com/felixcremer",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/17124431?v=4"})]),t("a",{href:"https://github.com/lazarusA",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19525261?v=4"})]),t("a",{href:"https://github.com/gdkrmr",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/12512930?v=4"})]),t("a",{href:"https://github.com/apps/github-actions",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/15368?v=4"})]),t("a",{href:"https://github.com/pdimens",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19176506?v=4"})]),t("a",{href:"https://github.com/twinGu",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/29449917?v=4"})]),t("a",{href:"https://github.com/dpabon",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/13040959?v=4"})]),t("a",{href:"https://github.com/Qfl3x",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/20775896?v=4"})]),t("a",{href:"https://github.com/kongdd",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/9815742?v=4"})]),t("a",{href:"https://github.com/MartinuzziFrancesco",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10376688?v=4"})]),t("a",{href:"https://github.com/Sonicious",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/16307399?v=4"})]),t("a",{href:"https://github.com/rafaqz",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2534009?v=4"})]),t("a",{href:"https://github.com/danlooo",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/5780565?v=4"})]),t("a",{href:"https://github.com/MarkusZehner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/56972144?v=4"})]),t("a",{href:"https://github.com/Balinus",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/3630311?v=4"})]),t("a",{href:"https://github.com/singularitti",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/25192197?v=4"})]),t("a",{href:"https://github.com/ckrich",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/28727495?v=4"})]),t("a",{href:"https://github.com/apps/femtocleaner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/4123?v=4"})]),t("a",{href:"https://github.com/ikselven",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10441332?v=4"})]),t("a",{href:"https://github.com/linamaes",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/7131773?v=4"})])],-1)])),_:1})]),_:1})])}}});export{z as __pageData,j as default}; diff --git a/previews/PR479/assets/get_started.md.D4AEcaZh.js b/previews/PR479/assets/get_started.md.DOZH6HEp.js similarity index 96% rename from previews/PR479/assets/get_started.md.D4AEcaZh.js rename to previews/PR479/assets/get_started.md.DOZH6HEp.js index f8ad07b2..9518b819 100644 --- a/previews/PR479/assets/get_started.md.D4AEcaZh.js +++ b/previews/PR479/assets/get_started.md.DOZH6HEp.js @@ -1,9 +1,8 @@ import{_ as a,c as i,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const E=JSON.parse('{"title":"Getting Started","description":"","frontmatter":{},"headers":[],"relativePath":"get_started.md","filePath":"get_started.md","lastUpdated":null}'),p={name:"get_started.md"};function l(e,s,h,k,r,d){return t(),i("div",null,s[0]||(s[0]=[n(`

Getting Started

Installation

Install Julia v1.10 or above. YAXArrays.jl is available through the Julia package manager. You can enter it by pressing ] in the REPL and then typing

julia
pkg> add YAXArrays

Alternatively, you can also do

julia
import Pkg; Pkg.add("YAXArrays")

Quickstart

Create a simple array from random numbers given the size of each dimension or axis:

julia
using YAXArrays
 using YAXArrays: YAXArrays as YAX
 
-a = YAXArray(rand(2,3))
╭─────────────────────────╮
-│ 2×3 YAXArray{Float64,2} │
-├─────────────────────────┴───────────────────────────────────── dims ┐
+a = YAXArray(rand(2,3))
┌ 2×3 YAXArray{Float64, 2} ┐
+├──────────────────────────┴──────────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(3) ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────── metadata ┤
@@ -28,9 +27,8 @@ import{_ as a,c as i,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const E
     "y" => "latitude",
 );
 
-a2 = YAXArray(axlist, data, props)
╭────────────────────────────────╮
-│ 20×10×15×2 YAXArray{Float64,4} │
-├────────────────────────────────┴─────────────────────────────────────── dims ┐
+a2 = YAXArray(axlist, data, props)
┌ 20×10×15×2 YAXArray{Float64, 4} ┐
+├─────────────────────────────────┴────────────────────────────────────── dims ┐
   ↓ time      Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points,
   → lon       Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat       Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points,
diff --git a/previews/PR479/assets/get_started.md.D4AEcaZh.lean.js b/previews/PR479/assets/get_started.md.DOZH6HEp.lean.js
similarity index 96%
rename from previews/PR479/assets/get_started.md.D4AEcaZh.lean.js
rename to previews/PR479/assets/get_started.md.DOZH6HEp.lean.js
index f8ad07b2..9518b819 100644
--- a/previews/PR479/assets/get_started.md.D4AEcaZh.lean.js
+++ b/previews/PR479/assets/get_started.md.DOZH6HEp.lean.js
@@ -1,9 +1,8 @@
 import{_ as a,c as i,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const E=JSON.parse('{"title":"Getting Started","description":"","frontmatter":{},"headers":[],"relativePath":"get_started.md","filePath":"get_started.md","lastUpdated":null}'),p={name:"get_started.md"};function l(e,s,h,k,r,d){return t(),i("div",null,s[0]||(s[0]=[n(`

Getting Started

Installation

Install Julia v1.10 or above. YAXArrays.jl is available through the Julia package manager. You can enter it by pressing ] in the REPL and then typing

julia
pkg> add YAXArrays

Alternatively, you can also do

julia
import Pkg; Pkg.add("YAXArrays")

Quickstart

Create a simple array from random numbers given the size of each dimension or axis:

julia
using YAXArrays
 using YAXArrays: YAXArrays as YAX
 
-a = YAXArray(rand(2,3))
╭─────────────────────────╮
-│ 2×3 YAXArray{Float64,2} │
-├─────────────────────────┴───────────────────────────────────── dims ┐
+a = YAXArray(rand(2,3))
┌ 2×3 YAXArray{Float64, 2} ┐
+├──────────────────────────┴──────────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(3) ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────── metadata ┤
@@ -28,9 +27,8 @@ import{_ as a,c as i,a2 as n,o as t}from"./chunks/framework.DYY3HcdR.js";const E
     "y" => "latitude",
 );
 
-a2 = YAXArray(axlist, data, props)
╭────────────────────────────────╮
-│ 20×10×15×2 YAXArray{Float64,4} │
-├────────────────────────────────┴─────────────────────────────────────── dims ┐
+a2 = YAXArray(axlist, data, props)
┌ 20×10×15×2 YAXArray{Float64, 4} ┐
+├─────────────────────────────────┴────────────────────────────────────── dims ┐
   ↓ time      Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points,
   → lon       Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat       Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points,
diff --git a/previews/PR479/assets/index.md.C6f_t179.js b/previews/PR479/assets/index.md.Bckrm96e.js
similarity index 93%
rename from previews/PR479/assets/index.md.C6f_t179.js
rename to previews/PR479/assets/index.md.Bckrm96e.js
index 365c2d26..f525745b 100644
--- a/previews/PR479/assets/index.md.C6f_t179.js
+++ b/previews/PR479/assets/index.md.Bckrm96e.js
@@ -1,8 +1,8 @@
-import{_ as s,c as a,a2 as t,o as e}from"./chunks/framework.DYY3HcdR.js";const g=JSON.parse(`{"title":"","description":"","frontmatter":{"layout":"home","hero":{"name":"YAXArrays.jl","text":"Yet another xarray-like Julia package","tagline":"A package for operating on out-of-core labeled arrays, based on stores like NetCDF, Zarr or GDAL.","image":{"src":"/logo.png","alt":"VitePress"},"actions":[{"theme":"brand","text":"Get Started","link":"/get_started"},{"theme":"alt","text":"View on Github","link":"https://github.com/JuliaDataCubes/YAXArrays.jl"},{"theme":"alt","text":"API reference","link":"/api"}]},"features":[{"title":"Flexible I/O capabilities","details":"Open and operate on NetCDF and Zarr datasets directly. Or bring in data from other sources with ArchGDAL.jl, GRIBDatasets.jl, GeoJSON.jl, HDF5.jl, Shapefile.jl, GeoParquet.jl, etc.","link":"/UserGuide/read"},{"title":"Interoperability","details":"Well integrated with Julia's ecosystem, i.e., distributed operations are native. And plotting with Makie.jl is well supported.","link":"/tutorials/plottingmaps"},{"title":"Named dimensions and GroupBy(in memory)","details":"Apply operations over named dimensions, select values by labels and integers as well as efficient split-apply-combine operations with groupby via DimensionalData.jl.","link":"/UserGuide/group"},{"title":"Efficiency","details":"Efficient mapslices(x)  and mapCube operations on huge multiple arrays, optimized for high-latency data access (object storage, compressed datasets).","link":"/UserGuide/compute"}]},"headers":[],"relativePath":"index.md","filePath":"index.md","lastUpdated":null}`),l={name:"index.md"};function n(p,i,h,r,k,o){return e(),a("div",null,i[0]||(i[0]=[t(`

How to Install YAXArrays.jl?

Since YAXArrays.jl is registered in the Julia General registry, you can simply run the following command in the Julia REPL:

julia
julia> using Pkg
+import{_ as s,c as a,a2 as t,o as e}from"./chunks/framework.DYY3HcdR.js";const g=JSON.parse(`{"title":"","description":"","frontmatter":{"layout":"home","hero":{"name":"YAXArrays.jl","text":"Yet another xarray-like Julia package","tagline":"A package for operating on out-of-core labeled arrays, based on stores like NetCDF, Zarr or GDAL.","image":{"src":"/logo.png","alt":"VitePress"},"actions":[{"theme":"brand","text":"Get Started","link":"/get_started"},{"theme":"alt","text":"View on Github","link":"https://github.com/JuliaDataCubes/YAXArrays.jl"},{"theme":"alt","text":"API reference","link":"/api"}]},"features":[{"title":"Flexible I/O capabilities","details":"Open and operate on NetCDF and Zarr datasets directly. Or bring in data from other sources with ArchGDAL.jl, GRIBDatasets.jl, GeoJSON.jl, HDF5.jl, Shapefile.jl, GeoParquet.jl, etc.","link":"/UserGuide/read"},{"title":"Interoperability","details":"Well integrated with Julia's ecosystem, i.e., distributed operations are native. And plotting with Makie.jl is well supported.","link":"/tutorials/plottingmaps"},{"title":"Named dimensions and GroupBy(in memory)","details":"Apply operations over named dimensions, select values by labels and integers as well as efficient split-apply-combine operations with groupby via DimensionalData.jl.","link":"/UserGuide/group"},{"title":"Efficiency","details":"Efficient mapslices(x)  and mapCube operations on huge multiple arrays, optimized for high-latency data access (object storage, compressed datasets).","link":"/UserGuide/compute"}]},"headers":[],"relativePath":"index.md","filePath":"index.md","lastUpdated":null}`),l={name:"index.md"};function n(p,i,h,k,r,o){return e(),a("div",null,i[0]||(i[0]=[t(`

How to Install YAXArrays.jl?

Since YAXArrays.jl is registered in the Julia General registry, you can simply run the following command in the Julia REPL:

julia
julia> using Pkg
 julia> Pkg.add("YAXArrays.jl")
 # or
 julia> ] # ']' should be pressed
-pkg> add YAXArrays

If you want to use the latest unreleased version, you can run the following command:

julia
pkg> add YAXArrays#master

Want interoperability?

Install the following package(s) for:

julia
using Pkg
+pkg> add YAXArrays

If you want to use the latest unreleased version, you can run the following command:

julia
pkg> add YAXArrays#master

Want interoperability?

Install the following package(s) for:

julia
using Pkg
 Pkg.add("ArchGDAL")
julia
using Pkg
 Pkg.add("NetCDF")
julia
using Pkg
 Pkg.add("Zarr")
julia
using Pkg
diff --git a/previews/PR479/assets/index.md.C6f_t179.lean.js b/previews/PR479/assets/index.md.Bckrm96e.lean.js
similarity index 93%
rename from previews/PR479/assets/index.md.C6f_t179.lean.js
rename to previews/PR479/assets/index.md.Bckrm96e.lean.js
index 365c2d26..f525745b 100644
--- a/previews/PR479/assets/index.md.C6f_t179.lean.js
+++ b/previews/PR479/assets/index.md.Bckrm96e.lean.js
@@ -1,8 +1,8 @@
-import{_ as s,c as a,a2 as t,o as e}from"./chunks/framework.DYY3HcdR.js";const g=JSON.parse(`{"title":"","description":"","frontmatter":{"layout":"home","hero":{"name":"YAXArrays.jl","text":"Yet another xarray-like Julia package","tagline":"A package for operating on out-of-core labeled arrays, based on stores like NetCDF, Zarr or GDAL.","image":{"src":"/logo.png","alt":"VitePress"},"actions":[{"theme":"brand","text":"Get Started","link":"/get_started"},{"theme":"alt","text":"View on Github","link":"https://github.com/JuliaDataCubes/YAXArrays.jl"},{"theme":"alt","text":"API reference","link":"/api"}]},"features":[{"title":"Flexible I/O capabilities","details":"Open and operate on NetCDF and Zarr datasets directly. Or bring in data from other sources with ArchGDAL.jl, GRIBDatasets.jl, GeoJSON.jl, HDF5.jl, Shapefile.jl, GeoParquet.jl, etc.","link":"/UserGuide/read"},{"title":"Interoperability","details":"Well integrated with Julia's ecosystem, i.e., distributed operations are native. And plotting with Makie.jl is well supported.","link":"/tutorials/plottingmaps"},{"title":"Named dimensions and GroupBy(in memory)","details":"Apply operations over named dimensions, select values by labels and integers as well as efficient split-apply-combine operations with groupby via DimensionalData.jl.","link":"/UserGuide/group"},{"title":"Efficiency","details":"Efficient mapslices(x)  and mapCube operations on huge multiple arrays, optimized for high-latency data access (object storage, compressed datasets).","link":"/UserGuide/compute"}]},"headers":[],"relativePath":"index.md","filePath":"index.md","lastUpdated":null}`),l={name:"index.md"};function n(p,i,h,r,k,o){return e(),a("div",null,i[0]||(i[0]=[t(`

How to Install YAXArrays.jl?

Since YAXArrays.jl is registered in the Julia General registry, you can simply run the following command in the Julia REPL:

julia
julia> using Pkg
+import{_ as s,c as a,a2 as t,o as e}from"./chunks/framework.DYY3HcdR.js";const g=JSON.parse(`{"title":"","description":"","frontmatter":{"layout":"home","hero":{"name":"YAXArrays.jl","text":"Yet another xarray-like Julia package","tagline":"A package for operating on out-of-core labeled arrays, based on stores like NetCDF, Zarr or GDAL.","image":{"src":"/logo.png","alt":"VitePress"},"actions":[{"theme":"brand","text":"Get Started","link":"/get_started"},{"theme":"alt","text":"View on Github","link":"https://github.com/JuliaDataCubes/YAXArrays.jl"},{"theme":"alt","text":"API reference","link":"/api"}]},"features":[{"title":"Flexible I/O capabilities","details":"Open and operate on NetCDF and Zarr datasets directly. Or bring in data from other sources with ArchGDAL.jl, GRIBDatasets.jl, GeoJSON.jl, HDF5.jl, Shapefile.jl, GeoParquet.jl, etc.","link":"/UserGuide/read"},{"title":"Interoperability","details":"Well integrated with Julia's ecosystem, i.e., distributed operations are native. And plotting with Makie.jl is well supported.","link":"/tutorials/plottingmaps"},{"title":"Named dimensions and GroupBy(in memory)","details":"Apply operations over named dimensions, select values by labels and integers as well as efficient split-apply-combine operations with groupby via DimensionalData.jl.","link":"/UserGuide/group"},{"title":"Efficiency","details":"Efficient mapslices(x)  and mapCube operations on huge multiple arrays, optimized for high-latency data access (object storage, compressed datasets).","link":"/UserGuide/compute"}]},"headers":[],"relativePath":"index.md","filePath":"index.md","lastUpdated":null}`),l={name:"index.md"};function n(p,i,h,k,r,o){return e(),a("div",null,i[0]||(i[0]=[t(`

How to Install YAXArrays.jl?

Since YAXArrays.jl is registered in the Julia General registry, you can simply run the following command in the Julia REPL:

julia
julia> using Pkg
 julia> Pkg.add("YAXArrays.jl")
 # or
 julia> ] # ']' should be pressed
-pkg> add YAXArrays

If you want to use the latest unreleased version, you can run the following command:

julia
pkg> add YAXArrays#master

Want interoperability?

Install the following package(s) for:

julia
using Pkg
+pkg> add YAXArrays

If you want to use the latest unreleased version, you can run the following command:

julia
pkg> add YAXArrays#master

Want interoperability?

Install the following package(s) for:

julia
using Pkg
 Pkg.add("ArchGDAL")
julia
using Pkg
 Pkg.add("NetCDF")
julia
using Pkg
 Pkg.add("Zarr")
julia
using Pkg
diff --git a/previews/PR479/assets/tutorials_mean_seasonal_cycle.md.DY61i3Ri.js b/previews/PR479/assets/tutorials_mean_seasonal_cycle.md.BIq0le5H.js
similarity index 98%
rename from previews/PR479/assets/tutorials_mean_seasonal_cycle.md.DY61i3Ri.js
rename to previews/PR479/assets/tutorials_mean_seasonal_cycle.md.BIq0le5H.js
index c5ccc020..fe4cf2e4 100644
--- a/previews/PR479/assets/tutorials_mean_seasonal_cycle.md.DY61i3Ri.js
+++ b/previews/PR479/assets/tutorials_mean_seasonal_cycle.md.BIq0le5H.js
@@ -13,9 +13,8 @@ import{_ as i,c as a,a2 as n,o as h}from"./chunks/framework.DYY3HcdR.js";const l
 
 julia> using YAXArrays: YAXArrays as YAX
 
-julia> axes = (YAX.Time(t),)
(Time Date("2021-01-01"):Dates.Day(1):Date("2023-12-31"))
julia
julia> c = YAXArray(axes, var)
╭──────────────────────────────────╮
-1095-element YAXArray{Float64,1}
-├──────────────────────────────────┴───────────────────────────────────── dims ┐
+julia> axes = (YAX.Time(t),)
(Time Date("2021-01-01"):Dates.Day(1):Date("2023-12-31"))
julia
julia> c = YAXArray(axes, var)
1095-element YAXArray{Float64, 1}
+├───────────────────────────────────┴──────────────────────────────────── dims ┐
 Time Sampled{Date} Date("2021-01-01"):Dates.Day(1):Date("2023-12-31") ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
diff --git a/previews/PR479/assets/tutorials_mean_seasonal_cycle.md.DY61i3Ri.lean.js b/previews/PR479/assets/tutorials_mean_seasonal_cycle.md.BIq0le5H.lean.js
similarity index 98%
rename from previews/PR479/assets/tutorials_mean_seasonal_cycle.md.DY61i3Ri.lean.js
rename to previews/PR479/assets/tutorials_mean_seasonal_cycle.md.BIq0le5H.lean.js
index c5ccc020..fe4cf2e4 100644
--- a/previews/PR479/assets/tutorials_mean_seasonal_cycle.md.DY61i3Ri.lean.js
+++ b/previews/PR479/assets/tutorials_mean_seasonal_cycle.md.BIq0le5H.lean.js
@@ -13,9 +13,8 @@ import{_ as i,c as a,a2 as n,o as h}from"./chunks/framework.DYY3HcdR.js";const l
 
 julia> using YAXArrays: YAXArrays as YAX
 
-julia> axes = (YAX.Time(t),)
(Time Date("2021-01-01"):Dates.Day(1):Date("2023-12-31"))
julia
julia> c = YAXArray(axes, var)
╭──────────────────────────────────╮
-1095-element YAXArray{Float64,1}
-├──────────────────────────────────┴───────────────────────────────────── dims ┐
+julia> axes = (YAX.Time(t),)
(Time Date("2021-01-01"):Dates.Day(1):Date("2023-12-31"))
julia
julia> c = YAXArray(axes, var)
1095-element YAXArray{Float64, 1}
+├───────────────────────────────────┴──────────────────────────────────── dims ┐
 Time Sampled{Date} Date("2021-01-01"):Dates.Day(1):Date("2023-12-31") ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
diff --git a/previews/PR479/development/contribute.html b/previews/PR479/development/contribute.html
index 5063dcde..6803a588 100644
--- a/previews/PR479/development/contribute.html
+++ b/previews/PR479/development/contribute.html
@@ -9,9 +9,9 @@
     
     
     
-    
+    
     
-    
+    
     
     
     
@@ -24,7 +24,7 @@
     
Skip to content

Contribute to YAXArrays.jl

Pull requests and bug reports are always welcome at the YAXArrays.jl GitHub repository.

Contribute to Documentation

Contributing with examples can be done by first creating a new file example here

new file

  • your_new_file.md at docs/src/UserGuide/

Once this is done you need to add a new entry here at the appropriate level.

add entry to docs

Your new entry should look like:

  • { text: 'Your title example', link: '/UserGuide/your_new_file.md' }

Build docs locally

If you want to take a look at the docs locally before doing a PR follow the next steps:

Install the dependencies in your system, locate yourself at the docs level folder, then do

sh
npm i

Then simply go to your docs env and activate it, i.e.

sh
docs> julia
 julia> ]
 pkg> activate .

Next, run the scripts. Generate files and build docs by running:

sh
include("make.jl")

Now go to your terminal in the same path docs> and run:

sh
npm run docs:dev

This should ouput http://localhost:5173/YAXArrays.jl/, copy/paste this into your browser and you are all set.

- + \ No newline at end of file diff --git a/previews/PR479/development/contributors.html b/previews/PR479/development/contributors.html index 63172fec..4ef959a9 100644 --- a/previews/PR479/development/contributors.html +++ b/previews/PR479/development/contributors.html @@ -9,11 +9,11 @@ - + - + - + @@ -22,7 +22,7 @@
Skip to content

Contributors

Current core contributors

They have taking the lead for the ongoing organizational maintenance and technical direction of , and .

Fabian Gans

Fabian Gans

Geoscientific Programmer

Felix Cremer

Felix Cremer

PhD Candidate in Remote Sensing

Rafael Schouten

Rafael Schouten

Spatial/ecological modelling

Lazaro Alonso

Lazaro Alonso

Scientist. Data Visualization

Our valuable contributors

We appreciate all contributions from the Julia community so that this ecosystem can thrive.

- + \ No newline at end of file diff --git a/previews/PR479/get_started.html b/previews/PR479/get_started.html index 4ff19012..eef923d0 100644 --- a/previews/PR479/get_started.html +++ b/previews/PR479/get_started.html @@ -9,11 +9,11 @@ - + - + - + @@ -24,9 +24,8 @@
Skip to content

Getting Started

Installation

Install Julia v1.10 or above. YAXArrays.jl is available through the Julia package manager. You can enter it by pressing ] in the REPL and then typing

julia
pkg> add YAXArrays

Alternatively, you can also do

julia
import Pkg; Pkg.add("YAXArrays")

Quickstart

Create a simple array from random numbers given the size of each dimension or axis:

julia
using YAXArrays
 using YAXArrays: YAXArrays as YAX
 
-a = YAXArray(rand(2,3))
╭─────────────────────────╮
-│ 2×3 YAXArray{Float64,2} │
-├─────────────────────────┴───────────────────────────────────── dims ┐
+a = YAXArray(rand(2,3))
┌ 2×3 YAXArray{Float64, 2} ┐
+├──────────────────────────┴──────────────────────────────────── dims ┐
   ↓ Dim_1 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points,
   → Dim_2 Sampled{Int64} Base.OneTo(3) ForwardOrdered Regular Points
 ├─────────────────────────────────────────────────────────── metadata ┤
@@ -51,9 +50,8 @@
     "y" => "latitude",
 );
 
-a2 = YAXArray(axlist, data, props)
╭────────────────────────────────╮
-│ 20×10×15×2 YAXArray{Float64,4} │
-├────────────────────────────────┴─────────────────────────────────────── dims ┐
+a2 = YAXArray(axlist, data, props)
┌ 20×10×15×2 YAXArray{Float64, 4} ┐
+├─────────────────────────────────┴────────────────────────────────────── dims ┐
   ↓ time      Sampled{Float64} 1.0:1.0:20.0 ForwardOrdered Regular Points,
   → lon       Sampled{Float64} 1.0:1.0:10.0 ForwardOrdered Regular Points,
   ↗ lat       Sampled{Float64} 1.0:0.2857142857142857:5.0 ForwardOrdered Regular Points,
@@ -76,7 +74,7 @@
  0.647058  0.657324  0.475594   0.63291      0.405317  0.263789   0.641411
  0.223412  0.771583  0.119937   0.771179     0.45015   0.991786   0.663392
  0.607943  0.13068   0.711506   0.629872     0.457345  0.319698   0.0900259

Updates

TIP

The Julia Compiler is always improving. As such, we recommend using the latest stable version of Julia.

You may check the installed version with:

julia
pkg> st YAXArrays

INFO

With YAXArrays.jl 0.5 we switched the underlying data type to be a subtype of the DimensionalData.jl types. Therefore the indexing with named dimensions changed to the DimensionalData syntax. See the DimensionalData.jl docs.

- + \ No newline at end of file diff --git a/previews/PR479/hashmap.json b/previews/PR479/hashmap.json index 22659b30..0bf839ce 100644 --- a/previews/PR479/hashmap.json +++ b/previews/PR479/hashmap.json @@ -1 +1 @@ -{"api.md":"LtcwYcT6","development_contribute.md":"CkpgxKi9","development_contributors.md":"CBWqoCWc","get_started.md":"D4AEcaZh","index.md":"C6f_t179","tutorials_mean_seasonal_cycle.md":"DY61i3Ri","tutorials_other_tutorials.md":"k1cIf9TO","tutorials_plottingmaps.md":"DfxpCqPP","userguide_cache.md":"BPLL4v-g","userguide_chunk.md":"BmJaxpwh","userguide_combine.md":"B3kKJwRR","userguide_compute.md":"GnwBFM_7","userguide_convert.md":"CObFCPzI","userguide_create.md":"C7ebbtn2","userguide_faq.md":"C9UN1j4H","userguide_group.md":"C2yVVeKj","userguide_read.md":"De0OvTWP","userguide_select.md":"rxBehFDA","userguide_types.md":"C9xprOE-","userguide_write.md":"CslDCk8B"} +{"api.md":"DRceqLPS","development_contribute.md":"CkpgxKi9","development_contributors.md":"CStJtQsj","get_started.md":"DOZH6HEp","index.md":"Bckrm96e","tutorials_mean_seasonal_cycle.md":"BIq0le5H","tutorials_other_tutorials.md":"k1cIf9TO","tutorials_plottingmaps.md":"DfxpCqPP","userguide_cache.md":"BPLL4v-g","userguide_chunk.md":"BmJaxpwh","userguide_combine.md":"BYUU3tRz","userguide_compute.md":"CEww8r0_","userguide_convert.md":"mv4euI22","userguide_create.md":"ClN01XDL","userguide_faq.md":"Co6gBYzG","userguide_group.md":"CyxshSz7","userguide_read.md":"m9LR7MXT","userguide_select.md":"wOOEByPV","userguide_types.md":"C9xprOE-","userguide_write.md":"BMZhOtZh"} diff --git a/previews/PR479/index.html b/previews/PR479/index.html index 5859c13f..93612bcd 100644 --- a/previews/PR479/index.html +++ b/previews/PR479/index.html @@ -9,11 +9,11 @@ - + - + - + @@ -25,12 +25,12 @@ julia> Pkg.add("YAXArrays.jl") # or julia> ] # ']' should be pressed -pkg> add YAXArrays

If you want to use the latest unreleased version, you can run the following command:

julia
pkg> add YAXArrays#master

Want interoperability?

Install the following package(s) for:

julia
using Pkg
+pkg> add YAXArrays

If you want to use the latest unreleased version, you can run the following command:

julia
pkg> add YAXArrays#master

Want interoperability?

Install the following package(s) for:

julia
using Pkg
 Pkg.add("ArchGDAL")
julia
using Pkg
 Pkg.add("NetCDF")
julia
using Pkg
 Pkg.add("Zarr")
julia
using Pkg
 Pkg.add(["GLMakie", "GeoMakie", "AlgebraOfGraphics", "DimensionalData"])
- + \ No newline at end of file diff --git a/previews/PR479/tutorials/mean_seasonal_cycle.html b/previews/PR479/tutorials/mean_seasonal_cycle.html index c17a1640..17047cd2 100644 --- a/previews/PR479/tutorials/mean_seasonal_cycle.html +++ b/previews/PR479/tutorials/mean_seasonal_cycle.html @@ -9,11 +9,11 @@ - + - + - + @@ -36,9 +36,8 @@ julia> using YAXArrays: YAXArrays as YAX -julia> axes = (YAX.Time(t),)
(Time Date("2021-01-01"):Dates.Day(1):Date("2023-12-31"))
julia
julia> c = YAXArray(axes, var)
╭──────────────────────────────────╮
-1095-element YAXArray{Float64,1}
-├──────────────────────────────────┴───────────────────────────────────── dims ┐
+julia> axes = (YAX.Time(t),)
(Time Date("2021-01-01"):Dates.Day(1):Date("2023-12-31"))
julia
julia> c = YAXArray(axes, var)
1095-element YAXArray{Float64, 1}
+├───────────────────────────────────┴──────────────────────────────────── dims ┐
 Time Sampled{Date} Date("2021-01-01"):Dates.Day(1):Date("2023-12-31") ForwardOrdered Regular Points
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
@@ -95,7 +94,7 @@
 ax.xticklabelalign = (:right, :center)
 fig
 current_figure()

- + \ No newline at end of file diff --git a/previews/PR479/tutorials/other_tutorials.html b/previews/PR479/tutorials/other_tutorials.html index ad25939d..dbaa3b13 100644 --- a/previews/PR479/tutorials/other_tutorials.html +++ b/previews/PR479/tutorials/other_tutorials.html @@ -9,9 +9,9 @@ - + - + @@ -22,7 +22,7 @@
Skip to content

Other tutorials

If you are interested in learning how to work with YAXArrays for different use cases you can follow along one of the following tutorials.

  • Currently the overview tutorial is located at ESDLTutorials Repository

  • You can find further tutorial videos at the EO College. Beware that the syntax in the video tutorials might be slightly changed.

  • the other tutorials are still work in progress.

General overview of the functionality of YAXArrays

This tutorial provides a broad overview about the features of YAXArrays.

Table-style iteration over YAXArrays

Work in progress

Sometimes you want to combine the data that is represented in the data cube with other datasets, which are best described as a data frame. In this tutorial you will learn how to use the Tables.jl interface to iterate over the data in the YAXArray.

Combining multiple tiff files into a zarr based datacube

- + \ No newline at end of file diff --git a/previews/PR479/tutorials/plottingmaps.html b/previews/PR479/tutorials/plottingmaps.html index c80a7bc6..f3245f15 100644 --- a/previews/PR479/tutorials/plottingmaps.html +++ b/previews/PR479/tutorials/plottingmaps.html @@ -9,9 +9,9 @@ - + - + @@ -75,7 +75,7 @@ zoom!(ax.scene, cameracontrols(ax.scene), 0.5) rotate!(ax.scene, 2.5) fig
- + \ No newline at end of file