diff --git a/previews/PR433/404.html b/previews/PR433/404.html index a6722e21..e5ea3b72 100644 --- a/previews/PR433/404.html +++ b/previews/PR433/404.html @@ -8,14 +8,14 @@ - +
- + \ No newline at end of file diff --git a/previews/PR433/UserGuide/cache.html b/previews/PR433/UserGuide/cache.html index b13b8f17..c4e81f0d 100644 --- a/previews/PR433/UserGuide/cache.html +++ b/previews/PR433/UserGuide/cache.html @@ -8,9 +8,9 @@ - + - + @@ -22,7 +22,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/PR433/UserGuide/chunk.html b/previews/PR433/UserGuide/chunk.html index 910a18a0..e25e077f 100644 --- a/previews/PR433/UserGuide/chunk.html +++ b/previews/PR433/UserGuide/chunk.html @@ -8,9 +8,9 @@ - + - + @@ -100,7 +100,7 @@ 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/PR433/UserGuide/combine.html b/previews/PR433/UserGuide/combine.html index 0b81d7bc..53dba453 100644 --- a/previews/PR433/UserGuide/combine.html +++ b/previews/PR433/UserGuide/combine.html @@ -8,9 +8,9 @@ - + - + @@ -45,7 +45,7 @@ ├───────────────────────────────────────────────────── file size ┤ file size: 96.0 bytes └────────────────────────────────────────────────────────────────┘ - + \ No newline at end of file diff --git a/previews/PR433/UserGuide/compute.html b/previews/PR433/UserGuide/compute.html index 74755357..7ae0829d 100644 --- a/previews/PR433/UserGuide/compute.html +++ b/previews/PR433/UserGuide/compute.html @@ -8,11 +8,11 @@ - + - + - + @@ -38,7 +38,7 @@ :origin => "user guide" ├─────────────────────────────────────────────────────────────────── file size ┤ file size: 35.16 KB -└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.12084126735194844
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
╭──────────────────────────────╮
+└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.24551350574272646
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,
@@ -84,7 +84,7 @@
 └──────────────────────────────────────────────────────────────────────────────┘

mapCube

mapCube is the most flexible way to apply a function over subsets of an array. Dimensions may be added or removed.

Operations over several YAXArrays

Here, we will define a simple function, that will take as input several YAXArrays. But first, let's load the necessary packages.

julia
using YAXArrays, Zarr
 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)

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 = YAXArray(Dim{:lon}(range(1, 15)))
╭──────────────────────────────╮
+end
g (generic function with 1 method)

TIP

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 = YAXArray(Dim{:lon}(range(1, 15)))
╭──────────────────────────────╮
 15-element YAXArray{Int64,1}
 ├──────────────────────────────┴───────────────────────────────────────── dims ┐
 lon Sampled{Int64} 1:15 ForwardOrdered Regular Points
@@ -123,7 +123,7 @@
   "missing_value" => 1.0f32
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 17.58 KB
-└──────────────────────────────────────────────────────────────────────────────┘

"time axis is first" Note that currently the time axis in the output cube goes first. :::

Check that it is working

julia
julia> gen_cube.data[1, :, :]
15×10 Matrix{Union{Missing, Float32}}:
+└──────────────────────────────────────────────────────────────────────────────┘

"time axis is first"

Note that currently the time axis in the output cube goes first.

Check that it is working

julia
julia> gen_cube.data[1, :, :]
15×10 Matrix{Union{Missing, Float32}}:
   3.0   4.0   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0
   4.0   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0  13.0
   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0  13.0  14.0
@@ -153,7 +153,7 @@
   "missing_value" => 1.0f32
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 17.58 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Note that now the broadcasted dimension is lon. :::

we can see this by slicing on the last dimension now

julia
gen_cube.data[:, :, 1]
15×10 Matrix{Union{Missing, Float32}}:
+└──────────────────────────────────────────────────────────────────────────────┘

INFO

Note that now the broadcasted dimension is lon.

we can see this by slicing on the last dimension now

julia
gen_cube.data[:, :, 1]
15×10 Matrix{Union{Missing, Float32}}:
   3.0   4.0   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0
   4.0   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0  13.0
   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0  13.0  14.0
@@ -218,14 +218,14 @@
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 └──────────────────────────────────────────────────────────────────────────────┘
-  ↓ →  1.0       1.28571   1.57143    …  4.42857   4.71429   5.0
-  1.0  0.18635   0.780538  0.336041      0.626269  0.487927  0.0230575
-  2.0  0.559441  0.334541  0.48634       0.405603  0.568942  0.439923
-  3.0  0.970356  0.314103  0.0648334     0.362698  0.380918  0.264184
-  ⋮                                   ⋱                      ⋮
-  8.0  0.997     0.626041  0.63311       0.275329  0.171421  0.944201
-  9.0  0.42973   0.395303  0.767104      0.273852  0.9955    0.99266
- 10.0  0.486356  0.479273  0.791286   …  0.43676   0.491538  0.790695

Now we calculate the list of corresponding points for each region. This will be re-used for each point in time during the final mapCube. In addition, this avoids the allocation of unnecessary memory.

julia
regions = ["A", "B", "C", "D"]
+  ↓ →  1.0        1.28571    1.57143   …  4.42857    4.71429   5.0
+  1.0  0.497548   0.0545617  0.419935     0.422758   0.733322  0.632353
+  2.0  0.204461   0.10469    0.681369     0.07283    0.245952  0.41717
+  3.0  0.0278046  0.900871   0.242957     0.727708   0.76366   0.687037
+  ⋮                                    ⋱                       ⋮
+  8.0  0.32248    0.553966   0.643089     0.560234   0.781554  0.889656
+  9.0  0.502103   0.252116   0.501324     0.0938973  0.349139  0.397463
+ 10.0  0.518498   0.668867   0.569904  …  0.260837   0.836882  0.433001

Now we calculate the list of corresponding points for each region. This will be re-used for each point in time during the final mapCube. In addition, this avoids the allocation of unnecessary memory.

julia
regions = ["A", "B", "C", "D"]
 points_of_regions = map(enumerate(regions)) do (i,region)
     region => findall(isequal(region), regions_mat)
 end |> Dict |> sort
OrderedCollections.OrderedDict{String, Vector{CartesianIndex{2}}} with 4 entries:
@@ -278,8 +278,8 @@
 
 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))
- +addprocs(SlurmManager(10)) + \ No newline at end of file diff --git a/previews/PR433/UserGuide/convert.html b/previews/PR433/UserGuide/convert.html index afa19bdb..fd285235 100644 --- a/previews/PR433/UserGuide/convert.html +++ b/previews/PR433/UserGuide/convert.html @@ -8,11 +8,11 @@ - + - + - + @@ -30,11 +30,11 @@ ├────────────────────────────────────────────────────────── file size ┤ file size: 400.0 bytes └─────────────────────────────────────────────────────────────────────┘

Convert YAXArray to Base.Array:

julia
m2 = collect(a.data)
5×10 Matrix{Float64}:
- 0.251699  0.420367  0.449704  0.0486176  …  0.552665  0.407045   0.590217
- 0.514746  0.813705  0.907681  0.978454      0.955516  0.617262   0.946856
- 0.148975  0.725684  0.968496  0.866694      0.211437  0.942346   0.27903
- 0.86868   0.581196  0.683858  0.204797      0.561973  0.0359487  0.739765
- 0.694639  0.110349  0.224122  0.992249      0.426985  0.436209   0.689958

Convert Raster

A Raster as defined in Rasters.jl has a same supertype of a YAXArray, i.e. AbstractDimArray, allowing easy conversion between those types:

julia
using Rasters
+ 0.880394   0.202996  0.50736    0.885872  …  0.413939  0.986722  0.57283
+ 0.0669756  0.427931  0.458193   0.534576     0.410278  0.635982  0.838357
+ 0.85843    0.845891  0.572296   0.166382     0.839431  0.449691  0.719275
+ 0.161104   0.265841  0.0619439  0.304363     0.827734  0.185482  0.808734
+ 0.673313   0.601999  0.340394   0.207743     0.822117  0.56568   0.725566

Convert Raster

A Raster as defined in Rasters.jl has a same supertype of a YAXArray, i.e. AbstractDimArray, allowing easy conversion between those types:

julia
using Rasters
 
 lon, lat = X(25:1:30), Y(25:1:30)
 time = Ti(2000:2024)
@@ -62,13 +62,13 @@
 
 └─────────────────────────────────────────────────────────────┘
 [:, :, 1]
-  ↓ →  25         26         27          28          29         30
- 25     0.112941   0.302668   0.4381      0.67614     0.363397   0.51418
- 26     0.893145   0.788899   0.547202    0.0835761   0.409171   0.980244
- 27     0.139203   0.322944   0.334921    0.492056    0.217668   0.732044
- 28     0.903652   0.220982   0.0659195   0.16601     0.923451   0.834727
- 29     0.861181   0.496697   0.657579    0.961388    0.195359   0.569383
- 30     0.610212   0.219561   0.699546    0.18664     0.919172   0.614217

Convert DimArray

A DimArray as defined in DimensionalData.jl has a same supertype of a YAXArray, i.e. AbstractDimArray, allowing easy conversion between those types.

Convert DimArray to YAXArray:

julia
using DimensionalData
+  ↓ →  25         26          27         28          29         30
+ 25     0.874145   0.0588336   0.50267    0.822887    0.927457   0.992839
+ 26     0.448121   0.69396     0.484861   0.189916    0.99486    0.900124
+ 27     0.401523   0.345889    0.798757   0.0955925   0.140364   0.914495
+ 28     0.65584    0.239896    0.436871   0.128046    0.113719   0.769113
+ 29     0.234271   0.48122     0.913154   0.111974    0.228136   0.201343
+ 30     0.280592   0.831117    0.932712   0.0360731   0.129369   0.911513

Convert DimArray

A DimArray as defined in DimensionalData.jl has a same supertype of a YAXArray, i.e. AbstractDimArray, allowing easy conversion between those types.

Convert DimArray to YAXArray:

julia
using DimensionalData
 using YAXArrayBase
 
 dim_arr = rand(X(1:5), Y(10.0:15.0), metadata = Dict{String, Any}())
@@ -89,13 +89,13 @@
 ├──────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 └──────────────────────────────────────────────────────────────────┘
- ↓ →  10.0       11.0       12.0       13.0       14.0        15.0
- 1     0.495618   0.89447    0.663747   0.710731   0.349956    0.684513
- 2     0.606095   0.573976   0.483694   0.184032   0.0839164   0.461186
- 3     0.17623    0.735997   0.390876   0.862041   0.923781    0.624291
- 4     0.833221   0.388646   0.18263    0.790103   0.0693562   0.68242
- 5     0.193654   0.48353    0.918512   0.451032   0.754534    0.223225

INFO

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

- + ↓ → 10.0 11.0 12.0 13.0 14.0 15.0 + 1 0.336808 0.601356 0.0291362 0.14888 0.370444 0.126919 + 2 0.244767 0.289407 0.559792 0.952172 0.244597 0.0165437 + 3 0.551173 0.753461 0.529974 0.783258 0.288349 0.180115 + 4 0.804383 0.0709829 0.27786 0.35868 0.929894 0.482204 + 5 0.809186 0.325757 0.524608 0.045693 0.146123 0.932837

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/PR433/UserGuide/create.html b/previews/PR433/UserGuide/create.html index 338cd23f..ca7a2c0e 100644 --- a/previews/PR433/UserGuide/create.html +++ b/previews/PR433/UserGuide/create.html @@ -8,9 +8,9 @@ - + - + @@ -65,7 +65,7 @@ a3 Properties: Dict(:origin => "user guide") - + \ No newline at end of file diff --git a/previews/PR433/UserGuide/faq.html b/previews/PR433/UserGuide/faq.html index 24729609..e0493f46 100644 --- a/previews/PR433/UserGuide/faq.html +++ b/previews/PR433/UserGuide/faq.html @@ -8,11 +8,11 @@ - + - + - + @@ -179,11 +179,11 @@ () Variables: longitudes - (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points) + (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points) latitudes - (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points) + (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points) temperature - (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points, + (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points, → Time Sampled{Date} Date("2020-01-01"):Dates.Month(1):Date("2022-12-01") ForwardOrdered Regular Points)

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 &&
@@ -194,11 +194,11 @@
 ()
 Variables: 
 longitudes
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points)
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points)
 latitudes
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points)
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points)
 temperature
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points,
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points,
   → Time   Sampled{Date} Date("2020-01-01"):Dates.Month(1):Date("2022-12-01") ForwardOrdered Regular Points)

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 ┐
@@ -246,7 +246,7 @@
 fig, ax, obj = heatmap(classes;
     colormap=Makie.Categorical(cgrad([:grey15, :orangered, :snow3])))
 cbar = Colorbar(fig[1,2], obj)
-fig

Now we define the input cubes that will be considered for the iterable table

julia
t = CubeTable(values=ds1, classes=classes)
Datacube iterator with 1 subtables with fields: (:values, :classes, :time, :lon, :lat)
julia
using DataFrames
+fig

Now we define the input cubes that will be considered for the iterable table

julia
t = CubeTable(values=ds1, classes=classes)
Datacube iterator with 1 subtables with fields: (:values, :classes, :time, :lon, :lat)
julia
using DataFrames
 using OnlineStats
 ## visualization of the CubeTable
 c_tbl = DataFrame(t[1])
@@ -284,7 +284,7 @@
 c
   (Dim_1 Sampled{Int64} Base.OneTo(2) ForwardOrdered Regular Points,
 Dim_2 Sampled{Int64} Base.OneTo(5) ForwardOrdered Regular Points)
- + \ No newline at end of file diff --git a/previews/PR433/UserGuide/group.html b/previews/PR433/UserGuide/group.html index 0d205902..2f67ffa5 100644 --- a/previews/PR433/UserGuide/group.html +++ b/previews/PR433/UserGuide/group.html @@ -8,11 +8,11 @@ - + - + - + @@ -206,8 +206,8 @@ colgap!(fig.layout, 5) rowgap!(fig.layout, 5) fig -end

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

- +end

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

+ \ No newline at end of file diff --git a/previews/PR433/UserGuide/read.html b/previews/PR433/UserGuide/read.html index f4d80219..23c64a69 100644 --- a/previews/PR433/UserGuide/read.html +++ b/previews/PR433/UserGuide/read.html @@ -8,9 +8,9 @@ - + - + @@ -91,7 +91,7 @@ path = download("https://github.com/yeesian/ArchGDALDatasets/raw/307f8f0e584a39a050c042849004e6a2bd674f99/gdalworkshop/world.tif", "world.tif") # ds = open_dataset(path) # this is broken nothing - + \ No newline at end of file diff --git a/previews/PR433/UserGuide/select.html b/previews/PR433/UserGuide/select.html index 25022838..17f11d3a 100644 --- a/previews/PR433/UserGuide/select.html +++ b/previews/PR433/UserGuide/select.html @@ -8,9 +8,9 @@ - + - + @@ -310,7 +310,7 @@ 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/PR433/UserGuide/types.html b/previews/PR433/UserGuide/types.html index 48c42d79..11373035 100644 --- a/previews/PR433/UserGuide/types.html +++ b/previews/PR433/UserGuide/types.html @@ -8,9 +8,9 @@ - + - + @@ -18,7 +18,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/PR433/UserGuide/write.html b/previews/PR433/UserGuide/write.html index 8c8a9d00..af9bbfaf 100644 --- a/previews/PR433/UserGuide/write.html +++ b/previews/PR433/UserGuide/write.html @@ -8,11 +8,11 @@ - + - + - + @@ -32,7 +32,7 @@ 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"…)

Write Zarr

Save a single YAXArray to a directory:

julia
using Zarr
 savecube(ds.tos, "tos.zarr", driver=:zarr)

Save an entire Dataset to a directory:

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

Write NetCDF

Save a single YAXArray to a directory:

julia
using NetCDF
-savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

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

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.savedatasetFunction.

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)))
+savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

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

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.savedatasetFunction.

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:
 ()
@@ -56,7 +56,7 @@
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 800.0 bytes
 └──────────────────────────────────────────────────────────────────────────────┘

and save them as

julia
r = savecube(a, "skeleton.zarr", driver=:zarr, skeleton=true)

and check that all the values are missing

julia
all(ismissing,r[:,:])
true

If using FillArrays is not possible, using the zeros function works as well, though it does allocate the array in memory.

INFO

The skeleton argument is also available for savedataset.

- + \ No newline at end of file diff --git a/previews/PR433/api.html b/previews/PR433/api.html index ce2f9738..8d736657 100644 --- a/previews/PR433/api.html +++ b/previews/PR433/api.html @@ -8,29 +8,29 @@ - + - + - + -
Skip to content

API Reference

This section describes all available functions of this package.

Public API

# YAXArrays.getAxisMethod.
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.CubesModule.

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.YAXArrayType.
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.caxesFunction.

Returns the axes of a Cube

source


# YAXArrays.Cubes.caxesMethod.
julia
caxes

Embeds Cube inside a new Cube

source


# YAXArrays.Cubes.concatenatecubesMethod.
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.readcubedataMethod.
julia
readcubedata(cube)

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

source


# YAXArrays.Cubes.setchunksMethod.
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.subsetcubeFunction.

This function calculates a subset of a cube's data

source


# YAXArrays.DAT.InDimsType.
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.MovingWindowType.
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.OutDimsMethod.
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.CubeTableMethod.
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.cubefittableMethod.
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.fittableMethod.
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.mapCubeMethod.
julia
mapCube(fun, cube, addargs...;kwargs...)
+    
Skip to content

API Reference

This section describes all available functions of this package.

Public API

# YAXArrays.getAxisMethod.
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.CubesModule.

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.YAXArrayType.
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.caxesFunction.

Returns the axes of a Cube

source


# YAXArrays.Cubes.caxesMethod.
julia
caxes

Embeds Cube inside a new Cube

source


# YAXArrays.Cubes.concatenatecubesMethod.
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.readcubedataMethod.
julia
readcubedata(cube)

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

source


# YAXArrays.Cubes.setchunksMethod.
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.subsetcubeFunction.

This function calculates a subset of a cube's data

source


# YAXArrays.DAT.InDimsType.
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.MovingWindowType.
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.OutDimsMethod.
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.CubeTableMethod.
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.cubefittableMethod.
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.fittableMethod.
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.mapCubeMethod.
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.mapCubeMethod.
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.DatasetType.
julia
Dataset object which stores an `OrderedDict` of YAXArrays with Symbol keys.
+For the specific keyword arguments see the docstring of the mapCube function for cubes.

source


# YAXArrays.DAT.mapCubeMethod.
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.DatasetType.
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.DatasetMethod.

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.CubeMethod.
julia
Cube(ds::Dataset; joinname="Variable")

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

source


# YAXArrays.Datasets.open_datasetMethod.

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.savecubeMethod.
julia
savecube(cube,name::String)

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

  • datasetaxis="Variable" 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.savedatasetMethod.

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_datasetMethod.

to_dataset(c;datasetaxis = "Variable", 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.YAXDefaultsConstant.

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.findAxisMethod.
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.getOutAxisMethod.
julia
getOutAxis

source


# YAXArrays.get_descriptorMethod.
julia
get_descriptor(a)

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

source


# YAXArrays.match_axisMethod.
julia
match_axis

Internal function

Extended Help

Match the Axis based on the AxisDescriptor.
+A dictionary can hold cubes with differing axes. But it will share the common axes between the subcubes.

source


# YAXArrays.Datasets.DatasetMethod.

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.CubeMethod.
julia
Cube(ds::Dataset; joinname="Variable")

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

source


# YAXArrays.Datasets.open_datasetMethod.

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.savecubeMethod.
julia
savecube(cube,name::String)

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

  • datasetaxis="Variable" 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.savedatasetMethod.

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_datasetMethod.

to_dataset(c;datasetaxis = "Variable", 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.YAXDefaultsConstant.

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.findAxisMethod.
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.getOutAxisMethod.
julia
getOutAxis

source


# YAXArrays.get_descriptorMethod.
julia
get_descriptor(a)

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

source


# YAXArrays.match_axisMethod.
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.CleanMeType.
julia
mutable struct CleanMe

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

source


# YAXArrays.Cubes.cleanMethod.
julia
clean(c::CleanMe)

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

source


# YAXArrays.Cubes.copydataMethod.
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.optifuncMethod.
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.DATConfigType.

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

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

  • outcubes::Tuple{Vararg{YAXArrays.DAT.OutputCube, NOUT}} 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.InputCubeType.

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.OutputCubeType.

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.YAXColumnType.
julia
YAXColumn

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

  • inarBC

  • inds

source


# YAXArrays.DAT.cmpcachmissesMethod.

Function that compares two cache miss specifiers by their importance

source


# YAXArrays.DAT.getFrontPermMethod.

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

source


# YAXArrays.DAT.getLoopCacheSizeMethod.

Calculate optimal Cache size to DAT operation

source


# YAXArrays.DAT.getOuttypeMethod.
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source


# YAXArrays.DAT.getloopchunksMethod.
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.permuteloopaxesMethod.
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.setchunksMethod.
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.collectfromhandleMethod.

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

source


# YAXArrays.Datasets.createdatasetMethod.

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="Variable" 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.getarrayinfoMethod.

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

source


# YAXArrays.Datasets.testrangeMethod.

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

source


- +For example to disregard differences of captialisation.

source


# YAXArrays.Cubes.CleanMeType.
julia
mutable struct CleanMe

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

source


# YAXArrays.Cubes.cleanMethod.
julia
clean(c::CleanMe)

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

source


# YAXArrays.Cubes.copydataMethod.
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.optifuncMethod.
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.DATConfigType.

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

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

  • outcubes::Tuple{Vararg{YAXArrays.DAT.OutputCube, NOUT}} 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.InputCubeType.

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.OutputCubeType.

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.YAXColumnType.
julia
YAXColumn

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

  • inarBC

  • inds

source


# YAXArrays.DAT.cmpcachmissesMethod.

Function that compares two cache miss specifiers by their importance

source


# YAXArrays.DAT.getFrontPermMethod.

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

source


# YAXArrays.DAT.getLoopCacheSizeMethod.

Calculate optimal Cache size to DAT operation

source


# YAXArrays.DAT.getOuttypeMethod.
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source


# YAXArrays.DAT.getloopchunksMethod.
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.permuteloopaxesMethod.
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.setchunksMethod.
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.collectfromhandleMethod.

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

source


# YAXArrays.Datasets.createdatasetMethod.

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="Variable" 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.getarrayinfoMethod.

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

source


# YAXArrays.Datasets.testrangeMethod.

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

source


+ \ No newline at end of file diff --git a/previews/PR433/assets/UserGuide_compute.md.DvAwlT_J.js b/previews/PR433/assets/UserGuide_compute.md.CVYwcht1.js similarity index 94% rename from previews/PR433/assets/UserGuide_compute.md.DvAwlT_J.js rename to previews/PR433/assets/UserGuide_compute.md.CVYwcht1.js index 3ce4afbf..bc9b625f 100644 --- a/previews/PR433/assets/UserGuide_compute.md.DvAwlT_J.js +++ b/previews/PR433/assets/UserGuide_compute.md.CVYwcht1.js @@ -19,7 +19,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const o :origin => "user guide" ├─────────────────────────────────────────────────────────────────── file size ┤ file size: 35.16 KB -└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.12084126735194844
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
╭──────────────────────────────╮
+└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.24551350574272646
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,
@@ -65,7 +65,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const o
 └──────────────────────────────────────────────────────────────────────────────┘

mapCube

mapCube is the most flexible way to apply a function over subsets of an array. Dimensions may be added or removed.

Operations over several YAXArrays

Here, we will define a simple function, that will take as input several YAXArrays. But first, let's load the necessary packages.

julia
using YAXArrays, Zarr
 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)

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 = YAXArray(Dim{:lon}(range(1, 15)))
╭──────────────────────────────╮
+end
g (generic function with 1 method)

TIP

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 = YAXArray(Dim{:lon}(range(1, 15)))
╭──────────────────────────────╮
 15-element YAXArray{Int64,1}
 ├──────────────────────────────┴───────────────────────────────────────── dims ┐
 lon Sampled{Int64} 1:15 ForwardOrdered Regular Points
@@ -104,7 +104,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const o
   "missing_value" => 1.0f32
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 17.58 KB
-└──────────────────────────────────────────────────────────────────────────────┘

"time axis is first" Note that currently the time axis in the output cube goes first. :::

Check that it is working

julia
julia> gen_cube.data[1, :, :]
15×10 Matrix{Union{Missing, Float32}}:
+└──────────────────────────────────────────────────────────────────────────────┘

"time axis is first"

Note that currently the time axis in the output cube goes first.

Check that it is working

julia
julia> gen_cube.data[1, :, :]
15×10 Matrix{Union{Missing, Float32}}:
   3.0   4.0   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0
   4.0   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0  13.0
   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0  13.0  14.0
@@ -134,7 +134,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const o
   "missing_value" => 1.0f32
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 17.58 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Note that now the broadcasted dimension is lon. :::

we can see this by slicing on the last dimension now

julia
gen_cube.data[:, :, 1]
15×10 Matrix{Union{Missing, Float32}}:
+└──────────────────────────────────────────────────────────────────────────────┘

INFO

Note that now the broadcasted dimension is lon.

we can see this by slicing on the last dimension now

julia
gen_cube.data[:, :, 1]
15×10 Matrix{Union{Missing, Float32}}:
   3.0   4.0   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0
   4.0   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0  13.0
   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0  13.0  14.0
@@ -199,14 +199,14 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const o
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 └──────────────────────────────────────────────────────────────────────────────┘
-  ↓ →  1.0       1.28571   1.57143    …  4.42857   4.71429   5.0
-  1.0  0.18635   0.780538  0.336041      0.626269  0.487927  0.0230575
-  2.0  0.559441  0.334541  0.48634       0.405603  0.568942  0.439923
-  3.0  0.970356  0.314103  0.0648334     0.362698  0.380918  0.264184
-  ⋮                                   ⋱                      ⋮
-  8.0  0.997     0.626041  0.63311       0.275329  0.171421  0.944201
-  9.0  0.42973   0.395303  0.767104      0.273852  0.9955    0.99266
- 10.0  0.486356  0.479273  0.791286   …  0.43676   0.491538  0.790695

Now we calculate the list of corresponding points for each region. This will be re-used for each point in time during the final mapCube. In addition, this avoids the allocation of unnecessary memory.

julia
regions = ["A", "B", "C", "D"]
+  ↓ →  1.0        1.28571    1.57143   …  4.42857    4.71429   5.0
+  1.0  0.497548   0.0545617  0.419935     0.422758   0.733322  0.632353
+  2.0  0.204461   0.10469    0.681369     0.07283    0.245952  0.41717
+  3.0  0.0278046  0.900871   0.242957     0.727708   0.76366   0.687037
+  ⋮                                    ⋱                       ⋮
+  8.0  0.32248    0.553966   0.643089     0.560234   0.781554  0.889656
+  9.0  0.502103   0.252116   0.501324     0.0938973  0.349139  0.397463
+ 10.0  0.518498   0.668867   0.569904  …  0.260837   0.836882  0.433001

Now we calculate the list of corresponding points for each region. This will be re-used for each point in time during the final mapCube. In addition, this avoids the allocation of unnecessary memory.

julia
regions = ["A", "B", "C", "D"]
 points_of_regions = map(enumerate(regions)) do (i,region)
     region => findall(isequal(region), regions_mat)
 end |> Dict |> sort
OrderedCollections.OrderedDict{String, Vector{CartesianIndex{2}}} with 4 entries:
@@ -259,4 +259,4 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const o
 
 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))
`,45)]))}const E=i(p,[["render",e]]);export{o as __pageData,E as default}; +addprocs(SlurmManager(10))`,97)]))}const E=i(p,[["render",e]]);export{o as __pageData,E as default}; diff --git a/previews/PR433/assets/UserGuide_compute.md.DvAwlT_J.lean.js b/previews/PR433/assets/UserGuide_compute.md.CVYwcht1.lean.js similarity index 94% rename from previews/PR433/assets/UserGuide_compute.md.DvAwlT_J.lean.js rename to previews/PR433/assets/UserGuide_compute.md.CVYwcht1.lean.js index 3ce4afbf..bc9b625f 100644 --- a/previews/PR433/assets/UserGuide_compute.md.DvAwlT_J.lean.js +++ b/previews/PR433/assets/UserGuide_compute.md.CVYwcht1.lean.js @@ -19,7 +19,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const o :origin => "user guide" ├─────────────────────────────────────────────────────────────────── file size ┤ file size: 35.16 KB -└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.12084126735194844
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
╭──────────────────────────────╮
+└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.24551350574272646
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,
@@ -65,7 +65,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const o
 └──────────────────────────────────────────────────────────────────────────────┘

mapCube

mapCube is the most flexible way to apply a function over subsets of an array. Dimensions may be added or removed.

Operations over several YAXArrays

Here, we will define a simple function, that will take as input several YAXArrays. But first, let's load the necessary packages.

julia
using YAXArrays, Zarr
 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)

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 = YAXArray(Dim{:lon}(range(1, 15)))
╭──────────────────────────────╮
+end
g (generic function with 1 method)

TIP

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 = YAXArray(Dim{:lon}(range(1, 15)))
╭──────────────────────────────╮
 15-element YAXArray{Int64,1}
 ├──────────────────────────────┴───────────────────────────────────────── dims ┐
 lon Sampled{Int64} 1:15 ForwardOrdered Regular Points
@@ -104,7 +104,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const o
   "missing_value" => 1.0f32
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 17.58 KB
-└──────────────────────────────────────────────────────────────────────────────┘

"time axis is first" Note that currently the time axis in the output cube goes first. :::

Check that it is working

julia
julia> gen_cube.data[1, :, :]
15×10 Matrix{Union{Missing, Float32}}:
+└──────────────────────────────────────────────────────────────────────────────┘

"time axis is first"

Note that currently the time axis in the output cube goes first.

Check that it is working

julia
julia> gen_cube.data[1, :, :]
15×10 Matrix{Union{Missing, Float32}}:
   3.0   4.0   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0
   4.0   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0  13.0
   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0  13.0  14.0
@@ -134,7 +134,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const o
   "missing_value" => 1.0f32
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 17.58 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Note that now the broadcasted dimension is lon. :::

we can see this by slicing on the last dimension now

julia
gen_cube.data[:, :, 1]
15×10 Matrix{Union{Missing, Float32}}:
+└──────────────────────────────────────────────────────────────────────────────┘

INFO

Note that now the broadcasted dimension is lon.

we can see this by slicing on the last dimension now

julia
gen_cube.data[:, :, 1]
15×10 Matrix{Union{Missing, Float32}}:
   3.0   4.0   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0
   4.0   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0  13.0
   5.0   6.0   7.0   8.0   9.0  10.0  11.0  12.0  13.0  14.0
@@ -199,14 +199,14 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const o
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 └──────────────────────────────────────────────────────────────────────────────┘
-  ↓ →  1.0       1.28571   1.57143    …  4.42857   4.71429   5.0
-  1.0  0.18635   0.780538  0.336041      0.626269  0.487927  0.0230575
-  2.0  0.559441  0.334541  0.48634       0.405603  0.568942  0.439923
-  3.0  0.970356  0.314103  0.0648334     0.362698  0.380918  0.264184
-  ⋮                                   ⋱                      ⋮
-  8.0  0.997     0.626041  0.63311       0.275329  0.171421  0.944201
-  9.0  0.42973   0.395303  0.767104      0.273852  0.9955    0.99266
- 10.0  0.486356  0.479273  0.791286   …  0.43676   0.491538  0.790695

Now we calculate the list of corresponding points for each region. This will be re-used for each point in time during the final mapCube. In addition, this avoids the allocation of unnecessary memory.

julia
regions = ["A", "B", "C", "D"]
+  ↓ →  1.0        1.28571    1.57143   …  4.42857    4.71429   5.0
+  1.0  0.497548   0.0545617  0.419935     0.422758   0.733322  0.632353
+  2.0  0.204461   0.10469    0.681369     0.07283    0.245952  0.41717
+  3.0  0.0278046  0.900871   0.242957     0.727708   0.76366   0.687037
+  ⋮                                    ⋱                       ⋮
+  8.0  0.32248    0.553966   0.643089     0.560234   0.781554  0.889656
+  9.0  0.502103   0.252116   0.501324     0.0938973  0.349139  0.397463
+ 10.0  0.518498   0.668867   0.569904  …  0.260837   0.836882  0.433001

Now we calculate the list of corresponding points for each region. This will be re-used for each point in time during the final mapCube. In addition, this avoids the allocation of unnecessary memory.

julia
regions = ["A", "B", "C", "D"]
 points_of_regions = map(enumerate(regions)) do (i,region)
     region => findall(isequal(region), regions_mat)
 end |> Dict |> sort
OrderedCollections.OrderedDict{String, Vector{CartesianIndex{2}}} with 4 entries:
@@ -259,4 +259,4 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const o
 
 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))
`,45)]))}const E=i(p,[["render",e]]);export{o as __pageData,E as default}; +addprocs(SlurmManager(10))`,97)]))}const E=i(p,[["render",e]]);export{o as __pageData,E as default}; diff --git a/previews/PR433/assets/UserGuide_convert.md.7MiqjyWQ.js b/previews/PR433/assets/UserGuide_convert.md.BmsQR5_8.js similarity index 89% rename from previews/PR433/assets/UserGuide_convert.md.7MiqjyWQ.js rename to previews/PR433/assets/UserGuide_convert.md.BmsQR5_8.js index ffdbe30c..2b14458e 100644 --- a/previews/PR433/assets/UserGuide_convert.md.7MiqjyWQ.js +++ b/previews/PR433/assets/UserGuide_convert.md.BmsQR5_8.js @@ -11,11 +11,11 @@ import{_ as a,c as n,a2 as i,o as p}from"./chunks/framework.BPweQVnH.js";const c ├────────────────────────────────────────────────────────── file size ┤ file size: 400.0 bytes └─────────────────────────────────────────────────────────────────────┘

Convert YAXArray to Base.Array:

julia
m2 = collect(a.data)
5×10 Matrix{Float64}:
- 0.251699  0.420367  0.449704  0.0486176  …  0.552665  0.407045   0.590217
- 0.514746  0.813705  0.907681  0.978454      0.955516  0.617262   0.946856
- 0.148975  0.725684  0.968496  0.866694      0.211437  0.942346   0.27903
- 0.86868   0.581196  0.683858  0.204797      0.561973  0.0359487  0.739765
- 0.694639  0.110349  0.224122  0.992249      0.426985  0.436209   0.689958

Convert Raster

A Raster as defined in Rasters.jl has a same supertype of a YAXArray, i.e. AbstractDimArray, allowing easy conversion between those types:

julia
using Rasters
+ 0.880394   0.202996  0.50736    0.885872  …  0.413939  0.986722  0.57283
+ 0.0669756  0.427931  0.458193   0.534576     0.410278  0.635982  0.838357
+ 0.85843    0.845891  0.572296   0.166382     0.839431  0.449691  0.719275
+ 0.161104   0.265841  0.0619439  0.304363     0.827734  0.185482  0.808734
+ 0.673313   0.601999  0.340394   0.207743     0.822117  0.56568   0.725566

Convert Raster

A Raster as defined in Rasters.jl has a same supertype of a YAXArray, i.e. AbstractDimArray, allowing easy conversion between those types:

julia
using Rasters
 
 lon, lat = X(25:1:30), Y(25:1:30)
 time = Ti(2000:2024)
@@ -43,13 +43,13 @@ import{_ as a,c as n,a2 as i,o as p}from"./chunks/framework.BPweQVnH.js";const c
 
 └─────────────────────────────────────────────────────────────┘
 [:, :, 1]
-  ↓ →  25         26         27          28          29         30
- 25     0.112941   0.302668   0.4381      0.67614     0.363397   0.51418
- 26     0.893145   0.788899   0.547202    0.0835761   0.409171   0.980244
- 27     0.139203   0.322944   0.334921    0.492056    0.217668   0.732044
- 28     0.903652   0.220982   0.0659195   0.16601     0.923451   0.834727
- 29     0.861181   0.496697   0.657579    0.961388    0.195359   0.569383
- 30     0.610212   0.219561   0.699546    0.18664     0.919172   0.614217

Convert DimArray

A DimArray as defined in DimensionalData.jl has a same supertype of a YAXArray, i.e. AbstractDimArray, allowing easy conversion between those types.

Convert DimArray to YAXArray:

julia
using DimensionalData
+  ↓ →  25         26          27         28          29         30
+ 25     0.874145   0.0588336   0.50267    0.822887    0.927457   0.992839
+ 26     0.448121   0.69396     0.484861   0.189916    0.99486    0.900124
+ 27     0.401523   0.345889    0.798757   0.0955925   0.140364   0.914495
+ 28     0.65584    0.239896    0.436871   0.128046    0.113719   0.769113
+ 29     0.234271   0.48122     0.913154   0.111974    0.228136   0.201343
+ 30     0.280592   0.831117    0.932712   0.0360731   0.129369   0.911513

Convert DimArray

A DimArray as defined in DimensionalData.jl has a same supertype of a YAXArray, i.e. AbstractDimArray, allowing easy conversion between those types.

Convert DimArray to YAXArray:

julia
using DimensionalData
 using YAXArrayBase
 
 dim_arr = rand(X(1:5), Y(10.0:15.0), metadata = Dict{String, Any}())
@@ -70,9 +70,9 @@ import{_ as a,c as n,a2 as i,o as p}from"./chunks/framework.BPweQVnH.js";const c
 ├──────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 └──────────────────────────────────────────────────────────────────┘
- ↓ →  10.0       11.0       12.0       13.0       14.0        15.0
- 1     0.495618   0.89447    0.663747   0.710731   0.349956    0.684513
- 2     0.606095   0.573976   0.483694   0.184032   0.0839164   0.461186
- 3     0.17623    0.735997   0.390876   0.862041   0.923781    0.624291
- 4     0.833221   0.388646   0.18263    0.790103   0.0693562   0.68242
- 5     0.193654   0.48353    0.918512   0.451032   0.754534    0.223225

INFO

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

`,25)]))}const g=a(e,[["render",l]]);export{c as __pageData,g as default}; + ↓ → 10.0 11.0 12.0 13.0 14.0 15.0 + 1 0.336808 0.601356 0.0291362 0.14888 0.370444 0.126919 + 2 0.244767 0.289407 0.559792 0.952172 0.244597 0.0165437 + 3 0.551173 0.753461 0.529974 0.783258 0.288349 0.180115 + 4 0.804383 0.0709829 0.27786 0.35868 0.929894 0.482204 + 5 0.809186 0.325757 0.524608 0.045693 0.146123 0.932837

INFO

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

`,25)]))}const g=a(e,[["render",l]]);export{c as __pageData,g as default}; diff --git a/previews/PR433/assets/UserGuide_convert.md.7MiqjyWQ.lean.js b/previews/PR433/assets/UserGuide_convert.md.BmsQR5_8.lean.js similarity index 89% rename from previews/PR433/assets/UserGuide_convert.md.7MiqjyWQ.lean.js rename to previews/PR433/assets/UserGuide_convert.md.BmsQR5_8.lean.js index ffdbe30c..2b14458e 100644 --- a/previews/PR433/assets/UserGuide_convert.md.7MiqjyWQ.lean.js +++ b/previews/PR433/assets/UserGuide_convert.md.BmsQR5_8.lean.js @@ -11,11 +11,11 @@ import{_ as a,c as n,a2 as i,o as p}from"./chunks/framework.BPweQVnH.js";const c ├────────────────────────────────────────────────────────── file size ┤ file size: 400.0 bytes └─────────────────────────────────────────────────────────────────────┘

Convert YAXArray to Base.Array:

julia
m2 = collect(a.data)
5×10 Matrix{Float64}:
- 0.251699  0.420367  0.449704  0.0486176  …  0.552665  0.407045   0.590217
- 0.514746  0.813705  0.907681  0.978454      0.955516  0.617262   0.946856
- 0.148975  0.725684  0.968496  0.866694      0.211437  0.942346   0.27903
- 0.86868   0.581196  0.683858  0.204797      0.561973  0.0359487  0.739765
- 0.694639  0.110349  0.224122  0.992249      0.426985  0.436209   0.689958

Convert Raster

A Raster as defined in Rasters.jl has a same supertype of a YAXArray, i.e. AbstractDimArray, allowing easy conversion between those types:

julia
using Rasters
+ 0.880394   0.202996  0.50736    0.885872  …  0.413939  0.986722  0.57283
+ 0.0669756  0.427931  0.458193   0.534576     0.410278  0.635982  0.838357
+ 0.85843    0.845891  0.572296   0.166382     0.839431  0.449691  0.719275
+ 0.161104   0.265841  0.0619439  0.304363     0.827734  0.185482  0.808734
+ 0.673313   0.601999  0.340394   0.207743     0.822117  0.56568   0.725566

Convert Raster

A Raster as defined in Rasters.jl has a same supertype of a YAXArray, i.e. AbstractDimArray, allowing easy conversion between those types:

julia
using Rasters
 
 lon, lat = X(25:1:30), Y(25:1:30)
 time = Ti(2000:2024)
@@ -43,13 +43,13 @@ import{_ as a,c as n,a2 as i,o as p}from"./chunks/framework.BPweQVnH.js";const c
 
 └─────────────────────────────────────────────────────────────┘
 [:, :, 1]
-  ↓ →  25         26         27          28          29         30
- 25     0.112941   0.302668   0.4381      0.67614     0.363397   0.51418
- 26     0.893145   0.788899   0.547202    0.0835761   0.409171   0.980244
- 27     0.139203   0.322944   0.334921    0.492056    0.217668   0.732044
- 28     0.903652   0.220982   0.0659195   0.16601     0.923451   0.834727
- 29     0.861181   0.496697   0.657579    0.961388    0.195359   0.569383
- 30     0.610212   0.219561   0.699546    0.18664     0.919172   0.614217

Convert DimArray

A DimArray as defined in DimensionalData.jl has a same supertype of a YAXArray, i.e. AbstractDimArray, allowing easy conversion between those types.

Convert DimArray to YAXArray:

julia
using DimensionalData
+  ↓ →  25         26          27         28          29         30
+ 25     0.874145   0.0588336   0.50267    0.822887    0.927457   0.992839
+ 26     0.448121   0.69396     0.484861   0.189916    0.99486    0.900124
+ 27     0.401523   0.345889    0.798757   0.0955925   0.140364   0.914495
+ 28     0.65584    0.239896    0.436871   0.128046    0.113719   0.769113
+ 29     0.234271   0.48122     0.913154   0.111974    0.228136   0.201343
+ 30     0.280592   0.831117    0.932712   0.0360731   0.129369   0.911513

Convert DimArray

A DimArray as defined in DimensionalData.jl has a same supertype of a YAXArray, i.e. AbstractDimArray, allowing easy conversion between those types.

Convert DimArray to YAXArray:

julia
using DimensionalData
 using YAXArrayBase
 
 dim_arr = rand(X(1:5), Y(10.0:15.0), metadata = Dict{String, Any}())
@@ -70,9 +70,9 @@ import{_ as a,c as n,a2 as i,o as p}from"./chunks/framework.BPweQVnH.js";const c
 ├──────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 └──────────────────────────────────────────────────────────────────┘
- ↓ →  10.0       11.0       12.0       13.0       14.0        15.0
- 1     0.495618   0.89447    0.663747   0.710731   0.349956    0.684513
- 2     0.606095   0.573976   0.483694   0.184032   0.0839164   0.461186
- 3     0.17623    0.735997   0.390876   0.862041   0.923781    0.624291
- 4     0.833221   0.388646   0.18263    0.790103   0.0693562   0.68242
- 5     0.193654   0.48353    0.918512   0.451032   0.754534    0.223225

INFO

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

`,25)]))}const g=a(e,[["render",l]]);export{c as __pageData,g as default}; + ↓ → 10.0 11.0 12.0 13.0 14.0 15.0 + 1 0.336808 0.601356 0.0291362 0.14888 0.370444 0.126919 + 2 0.244767 0.289407 0.559792 0.952172 0.244597 0.0165437 + 3 0.551173 0.753461 0.529974 0.783258 0.288349 0.180115 + 4 0.804383 0.0709829 0.27786 0.35868 0.929894 0.482204 + 5 0.809186 0.325757 0.524608 0.045693 0.146123 0.932837

INFO

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

`,25)]))}const g=a(e,[["render",l]]);export{c as __pageData,g as default}; diff --git a/previews/PR433/assets/UserGuide_faq.md.DLJxmCfU.js b/previews/PR433/assets/UserGuide_faq.md.CMeCUZtU.js similarity index 99% rename from previews/PR433/assets/UserGuide_faq.md.DLJxmCfU.js rename to previews/PR433/assets/UserGuide_faq.md.CMeCUZtU.js index 40288f6f..fc5ca698 100644 --- a/previews/PR433/assets/UserGuide_faq.md.DLJxmCfU.js +++ b/previews/PR433/assets/UserGuide_faq.md.CMeCUZtU.js @@ -1,4 +1,4 @@ -import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.BPweQVnH.js";const t="/YAXArrays.jl/previews/PR433/assets/uemcpgt.BoWCwv4U.jpeg",E=JSON.parse('{"title":"Frequently Asked Questions (FAQ)","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/faq.md","filePath":"UserGuide/faq.md","lastUpdated":null}'),h={name:"UserGuide/faq.md"};function l(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
+import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.BPweQVnH.js";const t="/YAXArrays.jl/previews/PR433/assets/ehguwdr.D82lJxN2.jpeg",E=JSON.parse('{"title":"Frequently Asked Questions (FAQ)","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/faq.md","filePath":"UserGuide/faq.md","lastUpdated":null}'),h={name:"UserGuide/faq.md"};function l(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 ┐
@@ -160,11 +160,11 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.BPweQVnH.js";const t
 ()
 Variables: 
 longitudes
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points)
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points)
 latitudes
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points)
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points)
 temperature
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points,
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points,
   → Time   Sampled{Date} Date("2020-01-01"):Dates.Month(1):Date("2022-12-01") ForwardOrdered Regular Points)

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 &&
@@ -175,11 +175,11 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.BPweQVnH.js";const t
 ()
 Variables: 
 longitudes
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points)
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points)
 latitudes
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points)
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points)
 temperature
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points,
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points,
   → Time   Sampled{Date} Date("2020-01-01"):Dates.Month(1):Date("2022-12-01") ForwardOrdered Regular Points)

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 ┐
diff --git a/previews/PR433/assets/UserGuide_faq.md.DLJxmCfU.lean.js b/previews/PR433/assets/UserGuide_faq.md.CMeCUZtU.lean.js
similarity index 99%
rename from previews/PR433/assets/UserGuide_faq.md.DLJxmCfU.lean.js
rename to previews/PR433/assets/UserGuide_faq.md.CMeCUZtU.lean.js
index 40288f6f..fc5ca698 100644
--- a/previews/PR433/assets/UserGuide_faq.md.DLJxmCfU.lean.js
+++ b/previews/PR433/assets/UserGuide_faq.md.CMeCUZtU.lean.js
@@ -1,4 +1,4 @@
-import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.BPweQVnH.js";const t="/YAXArrays.jl/previews/PR433/assets/uemcpgt.BoWCwv4U.jpeg",E=JSON.parse('{"title":"Frequently Asked Questions (FAQ)","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/faq.md","filePath":"UserGuide/faq.md","lastUpdated":null}'),h={name:"UserGuide/faq.md"};function l(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
+import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.BPweQVnH.js";const t="/YAXArrays.jl/previews/PR433/assets/ehguwdr.D82lJxN2.jpeg",E=JSON.parse('{"title":"Frequently Asked Questions (FAQ)","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/faq.md","filePath":"UserGuide/faq.md","lastUpdated":null}'),h={name:"UserGuide/faq.md"};function l(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 ┐
@@ -160,11 +160,11 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.BPweQVnH.js";const t
 ()
 Variables: 
 longitudes
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points)
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points)
 latitudes
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points)
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points)
 temperature
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points,
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points,
   → Time   Sampled{Date} Date("2020-01-01"):Dates.Month(1):Date("2022-12-01") ForwardOrdered Regular Points)

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 &&
@@ -175,11 +175,11 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.BPweQVnH.js";const t
 ()
 Variables: 
 longitudes
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points)
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points)
 latitudes
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points)
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points)
 temperature
-  (↓ points Sampled{Int64} [1, 6, …, 98, 100] ForwardOrdered Irregular Points,
+  (↓ points Sampled{Int64} [4, 7, …, 95, 99] ForwardOrdered Irregular Points,
   → Time   Sampled{Date} Date("2020-01-01"):Dates.Month(1):Date("2022-12-01") ForwardOrdered Regular Points)

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 ┐
diff --git a/previews/PR433/assets/UserGuide_group.md.BEe_VKpU.js b/previews/PR433/assets/UserGuide_group.md.CrTZhDfa.js
similarity index 99%
rename from previews/PR433/assets/UserGuide_group.md.BEe_VKpU.js
rename to previews/PR433/assets/UserGuide_group.md.CrTZhDfa.js
index 2a121ccf..a38d5378 100644
--- a/previews/PR433/assets/UserGuide_group.md.BEe_VKpU.js
+++ b/previews/PR433/assets/UserGuide_group.md.CrTZhDfa.js
@@ -1,4 +1,4 @@
-import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.BPweQVnH.js";const h="/YAXArrays.jl/previews/PR433/assets/snyvetv.CBBZcGwj.png",y=JSON.parse('{"title":"Group YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/group.md","filePath":"UserGuide/group.md","lastUpdated":null}'),t={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.BPweQVnH.js";const h="/YAXArrays.jl/previews/PR433/assets/zsafadp.CBBZcGwj.png",y=JSON.parse('{"title":"Group YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/group.md","filePath":"UserGuide/group.md","lastUpdated":null}'),t={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
 using NetCDF
 using Downloads
 using Dates
diff --git a/previews/PR433/assets/UserGuide_group.md.BEe_VKpU.lean.js b/previews/PR433/assets/UserGuide_group.md.CrTZhDfa.lean.js
similarity index 99%
rename from previews/PR433/assets/UserGuide_group.md.BEe_VKpU.lean.js
rename to previews/PR433/assets/UserGuide_group.md.CrTZhDfa.lean.js
index 2a121ccf..a38d5378 100644
--- a/previews/PR433/assets/UserGuide_group.md.BEe_VKpU.lean.js
+++ b/previews/PR433/assets/UserGuide_group.md.CrTZhDfa.lean.js
@@ -1,4 +1,4 @@
-import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.BPweQVnH.js";const h="/YAXArrays.jl/previews/PR433/assets/snyvetv.CBBZcGwj.png",y=JSON.parse('{"title":"Group YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/group.md","filePath":"UserGuide/group.md","lastUpdated":null}'),t={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.BPweQVnH.js";const h="/YAXArrays.jl/previews/PR433/assets/zsafadp.CBBZcGwj.png",y=JSON.parse('{"title":"Group YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/group.md","filePath":"UserGuide/group.md","lastUpdated":null}'),t={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
 using NetCDF
 using Downloads
 using Dates
diff --git a/previews/PR433/assets/UserGuide_write.md.DM2Gr-8l.js b/previews/PR433/assets/UserGuide_write.md.BVC43nk2.js
similarity index 99%
rename from previews/PR433/assets/UserGuide_write.md.DM2Gr-8l.js
rename to previews/PR433/assets/UserGuide_write.md.BVC43nk2.js
index fcf1d511..49acfa0f 100644
--- a/previews/PR433/assets/UserGuide_write.md.DM2Gr-8l.js
+++ b/previews/PR433/assets/UserGuide_write.md.BVC43nk2.js
@@ -13,7 +13,7 @@ import{_ as i,c as a,a2 as e,o as t}from"./chunks/framework.BPweQVnH.js";const g
 
 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"…)

Write Zarr

Save a single YAXArray to a directory:

julia
using Zarr
 savecube(ds.tos, "tos.zarr", driver=:zarr)

Save an entire Dataset to a directory:

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

Write NetCDF

Save a single YAXArray to a directory:

julia
using NetCDF
-savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

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

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.savedatasetFunction.

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)))
+savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

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

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.savedatasetFunction.

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:
 ()
diff --git a/previews/PR433/assets/UserGuide_write.md.DM2Gr-8l.lean.js b/previews/PR433/assets/UserGuide_write.md.BVC43nk2.lean.js
similarity index 99%
rename from previews/PR433/assets/UserGuide_write.md.DM2Gr-8l.lean.js
rename to previews/PR433/assets/UserGuide_write.md.BVC43nk2.lean.js
index fcf1d511..49acfa0f 100644
--- a/previews/PR433/assets/UserGuide_write.md.DM2Gr-8l.lean.js
+++ b/previews/PR433/assets/UserGuide_write.md.BVC43nk2.lean.js
@@ -13,7 +13,7 @@ import{_ as i,c as a,a2 as e,o as t}from"./chunks/framework.BPweQVnH.js";const g
 
 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"…)

Write Zarr

Save a single YAXArray to a directory:

julia
using Zarr
 savecube(ds.tos, "tos.zarr", driver=:zarr)

Save an entire Dataset to a directory:

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

Write NetCDF

Save a single YAXArray to a directory:

julia
using NetCDF
-savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

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

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.savedatasetFunction.

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)))
+savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

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

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.savedatasetFunction.

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:
 ()
diff --git a/previews/PR433/assets/api.md.jFKpXLcy.js b/previews/PR433/assets/api.md.IuTNblWp.js
similarity index 91%
rename from previews/PR433/assets/api.md.jFKpXLcy.js
rename to previews/PR433/assets/api.md.IuTNblWp.js
index 7f426344..e83084e2 100644
--- a/previews/PR433/assets/api.md.jFKpXLcy.js
+++ b/previews/PR433/assets/api.md.IuTNblWp.js
@@ -1,13 +1,13 @@
-import{_ as a,c as s,a2 as i,o as t}from"./chunks/framework.BPweQVnH.js";const u=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),r={name:"api.md"};function o(l,e,n,d,p,c){return t(),s("div",null,e[0]||(e[0]=[i(`

API Reference

This section describes all available functions of this package.

Public API

# YAXArrays.getAxisMethod.
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.CubesModule.

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.YAXArrayType.
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.caxesFunction.

Returns the axes of a Cube

source


# YAXArrays.Cubes.caxesMethod.
julia
caxes

Embeds Cube inside a new Cube

source


# YAXArrays.Cubes.concatenatecubesMethod.
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.readcubedataMethod.
julia
readcubedata(cube)

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

source


# YAXArrays.Cubes.setchunksMethod.
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.subsetcubeFunction.

This function calculates a subset of a cube's data

source


# YAXArrays.DAT.InDimsType.
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.MovingWindowType.
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.OutDimsMethod.
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.CubeTableMethod.
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.cubefittableMethod.
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.fittableMethod.
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.mapCubeMethod.
julia
mapCube(fun, cube, addargs...;kwargs...)
+import{_ as a,c as s,a2 as i,o as t}from"./chunks/framework.BPweQVnH.js";const u=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),r={name:"api.md"};function o(l,e,n,d,p,c){return t(),s("div",null,e[0]||(e[0]=[i(`

API Reference

This section describes all available functions of this package.

Public API

# YAXArrays.getAxisMethod.
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.CubesModule.

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.YAXArrayType.
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.caxesFunction.

Returns the axes of a Cube

source


# YAXArrays.Cubes.caxesMethod.
julia
caxes

Embeds Cube inside a new Cube

source


# YAXArrays.Cubes.concatenatecubesMethod.
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.readcubedataMethod.
julia
readcubedata(cube)

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

source


# YAXArrays.Cubes.setchunksMethod.
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.subsetcubeFunction.

This function calculates a subset of a cube's data

source


# YAXArrays.DAT.InDimsType.
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.MovingWindowType.
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.OutDimsMethod.
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.CubeTableMethod.
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.cubefittableMethod.
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.fittableMethod.
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.mapCubeMethod.
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.mapCubeMethod.
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.DatasetType.
julia
Dataset object which stores an \`OrderedDict\` of YAXArrays with Symbol keys.
+For the specific keyword arguments see the docstring of the mapCube function for cubes.

source


# YAXArrays.DAT.mapCubeMethod.
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.DatasetType.
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.DatasetMethod.

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.CubeMethod.
julia
Cube(ds::Dataset; joinname="Variable")

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

source


# YAXArrays.Datasets.open_datasetMethod.

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.savecubeMethod.
julia
savecube(cube,name::String)

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

  • datasetaxis="Variable" 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.savedatasetMethod.

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_datasetMethod.

to_dataset(c;datasetaxis = "Variable", 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.YAXDefaultsConstant.

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.findAxisMethod.
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.getOutAxisMethod.
julia
getOutAxis

source


# YAXArrays.get_descriptorMethod.
julia
get_descriptor(a)

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

source


# YAXArrays.match_axisMethod.
julia
match_axis

Internal function

Extended Help

Match the Axis based on the AxisDescriptor.
+A dictionary can hold cubes with differing axes. But it will share the common axes between the subcubes.

source


# YAXArrays.Datasets.DatasetMethod.

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.CubeMethod.
julia
Cube(ds::Dataset; joinname="Variable")

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

source


# YAXArrays.Datasets.open_datasetMethod.

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.savecubeMethod.
julia
savecube(cube,name::String)

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

  • datasetaxis="Variable" 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.savedatasetMethod.

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_datasetMethod.

to_dataset(c;datasetaxis = "Variable", 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.YAXDefaultsConstant.

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.findAxisMethod.
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.getOutAxisMethod.
julia
getOutAxis

source


# YAXArrays.get_descriptorMethod.
julia
get_descriptor(a)

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

source


# YAXArrays.match_axisMethod.
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.CleanMeType.
julia
mutable struct CleanMe

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

source


# YAXArrays.Cubes.cleanMethod.
julia
clean(c::CleanMe)

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

source


# YAXArrays.Cubes.copydataMethod.
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.optifuncMethod.
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.DATConfigType.

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

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

  • outcubes::Tuple{Vararg{YAXArrays.DAT.OutputCube, NOUT}} 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.InputCubeType.

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.OutputCubeType.

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.YAXColumnType.
julia
YAXColumn

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

  • inarBC

  • inds

source


# YAXArrays.DAT.cmpcachmissesMethod.

Function that compares two cache miss specifiers by their importance

source


# YAXArrays.DAT.getFrontPermMethod.

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

source


# YAXArrays.DAT.getLoopCacheSizeMethod.

Calculate optimal Cache size to DAT operation

source


# YAXArrays.DAT.getOuttypeMethod.
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source


# YAXArrays.DAT.getloopchunksMethod.
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.permuteloopaxesMethod.
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.setchunksMethod.
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.collectfromhandleMethod.

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

source


# YAXArrays.Datasets.createdatasetMethod.

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="Variable" 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.getarrayinfoMethod.

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

source


# YAXArrays.Datasets.testrangeMethod.

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

source


`,100)]))}const b=a(r,[["render",o]]);export{u as __pageData,b as default}; +For example to disregard differences of captialisation.

source


# YAXArrays.Cubes.CleanMeType.
julia
mutable struct CleanMe

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

source


# YAXArrays.Cubes.cleanMethod.
julia
clean(c::CleanMe)

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

source


# YAXArrays.Cubes.copydataMethod.
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.optifuncMethod.
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.DATConfigType.

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

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

  • outcubes::Tuple{Vararg{YAXArrays.DAT.OutputCube, NOUT}} 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.InputCubeType.

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.OutputCubeType.

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.YAXColumnType.
julia
YAXColumn

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

  • inarBC

  • inds

source


# YAXArrays.DAT.cmpcachmissesMethod.

Function that compares two cache miss specifiers by their importance

source


# YAXArrays.DAT.getFrontPermMethod.

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

source


# YAXArrays.DAT.getLoopCacheSizeMethod.

Calculate optimal Cache size to DAT operation

source


# YAXArrays.DAT.getOuttypeMethod.
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source


# YAXArrays.DAT.getloopchunksMethod.
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.permuteloopaxesMethod.
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.setchunksMethod.
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.collectfromhandleMethod.

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

source


# YAXArrays.Datasets.createdatasetMethod.

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="Variable" 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.getarrayinfoMethod.

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

source


# YAXArrays.Datasets.testrangeMethod.

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

source


`,100)]))}const b=a(r,[["render",o]]);export{u as __pageData,b as default}; diff --git a/previews/PR433/assets/api.md.jFKpXLcy.lean.js b/previews/PR433/assets/api.md.IuTNblWp.lean.js similarity index 91% rename from previews/PR433/assets/api.md.jFKpXLcy.lean.js rename to previews/PR433/assets/api.md.IuTNblWp.lean.js index 7f426344..e83084e2 100644 --- a/previews/PR433/assets/api.md.jFKpXLcy.lean.js +++ b/previews/PR433/assets/api.md.IuTNblWp.lean.js @@ -1,13 +1,13 @@ -import{_ as a,c as s,a2 as i,o as t}from"./chunks/framework.BPweQVnH.js";const u=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),r={name:"api.md"};function o(l,e,n,d,p,c){return t(),s("div",null,e[0]||(e[0]=[i(`

API Reference

This section describes all available functions of this package.

Public API

# YAXArrays.getAxisMethod.
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.CubesModule.

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.YAXArrayType.
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.caxesFunction.

Returns the axes of a Cube

source


# YAXArrays.Cubes.caxesMethod.
julia
caxes

Embeds Cube inside a new Cube

source


# YAXArrays.Cubes.concatenatecubesMethod.
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.readcubedataMethod.
julia
readcubedata(cube)

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

source


# YAXArrays.Cubes.setchunksMethod.
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.subsetcubeFunction.

This function calculates a subset of a cube's data

source


# YAXArrays.DAT.InDimsType.
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.MovingWindowType.
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.OutDimsMethod.
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.CubeTableMethod.
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.cubefittableMethod.
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.fittableMethod.
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.mapCubeMethod.
julia
mapCube(fun, cube, addargs...;kwargs...)
+import{_ as a,c as s,a2 as i,o as t}from"./chunks/framework.BPweQVnH.js";const u=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),r={name:"api.md"};function o(l,e,n,d,p,c){return t(),s("div",null,e[0]||(e[0]=[i(`

API Reference

This section describes all available functions of this package.

Public API

# YAXArrays.getAxisMethod.
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.CubesModule.

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.YAXArrayType.
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.caxesFunction.

Returns the axes of a Cube

source


# YAXArrays.Cubes.caxesMethod.
julia
caxes

Embeds Cube inside a new Cube

source


# YAXArrays.Cubes.concatenatecubesMethod.
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.readcubedataMethod.
julia
readcubedata(cube)

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

source


# YAXArrays.Cubes.setchunksMethod.
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.subsetcubeFunction.

This function calculates a subset of a cube's data

source


# YAXArrays.DAT.InDimsType.
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.MovingWindowType.
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.OutDimsMethod.
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.CubeTableMethod.
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.cubefittableMethod.
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.fittableMethod.
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.mapCubeMethod.
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.mapCubeMethod.
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.DatasetType.
julia
Dataset object which stores an \`OrderedDict\` of YAXArrays with Symbol keys.
+For the specific keyword arguments see the docstring of the mapCube function for cubes.

source


# YAXArrays.DAT.mapCubeMethod.
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.DatasetType.
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.DatasetMethod.

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.CubeMethod.
julia
Cube(ds::Dataset; joinname="Variable")

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

source


# YAXArrays.Datasets.open_datasetMethod.

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.savecubeMethod.
julia
savecube(cube,name::String)

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

  • datasetaxis="Variable" 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.savedatasetMethod.

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_datasetMethod.

to_dataset(c;datasetaxis = "Variable", 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.YAXDefaultsConstant.

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.findAxisMethod.
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.getOutAxisMethod.
julia
getOutAxis

source


# YAXArrays.get_descriptorMethod.
julia
get_descriptor(a)

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

source


# YAXArrays.match_axisMethod.
julia
match_axis

Internal function

Extended Help

Match the Axis based on the AxisDescriptor.
+A dictionary can hold cubes with differing axes. But it will share the common axes between the subcubes.

source


# YAXArrays.Datasets.DatasetMethod.

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.CubeMethod.
julia
Cube(ds::Dataset; joinname="Variable")

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

source


# YAXArrays.Datasets.open_datasetMethod.

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.savecubeMethod.
julia
savecube(cube,name::String)

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

  • datasetaxis="Variable" 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.savedatasetMethod.

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_datasetMethod.

to_dataset(c;datasetaxis = "Variable", 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.YAXDefaultsConstant.

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.findAxisMethod.
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.getOutAxisMethod.
julia
getOutAxis

source


# YAXArrays.get_descriptorMethod.
julia
get_descriptor(a)

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

source


# YAXArrays.match_axisMethod.
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.CleanMeType.
julia
mutable struct CleanMe

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

source


# YAXArrays.Cubes.cleanMethod.
julia
clean(c::CleanMe)

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

source


# YAXArrays.Cubes.copydataMethod.
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.optifuncMethod.
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.DATConfigType.

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

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

  • outcubes::Tuple{Vararg{YAXArrays.DAT.OutputCube, NOUT}} 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.InputCubeType.

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.OutputCubeType.

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.YAXColumnType.
julia
YAXColumn

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

  • inarBC

  • inds

source


# YAXArrays.DAT.cmpcachmissesMethod.

Function that compares two cache miss specifiers by their importance

source


# YAXArrays.DAT.getFrontPermMethod.

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

source


# YAXArrays.DAT.getLoopCacheSizeMethod.

Calculate optimal Cache size to DAT operation

source


# YAXArrays.DAT.getOuttypeMethod.
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source


# YAXArrays.DAT.getloopchunksMethod.
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.permuteloopaxesMethod.
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.setchunksMethod.
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.collectfromhandleMethod.

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

source


# YAXArrays.Datasets.createdatasetMethod.

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="Variable" 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.getarrayinfoMethod.

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

source


# YAXArrays.Datasets.testrangeMethod.

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

source


`,100)]))}const b=a(r,[["render",o]]);export{u as __pageData,b as default}; +For example to disregard differences of captialisation.

source


# YAXArrays.Cubes.CleanMeType.
julia
mutable struct CleanMe

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

source


# YAXArrays.Cubes.cleanMethod.
julia
clean(c::CleanMe)

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

source


# YAXArrays.Cubes.copydataMethod.
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.optifuncMethod.
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.DATConfigType.

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

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

  • outcubes::Tuple{Vararg{YAXArrays.DAT.OutputCube, NOUT}} 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.InputCubeType.

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.OutputCubeType.

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.YAXColumnType.
julia
YAXColumn

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

  • inarBC

  • inds

source


# YAXArrays.DAT.cmpcachmissesMethod.

Function that compares two cache miss specifiers by their importance

source


# YAXArrays.DAT.getFrontPermMethod.

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

source


# YAXArrays.DAT.getLoopCacheSizeMethod.

Calculate optimal Cache size to DAT operation

source


# YAXArrays.DAT.getOuttypeMethod.
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source


# YAXArrays.DAT.getloopchunksMethod.
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.permuteloopaxesMethod.
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.setchunksMethod.
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.collectfromhandleMethod.

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

source


# YAXArrays.Datasets.createdatasetMethod.

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="Variable" 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.getarrayinfoMethod.

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

source


# YAXArrays.Datasets.testrangeMethod.

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

source


`,100)]))}const b=a(r,[["render",o]]);export{u as __pageData,b as default}; diff --git a/previews/PR433/assets/app.B_BkKiYH.js b/previews/PR433/assets/app.C8g15cIN.js similarity index 95% rename from previews/PR433/assets/app.B_BkKiYH.js rename to previews/PR433/assets/app.C8g15cIN.js index d889ff22..e4e93a99 100644 --- a/previews/PR433/assets/app.B_BkKiYH.js +++ b/previews/PR433/assets/app.C8g15cIN.js @@ -1 +1 @@ -import{R as p}from"./chunks/theme.BQDL96Rf.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.BPweQVnH.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.Caq0HCNK.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.BPweQVnH.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/PR433/assets/chunks/@localSearchIndexroot.9jx3caj2.js b/previews/PR433/assets/chunks/@localSearchIndexroot.9jx3caj2.js new file mode 100644 index 00000000..6b41169f --- /dev/null +++ b/previews/PR433/assets/chunks/@localSearchIndexroot.9jx3caj2.js @@ -0,0 +1 @@ +const e='{"documentCount":92,"nextId":92,"documentIds":{"0":"/YAXArrays.jl/previews/PR433/UserGuide/cache.html#Caching-YAXArrays","1":"/YAXArrays.jl/previews/PR433/UserGuide/chunk.html#Chunk-YAXArrays","2":"/YAXArrays.jl/previews/PR433/UserGuide/chunk.html#Chunking-YAXArrays","3":"/YAXArrays.jl/previews/PR433/UserGuide/chunk.html#Chunking-Datasets","4":"/YAXArrays.jl/previews/PR433/UserGuide/chunk.html#Set-Chunks-by-Axis","5":"/YAXArrays.jl/previews/PR433/UserGuide/chunk.html#Set-chunking-by-Variable","6":"/YAXArrays.jl/previews/PR433/UserGuide/chunk.html#Set-chunking-for-all-variables","7":"/YAXArrays.jl/previews/PR433/UserGuide/combine.html#Combine-YAXArrays","8":"/YAXArrays.jl/previews/PR433/UserGuide/combine.html#cat-along-an-existing-dimension","9":"/YAXArrays.jl/previews/PR433/UserGuide/combine.html#concatenatecubes-to-a-new-dimension","10":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#Compute-YAXArrays","11":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#Modify-elements-of-a-YAXArray","12":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#arithmetics","13":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#map","14":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#mapslices","15":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#mapCube","16":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#Operations-over-several-YAXArrays","17":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#Creating-a-vector-array","18":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#Distributed-Computation","19":"/YAXArrays.jl/previews/PR433/UserGuide/convert.html#Convert-YAXArrays","20":"/YAXArrays.jl/previews/PR433/UserGuide/convert.html#Convert-Base.Array","21":"/YAXArrays.jl/previews/PR433/UserGuide/convert.html#Convert-Raster","22":"/YAXArrays.jl/previews/PR433/UserGuide/convert.html#Convert-DimArray","23":"/YAXArrays.jl/previews/PR433/UserGuide/create.html#Create-YAXArrays-and-Datasets","24":"/YAXArrays.jl/previews/PR433/UserGuide/create.html#Create-a-YAXArray","25":"/YAXArrays.jl/previews/PR433/UserGuide/create.html#Create-a-Dataset","26":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Frequently-Asked-Questions-(FAQ)","27":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Extract-the-axes-names-from-a-Cube","28":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Obtain-values-from-axes-and-data-from-the-cube","29":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#How-do-I-concatenate-cubes","30":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#How-do-I-subset-a-YAXArray-(-Cube-)-or-Dataset?","31":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Subsetting-a-YAXArray","32":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Subsetting-a-Dataset","33":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Subsetting-a-Dataset-whose-variables-share-all-their-dimensions","34":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Subsetting-a-Dataset-whose-variables-share-some-but-not-all-of-their-dimensions","35":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#How-do-I-apply-map-algebra?","36":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#How-do-I-use-the-CubeTable-function?","37":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#How-do-I-assing-variable-names-to-YAXArrays-in-a-Dataset","38":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#One-variable-name","39":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Multiple-variable-names","40":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#Group-YAXArrays-and-Datasets","41":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#Seasonal-Averages-from-Time-Series-of-Monthly-Means","42":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#Download-the-data","43":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#GroupBy:-seasons","44":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#dropdims","45":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#seasons","46":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#GroupBy:-weight","47":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#weights","48":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#weighted-seasons","49":"/YAXArrays.jl/previews/PR433/UserGuide/read.html#Read-YAXArrays-and-Datasets","50":"/YAXArrays.jl/previews/PR433/UserGuide/read.html#Read-Zarr","51":"/YAXArrays.jl/previews/PR433/UserGuide/read.html#Read-NetCDF","52":"/YAXArrays.jl/previews/PR433/UserGuide/read.html#Read-GDAL-(GeoTIFF,-GeoJSON)","53":"/YAXArrays.jl/previews/PR433/UserGuide/select.html#Select-YAXArrays-and-Datasets","54":"/YAXArrays.jl/previews/PR433/UserGuide/select.html#Select-a-YAXArray","55":"/YAXArrays.jl/previews/PR433/UserGuide/select.html#Select-elements","56":"/YAXArrays.jl/previews/PR433/UserGuide/select.html#Select-ranges","57":"/YAXArrays.jl/previews/PR433/UserGuide/select.html#Closed-and-open-intervals","58":"/YAXArrays.jl/previews/PR433/UserGuide/select.html#Get-a-dimension","59":"/YAXArrays.jl/previews/PR433/UserGuide/types.html#types","60":"/YAXArrays.jl/previews/PR433/UserGuide/types.html#yaxarray","61":"/YAXArrays.jl/previews/PR433/UserGuide/types.html#dataset","62":"/YAXArrays.jl/previews/PR433/UserGuide/types.html#(Data)-Cube","63":"/YAXArrays.jl/previews/PR433/UserGuide/types.html#dimension","64":"/YAXArrays.jl/previews/PR433/UserGuide/write.html#Write-YAXArrays-and-Datasets","65":"/YAXArrays.jl/previews/PR433/UserGuide/write.html#Write-Zarr","66":"/YAXArrays.jl/previews/PR433/UserGuide/write.html#Write-NetCDF","67":"/YAXArrays.jl/previews/PR433/UserGuide/write.html#Overwrite-a-Dataset","68":"/YAXArrays.jl/previews/PR433/UserGuide/write.html#Append-to-a-Dataset","69":"/YAXArrays.jl/previews/PR433/UserGuide/write.html#Save-Skeleton","70":"/YAXArrays.jl/previews/PR433/api.html#API-Reference","71":"/YAXArrays.jl/previews/PR433/api.html#Public-API","72":"/YAXArrays.jl/previews/PR433/api.html#Internal-API","73":"/YAXArrays.jl/previews/PR433/development/contribute.html#Contribute-to-YAXArrays.jl","74":"/YAXArrays.jl/previews/PR433/development/contribute.html#Contribute-to-Documentation","75":"/YAXArrays.jl/previews/PR433/development/contribute.html#Build-docs-locally","76":"/YAXArrays.jl/previews/PR433/get_started.html#Getting-Started","77":"/YAXArrays.jl/previews/PR433/get_started.html#installation","78":"/YAXArrays.jl/previews/PR433/get_started.html#quickstart","79":"/YAXArrays.jl/previews/PR433/get_started.html#updates","80":"/YAXArrays.jl/previews/PR433/tutorials/mean_seasonal_cycle.html#Mean-Seasonal-Cycle-for-a-single-pixel","81":"/YAXArrays.jl/previews/PR433/tutorials/mean_seasonal_cycle.html#Define-the-cube","82":"/YAXArrays.jl/previews/PR433/tutorials/mean_seasonal_cycle.html#Plot-results:-mean-seasonal-cycle","83":"/YAXArrays.jl/previews/PR433/tutorials/other_tutorials.html#Other-tutorials","84":"/YAXArrays.jl/previews/PR433/tutorials/other_tutorials.html#General-overview-of-the-functionality-of-YAXArrays","85":"/YAXArrays.jl/previews/PR433/tutorials/other_tutorials.html#Table-style-iteration-over-YAXArrays","86":"/YAXArrays.jl/previews/PR433/tutorials/other_tutorials.html#Combining-multiple-tiff-files-into-a-zarr-based-datacube","87":"/YAXArrays.jl/previews/PR433/tutorials/plottingmaps.html#Plotting-maps","88":"/YAXArrays.jl/previews/PR433/tutorials/plottingmaps.html#Heatmap-plot","89":"/YAXArrays.jl/previews/PR433/tutorials/plottingmaps.html#Wintri-Projection","90":"/YAXArrays.jl/previews/PR433/tutorials/plottingmaps.html#Moll-projection","91":"/YAXArrays.jl/previews/PR433/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,72],"5":[4,4,72],"6":[5,4,81],"7":[2,1,31],"8":[5,2,80],"9":[5,2,89],"10":[2,1,117],"11":[5,2,30],"12":[1,2,70],"13":[1,2,118],"14":[1,2,88],"15":[1,2,22],"16":[4,3,210],"17":[4,3,248],"18":[2,2,138],"19":[2,1,52],"20":[3,2,84],"21":[2,2,116],"22":[2,2,120],"23":[4,1,14],"24":[3,4,106],"25":[3,4,45],"26":[5,1,19],"27":[7,5,75],"28":[8,5,76],"29":[5,5,87],"30":[10,5,33],"31":[3,14,144],"32":[3,14,18],"33":[9,14,69],"34":[13,14,153],"35":[7,5,112],"36":[8,5,169],"37":[11,5,1],"38":[3,15,24],"39":[3,15,32],"40":[4,1,23],"41":[8,4,35],"42":[3,4,67],"43":[2,4,136],"44":[1,6,102],"45":[1,6,49],"46":[2,4,107],"47":[1,6,87],"48":[2,6,349],"49":[4,1,14],"50":[2,4,184],"51":[2,4,206],"52":[5,4,38],"53":[4,1,165],"54":[3,4,106],"55":[2,4,117],"56":[2,4,131],"57":[4,4,144],"58":[3,4,73],"59":[1,1,16],"60":[1,1,113],"61":[1,1,78],"62":[3,1,70],"63":[1,1,32],"64":[4,1,146],"65":[2,4,19],"66":[2,4,20],"67":[3,4,80],"68":[4,4,153],"69":[2,4,117],"70":[2,1,10],"71":[2,2,559],"72":[2,2,467],"73":[4,1,15],"74":[3,4,40],"75":[3,5,75],"76":[2,1,1],"77":[1,2,34],"78":[1,2,196],"79":[1,2,49],"80":[7,1,73],"81":[3,7,132],"82":[5,7,48],"83":[2,1,49],"84":[6,2,12],"85":[5,2,38],"86":[9,2,1],"87":[2,1,132],"88":[2,2,21],"89":[2,1,46],"90":[2,2,33],"91":[3,2,57]},"averageFieldLength":[3.4347826086956514,3.619565217391304,90.10869565217394],"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":"Creating a vector array","titles":["Compute YAXArrays","mapCube"]},"18":{"title":"Distributed Computation","titles":["Compute YAXArrays"]},"19":{"title":"Convert YAXArrays","titles":[]},"20":{"title":"Convert Base.Array","titles":["Convert YAXArrays"]},"21":{"title":"Convert Raster","titles":["Convert YAXArrays"]},"22":{"title":"Convert DimArray","titles":["Convert YAXArrays"]},"23":{"title":"Create YAXArrays and Datasets","titles":[]},"24":{"title":"Create a YAXArray","titles":["Create YAXArrays and Datasets"]},"25":{"title":"Create a Dataset","titles":["Create YAXArrays and Datasets"]},"26":{"title":"Frequently Asked Questions (FAQ)","titles":[]},"27":{"title":"Extract the axes names from a Cube","titles":["Frequently Asked Questions (FAQ)"]},"28":{"title":"Obtain values from axes and data from the cube","titles":["Frequently Asked Questions (FAQ)"]},"29":{"title":"How do I concatenate cubes","titles":["Frequently Asked Questions (FAQ)"]},"30":{"title":"How do I subset a YAXArray ( Cube ) or Dataset?","titles":["Frequently Asked Questions (FAQ)"]},"31":{"title":"Subsetting a YAXArray","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?"]},"32":{"title":"Subsetting a Dataset","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?"]},"33":{"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"]},"34":{"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"]},"35":{"title":"How do I apply map algebra?","titles":["Frequently Asked Questions (FAQ)"]},"36":{"title":"How do I use the CubeTable function?","titles":["Frequently Asked Questions (FAQ)"]},"37":{"title":"How do I assing variable names to YAXArrays in a Dataset","titles":["Frequently Asked Questions (FAQ)"]},"38":{"title":"One variable name","titles":["Frequently Asked Questions (FAQ)","How do I assing variable names to YAXArrays in a Dataset"]},"39":{"title":"Multiple variable names","titles":["Frequently Asked Questions (FAQ)","How do I assing variable names to YAXArrays in a Dataset"]},"40":{"title":"Group YAXArrays and Datasets","titles":[]},"41":{"title":"Seasonal Averages from Time Series of Monthly Means","titles":["Group YAXArrays and Datasets"]},"42":{"title":"Download the data","titles":["Group YAXArrays and Datasets"]},"43":{"title":"GroupBy: seasons","titles":["Group YAXArrays and Datasets"]},"44":{"title":"dropdims","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"45":{"title":"seasons","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"46":{"title":"GroupBy: weight","titles":["Group YAXArrays and Datasets"]},"47":{"title":"weights","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"48":{"title":"weighted seasons","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"49":{"title":"Read YAXArrays and Datasets","titles":[]},"50":{"title":"Read Zarr","titles":["Read YAXArrays and Datasets"]},"51":{"title":"Read NetCDF","titles":["Read YAXArrays and Datasets"]},"52":{"title":"Read GDAL (GeoTIFF, GeoJSON)","titles":["Read YAXArrays and Datasets"]},"53":{"title":"Select YAXArrays and Datasets","titles":[]},"54":{"title":"Select a YAXArray","titles":["Select YAXArrays and Datasets"]},"55":{"title":"Select elements","titles":["Select YAXArrays and Datasets"]},"56":{"title":"Select ranges","titles":["Select YAXArrays and Datasets"]},"57":{"title":"Closed and open intervals","titles":["Select YAXArrays and Datasets"]},"58":{"title":"Get a dimension","titles":["Select YAXArrays and Datasets"]},"59":{"title":"Types","titles":[]},"60":{"title":"YAXArray","titles":["Types"]},"61":{"title":"Dataset","titles":["Types"]},"62":{"title":"(Data) Cube","titles":["Types"]},"63":{"title":"Dimension","titles":["Types"]},"64":{"title":"Write YAXArrays and Datasets","titles":[]},"65":{"title":"Write Zarr","titles":["Write YAXArrays and Datasets"]},"66":{"title":"Write NetCDF","titles":["Write YAXArrays and Datasets"]},"67":{"title":"Overwrite a Dataset","titles":["Write YAXArrays and Datasets"]},"68":{"title":"Append to a Dataset","titles":["Write YAXArrays and Datasets"]},"69":{"title":"Save Skeleton","titles":["Write YAXArrays and Datasets"]},"70":{"title":"API Reference","titles":[]},"71":{"title":"Public API","titles":["API Reference"]},"72":{"title":"Internal API","titles":["API Reference"]},"73":{"title":"Contribute to YAXArrays.jl","titles":[]},"74":{"title":"Contribute to Documentation","titles":["Contribute to YAXArrays.jl"]},"75":{"title":"Build docs locally","titles":["Contribute to YAXArrays.jl","Contribute to Documentation"]},"76":{"title":"Getting Started","titles":[]},"77":{"title":"Installation","titles":["Getting Started"]},"78":{"title":"Quickstart","titles":["Getting Started"]},"79":{"title":"Updates","titles":["Getting Started"]},"80":{"title":"Mean Seasonal Cycle for a single pixel","titles":[]},"81":{"title":"Define the cube","titles":["Mean Seasonal Cycle for a single pixel"]},"82":{"title":"Plot results: mean seasonal cycle","titles":["Mean Seasonal Cycle for a single pixel"]},"83":{"title":"Other tutorials","titles":[]},"84":{"title":"General overview of the functionality of YAXArrays","titles":["Other tutorials"]},"85":{"title":"Table-style iteration over YAXArrays","titles":["Other tutorials"]},"86":{"title":"Combining multiple tiff files into a zarr based datacube","titles":["Other tutorials"]},"87":{"title":"Plotting maps","titles":[]},"88":{"title":"Heatmap plot","titles":["Plotting maps"]},"89":{"title":"Wintri Projection","titles":[]},"90":{"title":"Moll projection","titles":["Wintri Projection"]},"91":{"title":"3D sphere plot","titles":["Wintri Projection"]}},"dirtCount":0,"index":[["δlon",{"2":{"89":1}}],["`diskarrays",{"2":{"72":1}}],["`ds`",{"2":{"71":1}}],["`ordereddict`",{"2":{"71":1}}],["`fun`",{"2":{"71":1}}],["`a",{"2":{"31":1}}],["π",{"2":{"35":2,"80":1,"82":1}}],[">var",{"2":{"81":1}}],[">dates",{"2":{"81":1}}],[">month",{"2":{"71":1}}],[">abs",{"2":{"71":1}}],[">=",{"2":{"34":4}}],[">",{"2":{"34":2,"35":2,"81":1}}],["└──────────────────────────────────────────────────────────┘",{"2":{"31":1}}],["└─────────────────────────────────────────────────────────────┘",{"2":{"21":2}}],["└──────────────────────────────────────────────────────────────────┘",{"2":{"22":2}}],["└──────────────────────────────────────────────────────────────────────┘",{"2":{"24":1}}],["└────────────────────────────────────────────────────────────────────────────────┘",{"2":{"55":1}}],["└──────────────────────────────────────────────────────────────────────────────┘",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":4,"24":1,"27":1,"28":1,"29":1,"31":4,"35":3,"36":3,"43":2,"44":1,"46":3,"47":2,"48":3,"50":1,"51":1,"54":2,"55":2,"56":3,"57":5,"69":1,"78":1,"81":1}}],["└───────────────────────────────────────────────────────────────────────┘",{"2":{"8":1}}],["└─────────────────────────────────────────────────────────────────────┘",{"2":{"20":1,"78":1}}],["└────────────────────────────────────────────────────────────────┘",{"2":{"9":1}}],["⬔",{"2":{"29":1,"78":1}}],["quickstart",{"0":{"78":1}}],["query",{"2":{"53":1}}],["questions",{"0":{"26":1},"1":{"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1}}],["quot",{"2":{"16":2,"36":2,"67":2,"69":2,"71":16,"72":12}}],["jj+1",{"2":{"51":1,"53":1,"64":1,"68":1}}],["jj",{"2":{"51":1,"53":1,"64":1,"68":1}}],["joinname",{"2":{"71":1}}],["joinname=",{"2":{"71":1}}],["journal",{"2":{"51":1,"53":1,"64":1,"68":1}}],["joe",{"2":{"41":1,"48":1}}],["j",{"2":{"48":8}}],["jan",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["jl",{"0":{"73":1},"1":{"74":1,"75":1},"2":{"21":1,"22":1,"36":1,"42":1,"48":1,"60":1,"63":1,"73":1,"75":2,"77":1,"78":2,"79":3,"85":1}}],["jussieu",{"2":{"51":1,"53":1,"64":1,"68":1}}],["just",{"2":{"17":1,"60":1,"62":1,"71":1,"72":2}}],["jul",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["juliaδlon",{"2":{"89":1}}],["juliaglmakie",{"2":{"88":1}}],["juliagetloopchunks",{"2":{"72":1}}],["juliagetouttype",{"2":{"72":1}}],["juliagetoutaxis",{"2":{"72":1}}],["juliaget",{"2":{"72":1}}],["juliagetaxis",{"2":{"71":1}}],["juliagen",{"2":{"16":1}}],["juliax",{"2":{"80":1}}],["juliapkg>",{"2":{"77":1,"79":1}}],["juliapermuteloopaxes",{"2":{"72":1}}],["juliaoptifunc",{"2":{"72":1}}],["juliaoutdims",{"2":{"71":1}}],["juliaoffset",{"2":{"13":1}}],["juliaindims",{"2":{"71":1}}],["juliaimport",{"2":{"14":1,"77":1}}],["juliacopydata",{"2":{"72":1}}],["juliacollect",{"2":{"28":1,"58":1}}],["juliaclean",{"2":{"72":1}}],["juliacube",{"2":{"71":1}}],["juliacubefittable",{"2":{"71":1}}],["juliacubetable",{"2":{"71":1}}],["juliacaxes",{"2":{"71":1}}],["juliasavecube",{"2":{"71":1}}],["juliasavedataset",{"2":{"65":1,"66":1,"67":1}}],["juliasetchunks",{"2":{"71":1,"72":1}}],["juliaseasons",{"2":{"45":1}}],["julialon",{"2":{"87":1}}],["julialookup",{"2":{"58":1}}],["julialatitudes",{"2":{"34":1}}],["juliawith",{"2":{"48":1}}],["julia>",{"2":{"48":1,"75":1,"81":1}}],["juliaurl",{"2":{"42":1}}],["juliausing",{"2":{"0":1,"2":1,"4":1,"5":1,"6":1,"8":1,"9":1,"10":1,"16":1,"17":1,"18":2,"20":1,"21":1,"22":1,"24":2,"27":1,"29":1,"31":1,"33":1,"34":1,"36":2,"40":1,"48":1,"50":1,"51":1,"52":1,"53":1,"55":1,"57":1,"64":1,"65":1,"66":1,"69":1,"78":2,"80":1,"87":1,"91":1}}],["juliakeylist",{"2":{"39":1}}],["juliaylonlat",{"2":{"31":1}}],["juliaytime3",{"2":{"31":1}}],["juliaytime2",{"2":{"31":1}}],["juliaytime",{"2":{"31":1}}],["juliay",{"2":{"31":1}}],["juliayaxcolumn",{"2":{"72":1}}],["juliayaxarray",{"2":{"71":1}}],["juliayax",{"2":{"0":1}}],["juliatos",{"2":{"54":2,"55":2,"56":3,"57":1,"58":1}}],["juliatempo",{"2":{"46":1}}],["juliat",{"2":{"31":1,"36":1,"80":1}}],["juliadataset",{"2":{"71":1}}],["juliadata3",{"2":{"25":1}}],["juliads2",{"2":{"68":1}}],["juliads",{"2":{"33":1,"34":1,"50":1,"51":1}}],["juliadim",{"2":{"22":1}}],["juliadimarray",{"2":{"17":1}}],["juliareadcubedata",{"2":{"71":1}}],["juliaregions",{"2":{"17":2}}],["juliar",{"2":{"69":1}}],["juliaras2",{"2":{"21":1}}],["juliamutable",{"2":{"72":1}}],["juliamatch",{"2":{"72":1}}],["juliamapcube",{"2":{"71":2}}],["juliamapslices",{"2":{"14":1,"18":1}}],["juliamovingwindow",{"2":{"71":1}}],["juliamean",{"2":{"48":1}}],["juliam2",{"2":{"20":1}}],["julia",{"2":{"19":1,"72":1,"75":1,"77":2,"79":2}}],["juliavector",{"2":{"17":1}}],["juliajulia>",{"2":{"16":7,"27":3,"28":1,"29":1,"35":3,"36":3,"38":1,"39":1,"43":2,"44":1,"46":2,"47":2,"48":3,"57":4,"68":1,"69":1,"81":2,"87":3}}],["juliaall",{"2":{"69":1}}],["juliaaxs",{"2":{"42":1}}],["juliaaxes",{"2":{"31":1}}],["juliaa2",{"2":{"12":2,"24":2,"78":1}}],["juliaa",{"2":{"2":1,"11":3}}],["juliafig",{"2":{"80":1,"82":1,"89":1,"90":1}}],["juliafindaxis",{"2":{"72":1}}],["juliafittable",{"2":{"71":2}}],["juliafunction",{"2":{"16":1,"43":1,"71":1,"81":1}}],["juliaf",{"2":{"2":1,"4":1,"5":1,"6":1,"16":1}}],["jun",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["∘",{"2":{"18":1}}],["|>",{"2":{"17":2}}],["⋱",{"2":{"17":1}}],["⋮",{"2":{"17":2,"58":1,"81":1}}],["982313",{"2":{"78":1}}],["98003",{"2":{"78":1}}],["986",{"2":{"48":1}}],["986722",{"2":{"20":1}}],["9375",{"2":{"50":2,"87":1}}],["93743",{"2":{"48":1}}],["9362",{"2":{"48":1}}],["932837",{"2":{"22":1}}],["932712",{"2":{"21":1}}],["97649",{"2":{"48":1}}],["97047",{"2":{"48":1}}],["947163",{"2":{"78":1}}],["94534",{"2":{"48":1}}],["9404",{"2":{"43":1,"44":1}}],["9432",{"2":{"43":1,"44":1}}],["959",{"2":{"48":1}}],["95",{"2":{"34":6,"48":1}}],["952172",{"2":{"22":1}}],["904493",{"2":{"78":1}}],["90712",{"2":{"48":1}}],["90365",{"2":{"48":1}}],["90",{"2":{"34":2,"57":5}}],["900124",{"2":{"21":1}}],["900871",{"2":{"17":1}}],["922523",{"2":{"78":1}}],["923612",{"2":{"78":1}}],["929894",{"2":{"22":1}}],["927457",{"2":{"21":1}}],["9192",{"2":{"48":1}}],["91",{"2":{"27":1,"57":5}}],["911513",{"2":{"21":1}}],["913154",{"2":{"21":1}}],["914495",{"2":{"21":1}}],["99",{"2":{"34":6}}],["99486",{"2":{"21":1}}],["992839",{"2":{"21":1}}],["9",{"2":{"16":14,"17":2,"28":1,"31":1,"46":4,"56":4,"72":1}}],["96x71x19",{"2":{"51":1,"53":1,"64":1,"68":1}}],["96f0",{"2":{"51":1,"53":1,"64":1}}],["9682",{"2":{"43":1,"44":1}}],["960",{"2":{"17":1}}],["96",{"2":{"8":1,"9":1,"55":2,"68":1}}],["869494",{"2":{"78":1}}],["863377",{"2":{"78":1}}],["86",{"2":{"58":1}}],["86457",{"2":{"48":1}}],["846797",{"2":{"78":1}}],["84",{"2":{"58":1}}],["845891",{"2":{"20":1}}],["89668",{"2":{"78":1}}],["89",{"2":{"50":4,"51":2,"53":1,"54":2,"55":1,"56":1,"57":5,"58":1,"64":1,"68":1,"87":2}}],["8984",{"2":{"48":1}}],["89237",{"2":{"48":1}}],["876588",{"2":{"78":1}}],["87",{"2":{"58":1}}],["87705",{"2":{"48":1}}],["874145",{"2":{"21":1}}],["819092",{"2":{"78":1}}],["81",{"2":{"24":1,"58":1}}],["82",{"2":{"58":1}}],["822887",{"2":{"21":1}}],["822117",{"2":{"20":1}}],["827734",{"2":{"20":1}}],["85",{"2":{"58":1,"89":1,"90":1}}],["850",{"2":{"48":1}}],["85ºn",{"2":{"34":1}}],["85843",{"2":{"20":1}}],["85714",{"2":{"17":1}}],["83703",{"2":{"78":1}}],["83",{"2":{"58":1}}],["831117",{"2":{"21":1}}],["839431",{"2":{"20":1}}],["838357",{"2":{"20":1}}],["836882",{"2":{"17":1}}],["88",{"2":{"29":1,"50":4,"58":1,"78":1,"87":2}}],["885872",{"2":{"20":1}}],["880394",{"2":{"20":1}}],["889656",{"2":{"17":1}}],["8",{"2":{"16":12,"17":2,"28":1,"31":1,"51":2,"53":1,"54":2,"64":1,"68":1,"81":1}}],["804564",{"2":{"78":1}}],["804383",{"2":{"22":1}}],["80759",{"2":{"48":1}}],["800",{"2":{"28":1,"31":1,"69":1}}],["809186",{"2":{"22":1}}],["808734",{"2":{"20":1}}],["80",{"2":{"16":1,"34":2}}],["v",{"2":{"51":1,"53":1,"64":1,"68":1}}],["v1",{"2":{"51":2,"53":2,"64":2,"68":2,"77":1}}],["vol",{"2":{"51":1,"53":1,"64":1,"68":1}}],["v20190710",{"2":{"50":1,"87":2}}],["video",{"2":{"83":1}}],["videos",{"2":{"83":1}}],["visualization",{"2":{"36":1}}],["vice",{"2":{"19":1}}],["view",{"2":{"17":1,"78":1}}],["version",{"2":{"50":1,"51":1,"53":1,"64":1,"68":1,"79":2,"87":1}}],["versa",{"2":{"19":1}}],["verify",{"2":{"47":1}}],["very",{"2":{"13":1,"36":1,"60":1}}],["vector",{"0":{"17":1},"2":{"17":4,"28":1,"43":1,"45":1,"46":2,"47":3,"48":2,"58":1,"60":1,"71":2,"72":3}}],["val",{"2":{"28":2,"58":1}}],["vals",{"2":{"17":1}}],["value",{"2":{"12":1,"14":3,"16":2,"35":1,"51":1,"54":2,"55":3,"56":3,"57":5,"71":4,"72":1}}],["values=ds1",{"2":{"36":1}}],["values",{"0":{"28":1},"2":{"9":1,"17":2,"23":1,"24":2,"27":3,"28":1,"34":3,"36":4,"56":1,"58":2,"60":1,"61":1,"69":1,"71":9,"78":1,"87":1}}],["vararg",{"2":{"72":2}}],["varoables",{"2":{"71":1}}],["variant",{"2":{"50":1,"87":1}}],["variable=at",{"2":{"78":1}}],["variable",{"0":{"5":1,"37":1,"38":1,"39":1},"1":{"38":1,"39":1},"2":{"5":1,"9":3,"34":3,"50":1,"71":4,"72":7,"78":3,"80":1,"81":1,"82":1,"87":1}}],["variables=at",{"2":{"35":2}}],["variables",{"0":{"6":1,"33":1,"34":1},"2":{"4":2,"5":1,"6":2,"9":2,"19":1,"25":1,"29":2,"32":1,"33":2,"34":3,"38":1,"39":1,"50":2,"51":1,"53":1,"61":1,"62":1,"64":1,"68":2,"71":2,"87":2}}],["varlist",{"2":{"39":2}}],["var2=var2",{"2":{"33":1}}],["var2",{"2":{"29":2,"33":3,"35":1}}],["var1=var1",{"2":{"33":1}}],["var1",{"2":{"29":2,"33":3,"35":1}}],["var",{"2":{"9":2,"80":2,"81":2,"82":2}}],["uv",{"2":{"91":1}}],["u",{"2":{"81":1}}],["updates",{"0":{"79":1}}],["update",{"2":{"71":1}}],["up",{"2":{"71":1}}],["ucar",{"2":{"51":1,"53":1,"61":1,"64":1}}],["urls",{"2":{"49":1}}],["url",{"2":{"42":1,"50":1}}],["unpermuted",{"2":{"72":2}}],["unpractical",{"2":{"42":1}}],["underlying",{"2":{"71":1,"72":1,"79":1}}],["unlike",{"2":{"62":1}}],["unique",{"2":{"81":1}}],["unidata",{"2":{"51":1,"53":1,"61":1,"64":1}}],["units",{"2":{"50":1,"51":2,"54":4,"55":6,"56":6,"57":10}}],["unitrange",{"2":{"43":2,"44":2,"48":6}}],["union",{"2":{"14":2,"16":4,"17":1,"35":1,"36":2,"51":1,"54":2,"55":3,"56":3,"57":5,"69":2}}],["unordered",{"2":{"43":2,"44":1,"45":1,"46":2,"47":2,"48":3}}],["unweighted",{"2":{"43":1,"48":1}}],["unnecessary",{"2":{"17":1}}],["unchanged",{"2":{"13":1}}],["usually",{"2":{"50":1,"60":2,"61":2}}],["usual",{"2":{"43":1}}],["us",{"2":{"17":1}}],["useable",{"2":{"71":1}}],["uses",{"2":{"36":1}}],["used",{"2":{"17":1,"18":1,"31":1,"53":1,"58":1,"59":1,"60":1,"63":1,"71":4,"72":3}}],["userguide",{"2":{"74":2}}],["users",{"2":{"72":1}}],["user",{"2":{"10":2,"12":1,"13":1,"18":1,"24":3,"25":1,"72":1}}],["use",{"0":{"36":1},"2":{"0":1,"8":1,"9":1,"10":4,"13":1,"18":2,"27":2,"31":1,"33":1,"34":1,"35":1,"36":2,"40":1,"42":1,"44":1,"57":2,"62":1,"69":1,"71":3,"72":1,"83":1,"85":1,"87":2}}],["useful",{"2":{"0":1,"62":1}}],["using",{"2":{"0":1,"8":1,"9":1,"10":1,"16":2,"17":2,"18":7,"22":1,"27":1,"29":1,"31":2,"33":2,"34":2,"35":1,"36":1,"40":4,"50":2,"51":3,"52":2,"53":2,"55":3,"56":2,"64":2,"68":1,"69":2,"79":1,"80":2,"81":1,"87":3}}],["+proj=moll",{"2":{"90":1}}],["+",{"2":{"12":2,"13":1,"16":2,"80":1,"89":1}}],["kwargs",{"2":{"71":4,"72":2}}],["k",{"2":{"50":1,"51":1,"54":2,"55":3,"56":3,"57":5}}],["keys",{"2":{"71":1}}],["key",{"2":{"71":1}}],["keyword",{"2":{"68":1,"71":6,"72":2}}],["keylist",{"2":{"39":1}}],["keeps",{"2":{"13":1}}],["keep",{"2":{"0":1,"72":1}}],["kb",{"2":{"10":1,"12":1,"13":1,"14":1,"16":2,"17":1,"21":1,"24":2,"27":1,"29":1,"31":4,"35":3,"36":1,"55":1,"56":3,"57":5,"78":1,"81":1}}],["↗",{"2":{"10":1,"12":1,"13":1,"16":2,"17":1,"21":2,"24":3,"25":1,"27":3,"29":1,"31":5,"33":2,"35":3,"43":1,"50":2,"51":2,"53":1,"54":2,"56":3,"57":5,"64":1,"68":2,"78":1,"87":1}}],["├─────────────────────────┴──────────────────────────",{"2":{"31":1}}],["├─────────────────────────┴─────────────────────────────────────",{"2":{"78":1}}],["├─────────────────────────┴──────────────────────────────────────────────",{"2":{"36":1}}],["├─────────────────────────┴──────────────────────────────────",{"2":{"22":2}}],["├─────────────────────────┴────────────────────────────────",{"2":{"9":1}}],["├──────────────────────────┴────────────────────────────",{"2":{"21":1}}],["├──────────────────────────┴────────────────────────────────────",{"2":{"20":1}}],["├──────────────────────────┴─────────────────────────────────────────────",{"2":{"17":1,"31":1}}],["├────────────────────────────┴───────────────────────────────────────────",{"2":{"31":2}}],["├────────────────────────────┴──────────────────────────",{"2":{"21":1}}],["├─────────────────────────────┴──────────────────────────────────",{"2":{"24":1}}],["├─────────────────────────────┴──────────────────────────────────────────",{"2":{"16":1,"27":1}}],["├───────────────────────────────┴────────────────────────────────────────",{"2":{"47":1}}],["├──────────────────────────────────┴─────────────────────────────────────",{"2":{"81":1}}],["├─────────────────────────────────────────┴──────────────────────────────",{"2":{"69":1}}],["├──────────────────────────────────────────┴─────────────────────────────",{"2":{"17":1,"36":1}}],["├─────────────────────────────────────────────┴─────────────────",{"2":{"55":1}}],["├───────────────────────────────────────────────┴────────────────────────",{"2":{"36":1,"56":1,"57":5}}],["├───────────────────────────────────────────────",{"2":{"31":1}}],["├────────────────────────────────────────────────",{"2":{"31":1}}],["├──────────────────────────────────────────────────┴─────────────────────",{"2":{"43":1}}],["├──────────────────────────────────────────────────",{"2":{"21":1}}],["├───────────────────────────────────────────────────",{"2":{"21":2}}],["├─────────────────────────────────────────────────────",{"2":{"9":1,"21":1}}],["├───────────────────────────────────────────────────────",{"2":{"22":1}}],["├────────────────────────────────────────────────────────",{"2":{"22":2}}],["├──────────────────────────────────────────────────────────",{"2":{"20":1,"78":1}}],["├───────────────────────────────────────────────────────────",{"2":{"20":1,"24":1,"78":1}}],["├────────────────────────────────────────────────────────────",{"2":{"8":1,"24":1}}],["├──────────────────────────────────────────────────────────────────",{"2":{"43":1,"46":1}}],["├───────────────────────────────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":2,"24":1,"27":1,"28":1,"29":1,"31":4,"35":3,"36":3,"46":1,"50":1,"51":1,"54":2,"55":2,"56":3,"57":5,"69":1,"78":1,"81":1}}],["├─────────────────────────────────────────────────────────────────────",{"2":{"55":1}}],["├─────────────────────────────────────────────────────────────────────┴",{"2":{"55":1}}],["├────────────────────────────────────────────────────────────────────────",{"2":{"43":1,"44":1,"46":1,"47":1,"48":3}}],["├────────────────────────────────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":3,"24":1,"27":1,"28":1,"29":1,"31":4,"35":3,"36":3,"43":2,"44":1,"46":3,"47":2,"48":3,"50":1,"51":1,"54":2,"55":2,"56":3,"57":5,"69":1,"78":1,"81":1}}],["├─────────────────────────────────────────────────────────────",{"2":{"8":1}}],["├──────────────────────────────────────────────────────",{"2":{"9":1}}],["├────────────────────────────────────────────────┴───────────────────────",{"2":{"14":1,"46":1,"51":1,"54":2,"55":2}}],["├──────────────────────────────────────────────┴─────────────────────────",{"2":{"16":2,"35":1,"56":2}}],["├───────────────────────────────────────────┴────────────────────────────",{"2":{"14":1}}],["├────────────────────────────────────┴───────────────────────────────────",{"2":{"50":1}}],["├────────────────────────────────┴───────────────────────────────────────",{"2":{"29":1,"78":1}}],["├────────────────────────────────┴────────────────────────────────",{"2":{"8":1}}],["├──────────────────────────────┴─────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"16":2,"17":1,"24":1,"35":2,"46":1}}],["├───────────────────────────┴────────────────────────────────────────────",{"2":{"17":1,"28":1,"31":1}}],["╭────────────────────────────╮",{"2":{"21":1,"31":2}}],["╭─────────────────────────────╮",{"2":{"16":1,"24":1,"27":1}}],["╭───────────────────────────────╮",{"2":{"47":1}}],["╭──────────────────────────────────╮",{"2":{"81":1}}],["╭─────────────────────────────────────────╮",{"2":{"69":1}}],["╭──────────────────────────────────────────╮",{"2":{"17":1,"36":1}}],["╭─────────────────────────────────────────────╮",{"2":{"55":1}}],["╭──────────────────────────────────────────────────────────────────────────────╮",{"2":{"43":1,"44":1,"46":1,"47":1,"48":3}}],["╭──────────────────────────────────────────────────╮",{"2":{"43":1}}],["╭────────────────────────────────────────────────╮",{"2":{"14":1,"46":1,"51":1,"54":2,"55":2}}],["╭───────────────────────────────────────────────╮",{"2":{"36":1,"56":1,"57":5}}],["╭──────────────────────────────────────────────╮",{"2":{"16":2,"35":1,"56":2}}],["╭───────────────────────────────────────────╮",{"2":{"14":1}}],["╭────────────────────────────────────╮",{"2":{"50":1}}],["╭────────────────────────────────╮",{"2":{"8":1,"29":1,"78":1}}],["╭──────────────────────────────╮",{"2":{"10":1,"12":1,"13":1,"16":2,"17":1,"24":1,"35":2,"46":1}}],["╭───────────────────────────╮",{"2":{"17":1,"28":1,"31":1}}],["╭──────────────────────────╮",{"2":{"17":1,"20":1,"21":1,"31":1}}],["╭─────────────────────────╮",{"2":{"9":1,"22":2,"31":1,"36":1,"78":1}}],["0e8",{"2":{"71":1}}],["0f20",{"2":{"50":1,"51":2,"54":4,"55":6,"56":6,"57":10}}],["0f32",{"2":{"16":2}}],["0442435336821679",{"2":{"81":1}}],["04376433159000188",{"2":{"81":1}}],["0465",{"2":{"48":1}}],["045693",{"2":{"22":1}}],["08656024174884165",{"2":{"81":1}}],["0849917",{"2":{"78":1}}],["08",{"2":{"46":1}}],["003659893790864051",{"2":{"81":1}}],["00388",{"2":{"48":1}}],["00722034",{"2":{"48":1}}],["00709111",{"2":{"48":1}}],["00684233",{"2":{"48":1}}],["00693713",{"2":{"48":1}}],["00990356",{"2":{"48":1}}],["0057",{"2":{"48":1}}],["00",{"2":{"46":4,"50":9,"51":8,"53":4,"54":8,"55":8,"56":12,"57":20,"64":4,"68":4,"87":5}}],["0ºe",{"2":{"34":1}}],["07327711099969396",{"2":{"81":1}}],["07726759891855832",{"2":{"81":1}}],["07841279557004051",{"2":{"81":1}}],["07",{"2":{"50":2,"87":1}}],["0709829",{"2":{"22":1}}],["07283",{"2":{"17":1}}],["025201021715753346",{"2":{"81":1}}],["023022916616376222",{"2":{"81":1}}],["0284857",{"2":{"78":1}}],["02",{"2":{"50":1}}],["0291362",{"2":{"22":1}}],["0278046",{"2":{"17":1}}],["09203611918034278",{"2":{"81":1}}],["09329674379184255",{"2":{"81":1}}],["0938973",{"2":{"17":1}}],["0944583",{"2":{"78":1}}],["09",{"2":{"46":1}}],["0955925",{"2":{"21":1}}],["0515713",{"2":{"78":1}}],["05846",{"2":{"48":1}}],["0588336",{"2":{"21":1}}],["0537",{"2":{"43":1,"44":1}}],["05",{"2":{"31":3}}],["0545617",{"2":{"17":1}}],["03361",{"2":{"48":1}}],["0360731",{"2":{"21":1}}],["03",{"2":{"21":1}}],["0625",{"2":{"50":2,"87":1}}],["06755",{"2":{"48":1}}],["0619439",{"2":{"20":1}}],["0669756",{"2":{"20":1}}],["0149444",{"2":{"78":1}}],["0107066",{"2":{"78":1}}],["01t00",{"2":{"50":2,"87":1}}],["01t03",{"2":{"50":2,"87":1}}],["0178074",{"2":{"48":1}}],["0117519",{"2":{"48":1}}],["0115514",{"2":{"48":1}}],["0127077",{"2":{"48":1}}],["0123091",{"2":{"48":1}}],["0121037",{"2":{"48":1}}],["019016",{"2":{"48":1}}],["018571",{"2":{"48":1}}],["0182373",{"2":{"48":1}}],["0180572",{"2":{"48":1}}],["0183003",{"2":{"48":1}}],["018",{"2":{"43":1,"44":1}}],["0165437",{"2":{"22":1}}],["01",{"2":{"10":6,"12":3,"13":3,"14":3,"16":15,"17":9,"18":3,"24":9,"25":3,"31":22,"33":8,"34":11,"50":5,"51":4,"53":2,"54":4,"55":6,"56":6,"57":10,"64":2,"68":2,"80":2,"81":4,"87":5}}],["0",{"2":{"8":1,"9":1,"10":6,"11":2,"12":6,"13":6,"14":7,"16":303,"17":75,"20":36,"21":36,"22":45,"24":12,"25":6,"28":1,"29":9,"31":1,"34":4,"35":27,"36":11,"46":2,"47":40,"48":19,"50":7,"51":10,"53":6,"54":8,"55":6,"56":14,"57":20,"58":6,"64":6,"67":1,"68":6,"69":1,"71":2,"72":1,"78":80,"79":1,"80":2,"81":19,"82":1,"87":4,"89":2,"90":2,"91":2}}],["┤",{"2":{"8":2,"9":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":5,"20":2,"21":4,"22":3,"24":4,"27":2,"28":2,"29":2,"31":10,"35":6,"36":6,"43":4,"44":2,"46":6,"47":3,"48":6,"50":2,"51":2,"54":4,"55":5,"56":6,"57":10,"69":2,"78":4,"81":2}}],["┐",{"2":{"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":4,"20":1,"21":2,"22":2,"24":2,"27":1,"28":1,"29":1,"31":5,"35":3,"36":3,"43":1,"46":2,"47":1,"50":1,"51":1,"54":2,"55":4,"56":3,"57":5,"69":1,"78":2,"81":1}}],["│",{"2":{"8":2,"9":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":8,"20":2,"21":4,"22":4,"24":4,"27":2,"28":2,"29":2,"31":10,"35":6,"36":6,"43":4,"44":2,"46":6,"47":4,"48":6,"50":2,"51":2,"54":4,"55":6,"56":6,"57":10,"69":2,"78":4,"81":2}}],["740452",{"2":{"78":1}}],["74",{"2":{"58":1}}],["703536",{"2":{"78":1}}],["70372",{"2":{"78":1}}],["705164",{"2":{"78":1}}],["70",{"2":{"56":3,"58":1}}],["730",{"2":{"82":1}}],["738952",{"2":{"78":1}}],["734452",{"2":{"78":1}}],["7341",{"2":{"48":1}}],["737353",{"2":{"78":1}}],["73",{"2":{"48":1,"58":1}}],["733322",{"2":{"17":1}}],["774525",{"2":{"78":1}}],["77",{"2":{"58":1}}],["77687",{"2":{"48":1}}],["77587",{"2":{"48":1}}],["793763",{"2":{"78":1}}],["79",{"2":{"51":2,"53":1,"54":2,"55":2,"56":4,"57":5,"58":1,"64":1,"68":1}}],["79502",{"2":{"48":1}}],["798757",{"2":{"21":1}}],["75",{"2":{"58":1}}],["7593",{"2":{"48":1}}],["75891",{"2":{"48":1}}],["753461",{"2":{"22":1}}],["78",{"2":{"56":1,"58":1}}],["783258",{"2":{"22":1}}],["781554",{"2":{"17":1}}],["764151",{"2":{"78":1}}],["766948",{"2":{"78":1}}],["768983",{"2":{"78":1}}],["76",{"2":{"58":1}}],["769113",{"2":{"21":1}}],["76366",{"2":{"17":1}}],["720727",{"2":{"78":1}}],["724029",{"2":{"78":1}}],["72",{"2":{"58":1}}],["725566",{"2":{"20":1}}],["727708",{"2":{"17":1}}],["718162",{"2":{"78":1}}],["717",{"2":{"57":5}}],["71",{"2":{"56":1,"58":1}}],["7158",{"2":{"43":1,"44":1}}],["7119",{"2":{"43":1,"44":1}}],["719275",{"2":{"20":1}}],["71429",{"2":{"17":2}}],["7",{"2":{"8":1,"16":10,"17":1,"21":1,"24":1,"28":1,"34":6,"50":1,"87":1}}],["→",{"2":{"4":1,"5":1,"6":1,"9":1,"10":1,"12":1,"13":1,"14":1,"16":2,"17":6,"20":1,"21":3,"22":3,"24":3,"25":1,"27":3,"28":1,"29":1,"31":6,"33":2,"34":2,"35":3,"36":2,"39":2,"43":1,"50":2,"51":2,"53":1,"54":2,"55":1,"56":3,"57":5,"64":1,"68":2,"69":1,"78":2,"87":1}}],["↓",{"2":{"4":3,"5":3,"6":1,"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":6,"20":1,"21":3,"22":3,"24":3,"25":1,"27":3,"28":1,"29":1,"31":6,"33":2,"34":8,"35":3,"36":3,"38":1,"39":3,"43":3,"44":1,"46":4,"47":2,"48":3,"50":2,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":2,"69":1,"78":2,"81":2,"87":1}}],["45×170×24",{"2":{"57":5}}],["458193",{"2":{"20":1}}],["499071",{"2":{"78":1}}],["49909",{"2":{"48":1}}],["499253",{"2":{"78":1}}],["4947",{"2":{"48":1}}],["497548",{"2":{"17":1}}],["46506",{"2":{"48":1}}],["46",{"2":{"29":1,"78":1}}],["486106",{"2":{"78":1}}],["48",{"2":{"78":1}}],["48367",{"2":{"48":1}}],["480",{"2":{"36":1}}],["482204",{"2":{"22":1}}],["48122",{"2":{"21":1}}],["484861",{"2":{"21":1}}],["43254",{"2":{"48":1}}],["4325",{"2":{"43":1,"44":1}}],["436871",{"2":{"21":1}}],["433001",{"2":{"17":1}}],["408856",{"2":{"78":1}}],["401806",{"2":{"78":1}}],["401523",{"2":{"21":1}}],["40",{"2":{"34":2}}],["400125",{"2":{"78":1}}],["400391",{"2":{"78":1}}],["400",{"2":{"20":1,"80":1,"82":1}}],["44",{"2":{"31":1,"35":3}}],["448121",{"2":{"21":1}}],["449691",{"2":{"20":1}}],["4×30",{"2":{"17":1}}],["4198",{"2":{"48":1}}],["419935",{"2":{"17":1}}],["41241",{"2":{"48":1}}],["41049",{"2":{"48":1}}],["410278",{"2":{"20":1}}],["41634",{"2":{"48":1}}],["413939",{"2":{"20":1}}],["41717",{"2":{"17":1}}],["420149",{"2":{"78":1}}],["423804",{"2":{"78":1}}],["427931",{"2":{"20":1}}],["422758",{"2":{"17":1}}],["42857",{"2":{"17":2}}],["42",{"2":{"11":3}}],["4",{"2":{"4":4,"5":4,"16":4,"17":9,"22":1,"28":1,"29":1,"34":6,"43":2,"44":1,"45":1,"46":2,"47":2,"48":4,"78":3,"80":1,"82":1}}],["3d",{"0":{"91":1}}],["3hr",{"2":{"50":2,"87":3}}],["378228",{"2":{"78":1}}],["37878",{"2":{"48":1}}],["37",{"2":{"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":1}}],["372",{"2":{"48":1}}],["370444",{"2":{"22":1}}],["334695",{"2":{"78":1}}],["335925",{"2":{"78":1}}],["33565",{"2":{"48":1}}],["330377",{"2":{"78":1}}],["336808",{"2":{"22":1}}],["3×20",{"2":{"36":1}}],["389304",{"2":{"78":1}}],["384×192×251288",{"2":{"50":1}}],["3866",{"2":{"48":1}}],["38364",{"2":{"48":1}}],["3835",{"2":{"43":1,"44":1}}],["38",{"2":{"31":1,"56":3}}],["366",{"2":{"82":1}}],["365×1",{"2":{"81":1}}],["365",{"2":{"81":1,"82":4}}],["36225",{"2":{"78":1}}],["36126",{"2":{"48":1}}],["36142",{"2":{"48":1}}],["36836",{"2":{"48":1}}],["369521",{"2":{"78":1}}],["369",{"2":{"34":1}}],["36",{"2":{"31":1,"33":2,"34":1,"46":1}}],["3600",{"2":{"31":1,"33":2}}],["312",{"2":{"48":1}}],["31753",{"2":{"48":1}}],["3169",{"2":{"48":1}}],["3188",{"2":{"48":1}}],["31",{"2":{"31":2,"33":1,"34":1,"80":1,"81":2}}],["327034",{"2":{"78":1}}],["32149",{"2":{"48":1}}],["32555",{"2":{"48":1}}],["3252",{"2":{"43":1,"44":1}}],["325757",{"2":{"22":1}}],["32248",{"2":{"17":1}}],["349568",{"2":{"78":1}}],["349139",{"2":{"17":1}}],["34818",{"2":{"48":1}}],["34832",{"2":{"48":1}}],["34549",{"2":{"48":1}}],["345889",{"2":{"21":1}}],["34218",{"2":{"48":1}}],["340394",{"2":{"20":1}}],["35700351866494",{"2":{"50":4,"87":2}}],["35432",{"2":{"48":1}}],["35483",{"2":{"48":1}}],["359",{"2":{"34":1,"50":2,"51":2,"53":1,"54":2,"55":1,"58":2,"64":1,"68":1,"87":1}}],["35868",{"2":{"22":1}}],["35",{"2":{"10":1,"12":1,"13":1,"17":1,"24":1}}],["307f8f0e584a39a050c042849004e6a2bd674f99",{"2":{"52":1}}],["3069",{"2":{"48":1}}],["30018",{"2":{"48":1}}],["30142",{"2":{"48":1}}],["30113",{"2":{"48":1}}],["304363",{"2":{"20":1}}],["30×15×10",{"2":{"16":1}}],["30×10×15",{"2":{"10":1,"12":1,"13":1,"17":1,"24":1}}],["30",{"2":{"10":3,"12":1,"13":1,"14":2,"16":6,"17":5,"18":2,"21":10,"24":4,"25":2,"48":2,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5,"87":1}}],["397463",{"2":{"17":1}}],["39",{"2":{"10":1,"16":3,"29":1,"31":1,"33":1,"34":1,"35":2,"48":1,"53":1,"63":1,"71":2,"74":4,"81":3}}],["3",{"2":{"4":8,"5":8,"6":10,"10":1,"11":3,"12":3,"13":2,"16":4,"17":6,"21":2,"22":1,"24":3,"27":5,"28":1,"31":4,"35":4,"36":5,"43":2,"48":31,"50":1,"51":1,"54":2,"56":4,"57":5,"68":1,"71":1,"78":3,"80":2}}],["zoom",{"2":{"91":1}}],["zopen",{"2":{"50":1,"87":1}}],["zeros",{"2":{"69":3,"81":1}}],["z",{"2":{"4":2,"5":3,"6":2,"68":2}}],["zarr",{"0":{"50":1,"65":1,"86":1},"2":{"0":1,"2":2,"4":2,"5":2,"6":2,"16":5,"18":1,"22":1,"50":3,"65":5,"67":3,"68":4,"69":3,"71":2,"72":2,"87":1}}],["xticklabelalign",{"2":{"80":1,"82":1}}],["xticklabelrotation",{"2":{"80":1,"82":1}}],["xlabel=",{"2":{"80":1,"82":1}}],["xx",{"2":{"51":1,"53":1,"64":1,"68":1}}],["xarray",{"2":{"41":1,"42":1}}],["xin",{"2":{"17":3,"35":3}}],["x26",{"2":{"17":12,"34":12}}],["x3c",{"2":{"17":12,"34":4}}],["xout",{"2":{"16":2,"17":3}}],["x",{"2":{"4":2,"5":3,"6":2,"13":2,"21":4,"22":3,"35":4,"43":2,"44":1,"48":3,"60":1,"72":1,"78":5,"80":1,"81":6}}],["ndata",{"2":{"89":2,"90":1,"91":1}}],["ndays",{"2":{"81":4}}],["nlon",{"2":{"89":2,"90":1}}],["npy",{"2":{"80":2,"81":2}}],["ntuple",{"2":{"72":2}}],["ntr",{"2":{"72":1}}],["nthreads",{"2":{"71":2}}],["nin",{"2":{"72":2}}],["nvalid",{"2":{"71":1}}],["nbsp",{"2":{"67":1,"71":24,"72":24}}],["n",{"2":{"59":1,"71":3}}],["n256",{"2":{"48":1}}],["nan",{"2":{"42":1,"43":48,"44":48,"48":384}}],["name=cube",{"2":{"71":1}}],["namedtuple",{"2":{"71":1,"72":3}}],["named",{"2":{"53":1,"55":1,"56":1,"60":1,"71":2,"79":1}}],["names",{"0":{"27":1,"37":1,"39":1},"1":{"38":1,"39":1},"2":{"24":2,"45":1,"60":2,"71":2,"72":1}}],["namely",{"2":{"16":1}}],["name",{"0":{"38":1},"2":{"2":1,"27":1,"48":1,"50":3,"51":4,"54":8,"55":12,"56":12,"57":20,"63":1,"71":6,"72":5,"78":1}}],["nc",{"2":{"42":2,"51":2,"53":2,"64":2,"66":2}}],["number",{"2":{"41":1,"46":1,"71":2,"72":1,"81":1}}],["numbers",{"2":{"10":1,"78":1}}],["nout",{"2":{"72":2}}],["normal",{"2":{"71":1,"91":1}}],["nometadata",{"2":{"43":3,"44":2,"46":1,"47":1,"48":10}}],["november",{"2":{"51":1,"53":1,"64":1,"68":1}}],["nov",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["nonmissingtype",{"2":{"72":1}}],["non",{"2":{"18":1,"71":1,"72":1,"80":1}}],["now",{"2":{"16":3,"17":1,"29":1,"31":1,"36":1,"43":1,"44":1,"46":1,"48":1,"75":1}}],["no",{"2":{"14":1,"22":1,"30":1,"69":1,"71":1,"72":1}}],["nothing",{"2":{"48":3,"52":1,"67":1,"71":1,"72":1}}],["notation",{"2":{"31":1,"57":1}}],["note",{"2":{"9":1,"13":1,"16":4,"17":1,"34":1,"44":1,"71":1,"72":1}}],["not",{"0":{"34":1},"2":{"0":1,"1":1,"13":1,"30":1,"34":3,"42":1,"69":1,"71":2,"72":3}}],["neighbour",{"2":{"71":1}}],["neighboring",{"2":{"13":1}}],["needed",{"2":{"71":1}}],["need",{"2":{"71":1,"72":1,"74":1}}],["near",{"2":{"50":2,"57":1,"87":1}}],["next",{"2":{"35":1,"36":1,"45":1,"75":2}}],["netcdf",{"0":{"51":1,"66":1},"2":{"22":1,"40":1,"51":4,"53":2,"61":3,"64":2,"66":3,"67":1,"71":1}}],["necessary",{"2":{"16":1,"41":1,"42":1,"72":4}}],["new",{"0":{"9":1},"2":{"10":1,"12":1,"16":1,"24":1,"42":1,"45":1,"62":1,"67":1,"68":1,"71":5,"72":4,"74":6,"81":1}}],["bits",{"2":{"71":2}}],["big",{"2":{"60":1}}],["black",{"2":{"82":1}}],["blocks",{"2":{"71":1}}],["blue",{"2":{"61":1}}],["bonito",{"2":{"91":1}}],["boundaries",{"2":{"72":1}}],["bounds",{"2":{"71":1}}],["bool=true",{"2":{"72":1}}],["bool=false",{"2":{"71":1,"72":1}}],["bool",{"2":{"72":6}}],["boolean",{"2":{"71":3}}],["bold",{"2":{"48":1}}],["build",{"0":{"75":1},"2":{"75":1}}],["bug",{"2":{"73":1}}],["bundle",{"2":{"61":1}}],["but",{"0":{"34":1},"2":{"8":1,"16":2,"27":1,"34":2,"55":1,"56":1,"71":2}}],["bwr",{"2":{"48":1}}],["b`",{"2":{"31":1}}],["brightness",{"2":{"60":1,"61":1}}],["brings",{"2":{"72":1}}],["bring",{"2":{"28":1}}],["broad",{"2":{"84":1}}],["broadcasts",{"2":{"72":1}}],["broadcast",{"2":{"43":1,"48":1}}],["broadcasted",{"2":{"16":2,"71":1,"72":1}}],["brown",{"2":{"82":1}}],["browser",{"2":{"75":1}}],["broken",{"2":{"52":1}}],["branch",{"2":{"50":1,"87":1}}],["b",{"2":{"17":13,"39":2,"57":2}}],["backgroundcolor=",{"2":{"91":1}}],["back",{"2":{"71":1}}],["backendlist",{"2":{"71":1}}],["backend",{"2":{"67":2,"71":8}}],["backend=",{"2":{"2":1,"16":2,"68":1}}],["based",{"0":{"86":1},"2":{"72":1}}],["base",{"0":{"20":1},"2":{"4":4,"5":4,"6":2,"20":4,"24":3,"27":9,"38":1,"39":5,"69":2,"72":1,"78":2}}],["by=",{"2":{"36":2,"71":2}}],["bytes",{"2":{"8":1,"9":1,"14":1,"16":3,"17":1,"20":1,"22":1,"28":1,"31":1,"36":2,"46":1,"55":2,"69":1,"78":1}}],["by",{"0":{"4":1,"5":1},"2":{"2":1,"10":2,"14":1,"16":1,"17":1,"23":1,"24":1,"30":1,"31":6,"34":2,"36":1,"41":1,"45":1,"46":1,"47":1,"48":1,"50":1,"60":3,"62":1,"63":1,"67":1,"71":12,"72":6,"74":1,"75":1,"77":1,"81":1}}],["beware",{"2":{"83":1}}],["best",{"2":{"72":1,"85":1}}],["become",{"2":{"71":1}}],["because",{"2":{"1":1,"13":1,"14":1,"16":1}}],["before",{"2":{"71":1,"75":1}}],["belonging",{"2":{"61":1}}],["belongs",{"2":{"17":1}}],["been",{"2":{"34":1}}],["between",{"2":{"21":1,"22":1,"31":1,"33":1,"34":2,"57":1,"71":1}}],["begin",{"2":{"18":1}}],["be",{"2":{"0":5,"2":1,"3":1,"4":1,"13":1,"15":1,"16":2,"17":1,"19":1,"31":1,"34":1,"35":1,"36":2,"42":1,"50":2,"51":1,"52":1,"58":1,"60":1,"62":2,"67":1,"68":1,"71":22,"72":9,"74":1,"79":1,"83":1,"87":1}}],["628857",{"2":{"78":1}}],["600",{"2":{"80":1,"82":1,"88":1,"89":1,"90":1}}],["608096",{"2":{"78":1}}],["60265",{"2":{"50":1,"87":1}}],["60918",{"2":{"48":1}}],["60175",{"2":{"48":1}}],["601356",{"2":{"22":1}}],["601999",{"2":{"20":1}}],["6122",{"2":{"48":1}}],["61197",{"2":{"48":1}}],["619",{"2":{"43":1,"44":1}}],["692284",{"2":{"78":1}}],["69",{"2":{"50":1}}],["69085",{"2":{"48":1}}],["69396",{"2":{"21":1}}],["65105",{"2":{"48":1}}],["65584",{"2":{"21":1}}],["646422",{"2":{"78":1}}],["64976",{"2":{"48":1}}],["642",{"2":{"42":1}}],["643089",{"2":{"17":1}}],["6×6×25",{"2":{"21":2}}],["6×2",{"2":{"9":1}}],["673313",{"2":{"20":1}}],["63006",{"2":{"48":1}}],["635982",{"2":{"20":1}}],["632353",{"2":{"17":1}}],["668867",{"2":{"17":1}}],["687037",{"2":{"17":1}}],["681369",{"2":{"17":1}}],["6",{"2":{"2":6,"4":6,"5":6,"6":6,"8":4,"9":5,"16":8,"17":1,"28":1,"31":1,"50":1,"87":1}}],["1e8",{"2":{"72":1}}],["192",{"2":{"89":1}}],["19241",{"2":{"48":1}}],["1983",{"2":{"46":1}}],["1980",{"2":{"46":1}}],["19",{"2":{"16":16,"56":3,"57":5}}],["18583",{"2":{"48":1}}],["185482",{"2":{"20":1}}],["18892",{"2":{"48":1}}],["18434",{"2":{"48":1}}],["180×170",{"2":{"55":1}}],["180×170×24",{"2":{"51":1,"54":2}}],["180",{"2":{"34":2,"57":5,"89":1}}],["180ºe",{"2":{"34":1}}],["180115",{"2":{"22":1}}],["189916",{"2":{"21":1}}],["18",{"2":{"16":18}}],["144635",{"2":{"78":1}}],["148857",{"2":{"78":1}}],["14888",{"2":{"22":1}}],["1437",{"2":{"48":1}}],["146123",{"2":{"22":1}}],["140364",{"2":{"21":1}}],["14286",{"2":{"17":1}}],["14",{"2":{"16":20,"22":1}}],["13223853458064064",{"2":{"81":1}}],["136",{"2":{"51":1,"53":1,"64":1,"68":1}}],["1363",{"2":{"43":1,"44":1}}],["13z",{"2":{"50":2,"87":1}}],["1372",{"2":{"43":1,"44":1}}],["13",{"2":{"16":20,"22":1,"51":1,"53":1,"64":1,"68":1}}],["17252",{"2":{"78":1}}],["170",{"2":{"58":1}}],["179",{"2":{"57":5}}],["17434",{"2":{"48":1}}],["17852",{"2":{"48":1}}],["17863",{"2":{"48":1}}],["17647",{"2":{"48":1}}],["1762",{"2":{"43":1,"44":1}}],["17t00",{"2":{"46":1}}],["17",{"2":{"14":1,"16":22,"36":1,"56":1}}],["160263",{"2":{"78":1}}],["16t00",{"2":{"51":4,"53":2,"54":4,"55":4,"56":6,"57":10,"64":2,"68":2}}],["16t12",{"2":{"46":1}}],["1644",{"2":{"48":1}}],["16824",{"2":{"48":1}}],["16581",{"2":{"48":1}}],["16631",{"2":{"48":1}}],["166382",{"2":{"20":1}}],["16713",{"2":{"48":1}}],["16258",{"2":{"48":1}}],["161104",{"2":{"20":1}}],["16",{"2":{"10":1,"12":1,"13":1,"16":20,"17":1,"24":1,"51":2,"53":1,"54":2,"55":4,"56":3,"57":5,"64":1,"68":1}}],["15071249876826362",{"2":{"81":1}}],["159",{"2":{"56":1}}],["15644",{"2":{"48":1}}],["15532",{"2":{"48":1}}],["15×10×30",{"2":{"16":1}}],["15×10",{"2":{"16":2}}],["15",{"2":{"10":1,"16":25,"17":6,"18":1,"22":4,"24":1,"25":1,"29":2,"36":1,"78":1}}],["128",{"2":{"91":1}}],["128046",{"2":{"21":1}}],["1242",{"2":{"48":1}}],["12575",{"2":{"48":1}}],["126919",{"2":{"22":1}}],["129369",{"2":{"21":1}}],["1200",{"2":{"88":1,"89":1,"90":1}}],["120",{"2":{"16":1}}],["12",{"2":{"8":4,"16":20,"22":1,"31":10,"33":3,"34":4,"51":2,"53":1,"54":2,"55":2,"56":3,"57":5,"64":1,"68":1,"80":1,"81":2}}],["1=5",{"2":{"2":1}}],["119",{"2":{"55":1}}],["1181",{"2":{"48":1}}],["113553",{"2":{"47":3}}],["113719",{"2":{"21":1}}],["112319",{"2":{"47":12}}],["114815",{"2":{"47":6}}],["111974",{"2":{"21":1}}],["11",{"2":{"2":6,"4":6,"5":6,"6":6,"8":1,"16":18,"22":1,"43":4,"44":4,"48":4,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":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":25,"17":34,"18":3,"20":1,"21":7,"22":6,"24":15,"25":4,"27":3,"28":8,"29":8,"31":23,"33":10,"34":8,"35":15,"36":14,"38":1,"39":3,"43":4,"44":2,"46":6,"47":11,"48":55,"50":4,"51":8,"53":4,"54":8,"55":13,"56":18,"57":15,"58":2,"64":4,"68":11,"69":1,"72":1,"78":11,"80":2,"81":5,"82":5,"87":3,"89":4,"90":2,"91":5}}],["10313690750071668",{"2":{"81":1}}],["103704",{"2":{"47":3}}],["10649437632711685",{"2":{"81":1}}],["106907",{"2":{"78":1}}],["1095",{"2":{"81":1}}],["10989",{"2":{"47":6}}],["10mb",{"2":{"71":2}}],["10807037626788309",{"2":{"81":1}}],["1083",{"2":{"48":1}}],["108696",{"2":{"47":6}}],["100",{"2":{"34":7}}],["1000",{"2":{"0":1,"89":1,"90":1}}],["10×20",{"2":{"69":1}}],["10×20×5",{"2":{"24":1}}],["10×170×24",{"2":{"56":1}}],["10×10×24",{"2":{"56":2}}],["10×10×8",{"2":{"31":1}}],["10×10×12",{"2":{"31":1}}],["10×10×36",{"2":{"31":1}}],["10×10×5",{"2":{"27":1}}],["10×10",{"2":{"28":1,"31":1}}],["10×15×20",{"2":{"35":1}}],["10×15",{"2":{"14":1,"17":2,"36":1,"78":1}}],["10x15",{"2":{"17":1}}],["10469",{"2":{"17":1}}],["10",{"2":{"2":14,"4":16,"5":18,"6":17,"10":3,"12":1,"13":1,"14":1,"16":21,"17":15,"18":3,"20":2,"22":4,"24":6,"25":2,"27":8,"28":5,"29":4,"31":16,"33":10,"35":3,"36":2,"38":2,"39":4,"50":1,"51":1,"54":2,"55":3,"56":6,"57":5,"68":2,"69":2,"77":1,"78":3}}],["garbage",{"2":{"72":1}}],["gc",{"2":{"72":2}}],["gt",{"2":{"71":1,"72":3,"75":1}}],["gdalworkshop",{"2":{"52":1}}],["gdal",{"0":{"52":1},"2":{"52":1}}],["gb",{"2":{"50":1}}],["gn",{"2":{"50":1,"87":2}}],["gs",{"2":{"50":1,"87":2}}],["ggplot2",{"2":{"48":1}}],["github",{"2":{"42":2,"52":1,"73":1}}],["gives",{"2":{"17":1}}],["given",{"2":{"2":1,"17":2,"60":1,"62":1,"67":1,"71":6,"72":3,"78":1}}],["go",{"2":{"75":2}}],["going",{"2":{"72":1}}],["good",{"2":{"48":1}}],["goal",{"2":{"41":1}}],["goes",{"2":{"16":1,"71":1,"72":1}}],["globalproperties=dict",{"2":{"72":1}}],["global",{"2":{"71":1,"72":1}}],["glmakie",{"2":{"36":2,"87":2}}],["glue",{"2":{"8":1}}],["gradient",{"2":{"88":1,"89":1,"90":1,"91":1}}],["gradually",{"2":{"69":1}}],["grey25",{"2":{"91":1}}],["grey15",{"2":{"36":1,"48":1}}],["green",{"2":{"61":1}}],["grouped",{"2":{"71":1}}],["groups",{"2":{"47":1}}],["groupby",{"0":{"43":1,"46":1},"1":{"44":1,"45":1,"47":1,"48":1},"2":{"40":1,"42":1,"43":6,"44":1,"45":1,"46":3,"47":3,"48":3,"71":1,"81":1}}],["group",{"0":{"40":1},"1":{"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1},"2":{"43":1,"45":1,"46":2,"61":1,"71":3}}],["grouping",{"2":{"36":2,"45":2}}],["grid=false",{"2":{"48":1}}],["grid",{"2":{"18":1,"60":1,"71":1}}],["gridchunks",{"2":{"2":3,"4":1,"5":1,"6":1,"71":1,"72":1}}],["guide",{"2":{"10":2,"12":1,"13":1,"18":1,"24":3,"25":1}}],["gen",{"2":{"16":6}}],["general",{"0":{"84":1},"2":{"71":1}}],["generated",{"2":{"51":1,"53":1,"64":1,"68":1,"72":1}}],["generate",{"2":{"16":2,"31":1,"33":1,"34":1,"71":1,"75":1}}],["generic",{"2":{"16":2,"24":1}}],["getting",{"0":{"76":1},"1":{"77":1,"78":1,"79":1}}],["getarrayinfo",{"2":{"72":1}}],["getaxis",{"2":{"28":1,"36":2,"71":1}}],["getloopchunks",{"2":{"72":1}}],["getloopcachesize",{"2":{"72":1}}],["getouttype",{"2":{"72":1}}],["getoutaxis",{"2":{"72":1}}],["getfrontperm",{"2":{"72":1}}],["gets",{"2":{"71":1,"72":1}}],["get",{"0":{"58":1},"2":{"10":1,"27":1,"42":1,"46":1,"54":1,"56":1,"58":1,"72":3,"78":1,"81":1,"87":1}}],["geoaxis",{"2":{"89":1,"90":1}}],["geometrybasics",{"2":{"87":1}}],["geomakie",{"2":{"87":1,"89":2,"90":1}}],["geojson",{"0":{"52":1}}],["geotiff",{"0":{"52":1}}],["geo",{"2":{"1":1}}],["g",{"2":{"7":1,"10":1,"11":1,"13":1,"16":4,"18":1,"24":1,"43":26,"44":2,"45":2,"46":2,"47":1,"48":18,"58":1,"60":1,"63":1,"71":5,"87":2}}],["2π",{"2":{"80":1}}],["2×3",{"2":{"78":1}}],["2×2×3",{"2":{"4":1,"5":1,"6":1}}],["2×2",{"2":{"2":3}}],["2x2l31",{"2":{"51":1,"53":1,"64":1,"68":1}}],["298302",{"2":{"78":1}}],["29816",{"2":{"48":1}}],["29473",{"2":{"48":1}}],["29564",{"2":{"48":1}}],["29",{"2":{"21":2}}],["28422753251364",{"2":{"50":4,"87":2}}],["28008",{"2":{"48":1}}],["280592",{"2":{"21":1}}],["2894",{"2":{"48":1}}],["289407",{"2":{"22":1}}],["288",{"2":{"46":1}}],["288349",{"2":{"22":1}}],["2818",{"2":{"43":1,"44":1}}],["28",{"2":{"21":2,"31":1,"43":3,"44":3,"48":3}}],["28571",{"2":{"17":2}}],["2857142857142857",{"2":{"10":1,"12":1,"13":1,"14":1,"17":3,"24":2,"25":1,"29":1,"35":3,"36":1,"78":1}}],["2747",{"2":{"48":1}}],["27325659707701094",{"2":{"81":1}}],["273",{"2":{"46":1}}],["276",{"2":{"46":2}}],["270",{"2":{"46":1}}],["275×205×9",{"2":{"43":4}}],["27786",{"2":{"22":1}}],["27",{"2":{"21":2,"43":1,"44":1,"48":1}}],["26274",{"2":{"48":1}}],["265841",{"2":{"20":1}}],["260837",{"2":{"17":1}}],["26",{"2":{"16":2,"21":2,"50":2,"87":1}}],["25153",{"2":{"48":1}}],["252116",{"2":{"17":1}}],["25",{"2":{"16":4,"21":10,"31":1,"80":1}}],["234271",{"2":{"21":1}}],["239896",{"2":{"21":1}}],["23",{"2":{"16":8,"35":3,"48":1,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":1}}],["22821476412824596",{"2":{"81":1}}],["22804880215726372",{"2":{"81":1}}],["228136",{"2":{"21":1}}],["22211",{"2":{"48":1}}],["22",{"2":{"16":10}}],["21t06",{"2":{"50":2,"87":1}}],["2101",{"2":{"50":2,"87":1}}],["21699",{"2":{"48":1}}],["21209",{"2":{"48":1}}],["21",{"2":{"16":12,"43":8,"44":8,"48":8}}],["247099",{"2":{"78":1}}],["24375",{"2":{"48":1}}],["2434",{"2":{"48":1}}],["244597",{"2":{"22":1}}],["244767",{"2":{"22":1}}],["242957",{"2":{"17":1}}],["245952",{"2":{"17":1}}],["24551350574272646",{"2":{"11":1}}],["24",{"2":{"16":6,"36":1,"55":2}}],["240",{"2":{"14":1,"16":1,"22":1}}],["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":9,"18":1,"20":2,"22":3,"24":1,"27":3,"28":3,"31":1,"36":6,"39":4,"43":1,"44":1,"48":40,"50":3,"51":3,"53":1,"54":4,"55":2,"56":2,"57":5,"58":2,"64":1,"68":2,"69":2,"71":2,"78":5,"87":3,"89":2,"91":1}}],["204818",{"2":{"78":1}}],["204461",{"2":{"17":1}}],["2003",{"2":{"51":1,"53":1,"64":1,"68":1}}],["2004",{"2":{"51":1,"53":1,"64":1,"68":1}}],["2005",{"2":{"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":1}}],["2002",{"2":{"51":3,"53":2,"54":2,"55":2,"56":3,"57":5,"64":2,"68":1}}],["2001",{"2":{"51":3,"53":2,"54":2,"55":3,"56":3,"57":5,"64":2,"68":1}}],["2000",{"2":{"21":4}}],["2019",{"2":{"50":2,"87":1}}],["2015",{"2":{"50":2,"51":1,"53":1,"64":1,"68":1,"87":2}}],["201343",{"2":{"21":1}}],["20×10×15",{"2":{"35":2}}],["20×10×15×2",{"2":{"29":1,"78":1}}],["20ºn",{"2":{"34":1}}],["207743",{"2":{"20":1}}],["2023",{"2":{"80":1,"81":2}}],["2021",{"2":{"31":9,"80":1,"81":2,"82":1}}],["2020",{"2":{"31":5,"33":3,"34":4,"62":1}}],["2024",{"2":{"21":4}}],["202996",{"2":{"20":1}}],["2022",{"2":{"10":4,"12":2,"13":2,"14":2,"16":10,"17":6,"18":2,"24":6,"25":2,"31":5,"33":3,"34":4,"82":1}}],["20",{"2":{"2":7,"4":10,"5":10,"6":10,"16":14,"24":2,"29":4,"34":2,"35":3,"36":1,"48":1,"68":2,"69":2,"78":3}}],["512842",{"2":{"78":1}}],["511693",{"2":{"78":1}}],["5173",{"2":{"75":1}}],["518498",{"2":{"17":1}}],["5e8",{"2":{"67":1,"71":1}}],["533639",{"2":{"78":1}}],["53",{"2":{"55":1}}],["534576",{"2":{"20":1}}],["592033",{"2":{"78":1}}],["59212",{"2":{"48":1}}],["59085",{"2":{"48":1}}],["52419",{"2":{"48":1}}],["524608",{"2":{"22":1}}],["529974",{"2":{"22":1}}],["55",{"2":{"81":1}}],["551173",{"2":{"22":1}}],["559792",{"2":{"22":1}}],["553966",{"2":{"17":1}}],["5×6×36",{"2":{"31":1}}],["5×6",{"2":{"22":2}}],["5×10",{"2":{"20":2}}],["5743",{"2":{"48":1}}],["57873",{"2":{"48":1}}],["57695",{"2":{"48":1}}],["572296",{"2":{"20":1}}],["57283",{"2":{"20":1}}],["57143",{"2":{"17":2}}],["56632",{"2":{"48":1}}],["56568",{"2":{"20":1}}],["569904",{"2":{"17":1}}],["560234",{"2":{"17":1}}],["50267",{"2":{"21":1}}],["502103",{"2":{"17":1}}],["50736",{"2":{"20":1}}],["501324",{"2":{"17":1}}],["50089",{"2":{"48":1}}],["500",{"2":{"0":1,"48":1,"91":2}}],["500mb",{"2":{"0":2}}],["581121",{"2":{"78":1}}],["5843",{"2":{"43":1,"44":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":10,"18":1,"20":2,"22":4,"24":5,"25":1,"27":4,"28":1,"29":2,"31":3,"33":4,"35":3,"36":2,"39":4,"48":5,"51":4,"53":2,"54":4,"55":3,"56":10,"57":10,"58":19,"64":2,"68":4,"78":2,"79":1,"82":2,"91":2}}],["rotate",{"2":{"91":1}}],["row",{"2":{"63":1,"71":1}}],["rowgap",{"2":{"48":1}}],["right",{"2":{"80":1,"82":1}}],["r",{"2":{"69":1}}],["r1i1p1f1",{"2":{"50":2,"87":3}}],["running",{"2":{"75":1}}],["run",{"2":{"18":1,"75":3}}],["runs",{"2":{"13":1,"72":1}}],["rafaqz",{"2":{"42":1}}],["raw",{"2":{"42":1,"52":1}}],["rasm",{"2":{"42":2}}],["ras",{"2":{"21":3}}],["rasters",{"2":{"21":2}}],["raster",{"0":{"21":1},"2":{"17":11,"21":5}}],["ranges",{"0":{"56":1},"2":{"28":1,"53":1}}],["range",{"2":{"10":2,"16":2,"17":2,"18":2,"24":2,"29":3,"31":1,"72":1,"78":3,"80":1}}],["randn",{"2":{"80":1}}],["random",{"2":{"34":2,"78":1}}],["rand",{"2":{"2":1,"4":3,"5":3,"6":3,"8":2,"9":2,"10":1,"17":1,"18":1,"20":1,"21":1,"22":1,"24":2,"25":1,"27":1,"29":2,"34":3,"36":1,"38":1,"39":3,"68":1,"78":2}}],["relational",{"2":{"60":1}}],["related",{"2":{"42":1}}],["recommend",{"2":{"79":1}}],["recommended",{"2":{"57":1}}],["rechunking",{"2":{"72":1}}],["recalculate",{"2":{"72":1}}],["recal",{"2":{"72":1}}],["recently",{"2":{"0":1}}],["rewrote",{"2":{"50":1,"51":1,"53":1,"64":1,"68":1,"87":1}}],["realization",{"2":{"51":1,"53":1,"64":1,"68":1}}],["realm",{"2":{"50":1,"87":1}}],["readcubedata",{"2":{"34":2,"71":1}}],["read",{"0":{"49":1,"50":1,"51":1,"52":1},"1":{"50":1,"51":1,"52":1},"2":{"1":1,"34":1,"42":1,"49":1,"52":1,"56":1,"71":1}}],["red",{"2":{"48":1,"61":1}}],["reduce",{"2":{"10":1,"14":1}}],["reverse",{"2":{"48":1}}],["reverseordered",{"2":{"9":1,"78":1}}],["resets",{"2":{"71":1,"72":1}}],["respectively",{"2":{"61":1}}],["reshape",{"2":{"31":1,"33":2}}],["result",{"2":{"28":1,"36":1}}],["resulting",{"2":{"8":1,"9":1,"14":1,"71":1,"72":1}}],["results",{"0":{"82":1},"2":{"2":1,"5":1,"48":2,"71":1,"72":1}}],["reference",{"0":{"70":1},"1":{"71":1,"72":1}}],["references",{"2":{"51":1,"53":1,"64":1,"68":1}}],["ref",{"2":{"29":1,"71":1,"72":1}}],["rebuild",{"2":{"27":1,"42":1}}],["repeat",{"2":{"80":1}}],["repl",{"2":{"77":1}}],["replace",{"2":{"18":1,"42":1,"91":1}}],["repository",{"2":{"73":1,"83":1}}],["reports",{"2":{"73":1}}],["reproduces",{"2":{"41":1}}],["represented",{"2":{"71":1,"85":1}}],["represents",{"2":{"61":1}}],["representing",{"2":{"17":2,"72":1}}],["representation",{"2":{"1":1,"71":2,"72":3}}],["re",{"2":{"17":1}}],["returned",{"2":{"71":1}}],["returns",{"2":{"71":5,"72":2}}],["return",{"2":{"17":4,"43":1,"71":1,"72":1,"81":1}}],["registration",{"2":{"72":2}}],["registered",{"2":{"72":1}}],["regions",{"2":{"17":8}}],["region",{"2":{"17":12}}],["regular",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":3,"16":9,"17":8,"20":2,"21":6,"22":4,"24":9,"25":3,"27":9,"28":2,"29":3,"31":14,"33":6,"34":4,"35":9,"36":3,"38":1,"39":5,"43":2,"44":2,"48":6,"50":2,"51":4,"53":2,"54":4,"55":2,"56":3,"57":10,"58":2,"64":2,"68":5,"69":2,"78":5,"81":1,"87":1}}],["regularchunks",{"2":{"2":6,"4":3,"5":3,"6":3}}],["requests",{"2":{"73":1}}],["requested",{"2":{"13":1}}],["requirements",{"2":{"51":1,"53":1,"64":1,"68":1}}],["required",{"2":{"31":1}}],["requires",{"2":{"16":1}}],["removes",{"2":{"72":1}}],["remove",{"2":{"44":1}}],["removed",{"2":{"15":1,"72":1}}],["remote",{"2":{"0":1}}],["hold",{"2":{"71":1}}],["holds",{"2":{"71":1,"72":1}}],["however",{"2":{"19":1,"31":1}}],["how",{"0":{"29":1,"30":1,"35":1,"36":1,"37":1},"1":{"31":1,"32":1,"33":1,"34":1,"38":1,"39":1},"2":{"6":1,"7":1,"10":1,"19":1,"23":1,"26":1,"36":1,"49":1,"71":1,"83":1,"85":1}}],["http",{"2":{"75":1}}],["https",{"2":{"42":2,"51":1,"52":1,"53":1,"61":1,"64":1}}],["html",{"2":{"61":1}}],["hr",{"2":{"50":1,"87":2}}],["history",{"2":{"50":2,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":1,"87":1}}],["hidedecorations",{"2":{"48":1}}],["highclip",{"2":{"48":4}}],["hm",{"2":{"48":8}}],["happens",{"2":{"72":1}}],["had",{"2":{"71":1,"72":1}}],["hamman",{"2":{"41":1,"48":1}}],["handled",{"2":{"72":1}}],["handle",{"2":{"60":1,"72":1}}],["handling",{"2":{"9":1,"71":1}}],["handy",{"2":{"36":1}}],["has",{"2":{"8":1,"9":1,"17":1,"21":1,"22":1,"34":1,"41":1,"44":1,"72":1}}],["half",{"2":{"8":5}}],["have",{"2":{"6":1,"9":1,"17":1,"24":1,"32":1,"34":2,"62":1,"71":3}}],["having",{"2":{"1":1,"17":1}}],["help",{"2":{"71":1,"72":2}}],["height",{"2":{"50":2,"87":1}}],["heatmap",{"0":{"88":1},"2":{"36":1,"48":3,"88":1}}],["hereby",{"2":{"17":1}}],["here",{"2":{"8":1,"9":1,"13":1,"16":2,"17":1,"30":1,"36":1,"56":1,"69":1,"74":2}}],["hence",{"2":{"1":1}}],["yeesian",{"2":{"52":1}}],["years",{"2":{"31":1,"80":1,"81":1}}],["year",{"2":{"8":4,"82":1}}],["yyyy",{"2":{"51":2,"53":2,"64":2,"68":2}}],["ylabel=",{"2":{"80":1,"82":1}}],["ylabel",{"2":{"48":3}}],["yasxa",{"2":{"34":6}}],["yaxcolumn",{"2":{"72":1}}],["yaxconvert",{"2":{"22":2}}],["yaxdefaults",{"2":{"72":1}}],["yaxarraybase",{"2":{"22":1,"71":1,"72":1}}],["yaxarray",{"0":{"11":1,"24":1,"30":1,"31":1,"54":1,"60":1},"1":{"31":1,"32":1,"33":1,"34":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":3,"18":1,"20":4,"21":3,"22":5,"24":5,"25":2,"27":3,"28":1,"29":3,"30":1,"31":15,"33":4,"34":6,"35":3,"36":4,"38":2,"39":4,"42":2,"43":7,"44":1,"46":9,"47":1,"48":3,"50":2,"51":2,"53":2,"54":2,"55":3,"56":3,"57":5,"60":1,"62":1,"64":1,"65":1,"66":1,"68":2,"69":3,"71":10,"72":3,"78":5,"81":2,"85":1,"87":1}}],["yaxarrays",{"0":{"0":1,"1":1,"2":1,"7":1,"10":1,"16":1,"19":1,"23":1,"37":1,"40":1,"49":1,"53":1,"64":1,"73":1,"84":1,"85":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,"20":1,"21":1,"22":1,"24":1,"25":1,"38":1,"39":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"50":1,"51":1,"52":1,"54":1,"55":1,"56":1,"57":1,"58":1,"65":1,"66":1,"67":1,"68":1,"69":1,"74":1,"75":1},"2":{"0":3,"2":1,"4":1,"5":1,"6":1,"8":1,"9":1,"10":2,"16":4,"17":1,"18":2,"19":2,"20":1,"24":1,"27":1,"29":1,"30":1,"31":1,"32":1,"33":2,"34":4,"38":1,"39":1,"40":1,"49":1,"50":1,"51":1,"52":2,"53":1,"59":1,"61":1,"64":1,"67":1,"69":1,"71":27,"72":28,"73":1,"75":1,"77":3,"78":3,"79":2,"81":1,"83":1,"84":1,"87":1}}],["yax",{"2":{"0":1}}],["y",{"2":{"4":2,"5":3,"6":2,"21":4,"22":3,"31":4,"35":4,"43":2,"44":1,"48":3,"60":1,"78":5}}],["you",{"2":{"1":1,"18":1,"30":1,"34":3,"71":1,"72":2,"74":1,"75":2,"77":2,"79":1,"83":3,"85":2}}],["yourself",{"2":{"75":1}}],["your",{"2":{"1":2,"34":2,"67":2,"71":1,"74":4,"75":4}}],["circshift",{"2":{"89":1}}],["ct1",{"2":{"87":4,"88":1}}],["cycle",{"0":{"80":1,"82":1},"1":{"81":1,"82":1},"2":{"81":4}}],["cycle=12",{"2":{"43":2,"44":1,"46":2,"47":2,"48":3}}],["cdata",{"2":{"72":1}}],["center",{"2":{"71":1,"80":1,"82":1}}],["certain",{"2":{"53":2,"72":1}}],["cell",{"2":{"50":2,"51":1,"54":2,"55":3,"56":3,"57":5,"71":1}}],["cf",{"2":{"50":2,"51":2,"53":2,"64":2,"68":2,"87":2}}],["cftime",{"2":{"43":4,"46":7,"47":5,"48":5,"51":6,"53":3,"54":6,"55":7,"56":9,"57":15,"64":3,"68":3}}],["cmpcachmisses",{"2":{"72":1}}],["cm4",{"2":{"51":4,"53":4,"64":4,"68":4}}],["cmip",{"2":{"50":1,"87":1}}],["cmip6",{"2":{"50":3,"87":6}}],["cmor",{"2":{"50":2,"51":3,"53":2,"54":2,"55":3,"56":3,"57":5,"64":2,"68":2,"87":1}}],["c54",{"2":{"48":1}}],["cb",{"2":{"48":1}}],["cbar",{"2":{"36":1}}],["cgrad",{"2":{"36":1}}],["cl",{"2":{"89":1,"90":1}}],["cl=lines",{"2":{"89":1,"90":1}}],["clean",{"2":{"72":1}}],["cleanme",{"2":{"72":4}}],["cleaner",{"2":{"71":2}}],["closedinterval",{"2":{"57":1}}],["closed",{"0":{"57":1},"2":{"57":3}}],["cloud",{"2":{"11":1,"50":1}}],["climate",{"2":{"51":1,"53":1,"64":1,"68":1}}],["classes=classes",{"2":{"36":1}}],["classes",{"2":{"36":8}}],["classification",{"2":{"36":2}}],["class",{"2":{"36":3}}],["clustermanagers",{"2":{"18":2}}],["cluster",{"2":{"18":1}}],["cpus",{"2":{"18":1}}],["cpu",{"2":{"18":1}}],["c",{"2":{"17":11,"27":3,"28":3,"36":2,"39":2,"61":1,"71":3,"72":3,"81":4,"87":2}}],["custom",{"2":{"24":1,"71":1}}],["current",{"2":{"17":2,"61":1,"71":1,"82":1}}],["currently",{"2":{"16":1,"42":1,"83":1}}],["cubeaxis",{"2":{"72":1}}],["cubeaxes",{"2":{"71":1}}],["cubedir",{"2":{"72":1}}],["cube2",{"2":{"71":1}}],["cube1",{"2":{"71":1}}],["cubelist",{"2":{"71":1}}],["cubefittable",{"2":{"36":2,"71":1}}],["cubetable",{"0":{"36":1},"2":{"36":3,"71":3}}],["cubes",{"0":{"29":1},"2":{"9":2,"29":2,"34":1,"35":2,"36":1,"54":1,"62":1,"71":18,"72":9}}],["cube",{"0":{"27":1,"28":1,"30":1,"62":1,"81":1},"1":{"31":1,"32":1,"33":1,"34":1},"2":{"2":1,"4":1,"5":1,"6":1,"16":11,"28":1,"30":2,"34":1,"35":1,"36":2,"42":1,"62":3,"71":34,"72":19,"85":1}}],["chose",{"2":{"61":1}}],["child",{"2":{"50":1,"87":1}}],["check",{"2":{"16":1,"69":1,"79":1}}],["changed",{"2":{"79":1,"83":1}}],["change",{"2":{"10":1,"71":1,"72":1}}],["chunkoffset",{"2":{"72":1}}],["chunksize`",{"2":{"72":1}}],["chunksizes",{"2":{"71":2}}],["chunksize",{"2":{"71":1,"72":3}}],["chunks",{"0":{"4":1},"2":{"2":5,"4":1,"5":1,"6":2,"71":4,"72":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,"71":4,"72":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,"71":4,"72":4}}],["criteria",{"2":{"36":1}}],["creating",{"0":{"17":1},"2":{"10":1,"31":1,"74":1}}],["createdataset",{"2":{"72":2}}],["created",{"2":{"72":2}}],["creates",{"2":{"36":1,"71":2,"72":1}}],["create",{"0":{"23":1,"24":1,"25":1},"1":{"24":1,"25":1},"2":{"10":1,"16":1,"17":2,"23":1,"24":1,"29":1,"31":2,"36":1,"42":1,"46":1,"64":1,"67":1,"69":3,"71":1,"72":1,"78":1,"80":1}}],["crucial",{"2":{"1":1}}],["coastlines",{"2":{"89":3,"90":1}}],["cosd",{"2":{"71":1}}],["country",{"2":{"71":4}}],["country=cube2",{"2":{"71":1}}],["copies",{"2":{"72":1}}],["copied",{"2":{"69":1}}],["copybuf",{"2":{"72":2}}],["copydata",{"2":{"72":1}}],["copy",{"2":{"27":1,"71":1,"75":1}}],["coordinates",{"2":{"50":1}}],["college",{"2":{"83":1}}],["collected",{"2":{"72":1}}],["collectfromhandle",{"2":{"72":1}}],["collection",{"2":{"26":1,"60":1}}],["collect",{"2":{"20":1,"28":3,"81":1}}],["colonperm",{"2":{"72":1}}],["color=",{"2":{"82":3}}],["color",{"2":{"80":1,"89":1,"90":1,"91":1}}],["colormap=",{"2":{"48":1}}],["colormap=makie",{"2":{"36":1}}],["colormap",{"2":{"48":3,"88":1,"89":1,"90":1,"91":1}}],["colorrange=",{"2":{"48":1}}],["colorrange",{"2":{"48":3}}],["colorbar",{"2":{"36":1,"48":2}}],["column",{"2":{"63":1,"72":1}}],["colgap",{"2":{"48":1}}],["configuration",{"2":{"72":2}}],["concatenating",{"2":{"71":1}}],["concatenates",{"2":{"71":1}}],["concatenate",{"0":{"29":1},"2":{"29":2}}],["concatenatecubes",{"0":{"9":1},"2":{"9":2,"29":2,"71":2}}],["concrete",{"2":{"71":2}}],["constant",{"2":{"72":1}}],["construct",{"2":{"71":2}}],["constructor",{"2":{"71":1}}],["constructs",{"2":{"71":1}}],["consolidated=true",{"2":{"50":1,"87":1}}],["consistent",{"2":{"50":1,"87":1}}],["consisting",{"2":{"8":1}}],["considering",{"2":{"41":1}}],["considered",{"2":{"36":1}}],["contributing",{"2":{"74":1}}],["contribute",{"0":{"73":1,"74":1},"1":{"74":1,"75":2}}],["contrast",{"2":{"71":1}}],["content",{"2":{"71":1}}],["contact",{"2":{"51":1,"53":1,"64":1,"68":1}}],["contains",{"2":{"57":1,"71":1,"72":1}}],["contain",{"2":{"50":1,"51":1,"72":1}}],["containing",{"2":{"8":1,"36":1,"61":1,"62":1,"71":1}}],["continue",{"2":{"43":1}}],["convinient",{"2":{"26":1}}],["conventions",{"2":{"51":1,"53":1,"64":1,"68":1}}],["convenient",{"2":{"18":1}}],["conversion",{"2":{"19":1,"21":1,"22":1}}],["conversions",{"2":{"19":1}}],["converted",{"2":{"62":1}}],["convert",{"0":{"19":1,"20":1,"21":1,"22":1},"1":{"20":1,"21":1,"22":1},"2":{"19":1,"20":2,"22":2,"71":1,"72":1}}],["corresponding",{"2":{"7":1,"17":2,"62":1,"71":1}}],["combining",{"0":{"86":1}}],["combined",{"2":{"9":2,"62":2}}],["combine",{"0":{"7":1},"1":{"8":1,"9":1},"2":{"7":1,"8":1,"9":1,"85":1}}],["comment",{"2":{"50":1}}],["common",{"2":{"34":5,"71":1}}],["com",{"2":{"42":2,"52":1}}],["compiler",{"2":{"79":1}}],["compares",{"2":{"72":1}}],["compatible",{"2":{"52":1}}],["compuation",{"2":{"71":1}}],["computing",{"2":{"36":1}}],["computations",{"2":{"13":1,"35":1}}],["computation",{"0":{"18":1},"2":{"13":1,"60":1,"71":3,"72":3}}],["computed",{"2":{"72":1}}],["compute",{"0":{"10":1},"1":{"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1},"2":{"81":1}}],["comply",{"2":{"51":1,"53":1,"64":1,"68":1}}],["complexity",{"2":{"35":1}}],["complex",{"2":{"10":2,"78":1}}],["comes",{"2":{"1":1}}],["code",{"2":{"6":1,"13":1,"18":2,"26":1}}],["captialisation",{"2":{"72":1}}],["cameracontrols",{"2":{"91":1}}],["came",{"2":{"62":1}}],["cairomakie",{"2":{"48":1,"80":2}}],["caxes",{"2":{"27":2,"71":2}}],["car",{"2":{"17":1}}],["cartesianindex",{"2":{"17":11}}],["caluclate",{"2":{"71":1}}],["calculations",{"2":{"48":1,"72":1}}],["calculating",{"2":{"14":1,"71":1}}],["calculates",{"2":{"71":1}}],["calculated",{"2":{"36":2,"43":1}}],["calculate",{"2":{"14":1,"17":1,"36":2,"40":1,"41":2,"43":1,"48":1,"72":2,"81":1}}],["calling",{"2":{"48":1}}],["called",{"2":{"16":1,"60":3,"72":1}}],["call",{"2":{"1":1,"18":1}}],["case",{"2":{"13":1,"34":1,"45":1,"50":1}}],["cases",{"2":{"0":1,"57":1,"83":1}}],["cataxis",{"2":{"71":2}}],["categoricalaxis",{"2":{"71":1}}],["categorical",{"2":{"9":1,"17":1,"29":1,"36":1,"43":2,"44":1,"45":1,"46":2,"47":2,"48":3,"71":1,"72":1,"78":1}}],["cat",{"0":{"8":1},"2":{"8":2}}],["cache=1gb```",{"2":{"71":1}}],["cache=1e9",{"2":{"16":2}}],["cache=",{"2":{"71":1}}],["cache=5",{"2":{"71":1}}],["cache=yaxdefaults",{"2":{"71":1}}],["caches",{"2":{"0":1}}],["cachesize",{"2":{"0":2,"72":1}}],["cache",{"2":{"0":6,"67":1,"71":4,"72":7}}],["caching",{"0":{"0":1}}],["can",{"2":{"0":5,"2":1,"3":1,"13":2,"14":1,"16":3,"17":1,"18":3,"24":2,"29":1,"30":1,"32":1,"34":1,"35":1,"36":2,"44":1,"48":1,"50":2,"51":1,"52":1,"58":1,"60":3,"61":2,"62":1,"68":1,"71":11,"72":6,"74":1,"77":2,"83":2}}],["msc",{"2":{"81":3,"82":2}}],["mscarray",{"2":{"81":2}}],["md",{"2":{"74":2}}],["mdash",{"2":{"67":1,"71":24,"72":24}}],["mm",{"2":{"51":2,"53":2,"64":2,"68":2}}],["mpi",{"2":{"50":1,"87":2}}],["m",{"2":{"20":2}}],["miss",{"2":{"72":1}}],["missing",{"2":{"14":2,"16":6,"17":2,"35":1,"36":2,"51":2,"54":4,"55":6,"56":6,"57":10,"69":3,"71":2,"72":2,"91":1}}],["minimized",{"2":{"72":1}}],["minutes",{"2":{"51":1,"54":2,"55":3,"56":3,"57":5}}],["might",{"2":{"19":1,"83":1}}],["mymean",{"2":{"18":4}}],["my",{"2":{"16":2}}],["manager",{"2":{"77":1}}],["many",{"2":{"60":1,"72":1}}],["mahecha",{"2":{"62":1}}],["mar",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["master",{"2":{"42":1}}],["mask",{"2":{"36":2}}],["makie",{"2":{"48":1,"91":1}}],["making",{"2":{"11":1,"53":1}}],["make",{"2":{"33":1,"34":2,"69":1,"71":1,"72":2,"75":1,"91":1}}],["main",{"2":{"30":1,"72":1}}],["machine",{"2":{"18":1,"60":1}}],["matching",{"2":{"78":1}}],["match",{"2":{"72":2}}],["matched",{"2":{"71":1}}],["mat",{"2":{"17":4}}],["matrix",{"2":{"16":2,"17":1,"20":1,"44":1,"48":2,"60":1,"81":1}}],["maximal",{"2":{"72":1}}],["maximum",{"2":{"35":1,"71":1,"72":1}}],["maxbuf",{"2":{"72":1}}],["max",{"2":{"16":2,"67":1,"71":7,"72":2}}],["maxsize",{"2":{"0":2}}],["may",{"2":{"10":1,"15":1,"43":4,"44":2,"45":1,"46":4,"47":4,"48":6,"50":1,"51":1,"79":1}}],["maps",{"0":{"87":1},"1":{"88":1}}],["mapslice",{"2":{"18":1}}],["mapslices",{"0":{"14":1},"2":{"10":1,"13":1,"14":1,"18":1,"35":1,"81":1}}],["mapped",{"2":{"71":1}}],["mapping",{"2":{"71":1,"72":3}}],["mapcube",{"0":{"15":1},"1":{"16":1,"17":1},"2":{"10":1,"13":1,"15":1,"16":4,"17":2,"18":3,"71":5,"72":2}}],["map",{"0":{"13":1,"35":1},"2":{"10":1,"13":2,"17":3,"18":3,"35":4,"36":1,"43":2,"47":1,"48":1,"71":2,"78":1,"81":2}}],["moll",{"0":{"90":1}}],["mowingwindow",{"2":{"71":1}}],["movingwindow",{"2":{"71":4}}],["module",{"2":{"71":2}}],["model",{"2":{"51":1,"53":1,"61":2,"64":1,"68":1}}],["modification",{"2":{"11":1,"18":1}}],["modify",{"0":{"11":1}}],["monthday",{"2":{"81":4}}],["monthly",{"0":{"41":1}}],["month",{"2":{"31":7,"33":3,"34":4,"41":1,"43":4,"44":1,"45":1,"46":5,"47":2,"48":3,"71":1,"81":2}}],["moment",{"2":{"22":1}}],["more",{"2":{"9":1,"10":1,"30":1,"35":1,"36":1,"56":1,"57":1,"62":1,"67":1,"71":3,"72":1,"78":1}}],["most",{"2":{"1":1,"15":1,"19":1}}],["mesh",{"2":{"91":2}}],["merely",{"2":{"69":1}}],["measured",{"2":{"61":1,"62":1}}],["measure",{"2":{"60":1}}],["measures",{"2":{"50":1}}],["means",{"0":{"41":1},"2":{"14":1,"71":1}}],["mean",{"0":{"80":1,"82":1},"1":{"81":1,"82":1},"2":{"10":1,"14":3,"18":4,"36":4,"43":10,"44":2,"45":1,"48":2,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5,"71":1,"81":5}}],["meter",{"2":{"50":1}}],["method",{"2":{"16":2,"71":17,"72":18}}],["methods",{"2":{"7":1,"18":1,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5}}],["metadata",{"2":{"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":3,"19":1,"20":1,"21":2,"22":3,"24":2,"27":1,"28":1,"29":1,"31":5,"35":3,"36":3,"43":2,"44":1,"46":3,"47":2,"48":3,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5,"69":2,"71":1,"78":3,"81":1}}],["members",{"2":{"72":1}}],["member",{"2":{"6":1}}],["memory",{"2":{"1":1,"17":1,"19":3,"34":4,"42":1,"60":1,"69":1,"71":2,"72":1}}],["multiplying",{"2":{"35":1}}],["multiply",{"2":{"10":1,"35":1}}],["multiple",{"0":{"39":1,"86":1},"2":{"7":1,"18":1,"50":1,"51":1,"60":1,"71":1}}],["must",{"2":{"0":1,"62":1,"71":1,"72":1}}],["mb",{"2":{"0":1,"51":1,"54":2}}],["pkg",{"2":{"77":2}}],["pkg>",{"2":{"75":1}}],["purple",{"2":{"80":1}}],["purpose",{"2":{"26":1,"35":1}}],["pull",{"2":{"73":1}}],["public",{"0":{"71":1}}],["published",{"2":{"48":1}}],["plt",{"2":{"88":1}}],["place",{"2":{"72":1}}],["plots",{"2":{"91":1}}],["plot",{"0":{"82":1,"88":1,"91":1},"2":{"48":2}}],["plotting",{"0":{"87":1},"1":{"88":1},"2":{"0":1}}],["plus",{"2":{"42":1,"71":1}}],["pydata",{"2":{"42":1}}],["p",{"2":{"34":10,"51":1,"53":1,"64":1,"68":1}}],["picture",{"2":{"60":1,"61":1}}],["pieces",{"2":{"26":1}}],["pixel",{"0":{"80":1},"1":{"81":1,"82":1},"2":{"18":2}}],["post=getpostfunction",{"2":{"71":1}}],["positions",{"2":{"72":2}}],["position",{"2":{"60":1}}],["positional",{"2":{"55":1,"56":1}}],["possible",{"2":{"18":2,"19":1,"29":1,"69":1,"71":3,"72":1}}],["pos",{"2":{"17":2}}],["point3f",{"2":{"91":1}}],["point",{"2":{"17":3,"50":1,"78":1}}],["points",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":4,"16":9,"17":16,"18":1,"20":2,"21":6,"22":4,"24":9,"25":3,"27":9,"28":2,"29":3,"31":14,"33":6,"34":21,"35":9,"36":5,"38":1,"39":5,"43":3,"44":2,"46":2,"47":1,"48":7,"50":6,"51":6,"53":3,"54":6,"55":4,"56":9,"57":16,"58":2,"60":2,"61":1,"64":3,"68":6,"69":2,"78":5,"81":1,"87":3}}],["page",{"2":{"91":1}}],["paste",{"2":{"75":1}}],["pass",{"2":{"71":1}}],["passing",{"2":{"71":3}}],["passed",{"2":{"71":4}}],["pair",{"2":{"72":1}}],["partitioned",{"2":{"72":1}}],["participate",{"2":{"71":1}}],["particular",{"2":{"63":1}}],["parts",{"2":{"71":1}}],["parent",{"2":{"50":1,"87":1}}],["parallelized",{"2":{"72":1}}],["parallelisation",{"2":{"71":1}}],["parallel",{"2":{"18":1,"60":1}}],["package",{"2":{"18":1,"56":1,"58":1,"70":1,"77":1}}],["packages",{"2":{"16":1,"19":1}}],["paths",{"2":{"72":2}}],["path=",{"2":{"16":2,"50":1,"65":1,"66":1,"67":1,"68":1,"72":1}}],["path=f",{"2":{"4":1,"5":1,"6":1}}],["path",{"2":{"0":1,"42":2,"50":3,"51":2,"52":2,"53":2,"64":2,"67":3,"71":4,"75":1}}],["pr",{"2":{"75":1}}],["projection",{"0":{"89":1,"90":1},"1":{"90":1,"91":1}}],["props",{"2":{"78":2}}],["properly",{"2":{"41":1}}],["properties=dict",{"2":{"72":1}}],["properties",{"2":{"10":2,"18":2,"24":3,"25":3,"42":1,"48":1,"50":1,"51":1,"53":1,"64":1,"68":1,"71":5,"72":1,"87":1}}],["probably",{"2":{"72":1}}],["provide",{"2":{"71":1}}],["provides",{"2":{"60":1,"84":1}}],["provided",{"2":{"30":1,"71":1}}],["process",{"2":{"60":1,"72":2}}],["processed",{"2":{"13":1}}],["progressmeter",{"2":{"71":1}}],["progress",{"2":{"42":1,"83":1,"85":1}}],["product",{"2":{"17":1}}],["pressing",{"2":{"77":1}}],["pre",{"2":{"71":2}}],["previous",{"2":{"48":1,"67":1,"71":1}}],["previously",{"2":{"36":1}}],["prepared",{"2":{"51":1,"53":1,"64":1,"68":1}}],["prep",{"2":{"9":2}}],["precipitation",{"2":{"9":2,"61":1,"62":1,"78":2}}],["prior",{"2":{"1":1}}],["permute",{"2":{"72":1}}],["permuteloopaxes",{"2":{"72":1}}],["permutation",{"2":{"72":1}}],["persistend",{"2":{"72":1}}],["persistency",{"2":{"72":1}}],["persistent",{"2":{"71":1,"72":2}}],["persist",{"2":{"67":1,"71":1,"72":1}}],["perform",{"2":{"72":1}}],["performed",{"2":{"13":2}}],["performing",{"2":{"10":1}}],["per",{"2":{"7":1,"14":1,"43":1,"46":1,"47":1}}],["=interval",{"2":{"57":2}}],["==",{"2":{"12":1,"81":1}}],["=>nan",{"2":{"91":1}}],["=>",{"2":{"10":2,"12":1,"13":1,"16":2,"17":5,"18":1,"24":3,"25":3,"38":1,"39":1,"42":1,"43":5,"44":1,"46":3,"47":2,"48":3,"50":20,"51":20,"53":10,"54":20,"55":30,"56":30,"57":50,"64":10,"68":10,"78":6,"87":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":12,"17":16,"18":5,"20":3,"21":8,"22":4,"24":5,"25":4,"27":1,"29":6,"31":7,"33":6,"34":17,"36":7,"38":1,"39":3,"42":8,"43":16,"44":1,"45":1,"46":4,"47":1,"48":22,"50":2,"51":2,"52":2,"53":2,"54":2,"55":6,"56":6,"57":3,"64":2,"67":8,"68":2,"69":2,"71":11,"72":7,"78":5,"80":10,"81":11,"82":5,"87":8,"88":5,"89":7,"90":5,"91":6}}],["dc",{"2":{"72":2}}],["dkrz",{"2":{"50":1,"87":2}}],["drivers",{"2":{"71":1}}],["driver",{"2":{"67":2,"71":6}}],["driver=",{"2":{"4":1,"5":1,"6":1,"65":2,"66":2,"67":3,"68":1,"69":1,"71":3}}],["drop",{"2":{"48":1}}],["dropdims",{"0":{"44":1},"2":{"43":2,"44":2,"48":1}}],["dufresne",{"2":{"51":1,"53":1,"64":1,"68":1}}],["due",{"2":{"45":1}}],["dummy",{"2":{"29":1,"31":1,"80":1,"81":1}}],["during",{"2":{"17":1,"18":1,"19":1}}],["dd",{"2":{"27":1,"81":1}}],["d",{"2":{"17":5,"48":3,"81":1}}],["dash",{"2":{"82":1}}],["danger",{"2":{"67":1}}],["daysinmonth",{"2":{"43":1,"46":1}}],["days",{"2":{"41":1,"43":2,"45":1,"46":2,"47":2}}],["dayofyear",{"2":{"16":1}}],["day",{"2":{"10":2,"12":1,"13":1,"14":1,"16":5,"17":3,"18":1,"24":3,"25":1,"80":1,"81":4,"82":1}}],["datconfig",{"2":{"72":2}}],["datset",{"2":{"71":1}}],["dat",{"2":{"71":8,"72":16}}],["datetime360day",{"2":{"51":6,"53":3,"54":6,"55":7,"56":9,"57":15,"64":3,"68":3}}],["datetime",{"2":{"50":2,"87":1}}],["datetimenoleap",{"2":{"43":4,"46":7,"47":5,"48":5}}],["date",{"2":{"10":5,"12":3,"13":3,"14":3,"16":14,"17":11,"18":3,"24":8,"25":3,"31":24,"33":8,"34":11,"60":1,"80":2,"81":5,"87":1}}],["datesid",{"2":{"81":2}}],["dates",{"2":{"10":2,"12":1,"13":1,"14":1,"16":6,"17":3,"18":1,"24":3,"25":1,"31":8,"33":4,"34":5,"40":1,"62":1,"80":1,"81":2,"87":1}}],["data=cube1",{"2":{"71":1}}],["databases",{"2":{"60":1}}],["dataframe",{"2":{"36":1,"71":1}}],["dataframes",{"2":{"36":1}}],["datacubes",{"2":{"71":1}}],["datacube",{"0":{"86":1},"2":{"36":2,"69":1,"71":1}}],["datatypes",{"2":{"30":1}}],["data1",{"2":{"29":2}}],["data3",{"2":{"25":1}}],["data2",{"2":{"24":2,"29":2}}],["datasetaxis",{"2":{"71":2,"72":1}}],["datasetaxis=",{"2":{"71":1,"72":1}}],["dataset",{"0":{"25":1,"30":1,"32":1,"33":1,"34":1,"37":1,"61":1,"67":1,"68":1},"1":{"31":1,"32":1,"33":2,"34":2,"38":1,"39":1},"2":{"0":3,"3":1,"4":4,"5":2,"6":3,"9":1,"10":1,"19":1,"25":2,"32":1,"33":3,"34":5,"38":2,"39":2,"50":3,"51":3,"52":2,"53":3,"54":1,"61":3,"62":2,"64":3,"65":1,"66":1,"67":3,"68":4,"71":18,"72":9,"87":2}}],["datasets",{"0":{"3":1,"23":1,"40":1,"49":1,"53":1,"64":1},"1":{"4":1,"5":1,"6":1,"24":1,"25":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"50":1,"51":1,"52":1,"54":1,"55":1,"56":1,"57":1,"58":1,"65":1,"66":1,"67":1,"68":1,"69":1},"2":{"0":2,"19":1,"23":1,"34":1,"49":1,"67":1,"71":8,"72":4,"85":1}}],["data",{"0":{"28":1,"42":1,"62":1},"2":{"0":3,"1":2,"7":1,"8":1,"10":2,"11":1,"16":4,"17":2,"18":2,"20":1,"21":1,"28":1,"31":1,"33":1,"34":2,"36":2,"42":8,"50":2,"51":4,"53":3,"54":2,"55":3,"56":3,"57":5,"59":1,"60":3,"61":2,"62":3,"64":3,"67":2,"68":3,"69":3,"71":20,"72":12,"78":4,"79":1,"80":2,"81":1,"85":4,"87":5,"89":1}}],["dev",{"2":{"75":1}}],["dependencies",{"2":{"75":1}}],["detect",{"2":{"71":1,"72":1}}],["determined",{"2":{"72":1}}],["determines",{"2":{"71":1}}],["determine",{"2":{"1":1,"71":1}}],["defaultfillval",{"2":{"72":1}}],["default",{"2":{"71":1,"72":4}}],["defaults",{"2":{"71":7}}],["definition",{"2":{"62":1}}],["defining",{"2":{"18":1}}],["defines",{"2":{"71":1}}],["defined",{"2":{"21":1,"22":1,"36":1,"48":1,"58":1,"60":1,"63":1,"78":1}}],["define",{"0":{"81":1},"2":{"16":2,"31":1,"36":1,"48":1,"71":2,"80":1}}],["deletes",{"2":{"67":1,"71":1}}],["delete",{"2":{"67":2}}],["denoting",{"2":{"71":1}}],["dense",{"2":{"60":1}}],["denvil",{"2":{"51":2,"53":2,"64":2,"68":2}}],["degc",{"2":{"51":1,"54":2,"55":3,"56":3,"57":5}}],["dec",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["dest",{"2":{"90":1}}],["desc",{"2":{"71":3,"72":3}}],["descriptor",{"2":{"72":4}}],["descriptors",{"2":{"71":2}}],["descriptions",{"2":{"71":1}}],["description",{"2":{"30":1,"71":4,"72":11}}],["described",{"2":{"85":1}}],["describe",{"2":{"71":2}}],["describes",{"2":{"7":1,"10":1,"19":1,"23":1,"49":1,"57":1,"59":1,"70":1,"72":1}}],["describing",{"2":{"71":1}}],["designed",{"2":{"19":2,"60":1}}],["desired",{"2":{"16":1,"72":4}}],["demand",{"2":{"13":1}}],["directory",{"2":{"50":1,"65":2,"66":2}}],["directories",{"2":{"49":1,"72":1}}],["directly",{"2":{"16":1,"22":1,"23":1,"24":1}}],["diverging",{"2":{"48":1}}],["divided",{"2":{"35":1}}],["differing",{"2":{"71":1}}],["difference",{"2":{"48":1}}],["differences",{"2":{"43":1,"48":1,"72":1}}],["different",{"2":{"9":2,"16":1,"18":1,"27":1,"41":1,"61":1,"71":3,"72":2,"83":1}}],["diff",{"2":{"43":2,"48":3}}],["dictionary",{"2":{"61":1,"71":3}}],["dict",{"2":{"4":1,"5":1,"8":1,"9":1,"10":2,"12":1,"13":1,"14":2,"16":5,"17":4,"18":1,"20":1,"21":2,"22":3,"24":4,"25":2,"27":1,"28":1,"29":1,"31":5,"35":3,"36":3,"43":3,"44":2,"46":4,"47":3,"48":3,"50":2,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":1,"69":1,"71":3,"78":3,"81":1,"87":1}}],["dime",{"2":{"50":1}}],["dimensional",{"2":{"59":1,"60":2,"71":1}}],["dimensionaldata",{"2":{"17":1,"22":2,"27":1,"31":1,"33":1,"34":1,"40":1,"42":1,"43":16,"44":10,"46":6,"47":6,"48":39,"56":1,"57":2,"58":3,"60":1,"63":1,"78":1,"79":3,"81":1,"87":1}}],["dimensions",{"0":{"33":1,"34":1},"2":{"9":1,"10":1,"13":1,"15":1,"16":2,"17":2,"18":1,"24":2,"29":1,"32":1,"34":3,"35":2,"42":1,"43":16,"44":10,"46":6,"47":6,"48":39,"53":1,"58":2,"60":3,"61":1,"71":8,"72":3,"78":3,"79":1}}],["dimension",{"0":{"8":1,"9":1,"58":1,"63":1},"2":{"2":1,"8":2,"9":1,"10":1,"14":2,"16":3,"17":3,"31":1,"34":1,"44":1,"45":1,"48":1,"56":1,"58":1,"60":1,"62":1,"63":1,"71":3,"72":3,"78":1}}],["dimgroupbyarray",{"2":{"43":1,"46":1}}],["dimarray",{"0":{"22":1},"2":{"17":3,"22":6,"43":1,"44":1,"46":1,"47":2,"48":3,"60":1}}],["dims=2",{"2":{"81":1}}],["dims=",{"2":{"14":2,"18":1,"35":1,"43":5,"44":1,"46":1,"48":1}}],["dims",{"2":{"8":3,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":4,"20":1,"21":3,"22":2,"24":2,"27":3,"28":1,"29":1,"31":5,"35":3,"36":3,"42":1,"43":6,"44":1,"46":5,"47":2,"48":5,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5,"69":1,"78":2,"81":1}}],["dim",{"2":{"2":2,"4":7,"5":8,"6":2,"8":2,"9":3,"10":3,"16":3,"17":4,"18":3,"20":2,"22":2,"24":7,"27":9,"28":3,"29":4,"31":3,"33":3,"34":2,"38":1,"39":5,"43":2,"44":2,"48":6,"68":3,"69":2,"78":4,"81":1}}],["disregard",{"2":{"72":1}}],["dispatch",{"2":{"72":1}}],["discribe",{"2":{"71":2}}],["distribute",{"2":{"18":1}}],["distributed",{"0":{"18":1},"2":{"0":1,"18":2}}],["diskarray",{"2":{"71":1}}],["diskarrays",{"2":{"2":9,"4":4,"5":4,"6":4,"71":2,"72":1}}],["disk",{"2":{"1":1,"16":1,"22":1,"60":1,"69":2,"71":1,"72":2}}],["dodgerblue",{"2":{"82":1}}],["dot",{"2":{"82":1}}],["documenter",{"2":{"91":1}}],["documentation",{"0":{"74":1},"1":{"75":1}}],["doc",{"2":{"67":1}}],["docstring",{"2":{"71":1}}],["docs",{"0":{"75":1},"2":{"61":1,"74":2,"75":6,"79":1}}],["download",{"0":{"42":1},"2":{"42":1,"51":2,"52":2,"53":2,"64":2}}],["downloads",{"2":{"40":1,"42":1,"51":1,"52":1,"53":1,"64":1}}],["done",{"2":{"35":1,"48":1,"74":2}}],["doing",{"2":{"18":1,"27":1,"28":1,"75":1}}],["does",{"2":{"18":1,"69":1,"71":1,"72":1}}],["do",{"0":{"29":1,"30":1,"35":1,"36":1,"37":1},"1":{"31":1,"32":1,"33":1,"34":1,"38":1,"39":1},"2":{"1":1,"13":1,"16":1,"17":3,"18":1,"26":2,"35":1,"41":1,"48":1,"72":1,"75":1,"77":1}}],["dsw",{"2":{"43":2,"48":2}}],["dsfinal",{"2":{"29":1,"35":2,"36":2}}],["ds2",{"2":{"29":3,"35":1,"68":1}}],["ds1",{"2":{"29":3,"35":3,"36":1}}],["dschunked",{"2":{"4":3,"5":3,"6":3}}],["ds",{"2":{"0":3,"4":2,"5":2,"6":2,"25":1,"33":2,"34":12,"38":1,"39":1,"42":5,"43":10,"46":1,"48":3,"50":1,"51":1,"52":1,"53":1,"54":2,"64":1,"65":3,"66":3,"67":3,"68":2,"71":3,"72":1,"91":2}}],["wglmakie",{"2":{"91":2}}],["would",{"2":{"71":2}}],["world",{"2":{"52":2}}],["workdir",{"2":{"72":1}}],["worker",{"2":{"71":1}}],["workers",{"2":{"71":1}}],["work",{"2":{"19":2,"42":1,"59":1,"71":1,"83":2,"85":1}}],["workload",{"2":{"18":1}}],["working",{"2":{"16":1}}],["works",{"2":{"6":1,"28":1,"33":1,"34":1,"69":1}}],["workflows",{"2":{"1":1}}],["written",{"2":{"71":1,"72":1}}],["writefac",{"2":{"72":1}}],["writefac=4",{"2":{"67":1,"71":1}}],["writes",{"2":{"71":1}}],["write",{"0":{"64":1,"65":1,"66":1},"1":{"65":1,"66":1,"67":1,"68":1,"69":1},"2":{"69":1,"71":2}}],["wrapping",{"2":{"45":1,"58":2}}],["wrapped",{"2":{"16":1}}],["wrap",{"2":{"0":1,"71":1}}],["www",{"2":{"51":1,"53":1,"64":1}}],["w",{"2":{"48":2}}],["was",{"2":{"17":1,"18":1,"72":1}}],["way",{"2":{"15":1,"19":1,"27":1}}],["warning",{"2":{"11":1,"19":1,"27":1,"34":1,"42":1,"67":1,"71":1}}],["wanted",{"2":{"72":1}}],["wants",{"2":{"69":1}}],["want",{"2":{"0":1,"1":1,"62":1,"72":1,"75":1,"85":1}}],["wintri",{"0":{"89":1},"1":{"90":1,"91":1}}],["windowloopinds",{"2":{"72":1}}],["window",{"2":{"71":1,"72":1}}],["without",{"2":{"72":1}}],["within",{"2":{"56":1}}],["with",{"2":{"8":1,"10":1,"12":1,"13":1,"16":7,"17":4,"18":2,"19":1,"24":3,"27":1,"34":3,"35":2,"36":3,"43":3,"44":1,"46":2,"47":2,"48":5,"50":2,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"59":1,"61":1,"64":1,"67":1,"68":1,"69":1,"71":11,"72":1,"74":1,"78":4,"79":3,"83":1,"85":1,"87":1,"89":1}}],["will",{"2":{"0":1,"1":1,"4":1,"5":1,"13":1,"16":3,"17":1,"30":1,"34":1,"35":2,"36":2,"40":1,"45":2,"67":3,"71":12,"72":3,"85":1}}],["white",{"2":{"89":1,"90":1}}],["while",{"2":{"69":1}}],["which",{"2":{"9":1,"16":1,"17":2,"34":2,"48":1,"54":1,"57":1,"58":1,"62":3,"71":5,"72":4,"85":1}}],["whose",{"0":{"33":1,"34":1}}],["whole",{"2":{"8":3}}],["whether",{"2":{"72":2}}],["when",{"2":{"1":1,"6":1,"13":1,"62":1,"71":2,"72":1}}],["whereas",{"2":{"60":1}}],["where",{"2":{"0":1,"18":1,"34":4,"41":1,"57":1,"71":1,"72":4}}],["wether",{"2":{"71":1}}],["weight=",{"2":{"71":1}}],["weight=nothing",{"2":{"71":1}}],["weight",{"0":{"46":1},"1":{"47":1,"48":1},"2":{"45":1,"47":1,"48":1}}],["weights",{"0":{"47":1},"2":{"43":3,"47":2,"48":1}}],["weightedmean",{"2":{"71":1}}],["weighted",{"0":{"48":1},"2":{"36":1,"41":1,"43":8,"48":8,"71":3}}],["well",{"2":{"36":1,"69":1,"71":1}}],["welcome",{"2":{"6":1,"73":1}}],["were",{"2":{"13":2,"57":1,"72":1,"80":1}}],["we",{"2":{"0":1,"8":2,"9":1,"13":2,"14":1,"16":5,"17":5,"18":2,"24":2,"29":1,"30":1,"31":1,"32":1,"34":2,"35":2,"36":5,"43":1,"44":1,"45":2,"48":1,"50":1,"56":1,"62":1,"69":1,"79":2,"80":1,"87":1}}],["oob",{"2":{"71":1}}],["o1",{"2":{"51":2,"53":2,"64":2,"68":1}}],["ocean",{"2":{"51":1,"53":1,"64":1,"68":1}}],["oct",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["occuring",{"2":{"4":1}}],["o",{"2":{"42":4,"48":4,"71":5}}],["ouput",{"2":{"75":1}}],["our",{"2":{"35":1,"36":1,"81":1}}],["outcube",{"2":{"72":1}}],["outcubes",{"2":{"72":1}}],["outcs",{"2":{"72":1}}],["outsize",{"2":{"72":1}}],["outar",{"2":{"72":2}}],["outtype",{"2":{"71":1,"72":2}}],["outtype=float32",{"2":{"16":2}}],["out",{"2":{"42":1,"71":2,"72":1}}],["outdims=outdims",{"2":{"17":1,"18":1}}],["outdims",{"2":{"16":4,"71":6}}],["outputcube",{"2":{"72":3}}],["outputs",{"2":{"16":1}}],["output",{"2":{"6":1,"16":3,"17":1,"18":3,"51":1,"53":1,"64":1,"68":1,"71":11,"72":9,"91":1}}],["optimal",{"2":{"72":1}}],["optifunc",{"2":{"72":1}}],["optionally",{"2":{"71":1}}],["option",{"2":{"31":1,"33":1}}],["options",{"2":{"28":1}}],["operation",{"2":{"72":1}}],["operations",{"0":{"16":1},"2":{"10":1,"43":1,"71":2,"72":3}}],["operates",{"2":{"71":1}}],["openinterval",{"2":{"57":1}}],["open",{"0":{"57":1},"2":{"0":2,"50":2,"51":2,"52":1,"53":2,"57":2,"64":1,"68":1,"71":3,"87":1}}],["obj",{"2":{"36":2,"80":1,"82":1}}],["objects",{"2":{"71":2}}],["object",{"2":{"11":1,"50":1,"71":5,"72":3}}],["obtain",{"0":{"28":1},"2":{"45":1}}],["otherwise",{"2":{"71":1}}],["other",{"0":{"83":1},"1":{"84":1,"85":1,"86":1},"2":{"19":1,"83":1,"85":1}}],["omit",{"2":{"18":1}}],["overview",{"0":{"84":1},"2":{"83":1,"84":1}}],["overwrite",{"0":{"67":1},"2":{"67":3,"71":4,"72":2}}],["overwrite=true",{"2":{"16":2,"67":2}}],["over",{"0":{"16":1,"85":1},"2":{"10":1,"15":1,"18":1,"48":1,"71":8,"72":1,"85":1}}],["ormax",{"2":{"71":1}}],["orca2",{"2":{"51":1,"53":1,"64":1,"68":1}}],["orangered",{"2":{"36":1}}],["ordered",{"2":{"60":1,"61":1}}],["ordereddict",{"2":{"17":1}}],["orderedcollections",{"2":{"17":1}}],["order",{"2":{"16":1,"41":1}}],["original",{"2":{"51":2,"54":4,"55":6,"56":6,"57":10}}],["originates",{"2":{"9":1}}],["origin",{"2":{"10":2,"12":1,"13":1,"18":1,"24":3,"25":1,"78":2}}],["or",{"0":{"30":1},"1":{"31":1,"32":1,"33":1,"34":1},"2":{"1":2,"6":1,"10":1,"13":2,"15":1,"22":1,"32":1,"50":1,"53":2,"60":3,"63":2,"67":1,"71":21,"72":7,"77":1,"78":2}}],["once",{"2":{"48":1,"62":1,"72":1,"74":1}}],["onlinestat",{"2":{"71":2}}],["onlinestats",{"2":{"36":2}}],["only",{"2":{"6":1,"13":1,"14":1,"16":1,"17":1,"19":1,"24":2,"35":1,"69":1,"71":2}}],["on",{"2":{"1":2,"6":1,"7":1,"10":2,"13":2,"16":1,"18":2,"26":1,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"60":1,"64":1,"68":1,"69":1,"71":5,"72":4}}],["oneto",{"2":{"4":4,"5":4,"6":2,"20":2,"24":3,"27":9,"38":1,"39":5,"69":2,"78":2}}],["one",{"0":{"38":1},"2":{"0":1,"7":1,"8":2,"14":2,"17":2,"36":1,"44":1,"60":2,"61":1,"69":1,"71":8,"72":3,"83":1}}],["own",{"2":{"0":1}}],["offline=true",{"2":{"91":1}}],["offsets",{"2":{"72":1}}],["offset",{"2":{"13":1}}],["often",{"2":{"7":1}}],["of",{"0":{"11":1,"34":1,"41":1,"84":2},"2":{"0":2,"1":1,"6":1,"8":3,"9":1,"10":2,"11":1,"12":1,"13":2,"14":1,"15":1,"17":7,"18":3,"19":1,"21":1,"22":1,"26":3,"27":4,"30":1,"31":2,"32":1,"33":1,"34":2,"35":1,"36":1,"41":1,"42":1,"46":1,"51":1,"53":3,"54":1,"56":1,"58":1,"60":7,"61":1,"62":2,"63":2,"64":1,"68":1,"69":1,"70":1,"71":50,"72":42,"78":1,"79":2,"81":2,"82":1,"83":1,"84":1}}],["eo",{"2":{"83":1}}],["esdltutorials",{"2":{"83":1}}],["esm1",{"2":{"50":1,"87":2}}],["eltype",{"2":{"78":1}}],["elementtype",{"2":{"72":1}}],["element",{"2":{"8":1,"9":1,"10":2,"13":2,"14":1,"16":3,"17":2,"28":1,"36":1,"43":2,"44":1,"45":1,"46":7,"47":2,"48":3,"55":2,"58":1,"61":1,"62":2,"71":1,"72":1,"81":1}}],["elements",{"0":{"11":1,"55":1},"2":{"8":1,"12":1,"13":2,"18":1,"53":1,"60":1,"71":1,"72":1}}],["empty",{"2":{"72":1}}],["embeds",{"2":{"71":1}}],["either",{"2":{"71":2}}],["error",{"2":{"67":1}}],["et",{"2":{"51":1,"53":1,"62":1,"64":1,"68":1}}],["edu",{"2":{"51":1,"53":1,"61":1,"64":1}}],["equivalent",{"2":{"48":1,"58":1}}],["equally",{"2":{"0":1}}],["effectively",{"2":{"35":1}}],["env",{"2":{"75":1}}],["enabling",{"2":{"24":1}}],["enter",{"2":{"77":1}}],["entire",{"2":{"17":1,"19":1,"65":1,"66":1}}],["entries",{"2":{"17":1,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5,"71":1,"78":1}}],["entry",{"2":{"10":1,"12":1,"13":1,"16":2,"24":2,"43":2,"44":1,"46":2,"47":2,"48":3,"71":1,"74":3}}],["enumerate",{"2":{"17":2,"48":2}}],["end",{"2":{"13":1,"16":1,"17":4,"18":2,"35":1,"43":2,"48":2,"81":2,"91":1}}],["exists",{"2":{"67":1,"71":1,"72":1}}],["existing",{"0":{"8":1},"2":{"67":1,"68":1}}],["exportable=true",{"2":{"91":1}}],["expression",{"2":{"71":1}}],["experiment",{"2":{"51":3,"53":3,"64":3,"68":3}}],["explicitly",{"2":{"13":1,"30":1,"72":1}}],["external",{"2":{"50":1,"87":1}}],["extension",{"2":{"71":2}}],["extent",{"2":{"21":2}}],["extended",{"2":{"16":1,"71":1,"72":2}}],["extracts",{"2":{"72":1}}],["extract",{"0":{"27":1},"2":{"72":1}}],["extra",{"2":{"18":1}}],["executes",{"2":{"71":1}}],["execute",{"2":{"18":1}}],["exactly",{"2":{"5":1,"28":1}}],["examples",{"2":{"6":1,"28":2,"40":1,"51":1,"53":1,"64":1,"74":1}}],["example",{"2":{"0":1,"1":1,"5":1,"10":1,"18":2,"33":1,"34":1,"35":1,"36":1,"41":1,"51":1,"53":2,"60":2,"61":1,"62":1,"64":2,"71":3,"72":1,"74":2,"78":2}}],["e",{"2":{"7":1,"8":1,"10":1,"11":1,"13":1,"17":2,"18":1,"21":1,"22":1,"24":1,"31":1,"58":1,"60":1,"63":1,"67":1,"71":6,"72":1,"75":1,"78":1}}],["easier",{"2":{"24":1,"53":1}}],["easily",{"2":{"0":1,"18":1}}],["easy",{"2":{"21":1,"22":1}}],["each",{"2":{"4":1,"5":1,"10":1,"13":1,"17":5,"18":2,"35":2,"36":2,"41":1,"45":1,"61":1,"63":1,"71":3,"72":3,"78":1}}],["everywhere",{"2":{"18":2}}],["every",{"2":{"0":1,"10":1,"13":1,"71":1}}],["features",{"2":{"84":1}}],["feb",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["fallback",{"2":{"72":1}}],["falls",{"2":{"71":1}}],["false",{"2":{"47":1,"48":1,"67":2,"71":3,"72":1}}],["faq",{"0":{"26":1},"1":{"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1}}],["faster",{"2":{"72":1}}],["fastest",{"2":{"1":1}}],["fast",{"2":{"1":1,"13":1}}],["frame",{"2":{"85":1}}],["frames",{"2":{"60":1}}],["front",{"2":{"72":1}}],["from",{"0":{"27":1,"28":2,"41":1},"2":{"0":1,"8":1,"9":1,"19":1,"28":4,"34":3,"57":1,"62":2,"71":6,"72":6,"78":1,"81":1}}],["fr",{"2":{"51":1,"53":1,"64":1,"68":1}}],["frequently",{"0":{"26":1},"1":{"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1}}],["fu",{"2":{"72":1}}],["funtion",{"2":{"81":1}}],["fun",{"2":{"71":4}}],["functionality",{"0":{"84":1}}],["functions",{"2":{"10":2,"60":2,"70":1,"71":1,"72":1}}],["function",{"0":{"36":1},"2":{"0":1,"1":1,"13":2,"15":1,"16":6,"18":6,"27":2,"29":1,"35":1,"36":1,"40":1,"43":1,"45":1,"48":1,"57":1,"67":1,"69":1,"71":24,"72":13}}],["future",{"2":{"42":1}}],["further",{"2":{"13":1,"83":1}}],["flag",{"2":{"72":3}}],["float32",{"2":{"16":4,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5,"72":1}}],["float64",{"2":{"8":1,"9":1,"10":3,"12":3,"13":3,"14":4,"17":9,"20":2,"21":2,"22":4,"24":6,"25":2,"27":1,"28":1,"29":4,"35":12,"36":5,"43":3,"44":2,"47":3,"48":6,"50":4,"51":4,"53":2,"54":4,"55":2,"56":6,"57":10,"58":3,"64":2,"68":2,"71":1,"72":1,"78":7,"81":2,"87":2}}],["flexible",{"2":{"9":1,"15":1}}],["folder",{"2":{"75":1}}],["follow",{"2":{"75":1,"83":1}}],["follows",{"2":{"16":2,"43":1,"48":1}}],["following",{"2":{"2":1,"5":1,"6":1,"16":1,"18":1,"40":1,"41":1,"42":1,"71":2,"72":4,"83":1}}],["found",{"2":{"71":1,"72":1}}],["fourth",{"2":{"51":2,"53":2,"64":2,"68":2}}],["fontsize=24",{"2":{"88":1}}],["fontsize=18",{"2":{"48":1}}],["font=",{"2":{"48":1}}],["forwarded",{"2":{"71":1}}],["forwardordered",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":3,"16":9,"17":9,"20":2,"21":6,"22":4,"24":9,"25":3,"27":9,"28":2,"29":4,"31":14,"33":6,"34":10,"35":9,"36":5,"38":1,"39":5,"43":3,"44":2,"46":2,"47":1,"48":7,"50":6,"51":6,"53":3,"54":6,"55":4,"56":9,"57":15,"58":2,"64":3,"68":6,"69":2,"78":5,"81":1,"87":3}}],["force",{"2":{"71":1}}],["forcing",{"2":{"50":1,"87":1}}],["forms",{"2":{"71":1,"72":2}}],["format",{"2":{"67":1,"71":1,"81":1}}],["formal",{"2":{"62":1}}],["former",{"2":{"27":1}}],["for",{"0":{"6":1,"80":1},"1":{"81":1,"82":1},"2":{"0":2,"1":3,"4":1,"5":1,"6":1,"17":4,"18":1,"31":1,"33":2,"34":2,"35":4,"36":6,"42":1,"46":1,"48":3,"51":1,"53":1,"57":1,"58":1,"60":4,"61":3,"62":1,"64":1,"67":1,"68":1,"69":1,"71":19,"72":16,"80":1,"81":2,"83":1}}],["f",{"2":{"2":2,"16":3}}],["field",{"2":{"71":1}}],["fields",{"2":{"36":1,"71":1,"72":4}}],["figure=",{"2":{"82":1}}],["figure",{"2":{"48":2,"80":1,"82":1,"88":1,"89":1,"90":1,"91":1}}],["fig",{"2":{"36":3,"48":8,"80":1,"82":1,"88":2,"89":2,"90":2,"91":3}}],["filterig",{"2":{"81":1}}],["filter",{"2":{"71":2}}],["fillarrays",{"2":{"69":3}}],["fill",{"2":{"69":1,"71":1,"72":1}}],["fillvalue=",{"2":{"72":1}}],["fillvalue",{"2":{"42":3,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5}}],["filling",{"2":{"23":1,"24":1}}],["filename",{"2":{"42":2,"71":1}}],["files",{"0":{"86":1},"2":{"7":1,"49":1,"52":1,"72":2,"75":1}}],["file",{"2":{"2":1,"7":1,"8":2,"9":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":4,"20":2,"21":2,"22":3,"24":4,"27":2,"28":2,"29":2,"31":10,"34":1,"35":6,"36":6,"46":2,"50":2,"51":4,"54":4,"55":6,"56":6,"57":10,"67":2,"69":2,"71":2,"74":4,"78":4,"81":2}}],["findaxis",{"2":{"72":1}}],["findall",{"2":{"17":1,"81":1}}],["find",{"2":{"30":1,"72":1,"83":1}}],["finalizer",{"2":{"72":1}}],["finalize",{"2":{"72":1}}],["finally",{"2":{"17":1,"71":1}}],["final",{"2":{"17":1}}],["firstly",{"2":{"31":1}}],["first",{"2":{"8":4,"16":3,"17":1,"36":1,"48":1,"71":4,"72":1,"74":1,"78":1,"87":1}}],["fitting",{"2":{"71":1}}],["fittable",{"2":{"71":2}}],["fitcube",{"2":{"36":2}}],["fitsym",{"2":{"71":4}}],["fits",{"2":{"19":1}}],["fit",{"2":{"1":1,"60":1}}],["t=union",{"2":{"72":1}}],["typing",{"2":{"77":1}}],["typically",{"2":{"71":1}}],["type",{"2":{"60":1,"62":1,"71":12,"72":8,"78":1,"79":1}}],["types",{"0":{"59":1},"1":{"60":1,"61":1,"62":1,"63":1},"2":{"19":2,"21":1,"22":1,"55":1,"61":1,"71":2,"79":1}}],["tutorial",{"2":{"83":2,"84":1,"85":1}}],["tutorials",{"0":{"83":1},"1":{"84":1,"85":1,"86":1},"2":{"57":1,"83":3}}],["turn",{"2":{"71":1}}],["tuple",{"2":{"2":3,"4":1,"5":1,"6":1,"43":2,"44":1,"46":2,"47":3,"48":5,"71":5,"72":3}}],["tbl",{"2":{"36":2}}],["target",{"2":{"72":1}}],["tab",{"2":{"71":4}}],["tables",{"2":{"85":1}}],["tableaggregator",{"2":{"71":1}}],["table",{"0":{"85":1},"2":{"36":2,"50":1,"51":2,"53":2,"64":2,"68":2,"71":4,"72":1,"87":1}}],["tas",{"2":{"50":5,"87":5}}],["tair",{"2":{"48":1,"71":1}}],["takes",{"2":{"71":4}}],["taken",{"2":{"34":2}}],["take",{"2":{"16":1,"71":1,"72":2,"75":1}}],["tesselation",{"2":{"91":1}}],["test",{"2":{"72":1,"87":1}}],["testrange",{"2":{"72":1}}],["terminal",{"2":{"75":1}}],["text",{"2":{"74":1}}],["tensors",{"2":{"60":1}}],["tell",{"2":{"30":1}}],["temporary",{"2":{"72":1}}],["temporal",{"2":{"35":1,"40":1,"60":1}}],["tempo",{"2":{"43":6,"46":4,"47":1}}],["temp",{"2":{"9":2}}],["temperature=temperature",{"2":{"34":1}}],["temperature",{"2":{"9":2,"34":4,"48":2,"50":3,"51":2,"54":5,"55":6,"56":6,"57":10,"60":1,"61":1,"62":1,"78":4}}],["tempname",{"2":{"2":1,"4":1,"5":1,"6":1}}],["treat",{"2":{"71":1}}],["treatment",{"2":{"71":1,"72":1}}],["treated",{"2":{"50":1}}],["tries",{"2":{"71":1}}],["translate",{"2":{"89":1,"90":1}}],["transformed",{"2":{"51":1,"53":1,"64":1,"68":1}}],["transformations",{"2":{"89":1}}],["transformation",{"2":{"17":1}}],["transform",{"2":{"17":2}}],["track",{"2":{"71":1}}],["true",{"2":{"12":1,"67":1,"69":1,"71":4,"72":1,"91":1}}],["tspan",{"2":{"16":2}}],["tidy",{"2":{"71":1}}],["ticks",{"2":{"60":1}}],["ticks=false",{"2":{"48":1}}],["tick",{"2":{"58":1,"63":1,"78":1}}],["tiff",{"0":{"86":1}}],["tif",{"2":{"52":2}}],["title",{"2":{"48":1,"51":1,"53":1,"64":1,"68":1,"74":1}}],["ti=at",{"2":{"48":3}}],["ti=>cyclicbins",{"2":{"43":2,"44":1,"46":2,"47":2,"48":3}}],["ti",{"2":{"21":4,"43":15,"44":2,"45":1,"46":8,"47":3,"48":6,"50":2,"51":2,"53":1,"54":2,"55":2,"56":3,"57":5,"64":1,"68":1,"87":2}}],["tip",{"2":{"16":1,"79":1}}],["time1",{"2":{"55":2}}],["time=1",{"2":{"78":1}}],["time=date",{"2":{"31":1}}],["time=at",{"2":{"31":1}}],["time=between",{"2":{"31":1}}],["time",{"0":{"41":1},"2":{"1":1,"7":1,"8":4,"9":3,"10":3,"12":1,"13":1,"14":7,"16":14,"17":8,"18":5,"21":2,"24":3,"25":1,"29":2,"31":8,"33":4,"34":7,"35":4,"36":3,"44":1,"45":1,"48":1,"50":2,"51":1,"54":2,"55":4,"56":3,"57":5,"60":2,"61":1,"71":4,"78":4,"80":1,"81":4,"87":2}}],["timestep",{"2":{"36":1}}],["times",{"2":{"0":1}}],["t",{"2":{"16":4,"31":1,"33":2,"34":2,"36":3,"51":1,"54":2,"55":3,"56":3,"57":5,"71":1,"72":2,"80":1,"81":1}}],["two",{"2":{"8":1,"9":1,"28":2,"29":1,"60":1,"72":1}}],["todo",{"2":{"81":1}}],["toghether",{"2":{"72":1}}],["together",{"2":{"62":1}}],["touches",{"2":{"57":1}}],["tolerances",{"2":{"56":1}}],["tos",{"2":{"51":4,"53":2,"54":4,"55":4,"56":3,"57":9,"58":2,"64":2,"65":2,"66":2,"68":1}}],["top",{"2":{"48":1}}],["too",{"2":{"34":1,"60":1}}],["to",{"0":{"9":1,"37":1,"68":1,"73":1,"74":1},"1":{"38":1,"39":1,"74":1,"75":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":2,"18":6,"19":3,"20":2,"22":3,"23":1,"26":2,"27":2,"28":3,"29":1,"31":2,"33":2,"34":6,"35":1,"36":1,"40":1,"41":3,"42":2,"44":1,"45":1,"48":1,"49":1,"50":3,"51":1,"53":3,"57":1,"58":1,"59":1,"60":5,"61":3,"62":2,"63":2,"64":1,"65":2,"66":2,"67":1,"68":2,"69":3,"71":47,"72":19,"74":2,"75":3,"79":2,"83":1,"85":3,"87":2,"91":1}}],["though",{"2":{"69":1}}],["those",{"2":{"11":1,"19":1,"21":1,"22":1,"61":1}}],["through",{"2":{"71":5,"72":5,"77":1}}],["thrown",{"2":{"67":1}}],["three",{"2":{"30":1,"61":1,"80":1}}],["threads",{"2":{"71":2}}],["thread",{"2":{"18":1}}],["than",{"2":{"19":1,"30":1,"35":1,"36":1}}],["that",{"2":{"0":1,"9":2,"10":1,"13":1,"16":5,"17":2,"18":1,"19":1,"29":1,"32":1,"34":2,"36":1,"41":1,"44":1,"47":1,"58":1,"60":1,"61":2,"63":1,"69":1,"71":13,"72":13,"83":1,"85":1}}],["things",{"2":{"26":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":3,"18":1,"19":1,"23":1,"26":1,"28":1,"33":1,"34":2,"35":2,"36":2,"41":1,"45":2,"49":1,"50":1,"52":1,"57":1,"59":1,"62":1,"70":2,"71":6,"72":10,"74":1,"75":2,"84":1,"85":1}}],["their",{"0":{"33":1,"34":1},"2":{"32":1,"34":1,"60":1,"71":3,"72":2}}],["then",{"2":{"17":2,"35":1,"75":2,"77":1}}],["thereby",{"2":{"71":1}}],["therefore",{"2":{"36":1,"79":1}}],["there",{"2":{"14":2,"22":1,"28":1,"71":1}}],["theme",{"2":{"48":2}}],["them",{"2":{"7":1,"10":1,"30":1,"69":1,"71":1}}],["these",{"2":{"0":1,"6":1,"28":1,"30":1,"58":1,"60":1}}],["the",{"0":{"27":1,"28":1,"36":1,"42":1,"81":1,"84":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":14,"18":7,"19":2,"22":1,"24":3,"26":1,"27":4,"28":3,"29":2,"30":2,"31":9,"33":3,"34":10,"35":3,"36":10,"40":2,"41":5,"42":4,"43":2,"44":1,"45":2,"46":2,"47":2,"48":9,"51":1,"53":1,"54":5,"55":3,"56":5,"57":6,"58":1,"59":1,"60":5,"61":4,"62":4,"67":3,"68":1,"69":6,"71":116,"72":83,"73":1,"74":1,"75":6,"77":2,"78":6,"79":8,"80":1,"81":4,"83":6,"84":1,"85":5,"87":1}}],["switched",{"2":{"79":1}}],["syntax",{"2":{"79":1,"83":1}}],["system",{"2":{"75":1}}],["symbol",{"2":{"10":1,"12":1,"13":1,"24":2,"43":4,"44":2,"45":2,"46":4,"47":4,"48":6,"71":3,"72":1}}],["src",{"2":{"74":1}}],["sres",{"2":{"51":2,"53":2,"64":2,"68":2}}],["skipped",{"2":{"71":1}}],["skip",{"2":{"71":1}}],["skipmissing",{"2":{"18":1,"35":1}}],["skeleton=true",{"2":{"69":1}}],["skeleton=false",{"2":{"67":1,"71":1}}],["skeleton",{"0":{"69":1},"2":{"69":3}}],["ssp585",{"2":{"50":1,"87":2}}],["scene",{"2":{"91":3}}],["scenarios",{"2":{"87":1}}],["scenariomip",{"2":{"50":1,"87":2}}],["scripts",{"2":{"75":1}}],["scope",{"2":{"71":1,"72":1}}],["scalar",{"2":{"50":1}}],["scattered",{"2":{"7":1}}],["snow3",{"2":{"36":1}}],["snippet",{"2":{"6":1}}],["small",{"2":{"26":1}}],["slightly",{"2":{"83":1}}],["slicing",{"2":{"16":1}}],["slices",{"2":{"71":3}}],["slice",{"2":{"16":1,"87":4,"88":1}}],["slow",{"2":{"34":1}}],["slurmmanager",{"2":{"18":1}}],["shinclude",{"2":{"75":1}}],["shdocs>",{"2":{"75":1}}],["shnpm",{"2":{"75":2}}],["should",{"2":{"31":1,"42":1,"71":3,"72":1,"74":1,"75":1}}],["shown",{"2":{"71":1}}],["showprog",{"2":{"71":1}}],["shows",{"2":{"48":1}}],["show",{"2":{"18":1,"91":1}}],["shading=false",{"2":{"89":1,"90":1,"91":1}}],["shall",{"2":{"71":5,"72":1}}],["shares",{"2":{"34":1}}],["share",{"0":{"33":1,"34":1},"2":{"32":1,"34":1,"61":1,"71":1}}],["shared",{"2":{"4":1,"5":1,"6":1,"25":1,"29":1,"33":2,"34":3,"38":1,"39":1,"50":1,"51":1,"53":1,"64":1,"68":1,"87":1}}],["shape",{"2":{"6":1}}],["sure",{"2":{"91":1}}],["surface",{"2":{"48":2,"50":2,"51":2,"54":5,"55":6,"56":6,"57":10,"89":1,"90":1}}],["such",{"2":{"57":1,"71":1,"79":1}}],["subcubes",{"2":{"71":1}}],["subtype",{"2":{"60":1,"72":1,"79":1}}],["subtables",{"2":{"36":1}}],["subarray",{"2":{"47":1,"48":1}}],["subsetextensions",{"2":{"72":1}}],["subsetcube",{"2":{"71":1}}],["subseting",{"2":{"58":1}}],["subsetting",{"0":{"31":1,"32":1,"33":1,"34":1},"1":{"33":1,"34":1},"2":{"50":1,"51":1,"72":1,"81":1}}],["subset",{"0":{"30":1},"1":{"31":1,"32":1,"33":1,"34":1},"2":{"31":5,"34":4,"53":1,"56":1,"71":1,"72":1,"87":1}}],["subsets",{"2":{"15":1,"63":1}}],["supposed",{"2":{"71":1}}],["support",{"2":{"22":1}}],["supertype",{"2":{"21":1,"22":1}}],["sum",{"2":{"17":2,"35":1,"43":4,"46":2,"47":4,"48":2}}],["suggestions",{"2":{"6":1}}],["s",{"2":{"10":1,"16":3,"29":1,"31":1,"33":1,"34":2,"48":7,"53":1,"63":1,"71":2,"72":1,"81":1}}],["style",{"0":{"85":1}}],["st",{"2":{"79":1}}],["stdzero",{"2":{"71":1}}],["struct",{"2":{"71":1,"72":4}}],["structure",{"2":{"62":1}}],["structures",{"2":{"59":1}}],["string",{"2":{"8":1,"9":2,"10":1,"12":1,"13":1,"14":2,"16":5,"17":6,"20":1,"21":2,"22":3,"24":3,"27":1,"28":1,"29":2,"31":5,"35":3,"36":3,"43":1,"44":1,"46":2,"47":1,"48":1,"50":2,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"67":1,"68":1,"69":1,"71":6,"72":4,"78":4,"81":1,"87":1}}],["stable",{"2":{"79":1}}],["standard",{"2":{"50":1,"51":1,"54":2,"55":3,"56":3,"57":5}}],["standards",{"2":{"50":1,"51":1,"53":1,"64":1,"68":1,"87":1}}],["statistics",{"2":{"14":1,"18":1,"36":3,"40":1,"80":1}}],["started",{"0":{"76":1},"1":{"77":1,"78":1,"79":1}}],["start=12",{"2":{"43":2,"44":1,"46":2,"47":2,"48":3}}],["start=december",{"2":{"43":3,"46":1}}],["start",{"2":{"10":1,"31":1}}],["storing",{"2":{"61":1}}],["storage",{"2":{"11":1,"50":1}}],["stored",{"2":{"60":3,"72":2}}],["stores",{"2":{"60":1,"71":1}}],["store",{"2":{"0":1,"50":4,"60":1,"61":1,"87":2}}],["still",{"2":{"8":1,"17":1,"61":1,"83":1}}],["step=3",{"2":{"43":2,"44":1,"46":2,"47":2,"48":3}}],["steps",{"2":{"10":1,"14":1,"48":1,"71":1,"75":1}}],["step",{"2":{"7":1,"14":1,"35":2,"71":1,"72":2,"87":1}}],["sphere",{"0":{"91":1},"2":{"91":3}}],["split",{"2":{"71":1}}],["splitted",{"2":{"2":1}}],["special",{"2":{"55":1,"71":1,"72":1}}],["specifiers",{"2":{"72":1}}],["specifier",{"2":{"71":1}}],["specifies",{"2":{"71":3}}],["specified",{"2":{"71":7,"72":1}}],["specific",{"2":{"31":1,"71":2}}],["specifying",{"2":{"71":2,"72":1}}],["specify",{"2":{"24":1,"71":1}}],["specs",{"2":{"50":1,"87":1}}],["spectral",{"2":{"48":1}}],["sparse",{"2":{"60":1}}],["spatio",{"2":{"35":1}}],["spatial",{"2":{"1":1,"14":1,"17":5,"18":1,"40":1,"60":1}}],["span",{"2":{"31":1,"80":1}}],["space",{"2":{"1":1,"16":1}}],["sampled",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":3,"16":9,"17":8,"20":2,"21":6,"22":4,"24":9,"25":3,"27":9,"28":2,"29":3,"31":14,"33":6,"34":10,"35":9,"36":5,"38":1,"39":5,"43":3,"44":2,"46":2,"47":1,"48":7,"50":6,"51":6,"53":3,"54":6,"55":4,"56":9,"57":15,"58":2,"64":3,"68":6,"69":2,"78":5,"81":1,"87":3}}],["same",{"2":{"0":1,"2":1,"5":1,"6":1,"9":1,"16":1,"17":2,"21":1,"22":1,"27":1,"28":2,"29":1,"34":1,"54":1,"55":1,"56":1,"60":1,"61":3,"62":2,"71":1,"72":1,"75":1}}],["saves",{"2":{"67":1,"71":1}}],["save",{"0":{"69":1},"2":{"12":1,"22":1,"65":2,"66":2,"69":1,"71":2}}],["savecube",{"2":{"2":1,"65":1,"66":1,"69":1,"71":2}}],["savedataset",{"2":{"4":1,"5":1,"6":1,"67":2,"68":1,"69":1,"71":2,"72":1}}],["saved",{"2":{"2":1,"11":1,"67":1}}],["saving",{"2":{"1":1,"4":1,"5":1,"6":1,"16":1}}],["serve",{"2":{"72":1}}],["series",{"0":{"41":1},"2":{"18":1}}],["sequence",{"2":{"60":1}}],["seaborn",{"2":{"88":1,"89":1,"90":1,"91":1}}],["searching",{"2":{"71":1}}],["search",{"2":{"71":1}}],["sea",{"2":{"51":3,"53":1,"54":5,"55":6,"56":6,"57":10,"64":1,"68":1}}],["season",{"2":{"43":1,"46":2,"47":1}}],["seasons",{"0":{"43":1,"45":1,"48":1},"1":{"44":1,"45":1},"2":{"43":9,"46":1,"48":5}}],["seasonal",{"0":{"41":1,"80":1,"82":1},"1":{"81":1,"82":1},"2":{"41":1,"47":1,"48":1,"80":1,"81":4}}],["sebastien",{"2":{"51":2,"53":2,"64":2,"68":2}}],["separate",{"2":{"71":1,"72":1}}],["separated",{"2":{"61":1}}],["separately",{"2":{"5":1,"17":1,"18":1}}],["sep",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["selected",{"2":{"72":1,"80":1}}],["select",{"0":{"53":1,"54":1,"55":1,"56":1},"1":{"54":1,"55":1,"56":1,"57":1,"58":1},"2":{"34":1,"53":1}}],["selectors",{"2":{"57":1}}],["selector",{"2":{"34":1,"56":1}}],["selection",{"2":{"34":2}}],["selecting",{"2":{"31":1,"33":1,"34":1}}],["see",{"2":{"16":1,"57":1,"71":1,"79":1}}],["second",{"2":{"8":3,"71":1}}],["section",{"2":{"7":1,"10":1,"19":1,"23":1,"26":1,"49":1,"59":1,"70":1}}],["setting",{"2":{"67":1,"71":1,"72":1}}],["sets",{"2":{"6":1,"42":1}}],["set",{"0":{"4":1,"5":1,"6":1},"2":{"4":1,"5":1,"17":1,"50":1,"67":1,"71":1,"72":2,"75":1}}],["setchunks",{"2":{"1":1,"2":2,"3":1,"4":1,"5":1,"6":1,"71":1,"72":1}}],["several",{"0":{"16":1},"2":{"0":1,"16":1,"29":1,"32":1}}],["sin",{"2":{"80":1}}],["sink",{"2":{"72":1}}],["single",{"0":{"80":1},"1":{"81":1,"82":1},"2":{"0":1,"7":1,"8":1,"62":1,"65":1,"66":1,"71":6,"72":1}}],["simplicity",{"2":{"80":1}}],["simply",{"2":{"18":1,"75":1}}],["simple",{"2":{"16":1,"26":1,"78":1}}],["situations",{"2":{"1":1}}],["size=",{"2":{"89":1,"90":1,"91":1}}],["sizes",{"2":{"2":1,"71":2,"72":2}}],["size",{"2":{"0":1,"1":1,"4":1,"5":1,"8":2,"9":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":4,"20":2,"21":2,"22":2,"24":4,"27":2,"28":2,"29":2,"31":10,"35":6,"36":6,"46":2,"48":1,"50":2,"51":2,"54":4,"55":6,"56":6,"57":10,"69":2,"71":3,"72":4,"78":5,"80":1,"81":3,"82":1,"88":1}}],["sosstsst",{"2":{"51":1,"54":2,"55":3,"56":3,"57":5}}],["software",{"2":{"51":1,"53":1,"64":1}}],["sort",{"2":{"17":1}}],["so",{"2":{"2":1,"18":1,"30":1,"34":1,"71":1,"72":1}}],["source",{"2":{"0":2,"51":1,"53":1,"64":1,"67":1,"68":1,"71":24,"72":24}}],["sometimes",{"2":{"69":1,"85":1}}],["some",{"0":{"34":1},"2":{"0":1,"11":1,"32":1,"34":1,"35":1,"48":1,"71":1,"80":1,"89":1}}],["auto",{"2":{"71":1}}],["aug",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["again",{"2":{"67":1}}],["agreement",{"2":{"48":1}}],["aggregation",{"2":{"18":1}}],["aggregate",{"2":{"17":1}}],["air",{"2":{"48":2,"50":3}}],["api",{"0":{"70":1,"71":1,"72":1},"1":{"71":1,"72":1}}],["apr",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["appropriate",{"2":{"74":1}}],["approximated",{"2":{"72":1}}],["approx",{"2":{"71":1,"72":1}}],["approach",{"2":{"9":1}}],["append=true",{"2":{"68":2}}],["append",{"0":{"68":1},"2":{"67":1,"71":1}}],["apply",{"0":{"35":1},"2":{"10":2,"13":1,"15":1,"18":1,"48":1,"81":1}}],["applies",{"2":{"13":1}}],["applied",{"2":{"0":1,"3":1,"4":1,"17":1,"71":2,"72":1}}],["applications",{"2":{"0":1}}],["a3",{"2":{"25":4}}],["a2",{"2":{"24":1,"25":3,"51":2,"53":2,"64":2,"68":2,"78":1}}],["a1",{"2":{"24":1}}],["abstractdict",{"2":{"71":1,"72":3}}],["abstractdimarray",{"2":{"21":1,"22":1,"60":1}}],["about",{"2":{"1":2,"30":1,"56":1,"78":1,"84":1}}],["above",{"2":{"0":1,"5":1,"16":1,"77":1}}],["atol",{"2":{"56":1}}],["atmosphere",{"2":{"51":1,"53":1,"64":1,"68":1}}],["atmos",{"2":{"50":1,"87":1}}],["attributes",{"2":{"48":1,"71":1,"72":1}}],["at",{"2":{"17":4,"22":1,"34":1,"48":1,"51":2,"53":1,"54":2,"55":6,"56":7,"57":5,"61":1,"62":2,"64":1,"67":2,"68":1,"71":3,"72":2,"73":1,"74":2,"75":2,"78":1,"83":2}}],["after",{"2":{"14":1,"16":1,"52":1,"71":3}}],["addargs",{"2":{"71":3,"72":1}}],["adds",{"2":{"60":2,"63":1}}],["addprocs",{"2":{"18":2}}],["addition",{"2":{"17":1,"19":1,"60":1}}],["additional",{"2":{"9":1,"16":1,"71":4,"72":3}}],["added",{"2":{"15":1,"68":1,"71":1,"72":1}}],["add",{"2":{"6":1,"10":1,"12":1,"35":1,"74":2,"77":2,"89":1}}],["asaxisarray",{"2":{"71":1}}],["assemble",{"2":{"78":1}}],["assessment",{"2":{"51":2,"53":2,"64":2,"68":2}}],["associated",{"2":{"71":1}}],["assing",{"0":{"37":1},"1":{"38":1,"39":1}}],["aspect=dataaspect",{"2":{"48":1,"88":1}}],["asked",{"0":{"26":1},"1":{"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1}}],["as",{"2":{"5":1,"12":1,"16":5,"17":1,"18":1,"21":1,"22":2,"28":1,"34":1,"36":1,"43":2,"48":1,"50":1,"51":1,"52":1,"54":1,"57":1,"58":1,"60":1,"63":1,"69":2,"71":11,"72":3,"79":1,"85":1,"87":1}}],["axs",{"2":{"42":1,"48":9}}],["axcopy",{"2":{"27":1}}],["ax",{"2":{"27":2,"36":1,"80":3,"82":3,"88":1,"89":3,"90":3,"91":5}}],["axlist",{"2":{"10":2,"17":2,"18":2,"24":2,"25":1,"29":3,"72":5,"78":3}}],["axessmall",{"2":{"72":2}}],["axes",{"0":{"27":1,"28":1},"2":{"4":1,"5":1,"6":1,"24":1,"25":1,"27":2,"28":2,"31":2,"33":5,"34":3,"38":1,"39":1,"50":1,"51":1,"53":2,"60":2,"64":1,"68":1,"71":15,"72":11,"78":1,"81":2,"87":1}}],["axislegend",{"2":{"82":1}}],["axis=false",{"2":{"91":1}}],["axis=",{"2":{"80":1}}],["axisdescriptor",{"2":{"72":1}}],["axisdesc",{"2":{"71":3}}],["axis",{"0":{"4":1},"2":{"4":1,"9":2,"16":3,"28":1,"31":1,"33":1,"34":7,"48":1,"58":1,"63":1,"69":1,"71":16,"72":14,"78":1,"82":1,"87":1,"88":1}}],["always",{"2":{"71":2,"72":1,"73":1,"79":1}}],["already",{"2":{"67":1,"71":1,"72":1}}],["although",{"2":{"57":1}}],["alternatives",{"2":{"71":1}}],["alternatively",{"2":{"0":1,"2":1,"71":1,"77":1}}],["altered",{"2":{"50":1,"51":1,"54":2,"55":3,"56":3,"57":5}}],["al",{"2":{"51":1,"53":1,"62":1,"64":1,"68":1}}],["algebra",{"0":{"35":1},"2":{"35":1}}],["along",{"0":{"8":1},"2":{"8":1,"16":1,"71":3,"72":2,"83":1}}],["allaxes",{"2":{"72":1}}],["allinaxes",{"2":{"72":1}}],["allmissing",{"2":{"71":1}}],["allocate",{"2":{"69":1}}],["allocation",{"2":{"17":1}}],["allow",{"2":{"72":1}}],["allowing",{"2":{"21":1,"22":1,"61":1}}],["allows",{"2":{"18":1}}],["all",{"0":{"6":1,"33":1,"34":1},"2":{"4":1,"6":2,"10":1,"12":1,"13":1,"14":2,"17":1,"18":4,"32":1,"34":2,"48":2,"52":1,"57":1,"60":1,"62":2,"67":3,"69":1,"70":1,"71":6,"72":7,"75":1}}],["also",{"2":{"2":1,"3":1,"14":1,"18":1,"24":1,"27":1,"34":1,"36":1,"60":2,"61":1,"69":1,"71":1,"77":1}}],["analog",{"2":{"61":1}}],["analyzing",{"2":{"1":1}}],["another",{"2":{"16":1,"34":1}}],["anynymous",{"2":{"71":1}}],["anyocean",{"2":{"71":1}}],["anymissing",{"2":{"71":1}}],["any",{"2":{"8":1,"9":1,"10":1,"11":1,"14":2,"16":5,"17":4,"20":1,"21":2,"22":3,"24":1,"27":1,"28":1,"29":1,"31":6,"35":3,"36":3,"43":3,"44":2,"46":4,"47":3,"48":3,"50":2,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":1,"69":1,"71":4,"72":9,"78":1,"81":1,"87":1}}],["an",{"0":{"8":1},"2":{"9":1,"10":4,"12":1,"13":1,"15":1,"18":2,"27":1,"28":1,"33":1,"34":1,"36":1,"53":3,"56":1,"60":1,"61":1,"63":1,"64":1,"65":1,"66":1,"67":1,"68":1,"71":19,"72":8}}],["and",{"0":{"23":1,"28":1,"40":1,"49":1,"53":1,"57":1,"64":1},"1":{"24":1,"25":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"50":1,"51":1,"52":1,"54":1,"55":1,"56":1,"57":1,"58":1,"65":1,"66":1,"67":1,"68":1,"69":1},"2":{"0":1,"2":1,"5":1,"6":1,"7":1,"8":1,"12":1,"16":4,"17":2,"19":1,"23":1,"24":1,"29":1,"31":1,"34":6,"35":1,"36":6,"40":1,"41":1,"43":1,"48":1,"49":2,"50":1,"51":1,"53":1,"57":1,"60":5,"61":3,"62":2,"64":1,"67":1,"68":1,"69":5,"71":18,"72":6,"73":1,"75":4,"77":1,"78":2,"80":1,"87":1,"89":1}}],["available",{"2":{"57":2,"69":1,"70":1,"71":2,"77":1}}],["avariable",{"2":{"0":1}}],["avoids",{"2":{"17":1}}],["avoided",{"2":{"0":1}}],["averaging",{"2":{"14":1}}],["averages",{"0":{"41":1},"2":{"40":1}}],["average",{"2":{"14":1,"41":2}}],["artype",{"2":{"71":2}}],["archgdaldatasets",{"2":{"52":1}}],["archgdal",{"2":{"52":2}}],["arguments",{"2":{"48":1,"71":11,"72":3}}],["argument",{"2":{"18":1,"69":1,"71":4,"72":2}}],["arr2",{"2":{"22":1}}],["arr",{"2":{"17":7,"22":2}}],["arrayinfo",{"2":{"72":1}}],["arrays",{"2":{"6":1,"7":1,"8":2,"9":1,"11":1,"23":1,"25":2,"50":2,"51":2,"59":1,"60":4,"61":3,"62":3,"71":2,"72":1}}],["array",{"0":{"17":1,"20":1},"2":{"0":1,"1":1,"8":2,"9":2,"10":3,"12":2,"13":2,"15":1,"17":8,"20":2,"28":1,"43":1,"48":1,"53":1,"60":4,"61":1,"62":1,"63":2,"69":4,"71":10,"72":4,"78":3}}],["arbitrary",{"2":{"16":1}}],["arithmetics",{"0":{"12":1},"2":{"10":1}}],["areas",{"2":{"71":1}}],["area",{"2":{"50":2,"71":1}}],["areacella",{"2":{"50":2,"87":1}}],["are",{"2":{"0":1,"11":1,"19":3,"28":1,"30":1,"34":1,"48":2,"53":1,"57":1,"58":1,"60":3,"61":2,"62":3,"69":1,"71":11,"72":6,"73":1,"75":1,"83":2,"85":1}}],["according",{"2":{"71":1}}],["access",{"2":{"1":2,"13":1,"24":1,"60":1,"63":1}}],["accessed",{"2":{"0":2,"50":1,"51":1}}],["activate",{"2":{"36":1,"75":2,"80":1,"88":1,"91":1}}],["actually",{"2":{"72":1}}],["actual",{"2":{"13":1,"69":1,"72":1,"78":1}}],["across",{"2":{"0":1,"7":1,"16":1,"60":3}}],["achieved",{"2":{"0":1}}],["a",{"0":{"9":1,"11":1,"17":1,"24":1,"25":1,"27":1,"30":1,"31":1,"32":1,"33":1,"34":1,"37":1,"54":1,"58":1,"67":1,"68":1,"80":1,"86":1},"1":{"31":1,"32":1,"33":2,"34":2,"38":1,"39":1,"81":1,"82":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":75,"18":11,"20":2,"21":5,"22":8,"24":1,"26":1,"27":1,"28":1,"30":4,"31":3,"32":1,"34":2,"36":3,"38":2,"39":2,"41":1,"46":1,"48":2,"50":6,"51":3,"52":1,"56":2,"57":4,"58":1,"60":12,"61":4,"62":8,"63":1,"65":3,"66":3,"67":4,"69":4,"71":60,"72":31,"74":2,"75":2,"78":4,"79":1,"84":1,"85":1}}],["iall",{"2":{"72":1}}],["iwindow",{"2":{"72":1}}],["icolon",{"2":{"72":1}}],["icefire",{"2":{"88":1,"89":1,"90":1,"91":1}}],["ice",{"2":{"51":1,"53":1,"64":1,"68":1}}],["ipcc",{"2":{"51":3,"53":3,"64":3,"68":3}}],["ipsl",{"2":{"51":6,"53":6,"64":6,"68":6}}],["idx",{"2":{"81":3}}],["identical",{"2":{"71":1}}],["id",{"2":{"50":2,"51":2,"53":2,"64":2,"68":2,"87":2}}],["irregular",{"2":{"34":6,"36":2,"43":1,"46":2,"47":1,"48":1,"50":4,"51":2,"53":1,"54":2,"55":2,"56":6,"57":5,"64":1,"68":1,"72":1,"87":2}}],["immutable",{"2":{"11":1}}],["improving",{"2":{"79":1}}],["improve",{"2":{"6":1}}],["implementing",{"2":{"71":1}}],["importance",{"2":{"72":1}}],["important",{"2":{"1":1}}],["impossible",{"2":{"11":1}}],["i",{"0":{"29":1,"30":1,"35":1,"36":1,"37":1},"1":{"31":1,"32":1,"33":1,"34":1,"38":1,"39":1},"2":{"8":1,"17":3,"21":1,"22":1,"31":1,"48":2,"67":1,"71":7,"72":4,"75":2,"78":1,"81":3}}],["ispar",{"2":{"71":1,"72":1}}],["ismissing",{"2":{"69":1}}],["issues",{"2":{"42":1}}],["isequal",{"2":{"17":1}}],["is",{"2":{"1":2,"2":1,"6":1,"7":1,"9":1,"13":1,"14":2,"15":1,"16":5,"17":2,"18":3,"19":1,"22":1,"26":1,"29":1,"30":1,"34":2,"35":1,"36":4,"41":2,"42":2,"43":1,"47":1,"52":1,"54":1,"57":2,"58":1,"60":4,"61":1,"62":2,"63":1,"69":3,"71":10,"72":10,"74":1,"77":1,"79":1,"83":1,"85":1}}],["if",{"2":{"0":1,"19":1,"34":3,"67":1,"69":1,"71":11,"72":6,"75":1,"83":1}}],["inline",{"2":{"91":2}}],["incubes",{"2":{"72":1}}],["incs",{"2":{"72":1}}],["include",{"2":{"71":2,"72":1}}],["included",{"2":{"57":1}}],["inarbc",{"2":{"72":1}}],["inar",{"2":{"72":2}}],["inplace",{"2":{"71":3,"72":1}}],["inputcube",{"2":{"72":2}}],["input",{"2":{"16":1,"18":2,"36":1,"71":12,"72":8}}],["innerchunks",{"2":{"72":1}}],["inner",{"2":{"71":9,"72":3}}],["installed",{"2":{"79":1}}],["installation",{"0":{"77":1}}],["install",{"2":{"75":1,"77":1}}],["instead",{"2":{"8":1,"9":1,"13":1,"27":2,"31":1,"57":1,"60":1}}],["insize",{"2":{"72":1}}],["inside",{"2":{"71":3}}],["inds",{"2":{"72":1}}],["indexing",{"2":{"55":2,"56":2,"79":1}}],["index",{"2":{"50":2,"72":2,"87":2}}],["indices",{"2":{"72":1,"81":1}}],["indicate",{"2":{"71":1}}],["indicating",{"2":{"9":1,"17":1,"71":1}}],["indims=indims",{"2":{"17":1,"18":1}}],["indims",{"2":{"16":8,"71":7}}],["individually",{"2":{"13":2}}],["individual",{"2":{"0":1,"50":1,"51":1}}],["initialization",{"2":{"50":1,"87":1}}],["initially",{"2":{"17":1}}],["information",{"2":{"67":1,"72":2}}],["info",{"2":{"16":1,"22":1,"27":1,"69":1,"79":1}}],["int",{"2":{"81":3}}],["int32",{"2":{"69":2}}],["introducing",{"2":{"62":1}}],["interested",{"2":{"83":1}}],["internal",{"0":{"72":1},"2":{"72":9}}],["internally",{"2":{"61":1}}],["interface",{"2":{"71":2,"85":1}}],["interval",{"2":{"51":1,"54":2,"55":3,"56":4,"57":6}}],["intervalsets",{"2":{"57":1}}],["intervals",{"0":{"57":1},"2":{"31":1}}],["interactive",{"2":{"0":1}}],["integer",{"2":{"24":1,"55":1,"56":1,"60":1}}],["int64",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"16":8,"20":2,"21":6,"22":2,"24":3,"27":9,"28":3,"31":15,"33":4,"34":7,"36":3,"38":1,"39":5,"43":6,"44":6,"46":4,"47":1,"48":19,"68":3,"69":2,"72":1,"78":2}}],["into",{"0":{"86":1},"2":{"0":1,"1":1,"2":1,"7":1,"8":1,"16":1,"17":1,"19":2,"22":1,"34":4,"49":1,"62":2,"67":1,"71":6,"72":3,"75":1,"91":1}}],["in",{"0":{"37":1},"1":{"38":1,"39":1},"2":{"0":5,"1":1,"2":1,"4":2,"5":1,"9":1,"11":1,"13":1,"14":2,"16":2,"17":6,"18":3,"19":2,"21":1,"22":1,"28":1,"32":1,"34":1,"36":2,"41":2,"42":2,"45":3,"48":4,"50":2,"51":1,"54":2,"55":3,"56":4,"57":7,"58":1,"59":1,"60":5,"61":1,"62":2,"69":1,"71":13,"72":9,"75":2,"77":1,"78":2,"81":1,"83":3,"85":4,"87":1}}],["iter",{"2":{"71":1}}],["iterate",{"2":{"85":1}}],["iteration",{"0":{"85":1}}],["iterator",{"2":{"36":1}}],["iterators",{"2":{"17":1}}],["iterable",{"2":{"36":2,"71":2}}],["itself",{"2":{"71":1,"72":1}}],["its",{"2":{"0":1}}],["it",{"2":{"0":2,"1":3,"12":1,"16":1,"18":2,"27":1,"28":1,"29":1,"34":2,"36":2,"44":1,"46":1,"48":1,"53":1,"60":2,"61":1,"63":1,"67":1,"69":2,"71":10,"72":5,"75":1,"77":1}}],["lscene",{"2":{"91":1}}],["lmdz",{"2":{"51":1,"53":1,"64":1,"68":1}}],["link",{"2":{"74":1}}],["linewidth=0",{"2":{"89":1,"90":1}}],["linewidth=2",{"2":{"82":2}}],["linewidth=1",{"2":{"80":1,"82":1}}],["linestyle=",{"2":{"82":2}}],["lines",{"2":{"80":1,"82":3}}],["line",{"2":{"36":1}}],["lim",{"2":{"51":1,"53":1,"64":1,"68":1}}],["libraries",{"2":{"31":1,"60":1}}],["libray",{"2":{"30":1}}],["little",{"2":{"18":1}}],["list",{"2":{"17":1,"71":5,"72":6}}],["like",{"2":{"0":1,"36":1,"71":2,"72":1,"74":1}}],["loopinds",{"2":{"72":2}}],["looping",{"2":{"71":1,"72":1}}],["loopcachesize",{"2":{"72":1}}],["loopchunksize",{"2":{"71":1}}],["loopaxes",{"2":{"72":1}}],["loopvars",{"2":{"71":1,"72":1}}],["loops",{"2":{"71":1}}],["loop",{"2":{"71":1,"72":2}}],["looped",{"2":{"71":3,"72":3}}],["look",{"2":{"67":1,"71":1,"72":1,"74":1,"75":1}}],["lookups",{"2":{"43":15,"44":10,"46":5,"47":5,"48":38,"58":3}}],["lookup",{"2":{"43":1,"45":1,"87":3}}],["looks",{"2":{"36":1}}],["located",{"2":{"83":1}}],["locate",{"2":{"75":1}}],["location",{"2":{"72":3}}],["locations",{"2":{"61":1,"62":1}}],["localhost",{"2":{"75":1}}],["locally",{"0":{"75":1},"2":{"75":1}}],["local",{"2":{"18":1,"50":1}}],["lowclip",{"2":{"48":4}}],["lost",{"2":{"19":1}}],["lo",{"2":{"16":4}}],["loadorgenerate",{"2":{"72":1}}],["loading",{"2":{"52":1}}],["loaded",{"2":{"34":2}}],["load",{"2":{"16":1,"31":1,"34":2,"60":1}}],["long",{"2":{"48":1,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5}}],["longitudes=longitudes",{"2":{"34":1}}],["longitudes",{"2":{"34":12}}],["longitude",{"2":{"31":1,"78":2}}],["lonlat",{"2":{"33":1}}],["lon=1",{"2":{"31":1,"33":1}}],["lon",{"2":{"10":2,"12":1,"13":1,"14":2,"16":10,"17":12,"18":1,"21":2,"24":3,"25":1,"29":2,"31":7,"33":3,"35":4,"36":3,"50":2,"51":2,"53":1,"54":2,"55":3,"56":6,"57":10,"58":2,"64":1,"68":1,"87":2,"89":3}}],["layer",{"2":{"71":1,"72":1}}],["layername=",{"2":{"72":1}}],["layername",{"2":{"71":2}}],["layout",{"2":{"48":2}}],["lazy",{"2":{"71":1}}],["lazily",{"2":{"13":1}}],["labelled",{"2":{"71":1}}],["labels",{"2":{"48":1,"58":1,"62":1,"63":1}}],["label=false",{"2":{"48":1}}],["label=",{"2":{"48":1,"82":3}}],["label=cb",{"2":{"48":1}}],["label",{"2":{"48":3,"50":1,"87":1}}],["last",{"2":{"16":1,"18":1}}],["la",{"2":{"16":4}}],["latest",{"2":{"79":1}}],["lat=5",{"2":{"31":1,"33":1}}],["latitudes=latitudes",{"2":{"34":1}}],["latitudes",{"2":{"34":11}}],["latitude",{"2":{"31":1,"78":2}}],["lat",{"2":{"10":2,"12":1,"13":1,"14":2,"16":7,"17":12,"18":1,"21":2,"24":3,"25":1,"29":2,"31":7,"33":3,"35":4,"36":3,"50":2,"51":2,"53":1,"54":2,"55":3,"56":5,"57":5,"58":1,"64":1,"68":1,"71":1,"87":3,"89":1,"90":1}}],["larger",{"2":{"19":1}}],["large",{"2":{"0":2,"19":1,"42":1,"60":1}}],["level",{"2":{"74":1,"75":1}}],["learn",{"2":{"85":1}}],["learning",{"2":{"60":1,"83":1}}],["leap",{"2":{"80":1}}],["least",{"2":{"34":1,"71":1}}],["length",{"2":{"43":2,"44":1,"46":3,"71":1,"72":3}}],["length=365",{"2":{"80":1}}],["length=20",{"2":{"29":1,"78":1}}],["length=15",{"2":{"10":1,"17":1,"18":1,"24":1,"29":1,"78":1}}],["length=10",{"2":{"10":1,"17":1,"18":1,"24":1,"29":1,"78":1}}],["left",{"2":{"14":2}}],["let",{"2":{"10":1,"16":2,"29":1,"31":1,"33":1,"34":1,"48":1,"53":1,"81":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/previews/PR433/assets/chunks/@localSearchIndexroot.BfEZfV_h.js b/previews/PR433/assets/chunks/@localSearchIndexroot.BfEZfV_h.js deleted file mode 100644 index a6874829..00000000 --- a/previews/PR433/assets/chunks/@localSearchIndexroot.BfEZfV_h.js +++ /dev/null @@ -1 +0,0 @@ -const e='{"documentCount":92,"nextId":92,"documentIds":{"0":"/YAXArrays.jl/previews/PR433/UserGuide/cache.html#Caching-YAXArrays","1":"/YAXArrays.jl/previews/PR433/UserGuide/combine.html#Combine-YAXArrays","2":"/YAXArrays.jl/previews/PR433/UserGuide/combine.html#cat-along-an-existing-dimension","3":"/YAXArrays.jl/previews/PR433/UserGuide/combine.html#concatenatecubes-to-a-new-dimension","4":"/YAXArrays.jl/previews/PR433/UserGuide/chunk.html#Chunk-YAXArrays","5":"/YAXArrays.jl/previews/PR433/UserGuide/chunk.html#Chunking-YAXArrays","6":"/YAXArrays.jl/previews/PR433/UserGuide/chunk.html#Chunking-Datasets","7":"/YAXArrays.jl/previews/PR433/UserGuide/chunk.html#Set-Chunks-by-Axis","8":"/YAXArrays.jl/previews/PR433/UserGuide/chunk.html#Set-chunking-by-Variable","9":"/YAXArrays.jl/previews/PR433/UserGuide/chunk.html#Set-chunking-for-all-variables","10":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#Compute-YAXArrays","11":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#Modify-elements-of-a-YAXArray","12":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#arithmetics","13":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#map","14":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#mapslices","15":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#mapCube","16":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#Operations-over-several-YAXArrays","17":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#Creating-a-vector-array","18":"/YAXArrays.jl/previews/PR433/UserGuide/compute.html#Distributed-Computation","19":"/YAXArrays.jl/previews/PR433/UserGuide/convert.html#Convert-YAXArrays","20":"/YAXArrays.jl/previews/PR433/UserGuide/convert.html#Convert-Base.Array","21":"/YAXArrays.jl/previews/PR433/UserGuide/convert.html#Convert-Raster","22":"/YAXArrays.jl/previews/PR433/UserGuide/convert.html#Convert-DimArray","23":"/YAXArrays.jl/previews/PR433/UserGuide/create.html#Create-YAXArrays-and-Datasets","24":"/YAXArrays.jl/previews/PR433/UserGuide/create.html#Create-a-YAXArray","25":"/YAXArrays.jl/previews/PR433/UserGuide/create.html#Create-a-Dataset","26":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Frequently-Asked-Questions-(FAQ)","27":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Extract-the-axes-names-from-a-Cube","28":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Obtain-values-from-axes-and-data-from-the-cube","29":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#How-do-I-concatenate-cubes","30":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#How-do-I-subset-a-YAXArray-(-Cube-)-or-Dataset?","31":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Subsetting-a-YAXArray","32":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Subsetting-a-Dataset","33":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Subsetting-a-Dataset-whose-variables-share-all-their-dimensions","34":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Subsetting-a-Dataset-whose-variables-share-some-but-not-all-of-their-dimensions","35":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#How-do-I-apply-map-algebra?","36":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#How-do-I-use-the-CubeTable-function?","37":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#How-do-I-assing-variable-names-to-YAXArrays-in-a-Dataset","38":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#One-variable-name","39":"/YAXArrays.jl/previews/PR433/UserGuide/faq.html#Multiple-variable-names","40":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#Group-YAXArrays-and-Datasets","41":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#Seasonal-Averages-from-Time-Series-of-Monthly-Means","42":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#Download-the-data","43":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#GroupBy:-seasons","44":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#dropdims","45":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#seasons","46":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#GroupBy:-weight","47":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#weights","48":"/YAXArrays.jl/previews/PR433/UserGuide/group.html#weighted-seasons","49":"/YAXArrays.jl/previews/PR433/UserGuide/read.html#Read-YAXArrays-and-Datasets","50":"/YAXArrays.jl/previews/PR433/UserGuide/read.html#Read-Zarr","51":"/YAXArrays.jl/previews/PR433/UserGuide/read.html#Read-NetCDF","52":"/YAXArrays.jl/previews/PR433/UserGuide/read.html#Read-GDAL-(GeoTIFF,-GeoJSON)","53":"/YAXArrays.jl/previews/PR433/UserGuide/select.html#Select-YAXArrays-and-Datasets","54":"/YAXArrays.jl/previews/PR433/UserGuide/select.html#Select-a-YAXArray","55":"/YAXArrays.jl/previews/PR433/UserGuide/select.html#Select-elements","56":"/YAXArrays.jl/previews/PR433/UserGuide/select.html#Select-ranges","57":"/YAXArrays.jl/previews/PR433/UserGuide/select.html#Closed-and-open-intervals","58":"/YAXArrays.jl/previews/PR433/UserGuide/select.html#Get-a-dimension","59":"/YAXArrays.jl/previews/PR433/UserGuide/types.html#types","60":"/YAXArrays.jl/previews/PR433/UserGuide/types.html#yaxarray","61":"/YAXArrays.jl/previews/PR433/UserGuide/types.html#dataset","62":"/YAXArrays.jl/previews/PR433/UserGuide/types.html#(Data)-Cube","63":"/YAXArrays.jl/previews/PR433/UserGuide/types.html#dimension","64":"/YAXArrays.jl/previews/PR433/UserGuide/write.html#Write-YAXArrays-and-Datasets","65":"/YAXArrays.jl/previews/PR433/UserGuide/write.html#Write-Zarr","66":"/YAXArrays.jl/previews/PR433/UserGuide/write.html#Write-NetCDF","67":"/YAXArrays.jl/previews/PR433/UserGuide/write.html#Overwrite-a-Dataset","68":"/YAXArrays.jl/previews/PR433/UserGuide/write.html#Append-to-a-Dataset","69":"/YAXArrays.jl/previews/PR433/UserGuide/write.html#Save-Skeleton","70":"/YAXArrays.jl/previews/PR433/development/contribute.html#Contribute-to-YAXArrays.jl","71":"/YAXArrays.jl/previews/PR433/development/contribute.html#Contribute-to-Documentation","72":"/YAXArrays.jl/previews/PR433/development/contribute.html#Build-docs-locally","73":"/YAXArrays.jl/previews/PR433/api.html#API-Reference","74":"/YAXArrays.jl/previews/PR433/api.html#Public-API","75":"/YAXArrays.jl/previews/PR433/api.html#Internal-API","76":"/YAXArrays.jl/previews/PR433/get_started.html#Getting-Started","77":"/YAXArrays.jl/previews/PR433/get_started.html#installation","78":"/YAXArrays.jl/previews/PR433/get_started.html#quickstart","79":"/YAXArrays.jl/previews/PR433/get_started.html#updates","80":"/YAXArrays.jl/previews/PR433/tutorials/other_tutorials.html#Other-tutorials","81":"/YAXArrays.jl/previews/PR433/tutorials/other_tutorials.html#General-overview-of-the-functionality-of-YAXArrays","82":"/YAXArrays.jl/previews/PR433/tutorials/other_tutorials.html#Table-style-iteration-over-YAXArrays","83":"/YAXArrays.jl/previews/PR433/tutorials/other_tutorials.html#Combining-multiple-tiff-files-into-a-zarr-based-datacube","84":"/YAXArrays.jl/previews/PR433/tutorials/mean_seasonal_cycle.html#Mean-Seasonal-Cycle-for-a-single-pixel","85":"/YAXArrays.jl/previews/PR433/tutorials/mean_seasonal_cycle.html#Define-the-cube","86":"/YAXArrays.jl/previews/PR433/tutorials/mean_seasonal_cycle.html#Plot-results:-mean-seasonal-cycle","87":"/YAXArrays.jl/previews/PR433/tutorials/plottingmaps.html#Plotting-maps","88":"/YAXArrays.jl/previews/PR433/tutorials/plottingmaps.html#Heatmap-plot","89":"/YAXArrays.jl/previews/PR433/tutorials/plottingmaps.html#Wintri-Projection","90":"/YAXArrays.jl/previews/PR433/tutorials/plottingmaps.html#Moll-projection","91":"/YAXArrays.jl/previews/PR433/tutorials/plottingmaps.html#3D-sphere-plot"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[2,1,86],"1":[2,1,31],"2":[5,2,80],"3":[5,2,89],"4":[2,1,58],"5":[2,2,57],"6":[2,2,9],"7":[4,4,72],"8":[4,4,72],"9":[5,4,81],"10":[2,1,117],"11":[5,2,30],"12":[1,2,70],"13":[1,2,118],"14":[1,2,88],"15":[1,2,22],"16":[4,3,208],"17":[4,3,248],"18":[2,2,138],"19":[2,1,52],"20":[3,2,84],"21":[2,2,116],"22":[2,2,120],"23":[4,1,14],"24":[3,4,106],"25":[3,4,45],"26":[5,1,19],"27":[7,5,75],"28":[8,5,76],"29":[5,5,87],"30":[10,5,33],"31":[3,14,144],"32":[3,14,18],"33":[9,14,69],"34":[13,14,151],"35":[7,5,112],"36":[8,5,169],"37":[11,5,1],"38":[3,15,24],"39":[3,15,32],"40":[4,1,23],"41":[8,4,35],"42":[3,4,67],"43":[2,4,136],"44":[1,6,102],"45":[1,6,49],"46":[2,4,107],"47":[1,6,87],"48":[2,6,349],"49":[4,1,14],"50":[2,4,184],"51":[2,4,206],"52":[5,4,38],"53":[4,1,165],"54":[3,4,106],"55":[2,4,117],"56":[2,4,131],"57":[4,4,144],"58":[3,4,73],"59":[1,1,16],"60":[1,1,113],"61":[1,1,78],"62":[3,1,70],"63":[1,1,32],"64":[4,1,146],"65":[2,4,19],"66":[2,4,20],"67":[3,4,80],"68":[4,4,153],"69":[2,4,117],"70":[4,1,15],"71":[3,4,40],"72":[3,5,75],"73":[2,1,10],"74":[2,2,559],"75":[2,2,467],"76":[2,1,1],"77":[1,2,34],"78":[1,2,196],"79":[1,2,49],"80":[2,1,49],"81":[6,2,12],"82":[5,2,38],"83":[9,2,1],"84":[7,1,73],"85":[3,7,132],"86":[5,7,48],"87":[2,1,132],"88":[2,2,21],"89":[2,1,46],"90":[2,2,33],"91":[3,2,57]},"averageFieldLength":[3.4347826086956514,3.619565217391304,90.06521739130434],"storedFields":{"0":{"title":"Caching YAXArrays","titles":[]},"1":{"title":"Combine YAXArrays","titles":[]},"2":{"title":"cat along an existing dimension","titles":["Combine YAXArrays"]},"3":{"title":"concatenatecubes to a new dimension","titles":["Combine YAXArrays"]},"4":{"title":"Chunk YAXArrays","titles":[]},"5":{"title":"Chunking YAXArrays","titles":["Chunk YAXArrays"]},"6":{"title":"Chunking Datasets","titles":["Chunk YAXArrays"]},"7":{"title":"Set Chunks by Axis","titles":["Chunk YAXArrays","Chunking Datasets"]},"8":{"title":"Set chunking by Variable","titles":["Chunk YAXArrays","Chunking Datasets"]},"9":{"title":"Set chunking for all variables","titles":["Chunk YAXArrays","Chunking Datasets"]},"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":"Creating a vector array","titles":["Compute YAXArrays","mapCube"]},"18":{"title":"Distributed Computation","titles":["Compute YAXArrays"]},"19":{"title":"Convert YAXArrays","titles":[]},"20":{"title":"Convert Base.Array","titles":["Convert YAXArrays"]},"21":{"title":"Convert Raster","titles":["Convert YAXArrays"]},"22":{"title":"Convert DimArray","titles":["Convert YAXArrays"]},"23":{"title":"Create YAXArrays and Datasets","titles":[]},"24":{"title":"Create a YAXArray","titles":["Create YAXArrays and Datasets"]},"25":{"title":"Create a Dataset","titles":["Create YAXArrays and Datasets"]},"26":{"title":"Frequently Asked Questions (FAQ)","titles":[]},"27":{"title":"Extract the axes names from a Cube","titles":["Frequently Asked Questions (FAQ)"]},"28":{"title":"Obtain values from axes and data from the cube","titles":["Frequently Asked Questions (FAQ)"]},"29":{"title":"How do I concatenate cubes","titles":["Frequently Asked Questions (FAQ)"]},"30":{"title":"How do I subset a YAXArray ( Cube ) or Dataset?","titles":["Frequently Asked Questions (FAQ)"]},"31":{"title":"Subsetting a YAXArray","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?"]},"32":{"title":"Subsetting a Dataset","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?"]},"33":{"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"]},"34":{"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"]},"35":{"title":"How do I apply map algebra?","titles":["Frequently Asked Questions (FAQ)"]},"36":{"title":"How do I use the CubeTable function?","titles":["Frequently Asked Questions (FAQ)"]},"37":{"title":"How do I assing variable names to YAXArrays in a Dataset","titles":["Frequently Asked Questions (FAQ)"]},"38":{"title":"One variable name","titles":["Frequently Asked Questions (FAQ)","How do I assing variable names to YAXArrays in a Dataset"]},"39":{"title":"Multiple variable names","titles":["Frequently Asked Questions (FAQ)","How do I assing variable names to YAXArrays in a Dataset"]},"40":{"title":"Group YAXArrays and Datasets","titles":[]},"41":{"title":"Seasonal Averages from Time Series of Monthly Means","titles":["Group YAXArrays and Datasets"]},"42":{"title":"Download the data","titles":["Group YAXArrays and Datasets"]},"43":{"title":"GroupBy: seasons","titles":["Group YAXArrays and Datasets"]},"44":{"title":"dropdims","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"45":{"title":"seasons","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"46":{"title":"GroupBy: weight","titles":["Group YAXArrays and Datasets"]},"47":{"title":"weights","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"48":{"title":"weighted seasons","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"49":{"title":"Read YAXArrays and Datasets","titles":[]},"50":{"title":"Read Zarr","titles":["Read YAXArrays and Datasets"]},"51":{"title":"Read NetCDF","titles":["Read YAXArrays and Datasets"]},"52":{"title":"Read GDAL (GeoTIFF, GeoJSON)","titles":["Read YAXArrays and Datasets"]},"53":{"title":"Select YAXArrays and Datasets","titles":[]},"54":{"title":"Select a YAXArray","titles":["Select YAXArrays and Datasets"]},"55":{"title":"Select elements","titles":["Select YAXArrays and Datasets"]},"56":{"title":"Select ranges","titles":["Select YAXArrays and Datasets"]},"57":{"title":"Closed and open intervals","titles":["Select YAXArrays and Datasets"]},"58":{"title":"Get a dimension","titles":["Select YAXArrays and Datasets"]},"59":{"title":"Types","titles":[]},"60":{"title":"YAXArray","titles":["Types"]},"61":{"title":"Dataset","titles":["Types"]},"62":{"title":"(Data) Cube","titles":["Types"]},"63":{"title":"Dimension","titles":["Types"]},"64":{"title":"Write YAXArrays and Datasets","titles":[]},"65":{"title":"Write Zarr","titles":["Write YAXArrays and Datasets"]},"66":{"title":"Write NetCDF","titles":["Write YAXArrays and Datasets"]},"67":{"title":"Overwrite a Dataset","titles":["Write YAXArrays and Datasets"]},"68":{"title":"Append to a Dataset","titles":["Write YAXArrays and Datasets"]},"69":{"title":"Save Skeleton","titles":["Write YAXArrays and Datasets"]},"70":{"title":"Contribute to YAXArrays.jl","titles":[]},"71":{"title":"Contribute to Documentation","titles":["Contribute to YAXArrays.jl"]},"72":{"title":"Build docs locally","titles":["Contribute to YAXArrays.jl","Contribute to Documentation"]},"73":{"title":"API Reference","titles":[]},"74":{"title":"Public API","titles":["API Reference"]},"75":{"title":"Internal API","titles":["API Reference"]},"76":{"title":"Getting Started","titles":[]},"77":{"title":"Installation","titles":["Getting Started"]},"78":{"title":"Quickstart","titles":["Getting Started"]},"79":{"title":"Updates","titles":["Getting Started"]},"80":{"title":"Other tutorials","titles":[]},"81":{"title":"General overview of the functionality of YAXArrays","titles":["Other tutorials"]},"82":{"title":"Table-style iteration over YAXArrays","titles":["Other tutorials"]},"83":{"title":"Combining multiple tiff files into a zarr based datacube","titles":["Other tutorials"]},"84":{"title":"Mean Seasonal Cycle for a single pixel","titles":[]},"85":{"title":"Define the cube","titles":["Mean Seasonal Cycle for a single pixel"]},"86":{"title":"Plot results: mean seasonal cycle","titles":["Mean Seasonal Cycle for a single pixel"]},"87":{"title":"Plotting maps","titles":[]},"88":{"title":"Heatmap plot","titles":["Plotting maps"]},"89":{"title":"Wintri Projection","titles":[]},"90":{"title":"Moll projection","titles":["Wintri Projection"]},"91":{"title":"3D sphere plot","titles":["Wintri Projection"]}},"dirtCount":0,"index":[["δlon",{"2":{"89":1}}],["`diskarrays",{"2":{"75":1}}],["`ds`",{"2":{"74":1}}],["`ordereddict`",{"2":{"74":1}}],["`fun`",{"2":{"74":1}}],["`a",{"2":{"31":1}}],["π",{"2":{"35":2,"84":1,"86":1}}],[">var",{"2":{"85":1}}],[">dates",{"2":{"85":1}}],[">month",{"2":{"74":1}}],[">abs",{"2":{"74":1}}],[">=",{"2":{"34":4}}],[">",{"2":{"34":2,"35":2,"85":1}}],["└──────────────────────────────────────────────────────────┘",{"2":{"31":1}}],["└─────────────────────────────────────────────────────────────┘",{"2":{"21":2}}],["└──────────────────────────────────────────────────────────────────┘",{"2":{"22":2}}],["└──────────────────────────────────────────────────────────────────────┘",{"2":{"24":1}}],["└────────────────────────────────────────────────────────────────────────────────┘",{"2":{"55":1}}],["└──────────────────────────────────────────────────────────────────────────────┘",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":4,"24":1,"27":1,"28":1,"29":1,"31":4,"35":3,"36":3,"43":2,"44":1,"46":3,"47":2,"48":3,"50":1,"51":1,"54":2,"55":2,"56":3,"57":5,"69":1,"78":1,"85":1}}],["└───────────────────────────────────────────────────────────────────────┘",{"2":{"2":1}}],["└─────────────────────────────────────────────────────────────────────┘",{"2":{"20":1,"78":1}}],["└────────────────────────────────────────────────────────────────┘",{"2":{"3":1}}],["⬔",{"2":{"29":1,"78":1}}],["quickstart",{"0":{"78":1}}],["query",{"2":{"53":1}}],["questions",{"0":{"26":1},"1":{"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1}}],["quot",{"2":{"16":2,"36":2,"67":2,"69":2,"74":16,"75":12}}],["jj+1",{"2":{"51":1,"53":1,"64":1,"68":1}}],["jj",{"2":{"51":1,"53":1,"64":1,"68":1}}],["joinname",{"2":{"74":1}}],["joinname=",{"2":{"74":1}}],["journal",{"2":{"51":1,"53":1,"64":1,"68":1}}],["joe",{"2":{"41":1,"48":1}}],["j",{"2":{"48":8}}],["jan",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["jl",{"0":{"70":1},"1":{"71":1,"72":1},"2":{"21":1,"22":1,"36":1,"42":1,"48":1,"60":1,"63":1,"70":1,"72":2,"77":1,"78":2,"79":3,"82":1}}],["jussieu",{"2":{"51":1,"53":1,"64":1,"68":1}}],["just",{"2":{"17":1,"60":1,"62":1,"74":1,"75":2}}],["jul",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["juliaδlon",{"2":{"89":1}}],["juliaglmakie",{"2":{"88":1}}],["juliagetloopchunks",{"2":{"75":1}}],["juliagetouttype",{"2":{"75":1}}],["juliagetoutaxis",{"2":{"75":1}}],["juliaget",{"2":{"75":1}}],["juliagetaxis",{"2":{"74":1}}],["juliagen",{"2":{"16":1}}],["juliax",{"2":{"84":1}}],["juliapkg>",{"2":{"77":1,"79":1}}],["juliapermuteloopaxes",{"2":{"75":1}}],["juliaoptifunc",{"2":{"75":1}}],["juliaoutdims",{"2":{"74":1}}],["juliaoffset",{"2":{"13":1}}],["juliaindims",{"2":{"74":1}}],["juliaimport",{"2":{"14":1,"77":1}}],["juliacopydata",{"2":{"75":1}}],["juliacollect",{"2":{"28":1,"58":1}}],["juliaclean",{"2":{"75":1}}],["juliacube",{"2":{"74":1}}],["juliacubefittable",{"2":{"74":1}}],["juliacubetable",{"2":{"74":1}}],["juliacaxes",{"2":{"74":1}}],["juliasavecube",{"2":{"74":1}}],["juliasavedataset",{"2":{"65":1,"66":1,"67":1}}],["juliasetchunks",{"2":{"74":1,"75":1}}],["juliaseasons",{"2":{"45":1}}],["julialon",{"2":{"87":1}}],["julialookup",{"2":{"58":1}}],["julialatitudes",{"2":{"34":1}}],["juliawith",{"2":{"48":1}}],["julia>",{"2":{"48":1,"72":1,"85":1}}],["juliaurl",{"2":{"42":1}}],["juliausing",{"2":{"0":1,"2":1,"3":1,"5":1,"7":1,"8":1,"9":1,"10":1,"16":1,"17":1,"18":2,"20":1,"21":1,"22":1,"24":2,"27":1,"29":1,"31":1,"33":1,"34":1,"36":2,"40":1,"48":1,"50":1,"51":1,"52":1,"53":1,"55":1,"57":1,"64":1,"65":1,"66":1,"69":1,"78":2,"84":1,"87":1,"91":1}}],["juliakeylist",{"2":{"39":1}}],["juliaylonlat",{"2":{"31":1}}],["juliaytime3",{"2":{"31":1}}],["juliaytime2",{"2":{"31":1}}],["juliaytime",{"2":{"31":1}}],["juliay",{"2":{"31":1}}],["juliayaxcolumn",{"2":{"75":1}}],["juliayaxarray",{"2":{"74":1}}],["juliayax",{"2":{"0":1}}],["juliatos",{"2":{"54":2,"55":2,"56":3,"57":1,"58":1}}],["juliatempo",{"2":{"46":1}}],["juliat",{"2":{"31":1,"36":1,"84":1}}],["juliadataset",{"2":{"74":1}}],["juliadata3",{"2":{"25":1}}],["juliads2",{"2":{"68":1}}],["juliads",{"2":{"33":1,"34":1,"50":1,"51":1}}],["juliadim",{"2":{"22":1}}],["juliadimarray",{"2":{"17":1}}],["juliareadcubedata",{"2":{"74":1}}],["juliaregions",{"2":{"17":2}}],["juliar",{"2":{"69":1}}],["juliaras2",{"2":{"21":1}}],["juliamutable",{"2":{"75":1}}],["juliamatch",{"2":{"75":1}}],["juliamapcube",{"2":{"74":2}}],["juliamapslices",{"2":{"14":1,"18":1}}],["juliamovingwindow",{"2":{"74":1}}],["juliamean",{"2":{"48":1}}],["juliam2",{"2":{"20":1}}],["julia",{"2":{"19":1,"72":1,"75":1,"77":2,"79":2}}],["juliavector",{"2":{"17":1}}],["juliajulia>",{"2":{"16":7,"27":3,"28":1,"29":1,"35":3,"36":3,"38":1,"39":1,"43":2,"44":1,"46":2,"47":2,"48":3,"57":4,"68":1,"69":1,"85":2,"87":3}}],["juliaall",{"2":{"69":1}}],["juliaaxs",{"2":{"42":1}}],["juliaaxes",{"2":{"31":1}}],["juliaa2",{"2":{"12":2,"24":2,"78":1}}],["juliaa",{"2":{"5":1,"11":3}}],["juliafig",{"2":{"84":1,"86":1,"89":1,"90":1}}],["juliafindaxis",{"2":{"75":1}}],["juliafittable",{"2":{"74":2}}],["juliafunction",{"2":{"16":1,"43":1,"74":1,"85":1}}],["juliaf",{"2":{"5":1,"7":1,"8":1,"9":1,"16":1}}],["jun",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["∘",{"2":{"18":1}}],["|>",{"2":{"17":2}}],["⋱",{"2":{"17":1}}],["⋮",{"2":{"17":2,"58":1,"85":1}}],["95",{"2":{"48":1}}],["959",{"2":{"48":1}}],["955516",{"2":{"20":1}}],["932714",{"2":{"78":1}}],["9375",{"2":{"50":2,"87":1}}],["93743",{"2":{"48":1}}],["9362",{"2":{"48":1}}],["984425",{"2":{"78":1}}],["986",{"2":{"48":1}}],["98",{"2":{"34":6}}],["980244",{"2":{"21":1}}],["916995",{"2":{"78":1}}],["9192",{"2":{"48":1}}],["919172",{"2":{"21":1}}],["91",{"2":{"27":1,"57":5}}],["918512",{"2":{"22":1}}],["923964",{"2":{"78":1}}],["923781",{"2":{"22":1}}],["923451",{"2":{"21":1}}],["904946",{"2":{"78":1}}],["906033",{"2":{"78":1}}],["90712",{"2":{"48":1}}],["907681",{"2":{"20":1}}],["90365",{"2":{"48":1}}],["903652",{"2":{"21":1}}],["90",{"2":{"34":2,"57":5}}],["943798",{"2":{"78":1}}],["9432",{"2":{"43":1,"44":1}}],["94534",{"2":{"48":1}}],["9404",{"2":{"43":1,"44":1}}],["942346",{"2":{"20":1}}],["946856",{"2":{"20":1}}],["944201",{"2":{"17":1}}],["97649",{"2":{"48":1}}],["97047",{"2":{"48":1}}],["970356",{"2":{"17":1}}],["978454",{"2":{"20":1}}],["992249",{"2":{"20":1}}],["99266",{"2":{"17":1}}],["9955",{"2":{"17":1}}],["997",{"2":{"17":1}}],["9",{"2":{"16":14,"17":2,"28":1,"31":1,"46":4,"56":4,"75":1}}],["96x71x19",{"2":{"51":1,"53":1,"64":1,"68":1}}],["96f0",{"2":{"51":1,"53":1,"64":1}}],["9682",{"2":{"43":1,"44":1}}],["968496",{"2":{"20":1}}],["961388",{"2":{"21":1}}],["960",{"2":{"17":1}}],["96",{"2":{"2":1,"3":1,"55":2,"68":1}}],["87",{"2":{"58":1}}],["87705",{"2":{"48":1}}],["84",{"2":{"58":1}}],["82",{"2":{"58":1}}],["858836",{"2":{"78":1}}],["85",{"2":{"58":1,"89":1,"90":1}}],["850",{"2":{"48":1}}],["85ºn",{"2":{"34":1}}],["85714",{"2":{"17":1}}],["884424",{"2":{"78":1}}],["88",{"2":{"29":1,"50":4,"58":1,"78":1,"87":2}}],["81",{"2":{"24":1,"58":1}}],["813705",{"2":{"20":1}}],["833973",{"2":{"78":1}}],["833974",{"2":{"78":1}}],["833221",{"2":{"22":1}}],["83",{"2":{"58":1}}],["834727",{"2":{"21":1}}],["89",{"2":{"50":4,"51":2,"53":1,"54":2,"55":1,"56":1,"57":5,"58":1,"64":1,"68":1,"87":2}}],["8984",{"2":{"48":1}}],["89237",{"2":{"48":1}}],["89447",{"2":{"22":1}}],["893145",{"2":{"21":1}}],["86",{"2":{"58":1}}],["86457",{"2":{"48":1}}],["862041",{"2":{"22":1}}],["861181",{"2":{"21":1}}],["86868",{"2":{"20":1}}],["866694",{"2":{"20":1}}],["8",{"2":{"16":12,"17":2,"28":1,"31":1,"51":2,"53":1,"54":2,"64":1,"68":1,"85":1}}],["807152",{"2":{"78":1}}],["80759",{"2":{"48":1}}],["809612",{"2":{"78":1}}],["80697",{"2":{"78":1}}],["800",{"2":{"28":1,"31":1,"69":1}}],["80",{"2":{"16":1,"34":2}}],["v",{"2":{"51":1,"53":1,"64":1,"68":1}}],["v1",{"2":{"51":2,"53":2,"64":2,"68":2,"77":1}}],["vol",{"2":{"51":1,"53":1,"64":1,"68":1}}],["v20190710",{"2":{"50":1,"87":2}}],["video",{"2":{"80":1}}],["videos",{"2":{"80":1}}],["visualization",{"2":{"36":1}}],["vice",{"2":{"19":1}}],["view",{"2":{"17":1,"78":1}}],["version",{"2":{"50":1,"51":1,"53":1,"64":1,"68":1,"79":2,"87":1}}],["versa",{"2":{"19":1}}],["verify",{"2":{"47":1}}],["very",{"2":{"13":1,"36":1,"60":1}}],["vector",{"0":{"17":1},"2":{"17":4,"28":1,"43":1,"45":1,"46":2,"47":3,"48":2,"58":1,"60":1,"74":2,"75":3}}],["val",{"2":{"28":2,"58":1}}],["vals",{"2":{"17":1}}],["value",{"2":{"12":1,"14":3,"16":2,"35":1,"51":1,"54":2,"55":3,"56":3,"57":5,"74":4,"75":1}}],["values=ds1",{"2":{"36":1}}],["values",{"0":{"28":1},"2":{"3":1,"17":2,"23":1,"24":2,"27":3,"28":1,"34":3,"36":4,"56":1,"58":2,"60":1,"61":1,"69":1,"74":9,"78":1,"87":1}}],["vararg",{"2":{"75":2}}],["varoables",{"2":{"74":1}}],["variant",{"2":{"50":1,"87":1}}],["variable=at",{"2":{"78":1}}],["variable",{"0":{"8":1,"37":1,"38":1,"39":1},"1":{"38":1,"39":1},"2":{"3":3,"8":1,"34":3,"50":1,"74":4,"75":7,"78":3,"84":1,"85":1,"86":1,"87":1}}],["variables=at",{"2":{"35":2}}],["variables",{"0":{"9":1,"33":1,"34":1},"2":{"3":2,"7":2,"8":1,"9":2,"19":1,"25":1,"29":2,"32":1,"33":2,"34":3,"38":1,"39":1,"50":2,"51":1,"53":1,"61":1,"62":1,"64":1,"68":2,"74":2,"87":2}}],["varlist",{"2":{"39":2}}],["var2=var2",{"2":{"33":1}}],["var2",{"2":{"29":2,"33":3,"35":1}}],["var1=var1",{"2":{"33":1}}],["var1",{"2":{"29":2,"33":3,"35":1}}],["var",{"2":{"3":2,"84":2,"85":2,"86":2}}],["uv",{"2":{"91":1}}],["u",{"2":{"85":1}}],["updates",{"0":{"79":1}}],["update",{"2":{"74":1}}],["up",{"2":{"74":1}}],["ucar",{"2":{"51":1,"53":1,"61":1,"64":1}}],["urls",{"2":{"49":1}}],["url",{"2":{"42":1,"50":1}}],["unpermuted",{"2":{"75":2}}],["unpractical",{"2":{"42":1}}],["underlying",{"2":{"74":1,"75":1,"79":1}}],["unlike",{"2":{"62":1}}],["unique",{"2":{"85":1}}],["unidata",{"2":{"51":1,"53":1,"61":1,"64":1}}],["units",{"2":{"50":1,"51":2,"54":4,"55":6,"56":6,"57":10}}],["unitrange",{"2":{"43":2,"44":2,"48":6}}],["union",{"2":{"14":2,"16":4,"17":1,"35":1,"36":2,"51":1,"54":2,"55":3,"56":3,"57":5,"69":2}}],["unordered",{"2":{"43":2,"44":1,"45":1,"46":2,"47":2,"48":3}}],["unweighted",{"2":{"43":1,"48":1}}],["unnecessary",{"2":{"17":1}}],["unchanged",{"2":{"13":1}}],["usually",{"2":{"50":1,"60":2,"61":2}}],["usual",{"2":{"43":1}}],["us",{"2":{"17":1}}],["useable",{"2":{"74":1}}],["uses",{"2":{"36":1}}],["used",{"2":{"17":1,"18":1,"31":1,"53":1,"58":1,"59":1,"60":1,"63":1,"74":4,"75":3}}],["users",{"2":{"75":1}}],["userguide",{"2":{"71":2}}],["user",{"2":{"10":2,"12":1,"13":1,"18":1,"24":3,"25":1,"75":1}}],["use",{"0":{"36":1},"2":{"0":1,"2":1,"3":1,"10":4,"13":1,"18":2,"27":2,"31":1,"33":1,"34":1,"35":1,"36":2,"40":1,"42":1,"44":1,"57":2,"62":1,"69":1,"74":3,"75":1,"80":1,"82":1,"87":2}}],["useful",{"2":{"0":1,"62":1}}],["using",{"2":{"0":1,"2":1,"3":1,"10":1,"16":2,"17":2,"18":7,"22":1,"27":1,"29":1,"31":2,"33":2,"34":2,"35":1,"36":1,"40":4,"50":2,"51":3,"52":2,"53":2,"55":3,"56":2,"64":2,"68":1,"69":2,"79":1,"84":2,"85":1,"87":3}}],["+proj=moll",{"2":{"90":1}}],["+",{"2":{"12":2,"13":1,"16":2,"84":1,"89":1}}],["kwargs",{"2":{"74":4,"75":2}}],["k",{"2":{"50":1,"51":1,"54":2,"55":3,"56":3,"57":5}}],["keys",{"2":{"74":1}}],["key",{"2":{"74":1}}],["keyword",{"2":{"68":1,"74":6,"75":2}}],["keylist",{"2":{"39":1}}],["keeps",{"2":{"13":1}}],["keep",{"2":{"0":1,"75":1}}],["kb",{"2":{"10":1,"12":1,"13":1,"14":1,"16":2,"17":1,"21":1,"24":2,"27":1,"29":1,"31":4,"35":3,"36":1,"55":1,"56":3,"57":5,"78":1,"85":1}}],["↗",{"2":{"10":1,"12":1,"13":1,"16":2,"17":1,"21":2,"24":3,"25":1,"27":3,"29":1,"31":5,"33":2,"35":3,"43":1,"50":2,"51":2,"53":1,"54":2,"56":3,"57":5,"64":1,"68":2,"78":1,"87":1}}],["45×170×24",{"2":{"57":5}}],["451032",{"2":{"22":1}}],["411336",{"2":{"78":1}}],["4198",{"2":{"48":1}}],["41241",{"2":{"48":1}}],["41049",{"2":{"48":1}}],["41634",{"2":{"48":1}}],["44",{"2":{"31":1,"35":3}}],["449704",{"2":{"20":1}}],["467454",{"2":{"78":1}}],["465423",{"2":{"78":1}}],["46506",{"2":{"48":1}}],["46",{"2":{"29":1,"78":1}}],["461186",{"2":{"22":1}}],["49909",{"2":{"48":1}}],["4947",{"2":{"48":1}}],["495618",{"2":{"22":1}}],["496697",{"2":{"21":1}}],["492056",{"2":{"21":1}}],["491538",{"2":{"17":1}}],["403901",{"2":{"78":1}}],["40",{"2":{"34":2}}],["409171",{"2":{"21":1}}],["407045",{"2":{"20":1}}],["400",{"2":{"20":1,"84":1,"86":1}}],["405603",{"2":{"17":1}}],["4×30",{"2":{"17":1}}],["432322",{"2":{"78":1}}],["43254",{"2":{"48":1}}],["4325",{"2":{"43":1,"44":1}}],["4381",{"2":{"21":1}}],["436209",{"2":{"20":1}}],["43676",{"2":{"17":1}}],["439923",{"2":{"17":1}}],["479273",{"2":{"17":1}}],["487755",{"2":{"78":1}}],["487927",{"2":{"17":1}}],["482873",{"2":{"78":1}}],["48",{"2":{"78":1}}],["480",{"2":{"36":1}}],["48367",{"2":{"48":1}}],["483694",{"2":{"22":1}}],["48353",{"2":{"22":1}}],["486356",{"2":{"17":1}}],["48634",{"2":{"17":1}}],["422172",{"2":{"78":1}}],["424768",{"2":{"78":1}}],["426985",{"2":{"20":1}}],["420367",{"2":{"20":1}}],["42973",{"2":{"17":1}}],["42857",{"2":{"17":2}}],["42",{"2":{"11":3}}],["4",{"2":{"7":4,"8":4,"16":4,"17":9,"22":1,"28":1,"29":1,"43":2,"44":1,"45":1,"46":2,"47":2,"48":4,"78":3,"84":1,"86":1}}],["3d",{"0":{"91":1}}],["3hr",{"2":{"50":2,"87":3}}],["37",{"2":{"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":1}}],["372",{"2":{"48":1}}],["37878",{"2":{"48":1}}],["34818",{"2":{"48":1}}],["34832",{"2":{"48":1}}],["34549",{"2":{"48":1}}],["34218",{"2":{"48":1}}],["349956",{"2":{"22":1}}],["32555",{"2":{"48":1}}],["3252",{"2":{"43":1,"44":1}}],["32149",{"2":{"48":1}}],["322944",{"2":{"21":1}}],["3×20",{"2":{"36":1}}],["312",{"2":{"48":1}}],["31753",{"2":{"48":1}}],["3169",{"2":{"48":1}}],["3188",{"2":{"48":1}}],["31",{"2":{"31":2,"33":1,"34":1,"84":1,"85":2}}],["314103",{"2":{"17":1}}],["384×192×251288",{"2":{"50":1}}],["3866",{"2":{"48":1}}],["38364",{"2":{"48":1}}],["3835",{"2":{"43":1,"44":1}}],["38",{"2":{"31":1,"56":3}}],["388646",{"2":{"22":1}}],["380918",{"2":{"17":1}}],["366",{"2":{"86":1}}],["365×1",{"2":{"85":1}}],["365",{"2":{"85":1,"86":4}}],["36126",{"2":{"48":1}}],["36142",{"2":{"48":1}}],["36836",{"2":{"48":1}}],["369",{"2":{"34":1}}],["36",{"2":{"31":1,"33":2,"34":1,"46":1}}],["3600",{"2":{"31":1,"33":2}}],["363397",{"2":{"21":1}}],["362698",{"2":{"17":1}}],["335015",{"2":{"78":1}}],["33565",{"2":{"48":1}}],["339407",{"2":{"78":1}}],["334921",{"2":{"21":1}}],["334541",{"2":{"17":1}}],["336041",{"2":{"17":1}}],["352742",{"2":{"78":1}}],["35700351866494",{"2":{"50":4,"87":2}}],["35432",{"2":{"48":1}}],["35483",{"2":{"48":1}}],["359",{"2":{"34":1,"50":2,"51":2,"53":1,"54":2,"55":1,"58":2,"64":1,"68":1,"87":1}}],["35",{"2":{"10":1,"12":1,"13":1,"17":1,"24":1}}],["307818",{"2":{"78":1}}],["307f8f0e584a39a050c042849004e6a2bd674f99",{"2":{"52":1}}],["303377",{"2":{"78":1}}],["3069",{"2":{"48":1}}],["30018",{"2":{"48":1}}],["30142",{"2":{"48":1}}],["30113",{"2":{"48":1}}],["302668",{"2":{"21":1}}],["30×15×10",{"2":{"16":1}}],["30×10×15",{"2":{"10":1,"12":1,"13":1,"17":1,"24":1}}],["30",{"2":{"10":3,"12":1,"13":1,"14":2,"16":6,"17":5,"18":2,"21":10,"24":4,"25":2,"48":2,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5,"87":1}}],["390876",{"2":{"22":1}}],["395303",{"2":{"17":1}}],["39",{"2":{"10":1,"16":3,"29":1,"31":1,"33":1,"34":1,"35":2,"48":1,"53":1,"63":1,"71":4,"74":2,"85":3}}],["3",{"2":{"7":8,"8":8,"9":10,"10":1,"11":3,"12":3,"13":2,"16":4,"17":6,"21":2,"22":1,"24":3,"27":5,"28":1,"31":4,"35":4,"36":5,"43":2,"48":31,"50":1,"51":1,"54":2,"56":4,"57":5,"68":1,"74":1,"78":3,"84":2}}],["zoom",{"2":{"91":1}}],["zopen",{"2":{"50":1,"87":1}}],["zeros",{"2":{"69":3,"85":1}}],["z",{"2":{"7":2,"8":3,"9":2,"68":2}}],["zarr",{"0":{"50":1,"65":1,"83":1},"2":{"0":1,"5":2,"7":2,"8":2,"9":2,"16":5,"18":1,"22":1,"50":3,"65":5,"67":3,"68":4,"69":3,"74":2,"75":2,"87":1}}],["xticklabelalign",{"2":{"84":1,"86":1}}],["xticklabelrotation",{"2":{"84":1,"86":1}}],["xlabel=",{"2":{"84":1,"86":1}}],["xx",{"2":{"51":1,"53":1,"64":1,"68":1}}],["xarray",{"2":{"41":1,"42":1}}],["xin",{"2":{"17":3,"35":3}}],["x26",{"2":{"17":12,"34":12}}],["x3c",{"2":{"17":12,"34":4}}],["xout",{"2":{"16":2,"17":3}}],["x",{"2":{"7":2,"8":3,"9":2,"13":2,"21":4,"22":3,"35":4,"43":2,"44":1,"48":3,"60":1,"75":1,"78":5,"84":1,"85":6}}],["503791",{"2":{"78":1}}],["500822",{"2":{"78":1}}],["50089",{"2":{"48":1}}],["500",{"2":{"0":1,"48":1,"91":2}}],["500mb",{"2":{"0":2}}],["522934",{"2":{"78":1}}],["526508",{"2":{"78":1}}],["520148",{"2":{"78":1}}],["52419",{"2":{"48":1}}],["519298",{"2":{"78":1}}],["5173",{"2":{"72":1}}],["51418",{"2":{"21":1}}],["514746",{"2":{"20":1}}],["5e8",{"2":{"67":1,"74":1}}],["53",{"2":{"55":1}}],["59212",{"2":{"48":1}}],["59085",{"2":{"48":1}}],["590217",{"2":{"20":1}}],["5743",{"2":{"48":1}}],["57873",{"2":{"48":1}}],["57695",{"2":{"48":1}}],["573976",{"2":{"22":1}}],["57143",{"2":{"17":2}}],["5×6×36",{"2":{"31":1}}],["5×6",{"2":{"22":2}}],["5×10",{"2":{"20":2}}],["547202",{"2":{"21":1}}],["56632",{"2":{"48":1}}],["569383",{"2":{"21":1}}],["561973",{"2":{"20":1}}],["568942",{"2":{"17":1}}],["55",{"2":{"85":1}}],["555382",{"2":{"78":1}}],["552665",{"2":{"20":1}}],["559441",{"2":{"17":1}}],["5843",{"2":{"43":1,"44":1}}],["581196",{"2":{"20":1}}],["58",{"2":{"16":2}}],["5",{"2":{"5":7,"7":16,"8":18,"9":7,"10":2,"12":3,"13":2,"14":1,"16":6,"17":10,"18":1,"20":2,"22":4,"24":5,"25":1,"27":4,"28":1,"29":2,"31":3,"33":4,"35":3,"36":2,"39":4,"48":5,"51":4,"53":2,"54":4,"55":3,"56":10,"57":10,"58":19,"64":2,"68":4,"78":2,"79":1,"86":2,"91":2}}],["→",{"2":{"3":1,"7":1,"8":1,"9":1,"10":1,"12":1,"13":1,"14":1,"16":2,"17":6,"20":1,"21":3,"22":3,"24":3,"25":1,"27":3,"28":1,"29":1,"31":6,"33":2,"34":2,"35":3,"36":2,"39":2,"43":1,"50":2,"51":2,"53":1,"54":2,"55":1,"56":3,"57":5,"64":1,"68":2,"69":1,"78":2,"87":1}}],["├─────────────────────────┴──────────────────────────",{"2":{"31":1}}],["├─────────────────────────┴─────────────────────────────────────",{"2":{"78":1}}],["├─────────────────────────┴──────────────────────────────────────────────",{"2":{"36":1}}],["├─────────────────────────┴──────────────────────────────────",{"2":{"22":2}}],["├─────────────────────────┴────────────────────────────────",{"2":{"3":1}}],["├──────────────────────────┴────────────────────────────",{"2":{"21":1}}],["├──────────────────────────┴────────────────────────────────────",{"2":{"20":1}}],["├──────────────────────────┴─────────────────────────────────────────────",{"2":{"17":1,"31":1}}],["├────────────────────────────┴───────────────────────────────────────────",{"2":{"31":2}}],["├────────────────────────────┴──────────────────────────",{"2":{"21":1}}],["├─────────────────────────────┴──────────────────────────────────",{"2":{"24":1}}],["├─────────────────────────────┴──────────────────────────────────────────",{"2":{"16":1,"27":1}}],["├───────────────────────────────┴────────────────────────────────────────",{"2":{"47":1}}],["├──────────────────────────────────┴─────────────────────────────────────",{"2":{"85":1}}],["├─────────────────────────────────────────┴──────────────────────────────",{"2":{"69":1}}],["├──────────────────────────────────────────┴─────────────────────────────",{"2":{"17":1,"36":1}}],["├─────────────────────────────────────────────┴─────────────────",{"2":{"55":1}}],["├───────────────────────────────────────────────┴────────────────────────",{"2":{"36":1,"56":1,"57":5}}],["├───────────────────────────────────────────────",{"2":{"31":1}}],["├────────────────────────────────────────────────",{"2":{"31":1}}],["├──────────────────────────────────────────────────┴─────────────────────",{"2":{"43":1}}],["├──────────────────────────────────────────────────",{"2":{"21":1}}],["├───────────────────────────────────────────────────",{"2":{"21":2}}],["├─────────────────────────────────────────────────────",{"2":{"3":1,"21":1}}],["├───────────────────────────────────────────────────────",{"2":{"22":1}}],["├────────────────────────────────────────────────────────",{"2":{"22":2}}],["├──────────────────────────────────────────────────────────",{"2":{"20":1,"78":1}}],["├───────────────────────────────────────────────────────────",{"2":{"20":1,"24":1,"78":1}}],["├────────────────────────────────────────────────────────────",{"2":{"2":1,"24":1}}],["├──────────────────────────────────────────────────────────────────",{"2":{"43":1,"46":1}}],["├───────────────────────────────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":2,"24":1,"27":1,"28":1,"29":1,"31":4,"35":3,"36":3,"46":1,"50":1,"51":1,"54":2,"55":2,"56":3,"57":5,"69":1,"78":1,"85":1}}],["├─────────────────────────────────────────────────────────────────────",{"2":{"55":1}}],["├─────────────────────────────────────────────────────────────────────┴",{"2":{"55":1}}],["├────────────────────────────────────────────────────────────────────────",{"2":{"43":1,"44":1,"46":1,"47":1,"48":3}}],["├────────────────────────────────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":3,"24":1,"27":1,"28":1,"29":1,"31":4,"35":3,"36":3,"43":2,"44":1,"46":3,"47":2,"48":3,"50":1,"51":1,"54":2,"55":2,"56":3,"57":5,"69":1,"78":1,"85":1}}],["├─────────────────────────────────────────────────────────────",{"2":{"2":1}}],["├──────────────────────────────────────────────────────",{"2":{"3":1}}],["├────────────────────────────────────────────────┴───────────────────────",{"2":{"14":1,"46":1,"51":1,"54":2,"55":2}}],["├──────────────────────────────────────────────┴─────────────────────────",{"2":{"16":2,"35":1,"56":2}}],["├───────────────────────────────────────────┴────────────────────────────",{"2":{"14":1}}],["├────────────────────────────────────┴───────────────────────────────────",{"2":{"50":1}}],["├────────────────────────────────┴───────────────────────────────────────",{"2":{"29":1,"78":1}}],["├────────────────────────────────┴────────────────────────────────",{"2":{"2":1}}],["├──────────────────────────────┴─────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"16":2,"17":1,"24":1,"35":2,"46":1}}],["├───────────────────────────┴────────────────────────────────────────────",{"2":{"17":1,"28":1,"31":1}}],["╭────────────────────────────╮",{"2":{"21":1,"31":2}}],["╭─────────────────────────────╮",{"2":{"16":1,"24":1,"27":1}}],["╭───────────────────────────────╮",{"2":{"47":1}}],["╭──────────────────────────────────╮",{"2":{"85":1}}],["╭─────────────────────────────────────────╮",{"2":{"69":1}}],["╭──────────────────────────────────────────╮",{"2":{"17":1,"36":1}}],["╭─────────────────────────────────────────────╮",{"2":{"55":1}}],["╭──────────────────────────────────────────────────────────────────────────────╮",{"2":{"43":1,"44":1,"46":1,"47":1,"48":3}}],["╭──────────────────────────────────────────────────╮",{"2":{"43":1}}],["╭────────────────────────────────────────────────╮",{"2":{"14":1,"46":1,"51":1,"54":2,"55":2}}],["╭───────────────────────────────────────────────╮",{"2":{"36":1,"56":1,"57":5}}],["╭──────────────────────────────────────────────╮",{"2":{"16":2,"35":1,"56":2}}],["╭───────────────────────────────────────────╮",{"2":{"14":1}}],["╭────────────────────────────────────╮",{"2":{"50":1}}],["╭────────────────────────────────╮",{"2":{"2":1,"29":1,"78":1}}],["╭──────────────────────────────╮",{"2":{"10":1,"12":1,"13":1,"16":2,"17":1,"24":1,"35":2,"46":1}}],["╭───────────────────────────╮",{"2":{"17":1,"28":1,"31":1}}],["╭──────────────────────────╮",{"2":{"17":1,"20":1,"21":1,"31":1}}],["╭─────────────────────────╮",{"2":{"3":1,"22":2,"31":1,"36":1,"78":1}}],["ndata",{"2":{"89":2,"90":1,"91":1}}],["ndays",{"2":{"85":4}}],["nlon",{"2":{"89":2,"90":1}}],["npy",{"2":{"84":2,"85":2}}],["ntuple",{"2":{"75":2}}],["ntr",{"2":{"75":1}}],["nthreads",{"2":{"74":2}}],["nin",{"2":{"75":2}}],["nvalid",{"2":{"74":1}}],["nbsp",{"2":{"67":1,"74":24,"75":24}}],["n",{"2":{"59":1,"74":3}}],["n256",{"2":{"48":1}}],["nan",{"2":{"42":1,"43":48,"44":48,"48":384}}],["name=cube",{"2":{"74":1}}],["namedtuple",{"2":{"74":1,"75":3}}],["named",{"2":{"53":1,"55":1,"56":1,"60":1,"74":2,"79":1}}],["names",{"0":{"27":1,"37":1,"39":1},"1":{"38":1,"39":1},"2":{"24":2,"45":1,"60":2,"74":2,"75":1}}],["namely",{"2":{"16":1}}],["name",{"0":{"38":1},"2":{"5":1,"27":1,"48":1,"50":3,"51":4,"54":8,"55":12,"56":12,"57":20,"63":1,"74":6,"75":5,"78":1}}],["nc",{"2":{"42":2,"51":2,"53":2,"64":2,"66":2}}],["number",{"2":{"41":1,"46":1,"74":2,"75":1,"85":1}}],["numbers",{"2":{"10":1,"78":1}}],["nout",{"2":{"75":2}}],["normal",{"2":{"74":1,"91":1}}],["nometadata",{"2":{"43":3,"44":2,"46":1,"47":1,"48":10}}],["november",{"2":{"51":1,"53":1,"64":1,"68":1}}],["nov",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["nonmissingtype",{"2":{"75":1}}],["non",{"2":{"18":1,"74":1,"75":1,"84":1}}],["now",{"2":{"16":3,"17":1,"29":1,"31":1,"36":1,"43":1,"44":1,"46":1,"48":1,"72":1}}],["no",{"2":{"14":1,"22":1,"30":1,"69":1,"74":1,"75":1}}],["nothing",{"2":{"48":3,"52":1,"67":1,"74":1,"75":1}}],["notation",{"2":{"31":1,"57":1}}],["note",{"2":{"3":1,"13":1,"16":4,"17":1,"34":1,"44":1,"74":1,"75":1}}],["not",{"0":{"34":1},"2":{"0":1,"4":1,"13":1,"30":1,"34":3,"42":1,"69":1,"74":2,"75":3}}],["neighbour",{"2":{"74":1}}],["neighboring",{"2":{"13":1}}],["needed",{"2":{"74":1}}],["need",{"2":{"71":1,"74":1,"75":1}}],["near",{"2":{"50":2,"57":1,"87":1}}],["next",{"2":{"35":1,"36":1,"45":1,"72":2}}],["netcdf",{"0":{"51":1,"66":1},"2":{"22":1,"40":1,"51":4,"53":2,"61":3,"64":2,"66":3,"67":1,"74":1}}],["necessary",{"2":{"16":1,"41":1,"42":1,"75":4}}],["new",{"0":{"3":1},"2":{"10":1,"12":1,"16":1,"24":1,"42":1,"45":1,"62":1,"67":1,"68":1,"71":6,"74":5,"75":4,"85":1}}],["0e8",{"2":{"74":1}}],["0229117785910893",{"2":{"85":1}}],["0204708",{"2":{"78":1}}],["02",{"2":{"50":1}}],["0230575",{"2":{"17":1}}],["0f20",{"2":{"50":1,"51":2,"54":4,"55":6,"56":6,"57":10}}],["0f32",{"2":{"16":2}}],["07",{"2":{"50":2,"87":1}}],["0465",{"2":{"48":1}}],["0486176",{"2":{"20":1}}],["08",{"2":{"46":1}}],["0839164",{"2":{"22":1}}],["0835761",{"2":{"21":1}}],["0026831646804903",{"2":{"85":1}}],["0096612",{"2":{"78":1}}],["00990356",{"2":{"48":1}}],["00722034",{"2":{"48":1}}],["00709111",{"2":{"48":1}}],["00684233",{"2":{"48":1}}],["00693713",{"2":{"48":1}}],["0057",{"2":{"48":1}}],["00388",{"2":{"48":1}}],["00",{"2":{"46":4,"50":9,"51":8,"53":4,"54":8,"55":8,"56":12,"57":20,"64":4,"68":4,"87":5}}],["09",{"2":{"46":1}}],["0ºe",{"2":{"34":1}}],["057607218686596795",{"2":{"85":1}}],["05178960889413877",{"2":{"85":1}}],["0518359",{"2":{"78":1}}],["05460847748381422",{"2":{"85":1}}],["05962146169311534",{"2":{"85":1}}],["0569807",{"2":{"78":1}}],["0535278",{"2":{"78":1}}],["0537",{"2":{"43":1,"44":1}}],["05846",{"2":{"48":1}}],["05",{"2":{"31":3}}],["0625",{"2":{"50":2,"87":1}}],["06755",{"2":{"48":1}}],["0693562",{"2":{"22":1}}],["0659195",{"2":{"21":1}}],["0648334",{"2":{"17":1}}],["035872769140528234",{"2":{"85":1}}],["03578249953362155",{"2":{"85":1}}],["0359487",{"2":{"20":1}}],["03361",{"2":{"48":1}}],["03",{"2":{"21":1}}],["019208419972569894",{"2":{"85":1}}],["019016",{"2":{"48":1}}],["013577071736726981",{"2":{"85":1}}],["01t00",{"2":{"50":2,"87":1}}],["01t03",{"2":{"50":2,"87":1}}],["0178074",{"2":{"48":1}}],["0117519",{"2":{"48":1}}],["0115514",{"2":{"48":1}}],["0127077",{"2":{"48":1}}],["0123091",{"2":{"48":1}}],["0121037",{"2":{"48":1}}],["018571",{"2":{"48":1}}],["0182373",{"2":{"48":1}}],["0180572",{"2":{"48":1}}],["0183003",{"2":{"48":1}}],["018",{"2":{"43":1,"44":1}}],["01",{"2":{"10":6,"12":3,"13":3,"14":3,"16":15,"17":9,"18":3,"24":9,"25":3,"31":22,"33":8,"34":11,"50":5,"51":4,"53":2,"54":4,"55":6,"56":6,"57":10,"64":2,"68":2,"84":2,"85":4,"87":5}}],["0",{"2":{"2":1,"3":1,"10":6,"11":2,"12":6,"13":6,"14":7,"16":303,"17":75,"20":36,"21":36,"22":45,"24":12,"25":6,"28":1,"29":9,"31":1,"34":4,"35":27,"36":11,"46":2,"47":40,"48":19,"50":7,"51":10,"53":6,"54":8,"55":6,"56":14,"57":20,"58":6,"64":6,"67":1,"68":6,"69":1,"74":2,"75":1,"78":80,"79":1,"84":2,"85":19,"86":1,"87":4,"89":2,"90":2,"91":2}}],["┤",{"2":{"2":2,"3":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":5,"20":2,"21":4,"22":3,"24":4,"27":2,"28":2,"29":2,"31":10,"35":6,"36":6,"43":4,"44":2,"46":6,"47":3,"48":6,"50":2,"51":2,"54":4,"55":5,"56":6,"57":10,"69":2,"78":4,"85":2}}],["2π",{"2":{"84":1}}],["2×3",{"2":{"78":1}}],["2×2×3",{"2":{"7":1,"8":1,"9":1}}],["2×2",{"2":{"5":3}}],["2x2l31",{"2":{"51":1,"53":1,"64":1,"68":1}}],["294926",{"2":{"78":1}}],["29473",{"2":{"48":1}}],["29816",{"2":{"48":1}}],["29564",{"2":{"48":1}}],["29",{"2":{"21":2}}],["28422753251364",{"2":{"50":4,"87":2}}],["28008",{"2":{"48":1}}],["2894",{"2":{"48":1}}],["288",{"2":{"46":1}}],["2818",{"2":{"43":1,"44":1}}],["28",{"2":{"21":2,"31":1,"43":3,"44":3,"48":3}}],["28571",{"2":{"17":2}}],["2857142857142857",{"2":{"10":1,"12":1,"13":1,"14":1,"17":3,"24":2,"25":1,"29":1,"35":3,"36":1,"78":1}}],["2747",{"2":{"48":1}}],["273",{"2":{"46":1}}],["273852",{"2":{"17":1}}],["276",{"2":{"46":2}}],["270",{"2":{"46":1}}],["275×205×9",{"2":{"43":4}}],["275329",{"2":{"17":1}}],["27",{"2":{"21":2,"43":1,"44":1,"48":1}}],["27903",{"2":{"20":1}}],["269821",{"2":{"78":1}}],["26274",{"2":{"48":1}}],["264184",{"2":{"17":1}}],["26",{"2":{"16":2,"21":2,"50":2,"87":1}}],["25153",{"2":{"48":1}}],["251699",{"2":{"20":1}}],["25",{"2":{"16":4,"21":10,"31":1,"84":1}}],["247167",{"2":{"78":1}}],["241611",{"2":{"78":1}}],["24375",{"2":{"48":1}}],["2434",{"2":{"48":1}}],["24",{"2":{"16":6,"36":1,"55":2}}],["240",{"2":{"14":1,"16":1,"22":1}}],["23",{"2":{"16":8,"35":3,"48":1,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":1}}],["222",{"2":{"78":1}}],["22211",{"2":{"48":1}}],["223646",{"2":{"78":1}}],["223225",{"2":{"22":1}}],["220982",{"2":{"21":1}}],["224122",{"2":{"20":1}}],["22",{"2":{"16":10}}],["21605",{"2":{"78":1}}],["21699",{"2":{"48":1}}],["21t06",{"2":{"50":2,"87":1}}],["2101",{"2":{"50":2,"87":1}}],["21209",{"2":{"48":1}}],["219561",{"2":{"21":1}}],["217668",{"2":{"21":1}}],["211437",{"2":{"20":1}}],["21",{"2":{"16":12,"43":8,"44":8,"48":8}}],["2=10",{"2":{"5":1}}],["2003",{"2":{"51":1,"53":1,"64":1,"68":1}}],["2004",{"2":{"51":1,"53":1,"64":1,"68":1}}],["200505",{"2":{"78":1}}],["2005",{"2":{"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":1}}],["2002",{"2":{"51":3,"53":2,"54":2,"55":2,"56":3,"57":5,"64":2,"68":1}}],["2001",{"2":{"51":3,"53":2,"54":2,"55":3,"56":3,"57":5,"64":2,"68":1}}],["2000",{"2":{"21":4}}],["2019",{"2":{"50":2,"87":1}}],["2015",{"2":{"50":2,"51":1,"53":1,"64":1,"68":1,"87":2}}],["20×10×15",{"2":{"35":2}}],["20×10×15×2",{"2":{"29":1,"78":1}}],["20ºn",{"2":{"34":1}}],["2023",{"2":{"84":1,"85":2}}],["2021",{"2":{"31":9,"84":1,"85":2,"86":1}}],["2020",{"2":{"31":5,"33":3,"34":4,"62":1}}],["2024",{"2":{"21":4}}],["2022",{"2":{"10":4,"12":2,"13":2,"14":2,"16":10,"17":6,"18":2,"24":6,"25":2,"31":5,"33":3,"34":4,"86":1}}],["204797",{"2":{"20":1}}],["20",{"2":{"5":7,"7":10,"8":10,"9":10,"16":14,"24":2,"29":4,"34":2,"35":3,"36":1,"48":1,"68":2,"69":2,"78":3}}],["2",{"2":{"2":1,"3":1,"5":3,"7":8,"8":9,"9":10,"11":3,"12":2,"13":1,"14":1,"17":9,"18":1,"20":2,"22":3,"24":1,"27":3,"28":3,"31":1,"36":6,"39":4,"43":1,"44":1,"48":40,"50":3,"51":3,"53":1,"54":4,"55":2,"56":2,"57":5,"58":2,"64":1,"68":2,"69":2,"74":2,"78":5,"87":3,"89":2,"91":1}}],["↓",{"2":{"2":1,"3":1,"7":3,"8":3,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":6,"20":1,"21":3,"22":3,"24":3,"25":1,"27":3,"28":1,"29":1,"31":6,"33":2,"34":8,"35":3,"36":3,"38":1,"39":3,"43":3,"44":1,"46":4,"47":2,"48":3,"50":2,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":2,"69":1,"78":2,"85":2,"87":1}}],["┐",{"2":{"2":1,"3":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":4,"20":1,"21":2,"22":2,"24":2,"27":1,"28":1,"29":1,"31":5,"35":3,"36":3,"43":1,"46":2,"47":1,"50":1,"51":1,"54":2,"55":4,"56":3,"57":5,"69":1,"78":2,"85":1}}],["│",{"2":{"2":2,"3":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":8,"20":2,"21":4,"22":4,"24":4,"27":2,"28":2,"29":2,"31":10,"35":6,"36":6,"43":4,"44":2,"46":6,"47":4,"48":6,"50":2,"51":2,"54":4,"55":6,"56":6,"57":10,"69":2,"78":4,"85":2}}],["728969",{"2":{"78":1}}],["72",{"2":{"58":1}}],["725684",{"2":{"20":1}}],["748748",{"2":{"78":1}}],["74",{"2":{"58":1}}],["769602",{"2":{"78":1}}],["76",{"2":{"58":1}}],["767104",{"2":{"17":1}}],["705127",{"2":{"78":1}}],["705924",{"2":{"78":1}}],["70",{"2":{"56":3,"58":1}}],["77",{"2":{"58":1}}],["77687",{"2":{"48":1}}],["77587",{"2":{"48":1}}],["75",{"2":{"58":1}}],["7593",{"2":{"48":1}}],["75891",{"2":{"48":1}}],["754534",{"2":{"22":1}}],["717",{"2":{"57":5}}],["71",{"2":{"56":1,"58":1}}],["7158",{"2":{"43":1,"44":1}}],["7119",{"2":{"43":1,"44":1}}],["710731",{"2":{"22":1}}],["71429",{"2":{"17":2}}],["730",{"2":{"86":1}}],["739852",{"2":{"78":1}}],["739765",{"2":{"20":1}}],["7341",{"2":{"48":1}}],["73",{"2":{"48":1,"58":1}}],["735997",{"2":{"22":1}}],["732044",{"2":{"21":1}}],["780068",{"2":{"78":1}}],["780538",{"2":{"17":1}}],["78",{"2":{"56":1,"58":1}}],["788899",{"2":{"21":1}}],["792118",{"2":{"78":1}}],["79",{"2":{"51":2,"53":1,"54":2,"55":2,"56":4,"57":5,"58":1,"64":1,"68":1}}],["79502",{"2":{"48":1}}],["790103",{"2":{"22":1}}],["790695",{"2":{"17":1}}],["791286",{"2":{"17":1}}],["7",{"2":{"2":1,"16":10,"17":1,"21":1,"24":1,"28":1,"50":1,"87":1}}],["rotate",{"2":{"91":1}}],["row",{"2":{"63":1,"74":1}}],["rowgap",{"2":{"48":1}}],["right",{"2":{"84":1,"86":1}}],["r",{"2":{"69":1}}],["r1i1p1f1",{"2":{"50":2,"87":3}}],["running",{"2":{"72":1}}],["run",{"2":{"18":1,"72":3}}],["runs",{"2":{"13":1,"75":1}}],["rafaqz",{"2":{"42":1}}],["raw",{"2":{"42":1,"52":1}}],["rasm",{"2":{"42":2}}],["ras",{"2":{"21":3}}],["rasters",{"2":{"21":2}}],["raster",{"0":{"21":1},"2":{"17":11,"21":5}}],["ranges",{"0":{"56":1},"2":{"28":1,"53":1}}],["range",{"2":{"10":2,"16":2,"17":2,"18":2,"24":2,"29":3,"31":1,"75":1,"78":3,"84":1}}],["randn",{"2":{"84":1}}],["random",{"2":{"34":2,"78":1}}],["rand",{"2":{"2":2,"3":2,"5":1,"7":3,"8":3,"9":3,"10":1,"17":1,"18":1,"20":1,"21":1,"22":1,"24":2,"25":1,"27":1,"29":2,"34":3,"36":1,"38":1,"39":3,"68":1,"78":2}}],["relational",{"2":{"60":1}}],["related",{"2":{"42":1}}],["recommend",{"2":{"79":1}}],["recommended",{"2":{"57":1}}],["rechunking",{"2":{"75":1}}],["recalculate",{"2":{"75":1}}],["recal",{"2":{"75":1}}],["recently",{"2":{"0":1}}],["rewrote",{"2":{"50":1,"51":1,"53":1,"64":1,"68":1,"87":1}}],["realization",{"2":{"51":1,"53":1,"64":1,"68":1}}],["realm",{"2":{"50":1,"87":1}}],["readcubedata",{"2":{"34":2,"74":1}}],["read",{"0":{"49":1,"50":1,"51":1,"52":1},"1":{"50":1,"51":1,"52":1},"2":{"4":1,"34":1,"42":1,"49":1,"52":1,"56":1,"74":1}}],["red",{"2":{"48":1,"61":1}}],["reduce",{"2":{"10":1,"14":1}}],["reverse",{"2":{"48":1}}],["reverseordered",{"2":{"3":1,"78":1}}],["resets",{"2":{"74":1,"75":1}}],["respectively",{"2":{"61":1}}],["reshape",{"2":{"31":1,"33":2}}],["result",{"2":{"28":1,"36":1}}],["results",{"0":{"86":1},"2":{"5":1,"8":1,"48":2,"74":1,"75":1}}],["resulting",{"2":{"2":1,"3":1,"14":1,"74":1,"75":1}}],["reference",{"0":{"73":1},"1":{"74":1,"75":1}}],["references",{"2":{"51":1,"53":1,"64":1,"68":1}}],["ref",{"2":{"29":1,"74":1,"75":1}}],["rebuild",{"2":{"27":1,"42":1}}],["repeat",{"2":{"84":1}}],["repl",{"2":{"77":1}}],["replace",{"2":{"18":1,"42":1,"91":1}}],["repository",{"2":{"70":1,"80":1}}],["reports",{"2":{"70":1}}],["reproduces",{"2":{"41":1}}],["represented",{"2":{"74":1,"82":1}}],["represents",{"2":{"61":1}}],["representing",{"2":{"17":2,"75":1}}],["representation",{"2":{"4":1,"74":2,"75":3}}],["re",{"2":{"17":1}}],["returned",{"2":{"74":1}}],["returns",{"2":{"74":5,"75":2}}],["return",{"2":{"17":4,"43":1,"74":1,"75":1,"85":1}}],["registration",{"2":{"75":2}}],["registered",{"2":{"75":1}}],["regions",{"2":{"17":8}}],["region",{"2":{"17":12}}],["regularchunks",{"2":{"5":6,"7":3,"8":3,"9":3}}],["regular",{"2":{"2":1,"3":1,"7":4,"8":4,"9":2,"10":3,"12":3,"13":3,"14":3,"16":9,"17":8,"20":2,"21":6,"22":4,"24":9,"25":3,"27":9,"28":2,"29":3,"31":14,"33":6,"34":4,"35":9,"36":3,"38":1,"39":5,"43":2,"44":2,"48":6,"50":2,"51":4,"53":2,"54":4,"55":2,"56":3,"57":10,"58":2,"64":2,"68":5,"69":2,"78":5,"85":1,"87":1}}],["requests",{"2":{"70":1}}],["requested",{"2":{"13":1}}],["requirements",{"2":{"51":1,"53":1,"64":1,"68":1}}],["required",{"2":{"31":1}}],["requires",{"2":{"16":1}}],["removes",{"2":{"75":1}}],["remove",{"2":{"44":1}}],["removed",{"2":{"15":1,"75":1}}],["remote",{"2":{"0":1}}],["676346",{"2":{"78":1}}],["67614",{"2":{"21":1}}],["677699",{"2":{"78":1}}],["674247",{"2":{"78":1}}],["63006",{"2":{"48":1}}],["63311",{"2":{"17":1}}],["600",{"2":{"84":1,"86":1,"88":1,"89":1,"90":1}}],["60265",{"2":{"50":1,"87":1}}],["60918",{"2":{"48":1}}],["60175",{"2":{"48":1}}],["606095",{"2":{"22":1}}],["64976",{"2":{"48":1}}],["642",{"2":{"42":1}}],["65105",{"2":{"48":1}}],["657579",{"2":{"21":1}}],["624808",{"2":{"78":1}}],["624291",{"2":{"22":1}}],["621823",{"2":{"78":1}}],["626041",{"2":{"17":1}}],["626269",{"2":{"17":1}}],["663747",{"2":{"22":1}}],["69",{"2":{"50":1}}],["69085",{"2":{"48":1}}],["699546",{"2":{"21":1}}],["694639",{"2":{"20":1}}],["616773",{"2":{"78":1}}],["616082",{"2":{"78":1}}],["6122",{"2":{"48":1}}],["61197",{"2":{"48":1}}],["619",{"2":{"43":1,"44":1}}],["614217",{"2":{"21":1}}],["610212",{"2":{"21":1}}],["617262",{"2":{"20":1}}],["6×6×25",{"2":{"21":2}}],["6×2",{"2":{"3":1}}],["68242",{"2":{"22":1}}],["684513",{"2":{"22":1}}],["689958",{"2":{"20":1}}],["683858",{"2":{"20":1}}],["6",{"2":{"2":4,"3":5,"5":6,"7":6,"8":6,"9":6,"16":8,"17":1,"28":1,"31":1,"34":6,"50":1,"87":1}}],["bits",{"2":{"74":2}}],["big",{"2":{"60":1}}],["black",{"2":{"86":1}}],["blocks",{"2":{"74":1}}],["blue",{"2":{"61":1}}],["bonito",{"2":{"91":1}}],["boundaries",{"2":{"75":1}}],["bounds",{"2":{"74":1}}],["bool=true",{"2":{"75":1}}],["bool=false",{"2":{"74":1,"75":1}}],["bool",{"2":{"75":6}}],["boolean",{"2":{"74":3}}],["bold",{"2":{"48":1}}],["build",{"0":{"72":1},"2":{"72":1}}],["bug",{"2":{"70":1}}],["bundle",{"2":{"61":1}}],["but",{"0":{"34":1},"2":{"2":1,"16":2,"27":1,"34":2,"55":1,"56":1,"74":2}}],["bwr",{"2":{"48":1}}],["b`",{"2":{"31":1}}],["brightness",{"2":{"60":1,"61":1}}],["brings",{"2":{"75":1}}],["bring",{"2":{"28":1}}],["brown",{"2":{"86":1}}],["browser",{"2":{"72":1}}],["broad",{"2":{"81":1}}],["broadcasts",{"2":{"75":1}}],["broadcast",{"2":{"43":1,"48":1}}],["broadcasted",{"2":{"16":2,"74":1,"75":1}}],["broken",{"2":{"52":1}}],["branch",{"2":{"50":1,"87":1}}],["b",{"2":{"17":13,"39":2,"57":2}}],["backgroundcolor=",{"2":{"91":1}}],["back",{"2":{"74":1}}],["backendlist",{"2":{"74":1}}],["backend",{"2":{"67":2,"74":8}}],["backend=",{"2":{"5":1,"16":2,"68":1}}],["based",{"0":{"83":1},"2":{"75":1}}],["base",{"0":{"20":1},"2":{"7":4,"8":4,"9":2,"20":4,"24":3,"27":9,"38":1,"39":5,"69":2,"75":1,"78":2}}],["by=",{"2":{"36":2,"74":2}}],["by",{"0":{"7":1,"8":1},"2":{"5":1,"10":2,"14":1,"16":1,"17":1,"23":1,"24":1,"30":1,"31":6,"34":2,"36":1,"41":1,"45":1,"46":1,"47":1,"48":1,"50":1,"60":3,"62":1,"63":1,"67":1,"71":1,"72":1,"74":12,"75":6,"77":1,"85":1}}],["bytes",{"2":{"2":1,"3":1,"14":1,"16":3,"17":1,"20":1,"22":1,"28":1,"31":1,"36":2,"46":1,"55":2,"69":1,"78":1}}],["beware",{"2":{"80":1}}],["best",{"2":{"75":1,"82":1}}],["become",{"2":{"74":1}}],["because",{"2":{"4":1,"13":1,"14":1,"16":1}}],["before",{"2":{"72":1,"74":1}}],["belonging",{"2":{"61":1}}],["belongs",{"2":{"17":1}}],["been",{"2":{"34":1}}],["between",{"2":{"21":1,"22":1,"31":1,"33":1,"34":2,"57":1,"74":1}}],["begin",{"2":{"18":1}}],["be",{"2":{"0":5,"5":1,"6":1,"7":1,"13":1,"15":1,"16":2,"17":1,"19":1,"31":1,"34":1,"35":1,"36":2,"42":1,"50":2,"51":1,"52":1,"58":1,"60":1,"62":2,"67":1,"68":1,"71":1,"74":22,"75":9,"79":1,"80":1,"87":1}}],["1e8",{"2":{"75":1}}],["192",{"2":{"89":1}}],["19241",{"2":{"48":1}}],["1983",{"2":{"46":1}}],["1980",{"2":{"46":1}}],["193654",{"2":{"22":1}}],["195359",{"2":{"21":1}}],["19",{"2":{"16":16,"56":3,"57":5}}],["18583",{"2":{"48":1}}],["18892",{"2":{"48":1}}],["18434",{"2":{"48":1}}],["184032",{"2":{"22":1}}],["180×170",{"2":{"55":1}}],["180×170×24",{"2":{"51":1,"54":2}}],["180",{"2":{"34":2,"57":5,"89":1}}],["180ºe",{"2":{"34":1}}],["18263",{"2":{"22":1}}],["18664",{"2":{"21":1}}],["18635",{"2":{"17":1}}],["18",{"2":{"16":18}}],["145895",{"2":{"78":1}}],["1437",{"2":{"48":1}}],["148975",{"2":{"20":1}}],["14286",{"2":{"17":1}}],["14",{"2":{"16":20,"22":1}}],["13667673386838822",{"2":{"85":1}}],["136428",{"2":{"78":1}}],["136",{"2":{"51":1,"53":1,"64":1,"68":1}}],["1363",{"2":{"43":1,"44":1}}],["13z",{"2":{"50":2,"87":1}}],["1372",{"2":{"43":1,"44":1}}],["139203",{"2":{"21":1}}],["13",{"2":{"16":20,"22":1,"51":1,"53":1,"64":1,"68":1}}],["170",{"2":{"58":1}}],["17990065519662",{"2":{"85":1}}],["179",{"2":{"57":5}}],["17434",{"2":{"48":1}}],["17852",{"2":{"48":1}}],["17863",{"2":{"48":1}}],["17647",{"2":{"48":1}}],["1762",{"2":{"43":1,"44":1}}],["17623",{"2":{"22":1}}],["17t00",{"2":{"46":1}}],["171421",{"2":{"17":1}}],["17",{"2":{"14":1,"16":22,"36":1,"56":1}}],["16910344913300465",{"2":{"85":1}}],["161314",{"2":{"78":1}}],["16t00",{"2":{"51":4,"53":2,"54":4,"55":4,"56":6,"57":10,"64":2,"68":2}}],["16t12",{"2":{"46":1}}],["1644",{"2":{"48":1}}],["16824",{"2":{"48":1}}],["16581",{"2":{"48":1}}],["16631",{"2":{"48":1}}],["16601",{"2":{"21":1}}],["16713",{"2":{"48":1}}],["16258",{"2":{"48":1}}],["16",{"2":{"10":1,"12":1,"13":1,"16":20,"17":1,"24":1,"51":2,"53":1,"54":2,"55":4,"56":3,"57":5,"64":1,"68":1}}],["15363206678270366",{"2":{"85":1}}],["15312158042235022",{"2":{"85":1}}],["1587064471290398",{"2":{"85":1}}],["159",{"2":{"56":1}}],["15644",{"2":{"48":1}}],["15532",{"2":{"48":1}}],["15×10×30",{"2":{"16":1}}],["15×10",{"2":{"16":2}}],["15",{"2":{"10":1,"16":25,"17":6,"18":1,"22":4,"24":1,"25":1,"29":2,"36":1,"78":1}}],["1=5",{"2":{"5":1}}],["10175741892564506",{"2":{"85":1}}],["10760840078216743",{"2":{"85":1}}],["1095",{"2":{"85":1}}],["10989",{"2":{"47":6}}],["105511",{"2":{"78":1}}],["10mb",{"2":{"74":2}}],["1083",{"2":{"48":1}}],["108696",{"2":{"47":6}}],["103704",{"2":{"47":3}}],["100",{"2":{"34":13}}],["1000",{"2":{"0":1,"89":1,"90":1}}],["10×20",{"2":{"69":1}}],["10×20×5",{"2":{"24":1}}],["10×170×24",{"2":{"56":1}}],["10×10×24",{"2":{"56":2}}],["10×10×8",{"2":{"31":1}}],["10×10×12",{"2":{"31":1}}],["10×10×36",{"2":{"31":1}}],["10×10×5",{"2":{"27":1}}],["10×10",{"2":{"28":1,"31":1}}],["10×15×20",{"2":{"35":1}}],["10×15",{"2":{"14":1,"17":2,"36":1,"78":1}}],["10x15",{"2":{"17":1}}],["10",{"2":{"5":14,"7":16,"8":18,"9":17,"10":3,"12":1,"13":1,"14":1,"16":21,"17":15,"18":3,"20":2,"22":4,"24":6,"25":2,"27":8,"28":5,"29":4,"31":16,"33":10,"35":3,"36":2,"38":2,"39":4,"50":1,"51":1,"54":2,"55":3,"56":6,"57":5,"68":2,"69":2,"77":1,"78":3}}],["1100274384149154",{"2":{"85":1}}],["110349",{"2":{"20":1}}],["118989",{"2":{"78":1}}],["1181",{"2":{"48":1}}],["119",{"2":{"55":1}}],["113553",{"2":{"47":3}}],["112319",{"2":{"47":12}}],["112941",{"2":{"21":1}}],["114815",{"2":{"47":6}}],["11",{"2":{"2":1,"5":6,"7":6,"8":6,"9":6,"16":18,"22":1,"43":4,"44":4,"48":4,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":1}}],["128",{"2":{"91":1}}],["122685",{"2":{"78":1}}],["1242",{"2":{"48":1}}],["12575",{"2":{"48":1}}],["1200",{"2":{"88":1,"89":1,"90":1}}],["120165",{"2":{"78":1}}],["120",{"2":{"16":1}}],["12084126735194844",{"2":{"11":1}}],["12",{"2":{"2":4,"16":20,"22":1,"31":10,"33":3,"34":4,"51":2,"53":1,"54":2,"55":2,"56":3,"57":5,"64":1,"68":1,"84":1,"85":2}}],["1",{"2":{"2":5,"3":3,"5":12,"7":19,"8":20,"9":22,"10":8,"11":3,"12":7,"13":5,"14":6,"16":25,"17":34,"18":3,"20":1,"21":7,"22":6,"24":15,"25":4,"27":3,"28":8,"29":8,"31":23,"33":10,"34":14,"35":15,"36":14,"38":1,"39":3,"43":4,"44":2,"46":6,"47":11,"48":55,"50":4,"51":8,"53":4,"54":8,"55":13,"56":18,"57":15,"58":2,"64":4,"68":11,"69":1,"75":1,"78":11,"84":2,"85":5,"86":5,"87":3,"89":4,"90":2,"91":5}}],["yeesian",{"2":{"52":1}}],["years",{"2":{"31":1,"84":1,"85":1}}],["year",{"2":{"2":4,"86":1}}],["yyyy",{"2":{"51":2,"53":2,"64":2,"68":2}}],["ylabel=",{"2":{"84":1,"86":1}}],["ylabel",{"2":{"48":3}}],["yasxa",{"2":{"34":6}}],["yaxcolumn",{"2":{"75":1}}],["yaxconvert",{"2":{"22":2}}],["yaxdefaults",{"2":{"75":1}}],["yaxarraybase",{"2":{"22":1,"74":1,"75":1}}],["yaxarray",{"0":{"11":1,"24":1,"30":1,"31":1,"54":1,"60":1},"1":{"31":1,"32":1,"33":1,"34":1},"2":{"1":1,"2":3,"3":3,"5":1,"7":4,"8":4,"9":4,"10":2,"12":1,"13":1,"14":2,"16":8,"17":3,"18":1,"20":4,"21":3,"22":5,"24":5,"25":2,"27":3,"28":1,"29":3,"30":1,"31":15,"33":4,"34":6,"35":3,"36":4,"38":2,"39":4,"42":2,"43":7,"44":1,"46":9,"47":1,"48":3,"50":2,"51":2,"53":2,"54":2,"55":3,"56":3,"57":5,"60":1,"62":1,"64":1,"65":1,"66":1,"68":2,"69":3,"74":10,"75":3,"78":5,"82":1,"85":2,"87":1}}],["yaxarrays",{"0":{"0":1,"1":1,"4":1,"5":1,"10":1,"16":1,"19":1,"23":1,"37":1,"40":1,"49":1,"53":1,"64":1,"70":1,"81":1,"82":1},"1":{"2":1,"3":1,"5":1,"6":1,"7":1,"8":1,"9":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"20":1,"21":1,"22":1,"24":1,"25":1,"38":1,"39":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"50":1,"51":1,"52":1,"54":1,"55":1,"56":1,"57":1,"58":1,"65":1,"66":1,"67":1,"68":1,"69":1,"71":1,"72":1},"2":{"0":3,"2":1,"3":1,"5":1,"7":1,"8":1,"9":1,"10":2,"16":4,"17":1,"18":2,"19":2,"20":1,"24":1,"27":1,"29":1,"30":1,"31":1,"32":1,"33":2,"34":4,"38":1,"39":1,"40":1,"49":1,"50":1,"51":1,"52":2,"53":1,"59":1,"61":1,"64":1,"67":1,"69":1,"70":1,"72":1,"74":27,"75":28,"77":3,"78":3,"79":2,"80":1,"81":1,"85":1,"87":1}}],["yax",{"2":{"0":1}}],["y",{"2":{"7":2,"8":3,"9":2,"21":4,"22":3,"31":4,"35":4,"43":2,"44":1,"48":3,"60":1,"78":5}}],["you",{"2":{"4":1,"18":1,"30":1,"34":3,"71":1,"72":2,"74":1,"75":2,"77":2,"79":1,"80":3,"82":2}}],["yourself",{"2":{"72":1}}],["your",{"2":{"4":2,"34":2,"67":2,"71":4,"72":4,"74":1}}],["hold",{"2":{"74":1}}],["holds",{"2":{"74":1,"75":1}}],["however",{"2":{"19":1,"31":1}}],["how",{"0":{"29":1,"30":1,"35":1,"36":1,"37":1},"1":{"31":1,"32":1,"33":1,"34":1,"38":1,"39":1},"2":{"1":1,"9":1,"10":1,"19":1,"23":1,"26":1,"36":1,"49":1,"74":1,"80":1,"82":1}}],["http",{"2":{"72":1}}],["https",{"2":{"42":2,"51":1,"52":1,"53":1,"61":1,"64":1}}],["html",{"2":{"61":1}}],["hr",{"2":{"50":1,"87":2}}],["history",{"2":{"50":2,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":1,"87":1}}],["hidedecorations",{"2":{"48":1}}],["highclip",{"2":{"48":4}}],["hm",{"2":{"48":8}}],["help",{"2":{"74":1,"75":2}}],["height",{"2":{"50":2,"87":1}}],["heatmap",{"0":{"88":1},"2":{"36":1,"48":3,"88":1}}],["hence",{"2":{"4":1}}],["hereby",{"2":{"17":1}}],["here",{"2":{"2":1,"3":1,"13":1,"16":2,"17":1,"30":1,"36":1,"56":1,"69":1,"71":2}}],["happens",{"2":{"75":1}}],["had",{"2":{"74":1,"75":1}}],["hamman",{"2":{"41":1,"48":1}}],["handled",{"2":{"75":1}}],["handle",{"2":{"60":1,"75":1}}],["handling",{"2":{"3":1,"74":1}}],["handy",{"2":{"36":1}}],["having",{"2":{"4":1,"17":1}}],["have",{"2":{"3":1,"9":1,"17":1,"24":1,"32":1,"34":2,"62":1,"74":3}}],["has",{"2":{"2":1,"3":1,"17":1,"21":1,"22":1,"34":1,"41":1,"44":1,"75":1}}],["half",{"2":{"2":5}}],["garbage",{"2":{"75":1}}],["gc",{"2":{"75":2}}],["gt",{"2":{"72":1,"74":1,"75":3}}],["gdalworkshop",{"2":{"52":1}}],["gdal",{"0":{"52":1},"2":{"52":1}}],["gb",{"2":{"50":1}}],["gn",{"2":{"50":1,"87":2}}],["gs",{"2":{"50":1,"87":2}}],["ggplot2",{"2":{"48":1}}],["github",{"2":{"42":2,"52":1,"70":1}}],["gives",{"2":{"17":1}}],["given",{"2":{"5":1,"17":2,"60":1,"62":1,"67":1,"74":6,"75":3,"78":1}}],["going",{"2":{"75":1}}],["go",{"2":{"72":2}}],["good",{"2":{"48":1}}],["goal",{"2":{"41":1}}],["goes",{"2":{"16":1,"74":1,"75":1}}],["globalproperties=dict",{"2":{"75":1}}],["global",{"2":{"74":1,"75":1}}],["glmakie",{"2":{"36":2,"87":2}}],["glue",{"2":{"2":1}}],["gradient",{"2":{"88":1,"89":1,"90":1,"91":1}}],["gradually",{"2":{"69":1}}],["grey25",{"2":{"91":1}}],["grey15",{"2":{"36":1,"48":1}}],["green",{"2":{"61":1}}],["grouped",{"2":{"74":1}}],["groups",{"2":{"47":1}}],["groupby",{"0":{"43":1,"46":1},"1":{"44":1,"45":1,"47":1,"48":1},"2":{"40":1,"42":1,"43":6,"44":1,"45":1,"46":3,"47":3,"48":3,"74":1,"85":1}}],["group",{"0":{"40":1},"1":{"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1},"2":{"43":1,"45":1,"46":2,"61":1,"74":3}}],["grouping",{"2":{"36":2,"45":2}}],["grid=false",{"2":{"48":1}}],["grid",{"2":{"18":1,"60":1,"74":1}}],["gridchunks",{"2":{"5":3,"7":1,"8":1,"9":1,"74":1,"75":1}}],["guide",{"2":{"10":2,"12":1,"13":1,"18":1,"24":3,"25":1}}],["gen",{"2":{"16":6}}],["general",{"0":{"81":1},"2":{"74":1}}],["generated",{"2":{"51":1,"53":1,"64":1,"68":1,"75":1}}],["generate",{"2":{"16":2,"31":1,"33":1,"34":1,"72":1,"74":1}}],["generic",{"2":{"16":2,"24":1}}],["getting",{"0":{"76":1},"1":{"77":1,"78":1,"79":1}}],["getarrayinfo",{"2":{"75":1}}],["getaxis",{"2":{"28":1,"36":2,"74":1}}],["getloopchunks",{"2":{"75":1}}],["getloopcachesize",{"2":{"75":1}}],["getouttype",{"2":{"75":1}}],["getoutaxis",{"2":{"75":1}}],["getfrontperm",{"2":{"75":1}}],["gets",{"2":{"74":1,"75":1}}],["get",{"0":{"58":1},"2":{"10":1,"27":1,"42":1,"46":1,"54":1,"56":1,"58":1,"75":3,"78":1,"85":1,"87":1}}],["geoaxis",{"2":{"89":1,"90":1}}],["geometrybasics",{"2":{"87":1}}],["geomakie",{"2":{"87":1,"89":2,"90":1}}],["geojson",{"0":{"52":1}}],["geotiff",{"0":{"52":1}}],["geo",{"2":{"4":1}}],["g",{"2":{"1":1,"10":1,"11":1,"13":1,"16":4,"18":1,"24":1,"43":26,"44":2,"45":2,"46":2,"47":1,"48":18,"58":1,"60":1,"63":1,"74":5,"87":2}}],["circshift",{"2":{"89":1}}],["ct1",{"2":{"87":4,"88":1}}],["cycle",{"0":{"84":1,"86":1},"1":{"85":1,"86":1},"2":{"85":4}}],["cycle=12",{"2":{"43":2,"44":1,"46":2,"47":2,"48":3}}],["cdata",{"2":{"75":1}}],["center",{"2":{"74":1,"84":1,"86":1}}],["certain",{"2":{"53":2,"75":1}}],["cell",{"2":{"50":2,"51":1,"54":2,"55":3,"56":3,"57":5,"74":1}}],["cf",{"2":{"50":2,"51":2,"53":2,"64":2,"68":2,"87":2}}],["cftime",{"2":{"43":4,"46":7,"47":5,"48":5,"51":6,"53":3,"54":6,"55":7,"56":9,"57":15,"64":3,"68":3}}],["cmpcachmisses",{"2":{"75":1}}],["cm4",{"2":{"51":4,"53":4,"64":4,"68":4}}],["cmip",{"2":{"50":1,"87":1}}],["cmip6",{"2":{"50":3,"87":6}}],["cmor",{"2":{"50":2,"51":3,"53":2,"54":2,"55":3,"56":3,"57":5,"64":2,"68":2,"87":1}}],["c54",{"2":{"48":1}}],["cb",{"2":{"48":1}}],["cbar",{"2":{"36":1}}],["cgrad",{"2":{"36":1}}],["cl",{"2":{"89":1,"90":1}}],["cl=lines",{"2":{"89":1,"90":1}}],["clean",{"2":{"75":1}}],["cleanme",{"2":{"75":4}}],["cleaner",{"2":{"74":2}}],["closedinterval",{"2":{"57":1}}],["closed",{"0":{"57":1},"2":{"57":3}}],["cloud",{"2":{"11":1,"50":1}}],["climate",{"2":{"51":1,"53":1,"64":1,"68":1}}],["classes=classes",{"2":{"36":1}}],["classes",{"2":{"36":8}}],["classification",{"2":{"36":2}}],["class",{"2":{"36":3}}],["clustermanagers",{"2":{"18":2}}],["cluster",{"2":{"18":1}}],["cpus",{"2":{"18":1}}],["cpu",{"2":{"18":1}}],["c",{"2":{"17":11,"27":3,"28":3,"36":2,"39":2,"61":1,"74":3,"75":3,"85":4,"87":2}}],["custom",{"2":{"24":1,"74":1}}],["current",{"2":{"17":2,"61":1,"74":1,"86":1}}],["currently",{"2":{"16":1,"42":1,"80":1}}],["cubeaxis",{"2":{"75":1}}],["cubeaxes",{"2":{"74":1}}],["cubedir",{"2":{"75":1}}],["cube2",{"2":{"74":1}}],["cube1",{"2":{"74":1}}],["cubelist",{"2":{"74":1}}],["cubefittable",{"2":{"36":2,"74":1}}],["cubetable",{"0":{"36":1},"2":{"36":3,"74":3}}],["cube",{"0":{"27":1,"28":1,"30":1,"62":1,"85":1},"1":{"31":1,"32":1,"33":1,"34":1},"2":{"5":1,"7":1,"8":1,"9":1,"16":11,"28":1,"30":2,"34":1,"35":1,"36":2,"42":1,"62":3,"74":34,"75":19,"82":1}}],["cubes",{"0":{"29":1},"2":{"3":2,"29":2,"34":1,"35":2,"36":1,"54":1,"62":1,"74":18,"75":9}}],["chose",{"2":{"61":1}}],["child",{"2":{"50":1,"87":1}}],["check",{"2":{"16":1,"69":1,"79":1}}],["changed",{"2":{"79":1,"80":1}}],["change",{"2":{"10":1,"74":1,"75":1}}],["chunkoffset",{"2":{"75":1}}],["chunksize`",{"2":{"75":1}}],["chunksizes",{"2":{"74":2}}],["chunksize",{"2":{"74":1,"75":3}}],["chunks",{"0":{"7":1},"2":{"5":5,"7":1,"8":1,"9":2,"74":4,"75":11}}],["chunked",{"2":{"5":5}}],["chunking",{"0":{"5":1,"6":1,"8":1,"9":1},"1":{"7":1,"8":1,"9":1},"2":{"4":1,"8":1,"74":4,"75":3}}],["chunk",{"0":{"4":1},"1":{"5":1,"6":1,"7":1,"8":1,"9":1},"2":{"4":1,"5":1,"7":1,"8":1,"74":4,"75":4}}],["criteria",{"2":{"36":1}}],["creating",{"0":{"17":1},"2":{"10":1,"31":1,"71":1}}],["createdataset",{"2":{"75":2}}],["created",{"2":{"75":2}}],["creates",{"2":{"36":1,"74":2,"75":1}}],["create",{"0":{"23":1,"24":1,"25":1},"1":{"24":1,"25":1},"2":{"10":1,"16":1,"17":2,"23":1,"24":1,"29":1,"31":2,"36":1,"42":1,"46":1,"64":1,"67":1,"69":3,"74":1,"75":1,"78":1,"84":1}}],["crucial",{"2":{"4":1}}],["coastlines",{"2":{"89":3,"90":1}}],["cosd",{"2":{"74":1}}],["country",{"2":{"74":4}}],["country=cube2",{"2":{"74":1}}],["copies",{"2":{"75":1}}],["copied",{"2":{"69":1}}],["copybuf",{"2":{"75":2}}],["copydata",{"2":{"75":1}}],["copy",{"2":{"27":1,"72":1,"74":1}}],["coordinates",{"2":{"50":1}}],["college",{"2":{"80":1}}],["collected",{"2":{"75":1}}],["collectfromhandle",{"2":{"75":1}}],["collection",{"2":{"26":1,"60":1}}],["collect",{"2":{"20":1,"28":3,"85":1}}],["colonperm",{"2":{"75":1}}],["color=",{"2":{"86":3}}],["color",{"2":{"84":1,"89":1,"90":1,"91":1}}],["colormap=",{"2":{"48":1}}],["colormap=makie",{"2":{"36":1}}],["colormap",{"2":{"48":3,"88":1,"89":1,"90":1,"91":1}}],["colorrange=",{"2":{"48":1}}],["colorrange",{"2":{"48":3}}],["colorbar",{"2":{"36":1,"48":2}}],["column",{"2":{"63":1,"75":1}}],["colgap",{"2":{"48":1}}],["code",{"2":{"9":1,"13":1,"18":2,"26":1}}],["combining",{"0":{"83":1}}],["combined",{"2":{"3":2,"62":2}}],["combine",{"0":{"1":1},"1":{"2":1,"3":1},"2":{"1":1,"2":1,"3":1,"82":1}}],["comment",{"2":{"50":1}}],["common",{"2":{"34":5,"74":1}}],["com",{"2":{"42":2,"52":1}}],["compiler",{"2":{"79":1}}],["compares",{"2":{"75":1}}],["compatible",{"2":{"52":1}}],["compuation",{"2":{"74":1}}],["computing",{"2":{"36":1}}],["computations",{"2":{"13":1,"35":1}}],["computation",{"0":{"18":1},"2":{"13":1,"60":1,"74":3,"75":3}}],["computed",{"2":{"75":1}}],["compute",{"0":{"10":1},"1":{"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1},"2":{"85":1}}],["comply",{"2":{"51":1,"53":1,"64":1,"68":1}}],["complexity",{"2":{"35":1}}],["complex",{"2":{"10":2,"78":1}}],["comes",{"2":{"4":1}}],["configuration",{"2":{"75":2}}],["concatenating",{"2":{"74":1}}],["concatenates",{"2":{"74":1}}],["concatenate",{"0":{"29":1},"2":{"29":2}}],["concatenatecubes",{"0":{"3":1},"2":{"3":2,"29":2,"74":2}}],["concrete",{"2":{"74":2}}],["constant",{"2":{"75":1}}],["construct",{"2":{"74":2}}],["constructor",{"2":{"74":1}}],["constructs",{"2":{"74":1}}],["consolidated=true",{"2":{"50":1,"87":1}}],["consistent",{"2":{"50":1,"87":1}}],["consisting",{"2":{"2":1}}],["considering",{"2":{"41":1}}],["considered",{"2":{"36":1}}],["contrast",{"2":{"74":1}}],["contributing",{"2":{"71":1}}],["contribute",{"0":{"70":1,"71":1},"1":{"71":1,"72":2}}],["content",{"2":{"74":1}}],["contact",{"2":{"51":1,"53":1,"64":1,"68":1}}],["contains",{"2":{"57":1,"74":1,"75":1}}],["contain",{"2":{"50":1,"51":1,"75":1}}],["containing",{"2":{"2":1,"36":1,"61":1,"62":1,"74":1}}],["continue",{"2":{"43":1}}],["convinient",{"2":{"26":1}}],["conventions",{"2":{"51":1,"53":1,"64":1,"68":1}}],["convenient",{"2":{"18":1}}],["conversion",{"2":{"19":1,"21":1,"22":1}}],["conversions",{"2":{"19":1}}],["converted",{"2":{"62":1}}],["convert",{"0":{"19":1,"20":1,"21":1,"22":1},"1":{"20":1,"21":1,"22":1},"2":{"19":1,"20":2,"22":2,"74":1,"75":1}}],["corresponding",{"2":{"1":1,"17":2,"62":1,"74":1}}],["captialisation",{"2":{"75":1}}],["cameracontrols",{"2":{"91":1}}],["came",{"2":{"62":1}}],["cairomakie",{"2":{"48":1,"84":2}}],["caxes",{"2":{"27":2,"74":2}}],["car",{"2":{"17":1}}],["cartesianindex",{"2":{"17":11}}],["caluclate",{"2":{"74":1}}],["calculations",{"2":{"48":1,"75":1}}],["calculating",{"2":{"14":1,"74":1}}],["calculates",{"2":{"74":1}}],["calculated",{"2":{"36":2,"43":1}}],["calculate",{"2":{"14":1,"17":1,"36":2,"40":1,"41":2,"43":1,"48":1,"75":2,"85":1}}],["calling",{"2":{"48":1}}],["called",{"2":{"16":1,"60":3,"75":1}}],["call",{"2":{"4":1,"18":1}}],["case",{"2":{"13":1,"34":1,"45":1,"50":1}}],["cases",{"2":{"0":1,"57":1,"80":1}}],["cataxis",{"2":{"74":2}}],["categoricalaxis",{"2":{"74":1}}],["categorical",{"2":{"3":1,"17":1,"29":1,"36":1,"43":2,"44":1,"45":1,"46":2,"47":2,"48":3,"74":1,"75":1,"78":1}}],["cat",{"0":{"2":1},"2":{"2":2}}],["cache=1gb```",{"2":{"74":1}}],["cache=1e9",{"2":{"16":2}}],["cache=",{"2":{"74":1}}],["cache=5",{"2":{"74":1}}],["cache=yaxdefaults",{"2":{"74":1}}],["caches",{"2":{"0":1}}],["cachesize",{"2":{"0":2,"75":1}}],["cache",{"2":{"0":6,"67":1,"74":4,"75":7}}],["caching",{"0":{"0":1}}],["can",{"2":{"0":5,"5":1,"6":1,"13":2,"14":1,"16":3,"17":1,"18":3,"24":2,"29":1,"30":1,"32":1,"34":1,"35":1,"36":2,"44":1,"48":1,"50":2,"51":1,"52":1,"58":1,"60":3,"61":2,"62":1,"68":1,"71":1,"74":11,"75":6,"77":2,"80":2}}],["msc",{"2":{"85":3,"86":2}}],["mscarray",{"2":{"85":2}}],["md",{"2":{"71":2}}],["mdash",{"2":{"67":1,"74":24,"75":24}}],["mm",{"2":{"51":2,"53":2,"64":2,"68":2}}],["mpi",{"2":{"50":1,"87":2}}],["m",{"2":{"20":2}}],["miss",{"2":{"75":1}}],["missing",{"2":{"14":2,"16":6,"17":2,"35":1,"36":2,"51":2,"54":4,"55":6,"56":6,"57":10,"69":3,"74":2,"75":2,"91":1}}],["minimized",{"2":{"75":1}}],["minutes",{"2":{"51":1,"54":2,"55":3,"56":3,"57":5}}],["might",{"2":{"19":1,"80":1}}],["mymean",{"2":{"18":4}}],["my",{"2":{"16":2}}],["manager",{"2":{"77":1}}],["many",{"2":{"60":1,"75":1}}],["mahecha",{"2":{"62":1}}],["mar",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["master",{"2":{"42":1}}],["mask",{"2":{"36":2}}],["makie",{"2":{"48":1,"91":1}}],["making",{"2":{"11":1,"53":1}}],["make",{"2":{"33":1,"34":2,"69":1,"72":1,"74":1,"75":2,"91":1}}],["main",{"2":{"30":1,"75":1}}],["machine",{"2":{"18":1,"60":1}}],["matching",{"2":{"78":1}}],["match",{"2":{"75":2}}],["matched",{"2":{"74":1}}],["mat",{"2":{"17":4}}],["matrix",{"2":{"16":2,"17":1,"20":1,"44":1,"48":2,"60":1,"85":1}}],["maximal",{"2":{"75":1}}],["maximum",{"2":{"35":1,"74":1,"75":1}}],["maxbuf",{"2":{"75":1}}],["max",{"2":{"16":2,"67":1,"74":7,"75":2}}],["maxsize",{"2":{"0":2}}],["may",{"2":{"10":1,"15":1,"43":4,"44":2,"45":1,"46":4,"47":4,"48":6,"50":1,"51":1,"79":1}}],["maps",{"0":{"87":1},"1":{"88":1}}],["mapslice",{"2":{"18":1}}],["mapslices",{"0":{"14":1},"2":{"10":1,"13":1,"14":1,"18":1,"35":1,"85":1}}],["mapped",{"2":{"74":1}}],["mapping",{"2":{"74":1,"75":3}}],["mapcube",{"0":{"15":1},"1":{"16":1,"17":1},"2":{"10":1,"13":1,"15":1,"16":4,"17":2,"18":3,"74":5,"75":2}}],["map",{"0":{"13":1,"35":1},"2":{"10":1,"13":2,"17":3,"18":3,"35":4,"36":1,"43":2,"47":1,"48":1,"74":2,"78":1,"85":2}}],["mesh",{"2":{"91":2}}],["merely",{"2":{"69":1}}],["measured",{"2":{"61":1,"62":1}}],["measure",{"2":{"60":1}}],["measures",{"2":{"50":1}}],["means",{"0":{"41":1},"2":{"14":1,"74":1}}],["mean",{"0":{"84":1,"86":1},"1":{"85":1,"86":1},"2":{"10":1,"14":3,"18":4,"36":4,"43":10,"44":2,"45":1,"48":2,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5,"74":1,"85":5}}],["members",{"2":{"75":1}}],["member",{"2":{"9":1}}],["memory",{"2":{"4":1,"17":1,"19":3,"34":4,"42":1,"60":1,"69":1,"74":2,"75":1}}],["meter",{"2":{"50":1}}],["method",{"2":{"16":2,"74":17,"75":18}}],["methods",{"2":{"1":1,"18":1,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5}}],["metadata",{"2":{"2":1,"3":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":3,"19":1,"20":1,"21":2,"22":3,"24":2,"27":1,"28":1,"29":1,"31":5,"35":3,"36":3,"43":2,"44":1,"46":3,"47":2,"48":3,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5,"69":2,"74":1,"78":3,"85":1}}],["moll",{"0":{"90":1}}],["mowingwindow",{"2":{"74":1}}],["movingwindow",{"2":{"74":4}}],["module",{"2":{"74":2}}],["model",{"2":{"51":1,"53":1,"61":2,"64":1,"68":1}}],["modification",{"2":{"11":1,"18":1}}],["modify",{"0":{"11":1}}],["monthday",{"2":{"85":4}}],["monthly",{"0":{"41":1}}],["month",{"2":{"31":7,"33":3,"34":4,"41":1,"43":4,"44":1,"45":1,"46":5,"47":2,"48":3,"74":1,"85":2}}],["moment",{"2":{"22":1}}],["most",{"2":{"4":1,"15":1,"19":1}}],["more",{"2":{"3":1,"10":1,"30":1,"35":1,"36":1,"56":1,"57":1,"62":1,"67":1,"74":3,"75":1,"78":1}}],["multiplying",{"2":{"35":1}}],["multiply",{"2":{"10":1,"35":1}}],["multiple",{"0":{"39":1,"83":1},"2":{"1":1,"18":1,"50":1,"51":1,"60":1,"74":1}}],["must",{"2":{"0":1,"62":1,"74":1,"75":1}}],["mb",{"2":{"0":1,"51":1,"54":2}}],["pkg",{"2":{"77":2}}],["pkg>",{"2":{"72":1}}],["purple",{"2":{"84":1}}],["purpose",{"2":{"26":1,"35":1}}],["public",{"0":{"74":1}}],["published",{"2":{"48":1}}],["pull",{"2":{"70":1}}],["plt",{"2":{"88":1}}],["place",{"2":{"75":1}}],["plots",{"2":{"91":1}}],["plot",{"0":{"86":1,"88":1,"91":1},"2":{"48":2}}],["plotting",{"0":{"87":1},"1":{"88":1},"2":{"0":1}}],["plus",{"2":{"42":1,"74":1}}],["pydata",{"2":{"42":1}}],["p",{"2":{"34":10,"51":1,"53":1,"64":1,"68":1}}],["picture",{"2":{"60":1,"61":1}}],["pieces",{"2":{"26":1}}],["pixel",{"0":{"84":1},"1":{"85":1,"86":1},"2":{"18":2}}],["post=getpostfunction",{"2":{"74":1}}],["positions",{"2":{"75":2}}],["position",{"2":{"60":1}}],["positional",{"2":{"55":1,"56":1}}],["possible",{"2":{"18":2,"19":1,"29":1,"69":1,"74":3,"75":1}}],["pos",{"2":{"17":2}}],["point3f",{"2":{"91":1}}],["point",{"2":{"17":3,"50":1,"78":1}}],["points",{"2":{"2":1,"3":1,"7":4,"8":4,"9":2,"10":3,"12":3,"13":3,"14":4,"16":9,"17":16,"18":1,"20":2,"21":6,"22":4,"24":9,"25":3,"27":9,"28":2,"29":3,"31":14,"33":6,"34":21,"35":9,"36":5,"38":1,"39":5,"43":3,"44":2,"46":2,"47":1,"48":7,"50":6,"51":6,"53":3,"54":6,"55":4,"56":9,"57":16,"58":2,"60":2,"61":1,"64":3,"68":6,"69":2,"78":5,"85":1,"87":3}}],["page",{"2":{"91":1}}],["pair",{"2":{"75":1}}],["pass",{"2":{"74":1}}],["passing",{"2":{"74":3}}],["passed",{"2":{"74":4}}],["paste",{"2":{"72":1}}],["partitioned",{"2":{"75":1}}],["participate",{"2":{"74":1}}],["particular",{"2":{"63":1}}],["parts",{"2":{"74":1}}],["parent",{"2":{"50":1,"87":1}}],["parallelized",{"2":{"75":1}}],["parallelisation",{"2":{"74":1}}],["parallel",{"2":{"18":1,"60":1}}],["package",{"2":{"18":1,"56":1,"58":1,"73":1,"77":1}}],["packages",{"2":{"16":1,"19":1}}],["paths",{"2":{"75":2}}],["path=",{"2":{"16":2,"50":1,"65":1,"66":1,"67":1,"68":1,"75":1}}],["path=f",{"2":{"7":1,"8":1,"9":1}}],["path",{"2":{"0":1,"42":2,"50":3,"51":2,"52":2,"53":2,"64":2,"67":3,"72":1,"74":4}}],["pr",{"2":{"72":1}}],["projection",{"0":{"89":1,"90":1},"1":{"90":1,"91":1}}],["props",{"2":{"78":2}}],["properly",{"2":{"41":1}}],["properties=dict",{"2":{"75":1}}],["properties",{"2":{"10":2,"18":2,"24":3,"25":3,"42":1,"48":1,"50":1,"51":1,"53":1,"64":1,"68":1,"74":5,"75":1,"87":1}}],["probably",{"2":{"75":1}}],["provide",{"2":{"74":1}}],["provides",{"2":{"60":1,"81":1}}],["provided",{"2":{"30":1,"74":1}}],["process",{"2":{"60":1,"75":2}}],["processed",{"2":{"13":1}}],["progressmeter",{"2":{"74":1}}],["progress",{"2":{"42":1,"80":1,"82":1}}],["product",{"2":{"17":1}}],["prior",{"2":{"4":1}}],["pressing",{"2":{"77":1}}],["pre",{"2":{"74":2}}],["previous",{"2":{"48":1,"67":1,"74":1}}],["previously",{"2":{"36":1}}],["prepared",{"2":{"51":1,"53":1,"64":1,"68":1}}],["prep",{"2":{"3":2}}],["precipitation",{"2":{"3":2,"61":1,"62":1,"78":2}}],["permute",{"2":{"75":1}}],["permuteloopaxes",{"2":{"75":1}}],["permutation",{"2":{"75":1}}],["persistend",{"2":{"75":1}}],["persistency",{"2":{"75":1}}],["persistent",{"2":{"74":1,"75":2}}],["persist",{"2":{"67":1,"74":1,"75":1}}],["perform",{"2":{"75":1}}],["performed",{"2":{"13":2}}],["performing",{"2":{"10":1}}],["per",{"2":{"1":1,"14":1,"43":1,"46":1,"47":1}}],["=interval",{"2":{"57":2}}],["==",{"2":{"12":1,"85":1}}],["=>nan",{"2":{"91":1}}],["=>",{"2":{"10":2,"12":1,"13":1,"16":2,"17":5,"18":1,"24":3,"25":3,"38":1,"39":1,"42":1,"43":5,"44":1,"46":3,"47":2,"48":3,"50":20,"51":20,"53":10,"54":20,"55":30,"56":30,"57":50,"64":10,"68":10,"78":6,"87":10}}],["=>2",{"2":{"7":1}}],["=>10",{"2":{"7":1}}],["=>5",{"2":{"7":1,"8":1}}],["=",{"2":{"0":5,"2":5,"3":5,"5":4,"7":9,"8":15,"9":9,"10":4,"11":1,"12":1,"13":1,"16":12,"17":16,"18":5,"20":3,"21":8,"22":4,"24":5,"25":4,"27":1,"29":6,"31":7,"33":6,"34":17,"36":7,"38":1,"39":3,"42":8,"43":16,"44":1,"45":1,"46":4,"47":1,"48":22,"50":2,"51":2,"52":2,"53":2,"54":2,"55":6,"56":6,"57":3,"64":2,"67":8,"68":2,"69":2,"74":11,"75":7,"78":5,"84":10,"85":11,"86":5,"87":8,"88":5,"89":7,"90":5,"91":6}}],["dc",{"2":{"75":2}}],["dkrz",{"2":{"50":1,"87":2}}],["drivers",{"2":{"74":1}}],["driver",{"2":{"67":2,"74":6}}],["driver=",{"2":{"7":1,"8":1,"9":1,"65":2,"66":2,"67":3,"68":1,"69":1,"74":3}}],["drop",{"2":{"48":1}}],["dropdims",{"0":{"44":1},"2":{"43":2,"44":2,"48":1}}],["dufresne",{"2":{"51":1,"53":1,"64":1,"68":1}}],["due",{"2":{"45":1}}],["dummy",{"2":{"29":1,"31":1,"84":1,"85":1}}],["during",{"2":{"17":1,"18":1,"19":1}}],["dd",{"2":{"27":1,"85":1}}],["d",{"2":{"17":5,"48":3,"85":1}}],["dash",{"2":{"86":1}}],["danger",{"2":{"67":1}}],["daysinmonth",{"2":{"43":1,"46":1}}],["days",{"2":{"41":1,"43":2,"45":1,"46":2,"47":2}}],["dayofyear",{"2":{"16":1}}],["day",{"2":{"10":2,"12":1,"13":1,"14":1,"16":5,"17":3,"18":1,"24":3,"25":1,"84":1,"85":4,"86":1}}],["datconfig",{"2":{"75":2}}],["datset",{"2":{"74":1}}],["dat",{"2":{"74":8,"75":16}}],["datetime360day",{"2":{"51":6,"53":3,"54":6,"55":7,"56":9,"57":15,"64":3,"68":3}}],["datetime",{"2":{"50":2,"87":1}}],["datetimenoleap",{"2":{"43":4,"46":7,"47":5,"48":5}}],["date",{"2":{"10":5,"12":3,"13":3,"14":3,"16":14,"17":11,"18":3,"24":8,"25":3,"31":24,"33":8,"34":11,"60":1,"84":2,"85":5,"87":1}}],["datesid",{"2":{"85":2}}],["dates",{"2":{"10":2,"12":1,"13":1,"14":1,"16":6,"17":3,"18":1,"24":3,"25":1,"31":8,"33":4,"34":5,"40":1,"62":1,"84":1,"85":2,"87":1}}],["data=cube1",{"2":{"74":1}}],["databases",{"2":{"60":1}}],["dataframe",{"2":{"36":1,"74":1}}],["dataframes",{"2":{"36":1}}],["datacubes",{"2":{"74":1}}],["datacube",{"0":{"83":1},"2":{"36":2,"69":1,"74":1}}],["datatypes",{"2":{"30":1}}],["data1",{"2":{"29":2}}],["data3",{"2":{"25":1}}],["data2",{"2":{"24":2,"29":2}}],["datasetaxis",{"2":{"74":2,"75":1}}],["datasetaxis=",{"2":{"74":1,"75":1}}],["dataset",{"0":{"25":1,"30":1,"32":1,"33":1,"34":1,"37":1,"61":1,"67":1,"68":1},"1":{"31":1,"32":1,"33":2,"34":2,"38":1,"39":1},"2":{"0":3,"3":1,"6":1,"7":4,"8":2,"9":3,"10":1,"19":1,"25":2,"32":1,"33":3,"34":5,"38":2,"39":2,"50":3,"51":3,"52":2,"53":3,"54":1,"61":3,"62":2,"64":3,"65":1,"66":1,"67":3,"68":4,"74":18,"75":9,"87":2}}],["datasets",{"0":{"6":1,"23":1,"40":1,"49":1,"53":1,"64":1},"1":{"7":1,"8":1,"9":1,"24":1,"25":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"50":1,"51":1,"52":1,"54":1,"55":1,"56":1,"57":1,"58":1,"65":1,"66":1,"67":1,"68":1,"69":1},"2":{"0":2,"19":1,"23":1,"34":1,"49":1,"67":1,"74":8,"75":4,"82":1}}],["data",{"0":{"28":1,"42":1,"62":1},"2":{"0":3,"1":1,"2":1,"4":2,"10":2,"11":1,"16":4,"17":2,"18":2,"20":1,"21":1,"28":1,"31":1,"33":1,"34":2,"36":2,"42":8,"50":2,"51":4,"53":3,"54":2,"55":3,"56":3,"57":5,"59":1,"60":3,"61":2,"62":3,"64":3,"67":2,"68":3,"69":3,"74":20,"75":12,"78":4,"79":1,"82":4,"84":2,"85":1,"87":5,"89":1}}],["detect",{"2":{"74":1,"75":1}}],["determined",{"2":{"75":1}}],["determines",{"2":{"74":1}}],["determine",{"2":{"4":1,"74":1}}],["defaultfillval",{"2":{"75":1}}],["default",{"2":{"74":1,"75":4}}],["defaults",{"2":{"74":7}}],["definition",{"2":{"62":1}}],["defining",{"2":{"18":1}}],["defines",{"2":{"74":1}}],["defined",{"2":{"21":1,"22":1,"36":1,"48":1,"58":1,"60":1,"63":1,"78":1}}],["define",{"0":{"85":1},"2":{"16":2,"31":1,"36":1,"48":1,"74":2,"84":1}}],["dev",{"2":{"72":1}}],["dependencies",{"2":{"72":1}}],["deletes",{"2":{"67":1,"74":1}}],["delete",{"2":{"67":2}}],["denoting",{"2":{"74":1}}],["dense",{"2":{"60":1}}],["denvil",{"2":{"51":2,"53":2,"64":2,"68":2}}],["degc",{"2":{"51":1,"54":2,"55":3,"56":3,"57":5}}],["dec",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["dest",{"2":{"90":1}}],["desc",{"2":{"74":3,"75":3}}],["descriptor",{"2":{"75":4}}],["descriptors",{"2":{"74":2}}],["descriptions",{"2":{"74":1}}],["description",{"2":{"30":1,"74":4,"75":11}}],["described",{"2":{"82":1}}],["describe",{"2":{"74":2}}],["describes",{"2":{"1":1,"10":1,"19":1,"23":1,"49":1,"57":1,"59":1,"73":1,"75":1}}],["describing",{"2":{"74":1}}],["designed",{"2":{"19":2,"60":1}}],["desired",{"2":{"16":1,"75":4}}],["demand",{"2":{"13":1}}],["dodgerblue",{"2":{"86":1}}],["dot",{"2":{"86":1}}],["documenter",{"2":{"91":1}}],["documentation",{"0":{"71":1},"1":{"72":1}}],["doc",{"2":{"67":1}}],["docstring",{"2":{"74":1}}],["docs",{"0":{"72":1},"2":{"61":1,"71":2,"72":6,"79":1}}],["download",{"0":{"42":1},"2":{"42":1,"51":2,"52":2,"53":2,"64":2}}],["downloads",{"2":{"40":1,"42":1,"51":1,"52":1,"53":1,"64":1}}],["done",{"2":{"35":1,"48":1,"71":2}}],["doing",{"2":{"18":1,"27":1,"28":1,"72":1}}],["does",{"2":{"18":1,"69":1,"74":1,"75":1}}],["do",{"0":{"29":1,"30":1,"35":1,"36":1,"37":1},"1":{"31":1,"32":1,"33":1,"34":1,"38":1,"39":1},"2":{"4":1,"13":1,"16":1,"17":3,"18":1,"26":2,"35":1,"41":1,"48":1,"72":1,"75":1,"77":1}}],["directory",{"2":{"50":1,"65":2,"66":2}}],["directories",{"2":{"49":1,"75":1}}],["directly",{"2":{"16":1,"22":1,"23":1,"24":1}}],["diverging",{"2":{"48":1}}],["divided",{"2":{"35":1}}],["differing",{"2":{"74":1}}],["difference",{"2":{"48":1}}],["differences",{"2":{"43":1,"48":1,"75":1}}],["different",{"2":{"3":2,"16":1,"18":1,"27":1,"41":1,"61":1,"74":3,"75":2,"80":1}}],["diff",{"2":{"43":2,"48":3}}],["disregard",{"2":{"75":1}}],["dispatch",{"2":{"75":1}}],["discribe",{"2":{"74":2}}],["distribute",{"2":{"18":1}}],["distributed",{"0":{"18":1},"2":{"0":1,"18":2}}],["diskarray",{"2":{"74":1}}],["diskarrays",{"2":{"5":9,"7":4,"8":4,"9":4,"74":2,"75":1}}],["disk",{"2":{"4":1,"16":1,"22":1,"60":1,"69":2,"74":1,"75":2}}],["dictionary",{"2":{"61":1,"74":3}}],["dict",{"2":{"2":1,"3":1,"7":1,"8":1,"10":2,"12":1,"13":1,"14":2,"16":5,"17":4,"18":1,"20":1,"21":2,"22":3,"24":4,"25":2,"27":1,"28":1,"29":1,"31":5,"35":3,"36":3,"43":3,"44":2,"46":4,"47":3,"48":3,"50":2,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":1,"69":1,"74":3,"78":3,"85":1,"87":1}}],["dime",{"2":{"50":1}}],["dimensional",{"2":{"59":1,"60":2,"74":1}}],["dimensionaldata",{"2":{"17":1,"22":2,"27":1,"31":1,"33":1,"34":1,"40":1,"42":1,"43":16,"44":10,"46":6,"47":6,"48":39,"56":1,"57":2,"58":3,"60":1,"63":1,"78":1,"79":3,"85":1,"87":1}}],["dimensions",{"0":{"33":1,"34":1},"2":{"3":1,"10":1,"13":1,"15":1,"16":2,"17":2,"18":1,"24":2,"29":1,"32":1,"34":3,"35":2,"42":1,"43":16,"44":10,"46":6,"47":6,"48":39,"53":1,"58":2,"60":3,"61":1,"74":8,"75":3,"78":3,"79":1}}],["dimension",{"0":{"2":1,"3":1,"58":1,"63":1},"2":{"2":2,"3":1,"5":1,"10":1,"14":2,"16":3,"17":3,"31":1,"34":1,"44":1,"45":1,"48":1,"56":1,"58":1,"60":1,"62":1,"63":1,"74":3,"75":3,"78":1}}],["dimgroupbyarray",{"2":{"43":1,"46":1}}],["dimarray",{"0":{"22":1},"2":{"17":3,"22":6,"43":1,"44":1,"46":1,"47":2,"48":3,"60":1}}],["dim",{"2":{"2":2,"3":3,"5":2,"7":7,"8":8,"9":2,"10":3,"16":3,"17":4,"18":3,"20":2,"22":2,"24":7,"27":9,"28":3,"29":4,"31":3,"33":3,"34":2,"38":1,"39":5,"43":2,"44":2,"48":6,"68":3,"69":2,"78":4,"85":1}}],["dims=2",{"2":{"85":1}}],["dims=",{"2":{"14":2,"18":1,"35":1,"43":5,"44":1,"46":1,"48":1}}],["dims",{"2":{"2":3,"3":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":4,"20":1,"21":3,"22":2,"24":2,"27":3,"28":1,"29":1,"31":5,"35":3,"36":3,"42":1,"43":6,"44":1,"46":5,"47":2,"48":5,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5,"69":1,"78":2,"85":1}}],["dsw",{"2":{"43":2,"48":2}}],["dsfinal",{"2":{"29":1,"35":2,"36":2}}],["ds2",{"2":{"29":3,"35":1,"68":1}}],["ds1",{"2":{"29":3,"35":3,"36":1}}],["dschunked",{"2":{"7":3,"8":3,"9":3}}],["ds",{"2":{"0":3,"7":2,"8":2,"9":2,"25":1,"33":2,"34":12,"38":1,"39":1,"42":5,"43":10,"46":1,"48":3,"50":1,"51":1,"52":1,"53":1,"54":2,"64":1,"65":3,"66":3,"67":3,"68":2,"74":3,"75":1,"91":2}}],["wglmakie",{"2":{"91":2}}],["would",{"2":{"74":2}}],["world",{"2":{"52":2}}],["workdir",{"2":{"75":1}}],["worker",{"2":{"74":1}}],["workers",{"2":{"74":1}}],["work",{"2":{"19":2,"42":1,"59":1,"74":1,"80":2,"82":1}}],["workload",{"2":{"18":1}}],["working",{"2":{"16":1}}],["works",{"2":{"9":1,"28":1,"33":1,"34":1,"69":1}}],["workflows",{"2":{"4":1}}],["written",{"2":{"74":1,"75":1}}],["writefac",{"2":{"75":1}}],["writefac=4",{"2":{"67":1,"74":1}}],["writes",{"2":{"74":1}}],["write",{"0":{"64":1,"65":1,"66":1},"1":{"65":1,"66":1,"67":1,"68":1,"69":1},"2":{"69":1,"74":2}}],["wrapping",{"2":{"45":1,"58":2}}],["wrapped",{"2":{"16":1}}],["wrap",{"2":{"0":1,"74":1}}],["www",{"2":{"51":1,"53":1,"64":1}}],["w",{"2":{"48":2}}],["was",{"2":{"17":1,"18":1,"75":1}}],["way",{"2":{"15":1,"19":1,"27":1}}],["warning",{"2":{"11":1,"19":1,"27":1,"34":1,"42":1,"67":1,"74":1}}],["wanted",{"2":{"75":1}}],["wants",{"2":{"69":1}}],["want",{"2":{"0":1,"4":1,"62":1,"72":1,"75":1,"82":1}}],["wintri",{"0":{"89":1},"1":{"90":1,"91":1}}],["windowloopinds",{"2":{"75":1}}],["window",{"2":{"74":1,"75":1}}],["without",{"2":{"75":1}}],["within",{"2":{"56":1}}],["with",{"2":{"2":1,"10":1,"12":1,"13":1,"16":7,"17":4,"18":2,"19":1,"24":3,"27":1,"34":3,"35":2,"36":3,"43":3,"44":1,"46":2,"47":2,"48":5,"50":2,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"59":1,"61":1,"64":1,"67":1,"68":1,"69":1,"71":1,"74":11,"75":1,"78":4,"79":3,"80":1,"82":1,"87":1,"89":1}}],["will",{"2":{"0":1,"4":1,"7":1,"8":1,"13":1,"16":3,"17":1,"30":1,"34":1,"35":2,"36":2,"40":1,"45":2,"67":3,"74":12,"75":3,"82":1}}],["white",{"2":{"89":1,"90":1}}],["while",{"2":{"69":1}}],["which",{"2":{"3":1,"16":1,"17":2,"34":2,"48":1,"54":1,"57":1,"58":1,"62":3,"74":5,"75":4,"82":1}}],["whose",{"0":{"33":1,"34":1}}],["whole",{"2":{"2":3}}],["whether",{"2":{"75":2}}],["when",{"2":{"4":1,"9":1,"13":1,"62":1,"74":2,"75":1}}],["whereas",{"2":{"60":1}}],["where",{"2":{"0":1,"18":1,"34":4,"41":1,"57":1,"74":1,"75":4}}],["wether",{"2":{"74":1}}],["weight=",{"2":{"74":1}}],["weight=nothing",{"2":{"74":1}}],["weight",{"0":{"46":1},"1":{"47":1,"48":1},"2":{"45":1,"47":1,"48":1}}],["weights",{"0":{"47":1},"2":{"43":3,"47":2,"48":1}}],["weightedmean",{"2":{"74":1}}],["weighted",{"0":{"48":1},"2":{"36":1,"41":1,"43":8,"48":8,"74":3}}],["well",{"2":{"36":1,"69":1,"74":1}}],["welcome",{"2":{"9":1,"70":1}}],["were",{"2":{"13":2,"57":1,"75":1,"84":1}}],["we",{"2":{"0":1,"2":2,"3":1,"13":2,"14":1,"16":5,"17":5,"18":2,"24":2,"29":1,"30":1,"31":1,"32":1,"34":2,"35":2,"36":5,"43":1,"44":1,"45":2,"48":1,"50":1,"56":1,"62":1,"69":1,"79":2,"84":1,"87":1}}],["oob",{"2":{"74":1}}],["o1",{"2":{"51":2,"53":2,"64":2,"68":1}}],["ocean",{"2":{"51":1,"53":1,"64":1,"68":1}}],["oct",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["occuring",{"2":{"7":1}}],["o",{"2":{"42":4,"48":4,"74":5}}],["ouput",{"2":{"72":1}}],["our",{"2":{"35":1,"36":1,"85":1}}],["outcube",{"2":{"75":1}}],["outcubes",{"2":{"75":1}}],["outcs",{"2":{"75":1}}],["outsize",{"2":{"75":1}}],["outar",{"2":{"75":2}}],["outtype",{"2":{"74":1,"75":2}}],["outtype=float32",{"2":{"16":2}}],["out",{"2":{"42":1,"74":2,"75":1}}],["outdims=outdims",{"2":{"17":1,"18":1}}],["outdims",{"2":{"16":4,"74":6}}],["outputcube",{"2":{"75":3}}],["outputs",{"2":{"16":1}}],["output",{"2":{"9":1,"16":3,"17":1,"18":3,"51":1,"53":1,"64":1,"68":1,"74":11,"75":9,"91":1}}],["optimal",{"2":{"75":1}}],["optifunc",{"2":{"75":1}}],["optionally",{"2":{"74":1}}],["option",{"2":{"31":1,"33":1}}],["options",{"2":{"28":1}}],["operation",{"2":{"75":1}}],["operations",{"0":{"16":1},"2":{"10":1,"43":1,"74":2,"75":3}}],["operates",{"2":{"74":1}}],["openinterval",{"2":{"57":1}}],["open",{"0":{"57":1},"2":{"0":2,"50":2,"51":2,"52":1,"53":2,"57":2,"64":1,"68":1,"74":3,"87":1}}],["obj",{"2":{"36":2,"84":1,"86":1}}],["objects",{"2":{"74":2}}],["object",{"2":{"11":1,"50":1,"74":5,"75":3}}],["obtain",{"0":{"28":1},"2":{"45":1}}],["otherwise",{"2":{"74":1}}],["other",{"0":{"80":1},"1":{"81":1,"82":1,"83":1},"2":{"19":1,"80":1,"82":1}}],["omit",{"2":{"18":1}}],["overview",{"0":{"81":1},"2":{"80":1,"81":1}}],["overwrite",{"0":{"67":1},"2":{"67":3,"74":4,"75":2}}],["overwrite=true",{"2":{"16":2,"67":2}}],["over",{"0":{"16":1,"82":1},"2":{"10":1,"15":1,"18":1,"48":1,"74":8,"75":1,"82":1}}],["ormax",{"2":{"74":1}}],["orca2",{"2":{"51":1,"53":1,"64":1,"68":1}}],["orangered",{"2":{"36":1}}],["ordered",{"2":{"60":1,"61":1}}],["ordereddict",{"2":{"17":1}}],["orderedcollections",{"2":{"17":1}}],["order",{"2":{"16":1,"41":1}}],["original",{"2":{"51":2,"54":4,"55":6,"56":6,"57":10}}],["originates",{"2":{"3":1}}],["origin",{"2":{"10":2,"12":1,"13":1,"18":1,"24":3,"25":1,"78":2}}],["or",{"0":{"30":1},"1":{"31":1,"32":1,"33":1,"34":1},"2":{"4":2,"9":1,"10":1,"13":2,"15":1,"22":1,"32":1,"50":1,"53":2,"60":3,"63":2,"67":1,"74":21,"75":7,"77":1,"78":2}}],["once",{"2":{"48":1,"62":1,"71":1,"75":1}}],["onlinestat",{"2":{"74":2}}],["onlinestats",{"2":{"36":2}}],["only",{"2":{"9":1,"13":1,"14":1,"16":1,"17":1,"19":1,"24":2,"35":1,"69":1,"74":2}}],["on",{"2":{"1":1,"4":2,"9":1,"10":2,"13":2,"16":1,"18":2,"26":1,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"60":1,"64":1,"68":1,"69":1,"74":5,"75":4}}],["oneto",{"2":{"7":4,"8":4,"9":2,"20":2,"24":3,"27":9,"38":1,"39":5,"69":2,"78":2}}],["one",{"0":{"38":1},"2":{"0":1,"1":1,"2":2,"14":2,"17":2,"36":1,"44":1,"60":2,"61":1,"69":1,"74":8,"75":3,"80":1}}],["own",{"2":{"0":1}}],["offline=true",{"2":{"91":1}}],["offsets",{"2":{"75":1}}],["offset",{"2":{"13":1}}],["often",{"2":{"1":1}}],["of",{"0":{"11":1,"34":1,"41":1,"81":2},"2":{"0":2,"2":3,"3":1,"4":1,"9":1,"10":2,"11":1,"12":1,"13":2,"14":1,"15":1,"17":7,"18":3,"19":1,"21":1,"22":1,"26":3,"27":4,"30":1,"31":2,"32":1,"33":1,"34":2,"35":1,"36":1,"41":1,"42":1,"46":1,"51":1,"53":3,"54":1,"56":1,"58":1,"60":7,"61":1,"62":2,"63":2,"64":1,"68":1,"69":1,"73":1,"74":50,"75":42,"78":1,"79":2,"80":1,"81":1,"85":2,"86":1}}],["eo",{"2":{"80":1}}],["esdltutorials",{"2":{"80":1}}],["esm1",{"2":{"50":1,"87":2}}],["eltype",{"2":{"78":1}}],["elementtype",{"2":{"75":1}}],["element",{"2":{"2":1,"3":1,"10":2,"13":2,"14":1,"16":3,"17":2,"28":1,"36":1,"43":2,"44":1,"45":1,"46":7,"47":2,"48":3,"55":2,"58":1,"61":1,"62":2,"74":1,"75":1,"85":1}}],["elements",{"0":{"11":1,"55":1},"2":{"2":1,"12":1,"13":2,"18":1,"53":1,"60":1,"74":1,"75":1}}],["empty",{"2":{"75":1}}],["embeds",{"2":{"74":1}}],["either",{"2":{"74":2}}],["error",{"2":{"67":1}}],["et",{"2":{"51":1,"53":1,"62":1,"64":1,"68":1}}],["edu",{"2":{"51":1,"53":1,"61":1,"64":1}}],["equivalent",{"2":{"48":1,"58":1}}],["equally",{"2":{"0":1}}],["effectively",{"2":{"35":1}}],["env",{"2":{"72":1}}],["enabling",{"2":{"24":1}}],["enter",{"2":{"77":1}}],["entire",{"2":{"17":1,"19":1,"65":1,"66":1}}],["entries",{"2":{"17":1,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5,"74":1,"78":1}}],["entry",{"2":{"10":1,"12":1,"13":1,"16":2,"24":2,"43":2,"44":1,"46":2,"47":2,"48":3,"71":3,"74":1}}],["enumerate",{"2":{"17":2,"48":2}}],["end",{"2":{"13":1,"16":1,"17":4,"18":2,"35":1,"43":2,"48":2,"85":2,"91":1}}],["easier",{"2":{"24":1,"53":1}}],["easily",{"2":{"0":1,"18":1}}],["easy",{"2":{"21":1,"22":1}}],["each",{"2":{"7":1,"8":1,"10":1,"13":1,"17":5,"18":2,"35":2,"36":2,"41":1,"45":1,"61":1,"63":1,"74":3,"75":3,"78":1}}],["exists",{"2":{"67":1,"74":1,"75":1}}],["existing",{"0":{"2":1},"2":{"67":1,"68":1}}],["exportable=true",{"2":{"91":1}}],["expression",{"2":{"74":1}}],["experiment",{"2":{"51":3,"53":3,"64":3,"68":3}}],["explicitly",{"2":{"13":1,"30":1,"75":1}}],["external",{"2":{"50":1,"87":1}}],["extension",{"2":{"74":2}}],["extent",{"2":{"21":2}}],["extended",{"2":{"16":1,"74":1,"75":2}}],["extracts",{"2":{"75":1}}],["extract",{"0":{"27":1},"2":{"75":1}}],["extra",{"2":{"18":1}}],["executes",{"2":{"74":1}}],["execute",{"2":{"18":1}}],["exactly",{"2":{"8":1,"28":1}}],["examples",{"2":{"9":1,"28":2,"40":1,"51":1,"53":1,"64":1,"71":1}}],["example",{"2":{"0":1,"4":1,"8":1,"10":1,"18":2,"33":1,"34":1,"35":1,"36":1,"41":1,"51":1,"53":2,"60":2,"61":1,"62":1,"64":2,"71":2,"74":3,"75":1,"78":2}}],["e",{"2":{"1":1,"2":1,"10":1,"11":1,"13":1,"17":2,"18":1,"21":1,"22":1,"24":1,"31":1,"58":1,"60":1,"63":1,"67":1,"72":1,"74":6,"75":1,"78":1}}],["everywhere",{"2":{"18":2}}],["every",{"2":{"0":1,"10":1,"13":1,"74":1}}],["features",{"2":{"81":1}}],["feb",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["fallback",{"2":{"75":1}}],["falls",{"2":{"74":1}}],["false",{"2":{"47":1,"48":1,"67":2,"74":3,"75":1}}],["faq",{"0":{"26":1},"1":{"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1}}],["faster",{"2":{"75":1}}],["fastest",{"2":{"4":1}}],["fast",{"2":{"4":1,"13":1}}],["frame",{"2":{"82":1}}],["frames",{"2":{"60":1}}],["front",{"2":{"75":1}}],["from",{"0":{"27":1,"28":2,"41":1},"2":{"0":1,"2":1,"3":1,"19":1,"28":4,"34":3,"57":1,"62":2,"74":6,"75":6,"78":1,"85":1}}],["fr",{"2":{"51":1,"53":1,"64":1,"68":1}}],["frequently",{"0":{"26":1},"1":{"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1}}],["fu",{"2":{"75":1}}],["funtion",{"2":{"85":1}}],["fun",{"2":{"74":4}}],["functionality",{"0":{"81":1}}],["functions",{"2":{"10":2,"60":2,"73":1,"74":1,"75":1}}],["function",{"0":{"36":1},"2":{"0":1,"4":1,"13":2,"15":1,"16":6,"18":6,"27":2,"29":1,"35":1,"36":1,"40":1,"43":1,"45":1,"48":1,"57":1,"67":1,"69":1,"74":24,"75":13}}],["future",{"2":{"42":1}}],["further",{"2":{"13":1,"80":1}}],["found",{"2":{"74":1,"75":1}}],["fourth",{"2":{"51":2,"53":2,"64":2,"68":2}}],["folder",{"2":{"72":1}}],["follow",{"2":{"72":1,"80":1}}],["follows",{"2":{"16":2,"43":1,"48":1}}],["following",{"2":{"5":1,"8":1,"9":1,"16":1,"18":1,"40":1,"41":1,"42":1,"74":2,"75":4,"80":1}}],["fontsize=24",{"2":{"88":1}}],["fontsize=18",{"2":{"48":1}}],["font=",{"2":{"48":1}}],["forwarded",{"2":{"74":1}}],["forwardordered",{"2":{"2":1,"3":1,"7":4,"8":4,"9":2,"10":3,"12":3,"13":3,"14":3,"16":9,"17":9,"20":2,"21":6,"22":4,"24":9,"25":3,"27":9,"28":2,"29":4,"31":14,"33":6,"34":10,"35":9,"36":5,"38":1,"39":5,"43":3,"44":2,"46":2,"47":1,"48":7,"50":6,"51":6,"53":3,"54":6,"55":4,"56":9,"57":15,"58":2,"64":3,"68":6,"69":2,"78":5,"85":1,"87":3}}],["force",{"2":{"74":1}}],["forcing",{"2":{"50":1,"87":1}}],["forms",{"2":{"74":1,"75":2}}],["format",{"2":{"67":1,"74":1,"85":1}}],["formal",{"2":{"62":1}}],["former",{"2":{"27":1}}],["for",{"0":{"9":1,"84":1},"1":{"85":1,"86":1},"2":{"0":2,"4":3,"7":1,"8":1,"9":1,"17":4,"18":1,"31":1,"33":2,"34":2,"35":4,"36":6,"42":1,"46":1,"48":3,"51":1,"53":1,"57":1,"58":1,"60":4,"61":3,"62":1,"64":1,"67":1,"68":1,"69":1,"74":19,"75":16,"80":1,"84":1,"85":2}}],["f",{"2":{"5":2,"16":3}}],["flag",{"2":{"75":3}}],["float32",{"2":{"16":4,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5,"75":1}}],["float64",{"2":{"2":1,"3":1,"10":3,"12":3,"13":3,"14":4,"17":9,"20":2,"21":2,"22":4,"24":6,"25":2,"27":1,"28":1,"29":4,"35":12,"36":5,"43":3,"44":2,"47":3,"48":6,"50":4,"51":4,"53":2,"54":4,"55":2,"56":6,"57":10,"58":3,"64":2,"68":2,"74":1,"75":1,"78":7,"85":2,"87":2}}],["flexible",{"2":{"3":1,"15":1}}],["field",{"2":{"74":1}}],["fields",{"2":{"36":1,"74":1,"75":4}}],["figure=",{"2":{"86":1}}],["figure",{"2":{"48":2,"84":1,"86":1,"88":1,"89":1,"90":1,"91":1}}],["fig",{"2":{"36":3,"48":8,"84":1,"86":1,"88":2,"89":2,"90":2,"91":3}}],["filterig",{"2":{"85":1}}],["filter",{"2":{"74":2}}],["fillarrays",{"2":{"69":3}}],["fill",{"2":{"69":1,"74":1,"75":1}}],["fillvalue=",{"2":{"75":1}}],["fillvalue",{"2":{"42":3,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5}}],["filling",{"2":{"23":1,"24":1}}],["filename",{"2":{"42":2,"74":1}}],["file",{"2":{"1":1,"2":2,"3":2,"5":1,"10":2,"12":2,"13":2,"14":4,"16":10,"17":4,"20":2,"21":2,"22":3,"24":4,"27":2,"28":2,"29":2,"31":10,"34":1,"35":6,"36":6,"46":2,"50":2,"51":4,"54":4,"55":6,"56":6,"57":10,"67":2,"69":2,"71":4,"74":2,"78":4,"85":2}}],["files",{"0":{"83":1},"2":{"1":1,"49":1,"52":1,"72":1,"75":2}}],["findaxis",{"2":{"75":1}}],["findall",{"2":{"17":1,"85":1}}],["find",{"2":{"30":1,"75":1,"80":1}}],["finalizer",{"2":{"75":1}}],["finalize",{"2":{"75":1}}],["finally",{"2":{"17":1,"74":1}}],["final",{"2":{"17":1}}],["fitting",{"2":{"74":1}}],["fittable",{"2":{"74":2}}],["fitcube",{"2":{"36":2}}],["fitsym",{"2":{"74":4}}],["fits",{"2":{"19":1}}],["fit",{"2":{"4":1,"60":1}}],["firstly",{"2":{"31":1}}],["first",{"2":{"2":4,"16":3,"17":1,"36":1,"48":1,"71":1,"74":4,"75":1,"78":1,"87":1}}],["t=union",{"2":{"75":1}}],["typing",{"2":{"77":1}}],["typically",{"2":{"74":1}}],["type",{"2":{"60":1,"62":1,"74":12,"75":8,"78":1,"79":1}}],["types",{"0":{"59":1},"1":{"60":1,"61":1,"62":1,"63":1},"2":{"19":2,"21":1,"22":1,"55":1,"61":1,"74":2,"79":1}}],["tutorial",{"2":{"80":2,"81":1,"82":1}}],["tutorials",{"0":{"80":1},"1":{"81":1,"82":1,"83":1},"2":{"57":1,"80":3}}],["turn",{"2":{"74":1}}],["tuple",{"2":{"5":3,"7":1,"8":1,"9":1,"43":2,"44":1,"46":2,"47":3,"48":5,"74":5,"75":3}}],["tbl",{"2":{"36":2}}],["target",{"2":{"75":1}}],["tab",{"2":{"74":4}}],["tables",{"2":{"82":1}}],["tableaggregator",{"2":{"74":1}}],["table",{"0":{"82":1},"2":{"36":2,"50":1,"51":2,"53":2,"64":2,"68":2,"74":4,"75":1,"87":1}}],["tas",{"2":{"50":5,"87":5}}],["tair",{"2":{"48":1,"74":1}}],["takes",{"2":{"74":4}}],["taken",{"2":{"34":2}}],["take",{"2":{"16":1,"72":1,"74":1,"75":2}}],["tesselation",{"2":{"91":1}}],["test",{"2":{"75":1,"87":1}}],["testrange",{"2":{"75":1}}],["terminal",{"2":{"72":1}}],["text",{"2":{"71":1}}],["tensors",{"2":{"60":1}}],["tell",{"2":{"30":1}}],["temporary",{"2":{"75":1}}],["temporal",{"2":{"35":1,"40":1,"60":1}}],["tempo",{"2":{"43":6,"46":4,"47":1}}],["tempname",{"2":{"5":1,"7":1,"8":1,"9":1}}],["temp",{"2":{"3":2}}],["temperature=temperature",{"2":{"34":1}}],["temperature",{"2":{"3":2,"34":4,"48":2,"50":3,"51":2,"54":5,"55":6,"56":6,"57":10,"60":1,"61":1,"62":1,"78":4}}],["tip",{"2":{"79":1}}],["tidy",{"2":{"74":1}}],["ticks",{"2":{"60":1}}],["ticks=false",{"2":{"48":1}}],["tick",{"2":{"58":1,"63":1,"78":1}}],["tiff",{"0":{"83":1}}],["tif",{"2":{"52":2}}],["title",{"2":{"48":1,"51":1,"53":1,"64":1,"68":1,"71":1}}],["ti=at",{"2":{"48":3}}],["ti=>cyclicbins",{"2":{"43":2,"44":1,"46":2,"47":2,"48":3}}],["ti",{"2":{"21":4,"43":15,"44":2,"45":1,"46":8,"47":3,"48":6,"50":2,"51":2,"53":1,"54":2,"55":2,"56":3,"57":5,"64":1,"68":1,"87":2}}],["time1",{"2":{"55":2}}],["time=1",{"2":{"78":1}}],["time=date",{"2":{"31":1}}],["time=at",{"2":{"31":1}}],["time=between",{"2":{"31":1}}],["time",{"0":{"41":1},"2":{"1":1,"2":4,"3":3,"4":1,"10":3,"12":1,"13":1,"14":7,"16":14,"17":8,"18":5,"21":2,"24":3,"25":1,"29":2,"31":8,"33":4,"34":7,"35":4,"36":3,"44":1,"45":1,"48":1,"50":2,"51":1,"54":2,"55":4,"56":3,"57":5,"60":2,"61":1,"74":4,"78":4,"84":1,"85":4,"87":2}}],["timestep",{"2":{"36":1}}],["times",{"2":{"0":1}}],["treat",{"2":{"74":1}}],["treatment",{"2":{"74":1,"75":1}}],["treated",{"2":{"50":1}}],["tries",{"2":{"74":1}}],["translate",{"2":{"89":1,"90":1}}],["transformed",{"2":{"51":1,"53":1,"64":1,"68":1}}],["transformations",{"2":{"89":1}}],["transformation",{"2":{"17":1}}],["transform",{"2":{"17":2}}],["track",{"2":{"74":1}}],["true",{"2":{"12":1,"67":1,"69":1,"74":4,"75":1,"91":1}}],["tspan",{"2":{"16":2}}],["t",{"2":{"16":4,"31":1,"33":2,"34":2,"36":3,"51":1,"54":2,"55":3,"56":3,"57":5,"74":1,"75":2,"84":1,"85":1}}],["two",{"2":{"2":1,"3":1,"28":2,"29":1,"60":1,"75":1}}],["todo",{"2":{"85":1}}],["toghether",{"2":{"75":1}}],["together",{"2":{"62":1}}],["touches",{"2":{"57":1}}],["tolerances",{"2":{"56":1}}],["tos",{"2":{"51":4,"53":2,"54":4,"55":4,"56":3,"57":9,"58":2,"64":2,"65":2,"66":2,"68":1}}],["top",{"2":{"48":1}}],["too",{"2":{"34":1,"60":1}}],["to",{"0":{"3":1,"37":1,"68":1,"70":1,"71":1},"1":{"38":1,"39":1,"71":1,"72":2},"2":{"0":4,"1":1,"2":1,"3":1,"4":4,"6":1,"7":1,"9":2,"10":8,"12":1,"15":1,"16":2,"17":2,"18":6,"19":3,"20":2,"22":3,"23":1,"26":2,"27":2,"28":3,"29":1,"31":2,"33":2,"34":6,"35":1,"36":1,"40":1,"41":3,"42":2,"44":1,"45":1,"48":1,"49":1,"50":3,"51":1,"53":3,"57":1,"58":1,"59":1,"60":5,"61":3,"62":2,"63":2,"64":1,"65":2,"66":2,"67":1,"68":2,"69":3,"71":2,"72":3,"74":47,"75":19,"79":2,"80":1,"82":3,"87":2,"91":1}}],["though",{"2":{"69":1}}],["those",{"2":{"11":1,"19":1,"21":1,"22":1,"61":1}}],["through",{"2":{"74":5,"75":5,"77":1}}],["thrown",{"2":{"67":1}}],["three",{"2":{"30":1,"61":1,"84":1}}],["threads",{"2":{"74":2}}],["thread",{"2":{"18":1}}],["than",{"2":{"19":1,"30":1,"35":1,"36":1}}],["that",{"2":{"0":1,"3":2,"10":1,"13":1,"16":5,"17":2,"18":1,"19":1,"29":1,"32":1,"34":2,"36":1,"41":1,"44":1,"47":1,"58":1,"60":1,"61":2,"63":1,"69":1,"74":13,"75":13,"80":1,"82":1}}],["things",{"2":{"26":1}}],["think",{"2":{"4":1}}],["thinking",{"2":{"4":1}}],["this",{"2":{"0":1,"1":1,"4":1,"7":1,"10":1,"13":2,"16":4,"17":3,"18":1,"19":1,"23":1,"26":1,"28":1,"33":1,"34":2,"35":2,"36":2,"41":1,"45":2,"49":1,"50":1,"52":1,"57":1,"59":1,"62":1,"71":1,"72":2,"73":2,"74":6,"75":10,"81":1,"82":1}}],["their",{"0":{"33":1,"34":1},"2":{"32":1,"34":1,"60":1,"74":3,"75":2}}],["then",{"2":{"17":2,"35":1,"72":2,"77":1}}],["thereby",{"2":{"74":1}}],["therefore",{"2":{"36":1,"79":1}}],["there",{"2":{"14":2,"22":1,"28":1,"74":1}}],["theme",{"2":{"48":2}}],["them",{"2":{"1":1,"10":1,"30":1,"69":1,"74":1}}],["these",{"2":{"0":1,"9":1,"28":1,"30":1,"58":1,"60":1}}],["the",{"0":{"27":1,"28":1,"36":1,"42":1,"81":1,"85":1},"2":{"0":5,"2":6,"3":3,"4":4,"5":3,"7":1,"8":4,"9":4,"10":1,"11":1,"13":3,"14":2,"15":1,"16":12,"17":14,"18":7,"19":2,"22":1,"24":3,"26":1,"27":4,"28":3,"29":2,"30":2,"31":9,"33":3,"34":10,"35":3,"36":10,"40":2,"41":5,"42":4,"43":2,"44":1,"45":2,"46":2,"47":2,"48":9,"51":1,"53":1,"54":5,"55":3,"56":5,"57":6,"58":1,"59":1,"60":5,"61":4,"62":4,"67":3,"68":1,"69":6,"70":1,"71":1,"72":6,"74":116,"75":83,"77":2,"78":6,"79":8,"80":6,"81":1,"82":5,"84":1,"85":4,"87":1}}],["switched",{"2":{"79":1}}],["syntax",{"2":{"79":1,"80":1}}],["system",{"2":{"72":1}}],["symbol",{"2":{"10":1,"12":1,"13":1,"24":2,"43":4,"44":2,"45":2,"46":4,"47":4,"48":6,"74":3,"75":1}}],["src",{"2":{"71":1}}],["sres",{"2":{"51":2,"53":2,"64":2,"68":2}}],["skipped",{"2":{"74":1}}],["skip",{"2":{"74":1}}],["skipmissing",{"2":{"18":1,"35":1}}],["skeleton=true",{"2":{"69":1}}],["skeleton=false",{"2":{"67":1,"74":1}}],["skeleton",{"0":{"69":1},"2":{"69":3}}],["ssp585",{"2":{"50":1,"87":2}}],["scene",{"2":{"91":3}}],["scenarios",{"2":{"87":1}}],["scenariomip",{"2":{"50":1,"87":2}}],["scope",{"2":{"74":1,"75":1}}],["scripts",{"2":{"72":1}}],["scalar",{"2":{"50":1}}],["scattered",{"2":{"1":1}}],["snow3",{"2":{"36":1}}],["snippet",{"2":{"9":1}}],["small",{"2":{"26":1}}],["slightly",{"2":{"80":1}}],["slicing",{"2":{"16":1}}],["slices",{"2":{"74":3}}],["slice",{"2":{"16":1,"87":4,"88":1}}],["slow",{"2":{"34":1}}],["slurmmanager",{"2":{"18":1}}],["shinclude",{"2":{"72":1}}],["shdocs>",{"2":{"72":1}}],["shnpm",{"2":{"72":2}}],["should",{"2":{"31":1,"42":1,"71":1,"72":1,"74":3,"75":1}}],["shown",{"2":{"74":1}}],["showprog",{"2":{"74":1}}],["shows",{"2":{"48":1}}],["show",{"2":{"18":1,"91":1}}],["shading=false",{"2":{"89":1,"90":1,"91":1}}],["shall",{"2":{"74":5,"75":1}}],["shares",{"2":{"34":1}}],["share",{"0":{"33":1,"34":1},"2":{"32":1,"34":1,"61":1,"74":1}}],["shared",{"2":{"7":1,"8":1,"9":1,"25":1,"29":1,"33":2,"34":3,"38":1,"39":1,"50":1,"51":1,"53":1,"64":1,"68":1,"87":1}}],["shape",{"2":{"9":1}}],["sure",{"2":{"91":1}}],["surface",{"2":{"48":2,"50":2,"51":2,"54":5,"55":6,"56":6,"57":10,"89":1,"90":1}}],["such",{"2":{"57":1,"74":1,"79":1}}],["subcubes",{"2":{"74":1}}],["subtype",{"2":{"60":1,"75":1,"79":1}}],["subtables",{"2":{"36":1}}],["subarray",{"2":{"47":1,"48":1}}],["subsetextensions",{"2":{"75":1}}],["subsetcube",{"2":{"74":1}}],["subseting",{"2":{"58":1}}],["subsetting",{"0":{"31":1,"32":1,"33":1,"34":1},"1":{"33":1,"34":1},"2":{"50":1,"51":1,"75":1,"85":1}}],["subset",{"0":{"30":1},"1":{"31":1,"32":1,"33":1,"34":1},"2":{"31":5,"34":4,"53":1,"56":1,"74":1,"75":1,"87":1}}],["subsets",{"2":{"15":1,"63":1}}],["supposed",{"2":{"74":1}}],["support",{"2":{"22":1}}],["supertype",{"2":{"21":1,"22":1}}],["sum",{"2":{"17":2,"35":1,"43":4,"46":2,"47":4,"48":2}}],["suggestions",{"2":{"9":1}}],["s",{"2":{"10":1,"16":3,"29":1,"31":1,"33":1,"34":2,"48":7,"53":1,"63":1,"74":2,"75":1,"85":1}}],["sphere",{"0":{"91":1},"2":{"91":3}}],["split",{"2":{"74":1}}],["splitted",{"2":{"5":1}}],["special",{"2":{"55":1,"74":1,"75":1}}],["specifiers",{"2":{"75":1}}],["specifier",{"2":{"74":1}}],["specifies",{"2":{"74":3}}],["specified",{"2":{"74":7,"75":1}}],["specific",{"2":{"31":1,"74":2}}],["specifying",{"2":{"74":2,"75":1}}],["specify",{"2":{"24":1,"74":1}}],["specs",{"2":{"50":1,"87":1}}],["spectral",{"2":{"48":1}}],["sparse",{"2":{"60":1}}],["spatio",{"2":{"35":1}}],["spatial",{"2":{"4":1,"14":1,"17":5,"18":1,"40":1,"60":1}}],["span",{"2":{"31":1,"84":1}}],["space",{"2":{"4":1,"16":1}}],["saves",{"2":{"67":1,"74":1}}],["save",{"0":{"69":1},"2":{"12":1,"22":1,"65":2,"66":2,"69":1,"74":2}}],["savecube",{"2":{"5":1,"65":1,"66":1,"69":1,"74":2}}],["savedataset",{"2":{"7":1,"8":1,"9":1,"67":2,"68":1,"69":1,"74":2,"75":1}}],["saved",{"2":{"5":1,"11":1,"67":1}}],["saving",{"2":{"4":1,"7":1,"8":1,"9":1,"16":1}}],["sampled",{"2":{"2":1,"3":1,"7":4,"8":4,"9":2,"10":3,"12":3,"13":3,"14":3,"16":9,"17":8,"20":2,"21":6,"22":4,"24":9,"25":3,"27":9,"28":2,"29":3,"31":14,"33":6,"34":10,"35":9,"36":5,"38":1,"39":5,"43":3,"44":2,"46":2,"47":1,"48":7,"50":6,"51":6,"53":3,"54":6,"55":4,"56":9,"57":15,"58":2,"64":3,"68":6,"69":2,"78":5,"85":1,"87":3}}],["same",{"2":{"0":1,"3":1,"5":1,"8":1,"9":1,"16":1,"17":2,"21":1,"22":1,"27":1,"28":2,"29":1,"34":1,"54":1,"55":1,"56":1,"60":1,"61":3,"62":2,"72":1,"74":1,"75":1}}],["serve",{"2":{"75":1}}],["series",{"0":{"41":1},"2":{"18":1}}],["sequence",{"2":{"60":1}}],["seaborn",{"2":{"88":1,"89":1,"90":1,"91":1}}],["searching",{"2":{"74":1}}],["search",{"2":{"74":1}}],["sea",{"2":{"51":3,"53":1,"54":5,"55":6,"56":6,"57":10,"64":1,"68":1}}],["season",{"2":{"43":1,"46":2,"47":1}}],["seasons",{"0":{"43":1,"45":1,"48":1},"1":{"44":1,"45":1},"2":{"43":9,"46":1,"48":5}}],["seasonal",{"0":{"41":1,"84":1,"86":1},"1":{"85":1,"86":1},"2":{"41":1,"47":1,"48":1,"84":1,"85":4}}],["sebastien",{"2":{"51":2,"53":2,"64":2,"68":2}}],["separate",{"2":{"74":1,"75":1}}],["separated",{"2":{"61":1}}],["separately",{"2":{"8":1,"17":1,"18":1}}],["sep",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["selected",{"2":{"75":1,"84":1}}],["select",{"0":{"53":1,"54":1,"55":1,"56":1},"1":{"54":1,"55":1,"56":1,"57":1,"58":1},"2":{"34":1,"53":1}}],["selectors",{"2":{"57":1}}],["selector",{"2":{"34":1,"56":1}}],["selection",{"2":{"34":2}}],["selecting",{"2":{"31":1,"33":1,"34":1}}],["see",{"2":{"16":1,"57":1,"74":1,"79":1}}],["setting",{"2":{"67":1,"74":1,"75":1}}],["sets",{"2":{"9":1,"42":1}}],["set",{"0":{"7":1,"8":1,"9":1},"2":{"7":1,"8":1,"17":1,"50":1,"67":1,"72":1,"74":1,"75":2}}],["setchunks",{"2":{"4":1,"5":2,"6":1,"7":1,"8":1,"9":1,"74":1,"75":1}}],["second",{"2":{"2":3,"74":1}}],["section",{"2":{"1":1,"10":1,"19":1,"23":1,"26":1,"49":1,"59":1,"73":1}}],["several",{"0":{"16":1},"2":{"0":1,"16":1,"29":1,"32":1}}],["style",{"0":{"82":1}}],["st",{"2":{"79":1}}],["stdzero",{"2":{"74":1}}],["struct",{"2":{"74":1,"75":4}}],["structure",{"2":{"62":1}}],["structures",{"2":{"59":1}}],["string",{"2":{"2":1,"3":2,"10":1,"12":1,"13":1,"14":2,"16":5,"17":6,"20":1,"21":2,"22":3,"24":3,"27":1,"28":1,"29":2,"31":5,"35":3,"36":3,"43":1,"44":1,"46":2,"47":1,"48":1,"50":2,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"67":1,"68":1,"69":1,"74":6,"75":4,"78":4,"85":1,"87":1}}],["stable",{"2":{"79":1}}],["standard",{"2":{"50":1,"51":1,"54":2,"55":3,"56":3,"57":5}}],["standards",{"2":{"50":1,"51":1,"53":1,"64":1,"68":1,"87":1}}],["statistics",{"2":{"14":1,"18":1,"36":3,"40":1,"84":1}}],["started",{"0":{"76":1},"1":{"77":1,"78":1,"79":1}}],["start=12",{"2":{"43":2,"44":1,"46":2,"47":2,"48":3}}],["start=december",{"2":{"43":3,"46":1}}],["start",{"2":{"10":1,"31":1}}],["storing",{"2":{"61":1}}],["storage",{"2":{"11":1,"50":1}}],["stored",{"2":{"60":3,"75":2}}],["stores",{"2":{"60":1,"74":1}}],["store",{"2":{"0":1,"50":4,"60":1,"61":1,"87":2}}],["still",{"2":{"2":1,"17":1,"61":1,"80":1}}],["step=3",{"2":{"43":2,"44":1,"46":2,"47":2,"48":3}}],["steps",{"2":{"10":1,"14":1,"48":1,"72":1,"74":1}}],["step",{"2":{"1":1,"14":1,"35":2,"74":1,"75":2,"87":1}}],["sin",{"2":{"84":1}}],["sink",{"2":{"75":1}}],["single",{"0":{"84":1},"1":{"85":1,"86":1},"2":{"0":1,"1":1,"2":1,"62":1,"65":1,"66":1,"74":6,"75":1}}],["simplicity",{"2":{"84":1}}],["simply",{"2":{"18":1,"72":1}}],["simple",{"2":{"16":1,"26":1,"78":1}}],["situations",{"2":{"4":1}}],["size=",{"2":{"89":1,"90":1,"91":1}}],["sizes",{"2":{"5":1,"74":2,"75":2}}],["size",{"2":{"0":1,"2":2,"3":2,"4":1,"7":1,"8":1,"10":2,"12":2,"13":2,"14":4,"16":10,"17":4,"20":2,"21":2,"22":2,"24":4,"27":2,"28":2,"29":2,"31":10,"35":6,"36":6,"46":2,"48":1,"50":2,"51":2,"54":4,"55":6,"56":6,"57":10,"69":2,"74":3,"75":4,"78":5,"84":1,"85":3,"86":1,"88":1}}],["sosstsst",{"2":{"51":1,"54":2,"55":3,"56":3,"57":5}}],["software",{"2":{"51":1,"53":1,"64":1}}],["sort",{"2":{"17":1}}],["so",{"2":{"5":1,"18":1,"30":1,"34":1,"74":1,"75":1}}],["source",{"2":{"0":2,"51":1,"53":1,"64":1,"67":1,"68":1,"74":24,"75":24}}],["sometimes",{"2":{"69":1,"82":1}}],["some",{"0":{"34":1},"2":{"0":1,"11":1,"32":1,"34":1,"35":1,"48":1,"74":1,"84":1,"89":1}}],["auto",{"2":{"74":1}}],["aug",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["again",{"2":{"67":1}}],["agreement",{"2":{"48":1}}],["aggregation",{"2":{"18":1}}],["aggregate",{"2":{"17":1}}],["air",{"2":{"48":2,"50":3}}],["api",{"0":{"73":1,"74":1,"75":1},"1":{"74":1,"75":1}}],["apr",{"2":{"43":4,"44":2,"45":1,"46":4,"47":4,"48":6}}],["approximated",{"2":{"75":1}}],["approx",{"2":{"74":1,"75":1}}],["appropriate",{"2":{"71":1}}],["approach",{"2":{"3":1}}],["append=true",{"2":{"68":2}}],["append",{"0":{"68":1},"2":{"67":1,"74":1}}],["apply",{"0":{"35":1},"2":{"10":2,"13":1,"15":1,"18":1,"48":1,"85":1}}],["applies",{"2":{"13":1}}],["applied",{"2":{"0":1,"6":1,"7":1,"17":1,"74":2,"75":1}}],["applications",{"2":{"0":1}}],["a3",{"2":{"25":4}}],["a2",{"2":{"24":1,"25":3,"51":2,"53":2,"64":2,"68":2,"78":1}}],["a1",{"2":{"24":1}}],["abstractdict",{"2":{"74":1,"75":3}}],["abstractdimarray",{"2":{"21":1,"22":1,"60":1}}],["about",{"2":{"4":2,"30":1,"56":1,"78":1,"81":1}}],["above",{"2":{"0":1,"8":1,"16":1,"77":1}}],["atol",{"2":{"56":1}}],["atmosphere",{"2":{"51":1,"53":1,"64":1,"68":1}}],["atmos",{"2":{"50":1,"87":1}}],["attributes",{"2":{"48":1,"74":1,"75":1}}],["at",{"2":{"17":4,"22":1,"34":1,"48":1,"51":2,"53":1,"54":2,"55":6,"56":7,"57":5,"61":1,"62":2,"64":1,"67":2,"68":1,"70":1,"71":2,"72":2,"74":3,"75":2,"78":1,"80":2}}],["after",{"2":{"14":1,"16":1,"52":1,"74":3}}],["addargs",{"2":{"74":3,"75":1}}],["adds",{"2":{"60":2,"63":1}}],["addprocs",{"2":{"18":2}}],["addition",{"2":{"17":1,"19":1,"60":1}}],["additional",{"2":{"3":1,"16":1,"74":4,"75":3}}],["added",{"2":{"15":1,"68":1,"74":1,"75":1}}],["add",{"2":{"9":1,"10":1,"12":1,"35":1,"71":2,"77":2,"89":1}}],["asaxisarray",{"2":{"74":1}}],["assemble",{"2":{"78":1}}],["assessment",{"2":{"51":2,"53":2,"64":2,"68":2}}],["associated",{"2":{"74":1}}],["assing",{"0":{"37":1},"1":{"38":1,"39":1}}],["aspect=dataaspect",{"2":{"48":1,"88":1}}],["asked",{"0":{"26":1},"1":{"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1}}],["as",{"2":{"8":1,"12":1,"16":5,"17":1,"18":1,"21":1,"22":2,"28":1,"34":1,"36":1,"43":2,"48":1,"50":1,"51":1,"52":1,"54":1,"57":1,"58":1,"60":1,"63":1,"69":2,"74":11,"75":3,"79":1,"82":1,"87":1}}],["axs",{"2":{"42":1,"48":9}}],["axcopy",{"2":{"27":1}}],["ax",{"2":{"27":2,"36":1,"84":3,"86":3,"88":1,"89":3,"90":3,"91":5}}],["axlist",{"2":{"10":2,"17":2,"18":2,"24":2,"25":1,"29":3,"75":5,"78":3}}],["axessmall",{"2":{"75":2}}],["axes",{"0":{"27":1,"28":1},"2":{"7":1,"8":1,"9":1,"24":1,"25":1,"27":2,"28":2,"31":2,"33":5,"34":3,"38":1,"39":1,"50":1,"51":1,"53":2,"60":2,"64":1,"68":1,"74":15,"75":11,"78":1,"85":2,"87":1}}],["axislegend",{"2":{"86":1}}],["axis=false",{"2":{"91":1}}],["axis=",{"2":{"84":1}}],["axisdescriptor",{"2":{"75":1}}],["axisdesc",{"2":{"74":3}}],["axis",{"0":{"7":1},"2":{"3":2,"7":1,"16":3,"28":1,"31":1,"33":1,"34":7,"48":1,"58":1,"63":1,"69":1,"74":16,"75":14,"78":1,"86":1,"87":1,"88":1}}],["analog",{"2":{"61":1}}],["analyzing",{"2":{"4":1}}],["another",{"2":{"16":1,"34":1}}],["anynymous",{"2":{"74":1}}],["anyocean",{"2":{"74":1}}],["anymissing",{"2":{"74":1}}],["any",{"2":{"2":1,"3":1,"10":1,"11":1,"14":2,"16":5,"17":4,"20":1,"21":2,"22":3,"24":1,"27":1,"28":1,"29":1,"31":6,"35":3,"36":3,"43":3,"44":2,"46":4,"47":3,"48":3,"50":2,"51":2,"53":1,"54":2,"55":3,"56":3,"57":5,"64":1,"68":1,"69":1,"74":4,"75":9,"78":1,"85":1,"87":1}}],["an",{"0":{"2":1},"2":{"3":1,"10":4,"12":1,"13":1,"15":1,"18":2,"27":1,"28":1,"33":1,"34":1,"36":1,"53":3,"56":1,"60":1,"61":1,"63":1,"64":1,"65":1,"66":1,"67":1,"68":1,"74":19,"75":8}}],["and",{"0":{"23":1,"28":1,"40":1,"49":1,"53":1,"57":1,"64":1},"1":{"24":1,"25":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"50":1,"51":1,"52":1,"54":1,"55":1,"56":1,"57":1,"58":1,"65":1,"66":1,"67":1,"68":1,"69":1},"2":{"0":1,"1":1,"2":1,"5":1,"8":1,"9":1,"12":1,"16":4,"17":2,"19":1,"23":1,"24":1,"29":1,"31":1,"34":6,"35":1,"36":6,"40":1,"41":1,"43":1,"48":1,"49":2,"50":1,"51":1,"53":1,"57":1,"60":5,"61":3,"62":2,"64":1,"67":1,"68":1,"69":5,"70":1,"72":4,"74":18,"75":6,"77":1,"78":2,"84":1,"87":1,"89":1}}],["always",{"2":{"70":1,"74":2,"75":1,"79":1}}],["already",{"2":{"67":1,"74":1,"75":1}}],["although",{"2":{"57":1}}],["alternatives",{"2":{"74":1}}],["alternatively",{"2":{"0":1,"5":1,"74":1,"77":1}}],["altered",{"2":{"50":1,"51":1,"54":2,"55":3,"56":3,"57":5}}],["al",{"2":{"51":1,"53":1,"62":1,"64":1,"68":1}}],["algebra",{"0":{"35":1},"2":{"35":1}}],["allaxes",{"2":{"75":1}}],["allinaxes",{"2":{"75":1}}],["allmissing",{"2":{"74":1}}],["allocate",{"2":{"69":1}}],["allocation",{"2":{"17":1}}],["allow",{"2":{"75":1}}],["allowing",{"2":{"21":1,"22":1,"61":1}}],["allows",{"2":{"18":1}}],["all",{"0":{"9":1,"33":1,"34":1},"2":{"7":1,"9":2,"10":1,"12":1,"13":1,"14":2,"17":1,"18":4,"32":1,"34":2,"48":2,"52":1,"57":1,"60":1,"62":2,"67":3,"69":1,"72":1,"73":1,"74":6,"75":7}}],["also",{"2":{"5":1,"6":1,"14":1,"18":1,"24":1,"27":1,"34":1,"36":1,"60":2,"61":1,"69":1,"74":1,"77":1}}],["along",{"0":{"2":1},"2":{"2":1,"16":1,"74":3,"75":2,"80":1}}],["available",{"2":{"57":2,"69":1,"73":1,"74":2,"77":1}}],["avariable",{"2":{"0":1}}],["avoids",{"2":{"17":1}}],["avoided",{"2":{"0":1}}],["averaging",{"2":{"14":1}}],["averages",{"0":{"41":1},"2":{"40":1}}],["average",{"2":{"14":1,"41":2}}],["artype",{"2":{"74":2}}],["archgdaldatasets",{"2":{"52":1}}],["archgdal",{"2":{"52":2}}],["arguments",{"2":{"48":1,"74":11,"75":3}}],["argument",{"2":{"18":1,"69":1,"74":4,"75":2}}],["arr2",{"2":{"22":1}}],["arr",{"2":{"17":7,"22":2}}],["arrayinfo",{"2":{"75":1}}],["arrays",{"2":{"1":1,"2":2,"3":1,"9":1,"11":1,"23":1,"25":2,"50":2,"51":2,"59":1,"60":4,"61":3,"62":3,"74":2,"75":1}}],["array",{"0":{"17":1,"20":1},"2":{"0":1,"2":2,"3":2,"4":1,"10":3,"12":2,"13":2,"15":1,"17":8,"20":2,"28":1,"43":1,"48":1,"53":1,"60":4,"61":1,"62":1,"63":2,"69":4,"74":10,"75":4,"78":3}}],["arbitrary",{"2":{"16":1}}],["arithmetics",{"0":{"12":1},"2":{"10":1}}],["areas",{"2":{"74":1}}],["area",{"2":{"50":2,"74":1}}],["areacella",{"2":{"50":2,"87":1}}],["are",{"2":{"0":1,"11":1,"19":3,"28":1,"30":1,"34":1,"48":2,"53":1,"57":1,"58":1,"60":3,"61":2,"62":3,"69":1,"70":1,"72":1,"74":11,"75":6,"80":2,"82":1}}],["according",{"2":{"74":1}}],["access",{"2":{"4":2,"13":1,"24":1,"60":1,"63":1}}],["accessed",{"2":{"0":2,"50":1,"51":1}}],["activate",{"2":{"36":1,"72":2,"84":1,"88":1,"91":1}}],["actually",{"2":{"75":1}}],["actual",{"2":{"13":1,"69":1,"75":1,"78":1}}],["across",{"2":{"0":1,"1":1,"16":1,"60":3}}],["achieved",{"2":{"0":1}}],["a",{"0":{"3":1,"11":1,"17":1,"24":1,"25":1,"27":1,"30":1,"31":1,"32":1,"33":1,"34":1,"37":1,"54":1,"58":1,"67":1,"68":1,"83":1,"84":1},"1":{"31":1,"32":1,"33":2,"34":2,"38":1,"39":1,"85":1,"86":1},"2":{"0":4,"1":1,"2":1,"3":2,"5":7,"6":1,"7":1,"10":3,"11":1,"12":4,"13":2,"14":2,"15":1,"16":5,"17":75,"18":11,"20":2,"21":5,"22":8,"24":1,"26":1,"27":1,"28":1,"30":4,"31":3,"32":1,"34":2,"36":3,"38":2,"39":2,"41":1,"46":1,"48":2,"50":6,"51":3,"52":1,"56":2,"57":4,"58":1,"60":12,"61":4,"62":8,"63":1,"65":3,"66":3,"67":4,"69":4,"71":2,"72":2,"74":60,"75":31,"78":4,"79":1,"81":1,"82":1}}],["iall",{"2":{"75":1}}],["iwindow",{"2":{"75":1}}],["icolon",{"2":{"75":1}}],["icefire",{"2":{"88":1,"89":1,"90":1,"91":1}}],["ice",{"2":{"51":1,"53":1,"64":1,"68":1}}],["ipcc",{"2":{"51":3,"53":3,"64":3,"68":3}}],["ipsl",{"2":{"51":6,"53":6,"64":6,"68":6}}],["idx",{"2":{"85":3}}],["identical",{"2":{"74":1}}],["id",{"2":{"50":2,"51":2,"53":2,"64":2,"68":2,"87":2}}],["irregular",{"2":{"34":6,"36":2,"43":1,"46":2,"47":1,"48":1,"50":4,"51":2,"53":1,"54":2,"55":2,"56":6,"57":5,"64":1,"68":1,"75":1,"87":2}}],["immutable",{"2":{"11":1}}],["improving",{"2":{"79":1}}],["improve",{"2":{"9":1}}],["implementing",{"2":{"74":1}}],["importance",{"2":{"75":1}}],["important",{"2":{"4":1}}],["impossible",{"2":{"11":1}}],["i",{"0":{"29":1,"30":1,"35":1,"36":1,"37":1},"1":{"31":1,"32":1,"33":1,"34":1,"38":1,"39":1},"2":{"2":1,"17":3,"21":1,"22":1,"31":1,"48":2,"67":1,"72":2,"74":7,"75":4,"78":1,"85":3}}],["ispar",{"2":{"74":1,"75":1}}],["ismissing",{"2":{"69":1}}],["issues",{"2":{"42":1}}],["isequal",{"2":{"17":1}}],["is",{"2":{"1":1,"3":1,"4":2,"5":1,"9":1,"13":1,"14":2,"15":1,"16":5,"17":2,"18":3,"19":1,"22":1,"26":1,"29":1,"30":1,"34":2,"35":1,"36":4,"41":2,"42":2,"43":1,"47":1,"52":1,"54":1,"57":2,"58":1,"60":4,"61":1,"62":2,"63":1,"69":3,"71":1,"74":10,"75":10,"77":1,"79":1,"80":1,"82":1}}],["if",{"2":{"0":1,"19":1,"34":3,"67":1,"69":1,"72":1,"74":11,"75":6,"80":1}}],["inline",{"2":{"91":2}}],["incubes",{"2":{"75":1}}],["incs",{"2":{"75":1}}],["include",{"2":{"74":2,"75":1}}],["included",{"2":{"57":1}}],["inarbc",{"2":{"75":1}}],["inar",{"2":{"75":2}}],["inplace",{"2":{"74":3,"75":1}}],["inputcube",{"2":{"75":2}}],["input",{"2":{"16":1,"18":2,"36":1,"74":12,"75":8}}],["innerchunks",{"2":{"75":1}}],["inner",{"2":{"74":9,"75":3}}],["insize",{"2":{"75":1}}],["inside",{"2":{"74":3}}],["installed",{"2":{"79":1}}],["installation",{"0":{"77":1}}],["install",{"2":{"72":1,"77":1}}],["instead",{"2":{"2":1,"3":1,"13":1,"27":2,"31":1,"57":1,"60":1}}],["inds",{"2":{"75":1}}],["indexing",{"2":{"55":2,"56":2,"79":1}}],["index",{"2":{"50":2,"75":2,"87":2}}],["indices",{"2":{"75":1,"85":1}}],["indicate",{"2":{"74":1}}],["indicating",{"2":{"3":1,"17":1,"74":1}}],["indims=indims",{"2":{"17":1,"18":1}}],["indims",{"2":{"16":8,"74":7}}],["individually",{"2":{"13":2}}],["individual",{"2":{"0":1,"50":1,"51":1}}],["initialization",{"2":{"50":1,"87":1}}],["initially",{"2":{"17":1}}],["information",{"2":{"67":1,"75":2}}],["info",{"2":{"22":1,"27":1,"69":1,"79":1}}],["int",{"2":{"85":3}}],["int32",{"2":{"69":2}}],["introducing",{"2":{"62":1}}],["interested",{"2":{"80":1}}],["internal",{"0":{"75":1},"2":{"75":9}}],["internally",{"2":{"61":1}}],["interface",{"2":{"74":2,"82":1}}],["interval",{"2":{"51":1,"54":2,"55":3,"56":4,"57":6}}],["intervalsets",{"2":{"57":1}}],["intervals",{"0":{"57":1},"2":{"31":1}}],["interactive",{"2":{"0":1}}],["integer",{"2":{"24":1,"55":1,"56":1,"60":1}}],["int64",{"2":{"2":1,"3":1,"7":4,"8":4,"9":2,"16":8,"20":2,"21":6,"22":2,"24":3,"27":9,"28":3,"31":15,"33":4,"34":7,"36":3,"38":1,"39":5,"43":6,"44":6,"46":4,"47":1,"48":19,"68":3,"69":2,"75":1,"78":2}}],["into",{"0":{"83":1},"2":{"0":1,"1":1,"2":1,"4":1,"5":1,"16":1,"17":1,"19":2,"22":1,"34":4,"49":1,"62":2,"67":1,"72":1,"74":6,"75":3,"91":1}}],["in",{"0":{"37":1},"1":{"38":1,"39":1},"2":{"0":5,"3":1,"4":1,"5":1,"7":2,"8":1,"11":1,"13":1,"14":2,"16":2,"17":6,"18":3,"19":2,"21":1,"22":1,"28":1,"32":1,"34":1,"36":2,"41":2,"42":2,"45":3,"48":4,"50":2,"51":1,"54":2,"55":3,"56":4,"57":7,"58":1,"59":1,"60":5,"61":1,"62":2,"69":1,"72":2,"74":13,"75":9,"77":1,"78":2,"80":3,"82":4,"85":1,"87":1}}],["iter",{"2":{"74":1}}],["iterate",{"2":{"82":1}}],["iteration",{"0":{"82":1}}],["iterator",{"2":{"36":1}}],["iterators",{"2":{"17":1}}],["iterable",{"2":{"36":2,"74":2}}],["itself",{"2":{"74":1,"75":1}}],["its",{"2":{"0":1}}],["it",{"2":{"0":2,"4":3,"12":1,"16":1,"18":2,"27":1,"28":1,"29":1,"34":2,"36":2,"44":1,"46":1,"48":1,"53":1,"60":2,"61":1,"63":1,"67":1,"69":2,"72":1,"74":10,"75":5,"77":1}}],["lscene",{"2":{"91":1}}],["lmdz",{"2":{"51":1,"53":1,"64":1,"68":1}}],["link",{"2":{"71":1}}],["linewidth=0",{"2":{"89":1,"90":1}}],["linewidth=2",{"2":{"86":2}}],["linewidth=1",{"2":{"84":1,"86":1}}],["linestyle=",{"2":{"86":2}}],["lines",{"2":{"84":1,"86":3}}],["line",{"2":{"36":1}}],["lim",{"2":{"51":1,"53":1,"64":1,"68":1}}],["libraries",{"2":{"31":1,"60":1}}],["libray",{"2":{"30":1}}],["little",{"2":{"18":1}}],["list",{"2":{"17":1,"74":5,"75":6}}],["like",{"2":{"0":1,"36":1,"71":1,"74":2,"75":1}}],["loopinds",{"2":{"75":2}}],["looping",{"2":{"74":1,"75":1}}],["loopcachesize",{"2":{"75":1}}],["loopchunksize",{"2":{"74":1}}],["loopaxes",{"2":{"75":1}}],["loopvars",{"2":{"74":1,"75":1}}],["loops",{"2":{"74":1}}],["loop",{"2":{"74":1,"75":2}}],["looped",{"2":{"74":3,"75":3}}],["look",{"2":{"67":1,"71":1,"72":1,"74":1,"75":1}}],["lookups",{"2":{"43":15,"44":10,"46":5,"47":5,"48":38,"58":3}}],["lookup",{"2":{"43":1,"45":1,"87":3}}],["looks",{"2":{"36":1}}],["location",{"2":{"75":3}}],["locations",{"2":{"61":1,"62":1}}],["located",{"2":{"80":1}}],["locate",{"2":{"72":1}}],["localhost",{"2":{"72":1}}],["locally",{"0":{"72":1},"2":{"72":1}}],["local",{"2":{"18":1,"50":1}}],["lowclip",{"2":{"48":4}}],["lost",{"2":{"19":1}}],["lo",{"2":{"16":4}}],["loadorgenerate",{"2":{"75":1}}],["loading",{"2":{"52":1}}],["loaded",{"2":{"34":2}}],["load",{"2":{"16":1,"31":1,"34":2,"60":1}}],["long",{"2":{"48":1,"50":1,"51":1,"54":2,"55":3,"56":3,"57":5}}],["longitudes=longitudes",{"2":{"34":1}}],["longitudes",{"2":{"34":12}}],["longitude",{"2":{"31":1,"78":2}}],["lonlat",{"2":{"33":1}}],["lon=1",{"2":{"31":1,"33":1}}],["lon",{"2":{"10":2,"12":1,"13":1,"14":2,"16":10,"17":12,"18":1,"21":2,"24":3,"25":1,"29":2,"31":7,"33":3,"35":4,"36":3,"50":2,"51":2,"53":1,"54":2,"55":3,"56":6,"57":10,"58":2,"64":1,"68":1,"87":2,"89":3}}],["layer",{"2":{"74":1,"75":1}}],["layername=",{"2":{"75":1}}],["layername",{"2":{"74":2}}],["layout",{"2":{"48":2}}],["lazy",{"2":{"74":1}}],["lazily",{"2":{"13":1}}],["labelled",{"2":{"74":1}}],["labels",{"2":{"48":1,"58":1,"62":1,"63":1}}],["label=false",{"2":{"48":1}}],["label=",{"2":{"48":1,"86":3}}],["label=cb",{"2":{"48":1}}],["label",{"2":{"48":3,"50":1,"87":1}}],["last",{"2":{"16":1,"18":1}}],["la",{"2":{"16":4}}],["latest",{"2":{"79":1}}],["lat=5",{"2":{"31":1,"33":1}}],["latitudes=latitudes",{"2":{"34":1}}],["latitudes",{"2":{"34":11}}],["latitude",{"2":{"31":1,"78":2}}],["lat",{"2":{"10":2,"12":1,"13":1,"14":2,"16":7,"17":12,"18":1,"21":2,"24":3,"25":1,"29":2,"31":7,"33":3,"35":4,"36":3,"50":2,"51":2,"53":1,"54":2,"55":3,"56":5,"57":5,"58":1,"64":1,"68":1,"74":1,"87":3,"89":1,"90":1}}],["larger",{"2":{"19":1}}],["large",{"2":{"0":2,"19":1,"42":1,"60":1}}],["level",{"2":{"71":1,"72":1}}],["leap",{"2":{"84":1}}],["learn",{"2":{"82":1}}],["learning",{"2":{"60":1,"80":1}}],["least",{"2":{"34":1,"74":1}}],["length",{"2":{"43":2,"44":1,"46":3,"74":1,"75":3}}],["length=365",{"2":{"84":1}}],["length=20",{"2":{"29":1,"78":1}}],["length=15",{"2":{"10":1,"17":1,"18":1,"24":1,"29":1,"78":1}}],["length=10",{"2":{"10":1,"17":1,"18":1,"24":1,"29":1,"78":1}}],["left",{"2":{"14":2}}],["let",{"2":{"10":1,"16":2,"29":1,"31":1,"33":1,"34":1,"48":1,"53":1,"85":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/previews/PR433/assets/chunks/VPLocalSearchBox.BXjpXse4.js b/previews/PR433/assets/chunks/VPLocalSearchBox.0Xt3HADT.js similarity index 99% rename from previews/PR433/assets/chunks/VPLocalSearchBox.BXjpXse4.js rename to previews/PR433/assets/chunks/VPLocalSearchBox.0Xt3HADT.js index 5587e0a1..b51847a6 100644 --- a/previews/PR433/assets/chunks/VPLocalSearchBox.BXjpXse4.js +++ b/previews/PR433/assets/chunks/VPLocalSearchBox.0Xt3HADT.js @@ -1,4 +1,4 @@ -var kt=Object.defineProperty;var Ft=(a,e,t)=>e in a?kt(a,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):a[e]=t;var Re=(a,e,t)=>Ft(a,typeof e!="symbol"?e+"":e,t);import{V as Ot,p as se,h as pe,aj as Xe,ak as Rt,al as Ct,q as Ve,am as Mt,d as At,D as be,an as et,ao as Lt,ap as Dt,s as zt,aq as Pt,v as Ce,P as ue,O as ye,ar as Vt,as as jt,W as $t,R as Bt,$ as Wt,o as G,b as Kt,j as S,a0 as Jt,k as D,at as Ut,au as qt,av as Gt,c as Y,n as tt,e as we,C as st,F as nt,a as de,t as he,aw as Ht,ax as it,ay as Qt,a9 as Yt,af as Zt,az as Xt,_ as es}from"./framework.BPweQVnH.js";import{u as ts,d as ss}from"./theme.BQDL96Rf.js";const ns={root:()=>Ot(()=>import("./@localSearchIndexroot.BfEZfV_h.js"),[])};/*! +var kt=Object.defineProperty;var Ft=(a,e,t)=>e in a?kt(a,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):a[e]=t;var Re=(a,e,t)=>Ft(a,typeof e!="symbol"?e+"":e,t);import{V as Ot,p as se,h as pe,aj as Xe,ak as Rt,al as Ct,q as Ve,am as Mt,d as At,D as be,an as et,ao as Lt,ap as Dt,s as zt,aq as Pt,v as Ce,P as ue,O as ye,ar as Vt,as as jt,W as $t,R as Bt,$ as Wt,o as G,b as Kt,j as S,a0 as Jt,k as D,at as Ut,au as qt,av as Gt,c as Y,n as tt,e as we,C as st,F as nt,a as de,t as he,aw as Ht,ax as it,ay as Qt,a9 as Yt,af as Zt,az as Xt,_ as es}from"./framework.BPweQVnH.js";import{u as ts,d as ss}from"./theme.Caq0HCNK.js";const ns={root:()=>Ot(()=>import("./@localSearchIndexroot.9jx3caj2.js"),[])};/*! * tabbable 6.2.0 * @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE */var vt=["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])"],Te=vt.join(","),mt=typeof Element>"u",ie=mt?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,Ie=!mt&&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},Ne=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},is=function(e){var t,s=e==null||(t=e.getAttribute)===null||t===void 0?void 0:t.call(e,"contenteditable");return s===""||s==="true"},gt=function(e,t,s){if(Ne(e))return[];var n=Array.prototype.slice.apply(e.querySelectorAll(Te));return t&&ie.call(e,Te)&&n.unshift(e),n=n.filter(s),n},bt=function a(e,t,s){for(var n=[],r=Array.from(e);r.length;){var i=r.shift();if(!Ne(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=ie.call(i,Te);h&&s.filter(i)&&(t||!e.includes(i))&&n.push(i);var m=i.shadowRoot||typeof s.getShadowRoot=="function"&&s.getShadowRoot(i),f=!Ne(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},yt=function(e){return!isNaN(parseInt(e.getAttribute("tabindex"),10))},ne=function(e){if(!e)throw new Error("No node provided");return e.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName)||is(e))&&!yt(e)?0:e.tabIndex},rs=function(e,t){var s=ne(e);return s<0&&t&&!yt(e)?0:s},as=function(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex},wt=function(e){return e.tagName==="INPUT"},os=function(e){return wt(e)&&e.type==="hidden"},ls=function(e){var t=e.tagName==="DETAILS"&&Array.prototype.slice.apply(e.children).some(function(s){return s.tagName==="SUMMARY"});return t},cs=function(e,t){for(var s=0;ssummary:first-of-type"),i=r?e.parentElement:e;if(ie.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=Ie(e);if(l&&!l.shadowRoot&&n(l)===!0)return rt(e);e.assignedSlot?e=e.assignedSlot:!l&&c!==e.ownerDocument?e=c.host:e=l}e=o}if(fs(e))return!e.getClientRects().length;if(s!=="legacy-full")return!0}else if(s==="non-zero-area")return rt(e);return!1},vs=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)},gs=function a(e){var t=[],s=[];return e.forEach(function(n,r){var i=!!n.scopeParent,o=i?n.scopeParent:n,l=rs(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(as).reduce(function(n,r){return r.isScope?n.push.apply(n,r.content):n.push(r.content),n},[]).concat(t)},bs=function(e,t){t=t||{};var s;return t.getShadowRoot?s=bt([e],t.includeContainer,{filter:je.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:ms}):s=gt(e,t.includeContainer,je.bind(null,t)),gs(s)},ys=function(e,t){t=t||{};var s;return t.getShadowRoot?s=bt([e],t.includeContainer,{filter:ke.bind(null,t),flatten:!0,getShadowRoot:t.getShadowRoot}):s=gt(e,t.includeContainer,ke.bind(null,t)),s},re=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return ie.call(e,Te)===!1?!1:je(t,e)},ws=vt.concat("iframe").join(","),Me=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return ie.call(e,ws)===!1?!1:ke(t,e)};/*! diff --git a/previews/PR433/assets/chunks/theme.BQDL96Rf.js b/previews/PR433/assets/chunks/theme.Caq0HCNK.js similarity index 99% rename from previews/PR433/assets/chunks/theme.BQDL96Rf.js rename to previews/PR433/assets/chunks/theme.Caq0HCNK.js index 270e97fc..b68e2d41 100644 --- a/previews/PR433/assets/chunks/theme.BQDL96Rf.js +++ b/previews/PR433/assets/chunks/theme.Caq0HCNK.js @@ -1,2 +1,2 @@ -const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/VPLocalSearchBox.BXjpXse4.js","assets/chunks/framework.BPweQVnH.js"])))=>i.map(i=>d[i]); -import{d as h,o,c as l,r as u,n as T,a as F,t as V,b as $,w as f,e as m,T as pe,_ as k,u as Ue,i as Ge,f as Je,g as ve,h as y,j as d,k as i,l as K,m as ie,p as I,q as W,s as q,v as G,x as fe,y as me,z as Ke,A as je,B as J,F as C,C as w,D as Se,E as x,G as b,H,I as Ve,J as ee,K as U,L as z,M as ze,N as Ie,O as le,P as Ne,Q as Te,R as te,S as Re,U as Ze,V as Ye,W as Ce,X as he,Y as Xe,Z as qe,$ as xe,a0 as et,a1 as Me,a2 as tt,a3 as st,a4 as nt,a5 as ye}from"./framework.BPweQVnH.js";const at=h({__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(V(e.text),1)])],2))}}),ot={key:0,class:"VPBackdrop"},rt=h({__name:"VPBackdrop",props:{show:{type:Boolean}},setup(a){return(e,t)=>(o(),$(pe,{name:"fade"},{default:f(()=>[e.show?(o(),l("div",ot)):m("",!0)]),_:1}))}}),it=k(rt,[["__scopeId","data-v-b06cdb19"]]),S=Ue;function lt(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 _e(a){const{pathname:e,search:t,hash:n,protocol:s}=new URL(a,"http://a.com");if(Ge(a)||a.startsWith("#")||!s.startsWith("http")||!Je(e))return a;const{site:r}=S(),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}=S(),c=y(()=>{var p,_;return{label:(p=e.value.locales[t.value])==null?void 0:p.label,link:((_=e.value.locales[t.value])==null?void 0:_.link)||(t.value==="root"?"/":`/${t.value}/`)}});return{localeLinks:y(()=>Object.entries(e.value.locales).flatMap(([p,_])=>c.value.label===_.label?[]:{text:_.label,link:ct(_.link||(p==="root"?"/":`/${p}/`),s.value.i18nRouting!==!1&&a,n.value.relativePath.slice(c.value.link.length-1),!e.value.cleanUrls)+r.value})),currentLang:c}}function ct(a,e,t,n){return e?a.replace(/\/$/,"")+ce(t.replace(/(^|\/)index\.md$/,"$1").replace(/\.md$/,n?".html":"")):a}const ut={class:"NotFound"},dt={class:"code"},pt={class:"title"},vt={class:"quote"},ft={class:"action"},mt=["href","aria-label"],ht=h({__name:"NotFound",setup(a){const{theme:e}=S(),{currentLang:t}=Z();return(n,s)=>{var r,c,v,p,_;return o(),l("div",ut,[d("p",dt,V(((r=i(e).notFound)==null?void 0:r.code)??"404"),1),d("h1",pt,V(((c=i(e).notFound)==null?void 0:c.title)??"PAGE NOT FOUND"),1),s[0]||(s[0]=d("div",{class:"divider"},null,-1)),d("blockquote",vt,V(((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),d("div",ft,[d("a",{class:"link",href:i(ve)(i(t).link),"aria-label":((p=i(e).notFound)==null?void 0:p.linkLabel)??"go to home"},V(((_=i(e).notFound)==null?void 0:_.linkText)??"Take me home"),9,mt)])])}}}),_t=k(ht,[["__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 bt(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 gt(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)):K(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}=S(),n=ie("(min-width: 960px)"),s=I(!1),r=y(()=>{const B=t.value.sidebar,N=e.value.relativePath;return B?Be(B,N):[]}),c=I(r.value);W(r,(B,N)=>{JSON.stringify(B)!==JSON.stringify(N)&&(c.value=r.value)});const v=y(()=>a.value.sidebar!==!1&&c.value.length>0&&a.value.layout!=="home"),p=y(()=>_?a.value.aside==null?t.value.aside==="left":a.value.aside==="left":!1),_=y(()=>a.value.layout==="home"?!1:a.value.aside!=null?!!a.value.aside:t.value.aside!==!1),L=y(()=>v.value&&n.value),g=y(()=>v.value?bt(c.value):[]);function A(){s.value=!0}function P(){s.value=!1}function M(){s.value?P():A()}return{isOpen:s,sidebar:c,sidebarGroups:g,hasSidebar:v,hasAside:_,leftAside:p,isSidebarEnabled:L,open:A,close:P,toggle:M}}function kt(a,e){let t;q(()=>{t=a.value?document.activeElement:void 0}),G(()=>{window.addEventListener("keyup",n)}),fe(()=>{window.removeEventListener("keyup",n)});function n(s){s.key==="Escape"&&a.value&&(e(),t==null||t.focus())}}function $t(a){const{page:e,hash:t}=S(),n=I(!1),s=y(()=>a.value.collapsed!=null),r=y(()=>!!a.value.link),c=I(!1),v=()=>{c.value=K(e.value.relativePath,a.value.link)};W([e,a,t],v),G(v);const p=y(()=>c.value?!0:a.value.items?ue(e.value.relativePath,a.value.items):!1),_=y(()=>!!(a.value.items&&a.value.items.length));q(()=>{n.value=!!(s.value&&a.value.collapsed)}),me(()=>{(c.value||p.value)&&(n.value=!1)});function L(){s.value&&(n.value=!n.value)}return{collapsed:n,collapsible:s,isLink:r,isActiveLink:c,hasActiveLink:p,hasChildren:_,toggle:L}}function yt(){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 we(a){return typeof a.outline=="object"&&!Array.isArray(a.outline)&&a.outline.label||a.outlineTitle||"On this page"}function be(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:At(t),link:"#"+t.id,level:n}});return Pt(e,a)}function At(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 Pt(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;a=a.filter(c=>c.level>=n&&c.level<=s),de.length=0;for(const{element:c,link:v}of a)de.push({element:c,link:v});const r=[];e:for(let c=0;c=0;p--){const _=a[p];if(_.level{requestAnimationFrame(r),window.addEventListener("scroll",n)}),Ke(()=>{c(location.hash)}),fe(()=>{window.removeEventListener("scroll",n)});function r(){if(!t.value)return;const v=window.scrollY,p=window.innerHeight,_=document.body.offsetHeight,L=Math.abs(v+p-_)<1,g=de.map(({element:P,link:M})=>({link:M,top:St(P)})).filter(({top:P})=>!Number.isNaN(P)).sort((P,M)=>P.top-M.top);if(!g.length){c(null);return}if(v<1){c(null);return}if(L){c(g[g.length-1].link);return}let A=null;for(const{link:P,top:M}of g){if(M>v+je()+4)break;A=P}c(A)}function c(v){s&&s.classList.remove("active"),v==null?s=null:s=a.value.querySelector(`a[href="${decodeURIComponent(v)}"]`);const p=s;p?(p.classList.add("active"),e.value.style.top=p.offsetTop+39+"px",e.value.style.opacity="1"):(e.value.style.top="33px",e.value.style.opacity="0")}}function St(a){let e=0;for(;a!==document.body;){if(a===null)return NaN;e+=a.offsetTop,a=a.offsetParent}return e}const Vt=["href","title"],It=h({__name:"VPDocOutlineItem",props:{headers:{},root:{type:Boolean}},setup(a){function e({target:t}){const n=t.href.split("#")[1],s=document.getElementById(decodeURIComponent(n));s==null||s.focus({preventScroll:!0})}return(t,n)=>{const s=J("VPDocOutlineItem",!0);return o(),l("ul",{class:T(["VPDocOutlineItem",t.root?"root":"nested"])},[(o(!0),l(C,null,w(t.headers,({children:r,link:c,title:v})=>(o(),l("li",null,[d("a",{class:"outline-link",href:c,onClick:e,title:v},V(v),9,Vt),r!=null&&r.length?(o(),$(s,{key:0,headers:r},null,8,["headers"])):m("",!0)]))),256))],2)}}}),Ee=k(It,[["__scopeId","data-v-3f927ebe"]]),Nt={class:"content"},Tt={"aria-level":"2",class:"outline-title",id:"doc-outline-aria-label",role:"heading"},Ct=h({__name:"VPDocAsideOutline",setup(a){const{frontmatter:e,theme:t}=S(),n=Se([]);x(()=>{n.value=be(e.value.outline??t.value.outline)});const s=I(),r=I();return Lt(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},[d("div",Nt,[d("div",{class:"outline-marker",ref_key:"marker",ref:r},null,512),d("div",Tt,V(i(we)(i(t))),1),b(Ee,{headers:n.value,root:!0},null,8,["headers"])])],2))}}),Mt=k(Ct,[["__scopeId","data-v-b38bf2ff"]]),Bt={class:"VPDocAsideCarbonAds"},wt=h({__name:"VPDocAsideCarbonAds",props:{carbonAds:{}},setup(a){const e=()=>null;return(t,n)=>(o(),l("div",Bt,[b(i(e),{"carbon-ads":t.carbonAds},null,8,["carbon-ads"])]))}}),Et={class:"VPDocAside"},Qt=h({__name:"VPDocAside",setup(a){const{theme:e}=S();return(t,n)=>(o(),l("div",Et,[u(t.$slots,"aside-top",{},void 0,!0),u(t.$slots,"aside-outline-before",{},void 0,!0),b(Mt),u(t.$slots,"aside-outline-after",{},void 0,!0),n[0]||(n[0]=d("div",{class:"spacer"},null,-1)),u(t.$slots,"aside-ads-before",{},void 0,!0),i(e).carbonAds?(o(),$(wt,{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)]))}}),Ft=k(Qt,[["__scopeId","data-v-6d7b3c46"]]);function Ht(){const{theme:a,page:e}=S();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 Wt(){const{page:a,theme:e,frontmatter:t}=S();return y(()=>{var _,L,g,A,P,M,B,N;const n=Be(e.value.sidebar,a.value.relativePath),s=gt(n),r=Dt(s,E=>E.link.replace(/[?#].*$/,"")),c=r.findIndex(E=>K(a.value.relativePath,E.link)),v=((_=e.value.docFooter)==null?void 0:_.prev)===!1&&!t.value.prev||t.value.prev===!1,p=((L=e.value.docFooter)==null?void 0:L.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)??((g=r[c-1])==null?void 0:g.docFooterText)??((A=r[c-1])==null?void 0:A.text),link:(typeof t.value.prev=="object"?t.value.prev.link:void 0)??((P=r[c-1])==null?void 0:P.link)},next:p?void 0:{text:(typeof t.value.next=="string"?t.value.next:typeof t.value.next=="object"?t.value.next.text:void 0)??((M=r[c+1])==null?void 0:M.docFooterText)??((B=r[c+1])==null?void 0:B.text),link:(typeof t.value.next=="object"?t.value.next.link:void 0)??((N=r[c+1])==null?void 0:N.link)}}})}function Dt(a,e){const t=new Set;return a.filter(n=>{const s=e(n);return t.has(s)?!1:t.add(s)})}const Q=h({__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&&Ve.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(_e)(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"]))}}),Ot={class:"VPLastUpdated"},Ut=["datetime"],Gt=h({__name:"VPDocFooterLastUpdated",setup(a){const{theme:e,page:t,lang:n}=S(),s=y(()=>new Date(t.value.lastUpdated)),r=y(()=>s.value.toISOString()),c=I("");return G(()=>{q(()=>{var v,p,_;c.value=new Intl.DateTimeFormat((p=(v=e.value.lastUpdated)==null?void 0:v.formatOptions)!=null&&p.forceLocale?n.value:void 0,((_=e.value.lastUpdated)==null?void 0:_.formatOptions)??{dateStyle:"short",timeStyle:"short"}).format(s.value)})}),(v,p)=>{var _;return o(),l("p",Ot,[F(V(((_=i(e).lastUpdated)==null?void 0:_.text)||i(e).lastUpdatedText||"Last updated")+": ",1),d("time",{datetime:r.value},V(c.value),9,Ut)])}}}),Jt=k(Gt,[["__scopeId","data-v-475f71b8"]]),Kt={key:0,class:"VPDocFooter"},jt={key:0,class:"edit-info"},zt={key:0,class:"edit-link"},Rt={key:1,class:"last-updated"},Zt={key:1,class:"prev-next","aria-labelledby":"doc-footer-aria-label"},Yt={class:"pager"},Xt=["innerHTML"],qt=["innerHTML"],xt={class:"pager"},es=["innerHTML"],ts=["innerHTML"],ss=h({__name:"VPDocFooter",setup(a){const{theme:e,page:t,frontmatter:n}=S(),s=Ht(),r=Wt(),c=y(()=>e.value.editLink&&n.value.editLink!==!1),v=y(()=>t.value.lastUpdated),p=y(()=>c.value||v.value||r.value.prev||r.value.next);return(_,L)=>{var g,A,P,M;return p.value?(o(),l("footer",Kt,[u(_.$slots,"doc-footer-before",{},void 0,!0),c.value||v.value?(o(),l("div",jt,[c.value?(o(),l("div",zt,[b(Q,{class:"edit-link-button",href:i(s).url,"no-icon":!0},{default:f(()=>[L[0]||(L[0]=d("span",{class:"vpi-square-pen edit-link-icon"},null,-1)),F(" "+V(i(s).text),1)]),_:1},8,["href"])])):m("",!0),v.value?(o(),l("div",Rt,[b(Jt)])):m("",!0)])):m("",!0),(g=i(r).prev)!=null&&g.link||(A=i(r).next)!=null&&A.link?(o(),l("nav",Zt,[L[1]||(L[1]=d("span",{class:"visually-hidden",id:"doc-footer-aria-label"},"Pager",-1)),d("div",Yt,[(P=i(r).prev)!=null&&P.link?(o(),$(Q,{key:0,class:"pager-link prev",href:i(r).prev.link},{default:f(()=>{var B;return[d("span",{class:"desc",innerHTML:((B=i(e).docFooter)==null?void 0:B.prev)||"Previous page"},null,8,Xt),d("span",{class:"title",innerHTML:i(r).prev.text},null,8,qt)]}),_:1},8,["href"])):m("",!0)]),d("div",xt,[(M=i(r).next)!=null&&M.link?(o(),$(Q,{key:0,class:"pager-link next",href:i(r).next.link},{default:f(()=>{var B;return[d("span",{class:"desc",innerHTML:((B=i(e).docFooter)==null?void 0:B.next)||"Next page"},null,8,es),d("span",{class:"title",innerHTML:i(r).next.text},null,8,ts)]}),_:1},8,["href"])):m("",!0)])])):m("",!0)])):m("",!0)}}}),ns=k(ss,[["__scopeId","data-v-4f9813fa"]]),as={class:"container"},os={class:"aside-container"},rs={class:"aside-content"},is={class:"content"},ls={class:"content-container"},cs={class:"main"},us=h({__name:"VPDoc",setup(a){const{theme:e}=S(),t=ee(),{hasSidebar:n,hasAside:s,leftAside:r}=D(),c=y(()=>t.path.replace(/[./]+/g,"_").replace(/_html$/,""));return(v,p)=>{const _=J("Content");return o(),l("div",{class:T(["VPDoc",{"has-sidebar":i(n),"has-aside":i(s)}])},[u(v.$slots,"doc-top",{},void 0,!0),d("div",as,[i(s)?(o(),l("div",{key:0,class:T(["aside",{"left-aside":i(r)}])},[p[0]||(p[0]=d("div",{class:"aside-curtain"},null,-1)),d("div",os,[d("div",rs,[b(Ft,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),d("div",is,[d("div",ls,[u(v.$slots,"doc-before",{},void 0,!0),d("main",cs,[b(_,{class:T(["vp-doc",[c.value,i(e).externalLinkIcon&&"external-link-icon-enabled"]])},null,8,["class"])]),b(ns,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)}}}),ds=k(us,[["__scopeId","data-v-83890dd9"]]),ps=h({__name:"VPButton",props:{tag:{},size:{default:"medium"},theme:{default:"brand"},text:{},href:{},target:{},rel:{}},setup(a){const e=a,t=y(()=>e.href&&Ve.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(_e)(s.href):void 0,target:e.target??(t.value?"_blank":void 0),rel:e.rel??(t.value?"noreferrer":void 0)},{default:f(()=>[F(V(s.text),1)]),_:1},8,["class","href","target","rel"]))}}),vs=k(ps,[["__scopeId","data-v-14206e74"]]),fs=["src","alt"],ms=h({inheritAttrs:!1,__name:"VPImage",props:{image:{},alt:{}},setup(a){return(e,t)=>{const n=J("VPImage",!0);return e.image?(o(),l(C,{key:0},[typeof e.image=="string"||"src"in e.image?(o(),l("img",U({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,fs)):(o(),l(C,{key:1},[b(n,U({class:"dark",image:e.image.dark,alt:e.image.alt},e.$attrs),null,16,["image","alt"]),b(n,U({class:"light",image:e.image.light,alt:e.image.alt},e.$attrs),null,16,["image","alt"])],64))],64)):m("",!0)}}}),X=k(ms,[["__scopeId","data-v-35a7d0b8"]]),hs={class:"container"},_s={class:"main"},bs={key:0,class:"name"},gs=["innerHTML"],ks=["innerHTML"],$s=["innerHTML"],ys={key:0,class:"actions"},As={key:0,class:"image"},Ps={class:"image-container"},Ls=h({__name:"VPHero",props:{name:{},text:{},tagline:{},image:{},actions:{}},setup(a){const e=z("hero-image-slot-exists");return(t,n)=>(o(),l("div",{class:T(["VPHero",{"has-image":t.image||i(e)}])},[d("div",hs,[d("div",_s,[u(t.$slots,"home-hero-info-before",{},void 0,!0),u(t.$slots,"home-hero-info",{},()=>[t.name?(o(),l("h1",bs,[d("span",{innerHTML:t.name,class:"clip"},null,8,gs)])):m("",!0),t.text?(o(),l("p",{key:1,innerHTML:t.text,class:"text"},null,8,ks)):m("",!0),t.tagline?(o(),l("p",{key:2,innerHTML:t.tagline,class:"tagline"},null,8,$s)):m("",!0)],!0),u(t.$slots,"home-hero-info-after",{},void 0,!0),t.actions?(o(),l("div",ys,[(o(!0),l(C,null,w(t.actions,s=>(o(),l("div",{key:s.link,class:"action"},[b(vs,{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",As,[d("div",Ps,[n[0]||(n[0]=d("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))}}),Ss=k(Ls,[["__scopeId","data-v-955009fc"]]),Vs=h({__name:"VPHomeHero",setup(a){const{frontmatter:e}=S();return(t,n)=>i(e).hero?(o(),$(Ss,{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)}}),Is={class:"box"},Ns={key:0,class:"icon"},Ts=["innerHTML"],Cs=["innerHTML"],Ms=["innerHTML"],Bs={key:4,class:"link-text"},ws={class:"link-text-value"},Es=h({__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(()=>[d("article",Is,[typeof e.icon=="object"&&e.icon.wrap?(o(),l("div",Ns,[b(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,Ts)):m("",!0),d("h2",{class:"title",innerHTML:e.title},null,8,Cs),e.details?(o(),l("p",{key:3,class:"details",innerHTML:e.details},null,8,Ms)):m("",!0),e.linkText?(o(),l("div",Bs,[d("p",ws,[F(V(e.linkText)+" ",1),t[0]||(t[0]=d("span",{class:"vpi-arrow-right link-text-icon"},null,-1))])])):m("",!0)])]),_:1},8,["href","rel","target","tag"]))}}),Qs=k(Es,[["__scopeId","data-v-f5e9645b"]]),Fs={key:0,class:"VPFeatures"},Hs={class:"container"},Ws={class:"items"},Ds=h({__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",Fs,[d("div",Hs,[d("div",Ws,[(o(!0),l(C,null,w(n.features,r=>(o(),l("div",{key:r.title,class:T(["item",[t.value]])},[b(Qs,{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)}}),Os=k(Ds,[["__scopeId","data-v-d0a190d7"]]),Us=h({__name:"VPHomeFeatures",setup(a){const{frontmatter:e}=S();return(t,n)=>i(e).features?(o(),$(Os,{key:0,class:"VPHomeFeatures",features:i(e).features},null,8,["features"])):m("",!0)}}),Gs=h({__name:"VPHomeContent",setup(a){const{width:e}=ze({initialWidth:0,includeScrollbar:!1});return(t,n)=>(o(),l("div",{class:"vp-doc container",style:Ie(i(e)?{"--vp-offset":`calc(50% - ${i(e)/2}px)`}:{})},[u(t.$slots,"default",{},void 0,!0)],4))}}),Js=k(Gs,[["__scopeId","data-v-7a48a447"]]),Ks={class:"VPHome"},js=h({__name:"VPHome",setup(a){const{frontmatter:e}=S();return(t,n)=>{const s=J("Content");return o(),l("div",Ks,[u(t.$slots,"home-hero-before",{},void 0,!0),b(Vs,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),b(Us),u(t.$slots,"home-features-after",{},void 0,!0),i(e).markdownStyles!==!1?(o(),$(Js,{key:0},{default:f(()=>[b(s)]),_:1})):(o(),$(s,{key:1}))])}}}),zs=k(js,[["__scopeId","data-v-cbb6ec48"]]),Rs={},Zs={class:"VPPage"};function Ys(a,e){const t=J("Content");return o(),l("div",Zs,[u(a.$slots,"page-top"),b(t),u(a.$slots,"page-bottom")])}const Xs=k(Rs,[["render",Ys]]),qs=h({__name:"VPContent",setup(a){const{page:e,frontmatter:t}=S(),{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},()=>[b(_t)],!0):i(t).layout==="page"?(o(),$(Xs,{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(),$(zs,{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(),$(ds,{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))}}),xs=k(qs,[["__scopeId","data-v-91765379"]]),en={class:"container"},tn=["innerHTML"],sn=["innerHTML"],nn=h({__name:"VPFooter",setup(a){const{theme:e,frontmatter:t}=S(),{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)}])},[d("div",en,[i(e).footer.message?(o(),l("p",{key:0,class:"message",innerHTML:i(e).footer.message},null,8,tn)):m("",!0),i(e).footer.copyright?(o(),l("p",{key:1,class:"copyright",innerHTML:i(e).footer.copyright},null,8,sn)):m("",!0)])],2)):m("",!0)}}),an=k(nn,[["__scopeId","data-v-c970a860"]]);function on(){const{theme:a,frontmatter:e}=S(),t=Se([]),n=y(()=>t.value.length>0);return x(()=>{t.value=be(e.value.outline??a.value.outline)}),{headers:t,hasLocalNav:n}}const rn={class:"menu-text"},ln={class:"header"},cn={class:"outline"},un=h({__name:"VPLocalNavOutlineDropdown",props:{headers:{},navHeight:{}},setup(a){const e=a,{theme:t}=S(),n=I(!1),s=I(0),r=I(),c=I();function v(g){var A;(A=r.value)!=null&&A.contains(g.target)||(n.value=!1)}W(n,g=>{if(g){document.addEventListener("click",v);return}document.removeEventListener("click",v)}),le("Escape",()=>{n.value=!1}),x(()=>{n.value=!1});function p(){n.value=!n.value,s.value=window.innerHeight+Math.min(window.scrollY-e.navHeight,0)}function _(g){g.target.classList.contains("outline-link")&&(c.value&&(c.value.style.transition="none"),Ne(()=>{n.value=!1}))}function L(){n.value=!1,window.scrollTo({top:0,left:0,behavior:"smooth"})}return(g,A)=>(o(),l("div",{class:"VPLocalNavOutlineDropdown",style:Ie({"--vp-vh":s.value+"px"}),ref_key:"main",ref:r},[g.headers.length>0?(o(),l("button",{key:0,onClick:p,class:T({open:n.value})},[d("span",rn,V(i(we)(i(t))),1),A[0]||(A[0]=d("span",{class:"vpi-chevron-right icon"},null,-1))],2)):(o(),l("button",{key:1,onClick:L},V(i(t).returnToTopLabel||"Return to top"),1)),b(pe,{name:"flyout"},{default:f(()=>[n.value?(o(),l("div",{key:0,ref_key:"items",ref:c,class:"items",onClick:_},[d("div",ln,[d("a",{class:"top-link",href:"#",onClick:L},V(i(t).returnToTopLabel||"Return to top"),1)]),d("div",cn,[b(Ee,{headers:g.headers},null,8,["headers"])])],512)):m("",!0)]),_:1})],4))}}),dn=k(un,[["__scopeId","data-v-bc9dc845"]]),pn={class:"container"},vn=["aria-expanded"],fn={class:"menu-text"},mn=h({__name:"VPLocalNav",props:{open:{type:Boolean}},emits:["open-menu"],setup(a){const{theme:e,frontmatter:t}=S(),{hasSidebar:n}=D(),{headers:s}=on(),{y:r}=Te(),c=I(0);G(()=>{c.value=parseInt(getComputedStyle(document.documentElement).getPropertyValue("--vp-nav-height"))}),x(()=>{s.value=be(t.value.outline??e.value.outline)});const v=y(()=>s.value.length===0),p=y(()=>v.value&&!n.value),_=y(()=>({VPLocalNav:!0,"has-sidebar":n.value,empty:v.value,fixed:p.value}));return(L,g)=>i(t).layout!=="home"&&(!p.value||i(r)>=c.value)?(o(),l("div",{key:0,class:T(_.value)},[d("div",pn,[i(n)?(o(),l("button",{key:0,class:"menu","aria-expanded":L.open,"aria-controls":"VPSidebarNav",onClick:g[0]||(g[0]=A=>L.$emit("open-menu"))},[g[1]||(g[1]=d("span",{class:"vpi-align-left menu-icon"},null,-1)),d("span",fn,V(i(e).sidebarMenuLabel||"Menu"),1)],8,vn)):m("",!0),b(dn,{headers:i(s),navHeight:c.value},null,8,["headers","navHeight"])])],2)):m("",!0)}}),hn=k(mn,[["__scopeId","data-v-070ab83d"]]);function _n(){const a=I(!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 bn={},gn={class:"VPSwitch",type:"button",role:"switch"},kn={class:"check"},$n={key:0,class:"icon"};function yn(a,e){return o(),l("button",gn,[d("span",kn,[a.$slots.default?(o(),l("span",$n,[u(a.$slots,"default",{},void 0,!0)])):m("",!0)])])}const An=k(bn,[["render",yn],["__scopeId","data-v-4a1c76db"]]),Pn=h({__name:"VPSwitchAppearance",setup(a){const{isDark:e,theme:t}=S(),n=z("toggle-appearance",()=>{e.value=!e.value}),s=I("");return me(()=>{s.value=e.value?t.value.lightModeSwitchTitle||"Switch to light theme":t.value.darkModeSwitchTitle||"Switch to dark theme"}),(r,c)=>(o(),$(An,{title:s.value,class:"VPSwitchAppearance","aria-checked":i(e),onClick:i(n)},{default:f(()=>c[0]||(c[0]=[d("span",{class:"vpi-sun sun"},null,-1),d("span",{class:"vpi-moon moon"},null,-1)])),_:1},8,["title","aria-checked","onClick"]))}}),ge=k(Pn,[["__scopeId","data-v-e40a8bb6"]]),Ln={key:0,class:"VPNavBarAppearance"},Sn=h({__name:"VPNavBarAppearance",setup(a){const{site:e}=S();return(t,n)=>i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(o(),l("div",Ln,[b(ge)])):m("",!0)}}),Vn=k(Sn,[["__scopeId","data-v-af096f4a"]]),ke=I();let Qe=!1,re=0;function In(a){const e=I(!1);if(te){!Qe&&Nn(),re++;const t=W(ke,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||Tn()})}return Re(e)}function Nn(){document.addEventListener("focusin",Fe),Qe=!0,ke.value=document.activeElement}function Tn(){document.removeEventListener("focusin",Fe)}function Fe(){ke.value=document.activeElement}const Cn={class:"VPMenuLink"},Mn=h({__name:"VPMenuLink",props:{item:{}},setup(a){const{page:e}=S();return(t,n)=>(o(),l("div",Cn,[b(Q,{class:T({active:i(K)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,target:t.item.target,rel:t.item.rel},{default:f(()=>[F(V(t.item.text),1)]),_:1},8,["class","href","target","rel"])]))}}),se=k(Mn,[["__scopeId","data-v-8b74d055"]]),Bn={class:"VPMenuGroup"},wn={key:0,class:"title"},En=h({__name:"VPMenuGroup",props:{text:{},items:{}},setup(a){return(e,t)=>(o(),l("div",Bn,[e.text?(o(),l("p",wn,V(e.text),1)):m("",!0),(o(!0),l(C,null,w(e.items,n=>(o(),l(C,null,["link"in n?(o(),$(se,{key:0,item:n},null,8,["item"])):m("",!0)],64))),256))]))}}),Qn=k(En,[["__scopeId","data-v-48c802d0"]]),Fn={class:"VPMenu"},Hn={key:0,class:"items"},Wn=h({__name:"VPMenu",props:{items:{}},setup(a){return(e,t)=>(o(),l("div",Fn,[e.items?(o(),l("div",Hn,[(o(!0),l(C,null,w(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),U({key:1,ref_for:!0},n.props),null,16)):(o(),$(Qn,{key:2,text:n.text,items:n.items},null,8,["text","items"]))],64))),128))])):m("",!0),u(e.$slots,"default",{},void 0,!0)]))}}),Dn=k(Wn,[["__scopeId","data-v-7dd3104a"]]),On=["aria-expanded","aria-label"],Un={key:0,class:"text"},Gn=["innerHTML"],Jn={key:1,class:"vpi-more-horizontal icon"},Kn={class:"menu"},jn=h({__name:"VPFlyout",props:{icon:{},button:{},label:{},items:{}},setup(a){const e=I(!1),t=I();In({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)},[d("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",Un,[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,Gn)):m("",!0),r[3]||(r[3]=d("span",{class:"vpi-chevron-down text-icon"},null,-1))])):(o(),l("span",Jn))],8,On),d("div",Kn,[b(Dn,{items:s.items},{default:f(()=>[u(s.$slots,"default",{},void 0,!0)]),_:3},8,["items"])])],544))}}),$e=k(jn,[["__scopeId","data-v-e5380155"]]),zn=["href","aria-label","innerHTML"],Rn=h({__name:"VPSocialLink",props:{icon:{},link:{},ariaLabel:{}},setup(a){const e=a,t=y(()=>typeof e.icon=="object"?e.icon.svg:``);return(n,s)=>(o(),l("a",{class:"VPSocialLink no-icon",href:n.link,"aria-label":n.ariaLabel??(typeof n.icon=="string"?n.icon:""),target:"_blank",rel:"noopener",innerHTML:t.value},null,8,zn))}}),Zn=k(Rn,[["__scopeId","data-v-717b8b75"]]),Yn={class:"VPSocialLinks"},Xn=h({__name:"VPSocialLinks",props:{links:{}},setup(a){return(e,t)=>(o(),l("div",Yn,[(o(!0),l(C,null,w(e.links,({link:n,icon:s,ariaLabel:r})=>(o(),$(Zn,{key:n,icon:s,link:n,ariaLabel:r},null,8,["icon","link","ariaLabel"]))),128))]))}}),ne=k(Xn,[["__scopeId","data-v-ee7a9424"]]),qn={key:0,class:"group translations"},xn={class:"trans-title"},ea={key:1,class:"group"},ta={class:"item appearance"},sa={class:"label"},na={class:"appearance-action"},aa={key:2,class:"group"},oa={class:"item social-links"},ra=h({__name:"VPNavBarExtra",setup(a){const{site:e,theme:t}=S(),{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(),$($e,{key:0,class:"VPNavBarExtra",label:"extra navigation"},{default:f(()=>[i(n).length&&i(s).label?(o(),l("div",qn,[d("p",xn,V(i(s).label),1),(o(!0),l(C,null,w(i(n),p=>(o(),$(se,{key:p.link,item:p},null,8,["item"]))),128))])):m("",!0),i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(o(),l("div",ea,[d("div",ta,[d("p",sa,V(i(t).darkModeSwitchLabel||"Appearance"),1),d("div",na,[b(ge)])])])):m("",!0),i(t).socialLinks?(o(),l("div",aa,[d("div",oa,[b(ne,{class:"social-links-list",links:i(t).socialLinks},null,8,["links"])])])):m("",!0)]),_:1})):m("",!0)}}),ia=k(ra,[["__scopeId","data-v-925effce"]]),la=["aria-expanded"],ca=h({__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]=[d("span",{class:"container"},[d("span",{class:"top"}),d("span",{class:"middle"}),d("span",{class:"bottom"})],-1)]),10,la))}}),ua=k(ca,[["__scopeId","data-v-5dea55bf"]]),da=["innerHTML"],pa=h({__name:"VPNavBarMenuLink",props:{item:{}},setup(a){const{page:e}=S();return(t,n)=>(o(),$(Q,{class:T({VPNavBarMenuLink:!0,active:i(K)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,noIcon:t.item.noIcon,target:t.item.target,rel:t.item.rel,tabindex:"0"},{default:f(()=>[d("span",{innerHTML:t.item.text},null,8,da)]),_:1},8,["class","href","noIcon","target","rel"]))}}),va=k(pa,[["__scopeId","data-v-ed5ac1f6"]]),fa=h({__name:"VPNavBarMenuGroup",props:{item:{}},setup(a){const e=a,{page:t}=S(),n=r=>"component"in r?!1:"link"in r?K(t.value.relativePath,r.link,!!e.item.activeMatch):r.items.some(n),s=y(()=>n(e.item));return(r,c)=>(o(),$($e,{class:T({VPNavBarMenuGroup:!0,active:i(K)(i(t).relativePath,r.item.activeMatch,!!r.item.activeMatch)||s.value}),button:r.item.text,items:r.item.items},null,8,["class","button","items"]))}}),ma={key:0,"aria-labelledby":"main-nav-aria-label",class:"VPNavBarMenu"},ha=h({__name:"VPNavBarMenu",setup(a){const{theme:e}=S();return(t,n)=>i(e).nav?(o(),l("nav",ma,[n[0]||(n[0]=d("span",{id:"main-nav-aria-label",class:"visually-hidden"}," Main Navigation ",-1)),(o(!0),l(C,null,w(i(e).nav,s=>(o(),l(C,{key:JSON.stringify(s)},["link"in s?(o(),$(va,{key:0,item:s},null,8,["item"])):"component"in s?(o(),$(H(s.component),U({key:1,ref_for:!0},s.props),null,16)):(o(),$(fa,{key:2,item:s},null,8,["item"]))],64))),128))])):m("",!0)}}),_a=k(ha,[["__scopeId","data-v-e6d46098"]]);function ba(a){const{localeIndex:e,theme:t}=S();function n(s){var M,B,N;const r=s.split("."),c=(M=t.value.search)==null?void 0:M.options,v=c&&typeof c=="object",p=v&&((N=(B=c.locales)==null?void 0:B[e.value])==null?void 0:N.translations)||null,_=v&&c.translations||null;let L=p,g=_,A=a;const P=r.pop();for(const E of r){let O=null;const j=A==null?void 0:A[E];j&&(O=A=j);const ae=g==null?void 0:g[E];ae&&(O=g=ae);const oe=L==null?void 0:L[E];oe&&(O=L=oe),j||(A=O),ae||(g=O),oe||(L=O)}return(L==null?void 0:L[P])??(g==null?void 0:g[P])??(A==null?void 0:A[P])??""}return n}const ga=["aria-label"],ka={class:"DocSearch-Button-Container"},$a={class:"DocSearch-Button-Placeholder"},Ae=h({__name:"VPNavBarSearchButton",setup(a){const t=ba({button:{buttonText:"Search",buttonAriaLabel:"Search"}});return(n,s)=>(o(),l("button",{type:"button",class:"DocSearch DocSearch-Button","aria-label":i(t)("button.buttonAriaLabel")},[d("span",ka,[s[0]||(s[0]=d("span",{class:"vp-icon DocSearch-Search-Icon"},null,-1)),d("span",$a,V(i(t)("button.buttonText")),1)]),s[1]||(s[1]=d("span",{class:"DocSearch-Button-Keys"},[d("kbd",{class:"DocSearch-Button-Key"}),d("kbd",{class:"DocSearch-Button-Key"},"K")],-1))],8,ga))}}),ya={class:"VPNavBarSearch"},Aa={id:"local-search"},Pa={key:1,id:"docsearch"},La=h({__name:"VPNavBarSearch",setup(a){const e=Ze(()=>Ye(()=>import("./VPLocalSearchBox.BXjpXse4.js"),__vite__mapDeps([0,1]))),t=()=>null,{theme:n}=S(),s=I(!1),r=I(!1);G(()=>{});function c(){s.value||(s.value=!0,setTimeout(v,16))}function v(){const g=new Event("keydown");g.key="k",g.metaKey=!0,window.dispatchEvent(g),setTimeout(()=>{document.querySelector(".DocSearch-Modal")||v()},16)}function p(g){const A=g.target,P=A.tagName;return A.isContentEditable||P==="INPUT"||P==="SELECT"||P==="TEXTAREA"}const _=I(!1);le("k",g=>{(g.ctrlKey||g.metaKey)&&(g.preventDefault(),_.value=!0)}),le("/",g=>{p(g)||(g.preventDefault(),_.value=!0)});const L="local";return(g,A)=>{var P;return o(),l("div",ya,[i(L)==="local"?(o(),l(C,{key:0},[_.value?(o(),$(i(e),{key:0,onClose:A[0]||(A[0]=M=>_.value=!1)})):m("",!0),d("div",Aa,[b(Ae,{onClick:A[1]||(A[1]=M=>_.value=!0)})])],64)):i(L)==="algolia"?(o(),l(C,{key:1},[s.value?(o(),$(i(t),{key:0,algolia:((P=i(n).search)==null?void 0:P.options)??i(n).algolia,onVnodeBeforeMount:A[2]||(A[2]=M=>r.value=!0)},null,8,["algolia"])):m("",!0),r.value?m("",!0):(o(),l("div",Pa,[b(Ae,{onClick:c})]))],64)):m("",!0)])}}}),Sa=h({__name:"VPNavBarSocialLinks",setup(a){const{theme:e}=S();return(t,n)=>i(e).socialLinks?(o(),$(ne,{key:0,class:"VPNavBarSocialLinks",links:i(e).socialLinks},null,8,["links"])):m("",!0)}}),Va=k(Sa,[["__scopeId","data-v-164c457f"]]),Ia=["href","rel","target"],Na={key:1},Ta={key:2},Ca=h({__name:"VPNavBarTitle",setup(a){const{site:e,theme:t}=S(),{hasSidebar:n}=D(),{currentLang:s}=Z(),r=y(()=>{var p;return typeof t.value.logoLink=="string"?t.value.logoLink:(p=t.value.logoLink)==null?void 0:p.link}),c=y(()=>{var p;return typeof t.value.logoLink=="string"||(p=t.value.logoLink)==null?void 0:p.rel}),v=y(()=>{var p;return typeof t.value.logoLink=="string"||(p=t.value.logoLink)==null?void 0:p.target});return(p,_)=>(o(),l("div",{class:T(["VPNavBarTitle",{"has-sidebar":i(n)}])},[d("a",{class:"title",href:r.value??i(_e)(i(s).link),rel:c.value,target:v.value},[u(p.$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",Na,V(i(t).siteTitle),1)):i(t).siteTitle===void 0?(o(),l("span",Ta,V(i(e).title),1)):m("",!0),u(p.$slots,"nav-bar-title-after",{},void 0,!0)],8,Ia)],2))}}),Ma=k(Ca,[["__scopeId","data-v-28a961f9"]]),Ba={class:"items"},wa={class:"title"},Ea=h({__name:"VPNavBarTranslations",setup(a){const{theme:e}=S(),{localeLinks:t,currentLang:n}=Z({correspondingLink:!0});return(s,r)=>i(t).length&&i(n).label?(o(),$($e,{key:0,class:"VPNavBarTranslations",icon:"vpi-languages",label:i(e).langMenuLabel||"Change language"},{default:f(()=>[d("div",Ba,[d("p",wa,V(i(n).label),1),(o(!0),l(C,null,w(i(t),c=>(o(),$(se,{key:c.link,item:c},null,8,["item"]))),128))])]),_:1},8,["label"])):m("",!0)}}),Qa=k(Ea,[["__scopeId","data-v-c80d9ad0"]]),Fa={class:"wrapper"},Ha={class:"container"},Wa={class:"title"},Da={class:"content"},Oa={class:"content-body"},Ua=h({__name:"VPNavBar",props:{isScreenOpen:{type:Boolean}},emits:["toggle-screen"],setup(a){const e=a,{y:t}=Te(),{hasSidebar:n}=D(),{frontmatter:s}=S(),r=I({});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])},[d("div",Fa,[d("div",Ha,[d("div",Wa,[b(Ma,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})]),d("div",Da,[d("div",Oa,[u(c.$slots,"nav-bar-content-before",{},void 0,!0),b(La,{class:"search"}),b(_a,{class:"menu"}),b(Qa,{class:"translations"}),b(Vn,{class:"appearance"}),b(Va,{class:"social-links"}),b(ia,{class:"extra"}),u(c.$slots,"nav-bar-content-after",{},void 0,!0),b(ua,{class:"hamburger",active:c.isScreenOpen,onClick:v[0]||(v[0]=p=>c.$emit("toggle-screen"))},null,8,["active"])])])])]),v[1]||(v[1]=d("div",{class:"divider"},[d("div",{class:"divider-line"})],-1))],2))}}),Ga=k(Ua,[["__scopeId","data-v-822684d1"]]),Ja={key:0,class:"VPNavScreenAppearance"},Ka={class:"text"},ja=h({__name:"VPNavScreenAppearance",setup(a){const{site:e,theme:t}=S();return(n,s)=>i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(o(),l("div",Ja,[d("p",Ka,V(i(t).darkModeSwitchLabel||"Appearance"),1),b(ge)])):m("",!0)}}),za=k(ja,[["__scopeId","data-v-ffb44008"]]),Ra=h({__name:"VPNavScreenMenuLink",props:{item:{}},setup(a){const e=z("close-screen");return(t,n)=>(o(),$(Q,{class:"VPNavScreenMenuLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:i(e),innerHTML:t.item.text},null,8,["href","target","rel","onClick","innerHTML"]))}}),Za=k(Ra,[["__scopeId","data-v-27d04aeb"]]),Ya=h({__name:"VPNavScreenMenuGroupLink",props:{item:{}},setup(a){const e=z("close-screen");return(t,n)=>(o(),$(Q,{class:"VPNavScreenMenuGroupLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:i(e)},{default:f(()=>[F(V(t.item.text),1)]),_:1},8,["href","target","rel","onClick"]))}}),He=k(Ya,[["__scopeId","data-v-7179dbb7"]]),Xa={class:"VPNavScreenMenuGroupSection"},qa={key:0,class:"title"},xa=h({__name:"VPNavScreenMenuGroupSection",props:{text:{},items:{}},setup(a){return(e,t)=>(o(),l("div",Xa,[e.text?(o(),l("p",qa,V(e.text),1)):m("",!0),(o(!0),l(C,null,w(e.items,n=>(o(),$(He,{key:n.text,item:n},null,8,["item"]))),128))]))}}),eo=k(xa,[["__scopeId","data-v-4b8941ac"]]),to=["aria-controls","aria-expanded"],so=["innerHTML"],no=["id"],ao={key:0,class:"item"},oo={key:1,class:"item"},ro={key:2,class:"group"},io=h({__name:"VPNavScreenMenuGroup",props:{text:{},items:{}},setup(a){const e=a,t=I(!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}])},[d("button",{class:"button","aria-controls":n.value,"aria-expanded":t.value,onClick:s},[d("span",{class:"button-text",innerHTML:r.text},null,8,so),c[0]||(c[0]=d("span",{class:"vpi-plus button-icon"},null,-1))],8,to),d("div",{id:n.value,class:"items"},[(o(!0),l(C,null,w(r.items,v=>(o(),l(C,{key:JSON.stringify(v)},["link"in v?(o(),l("div",ao,[b(He,{item:v},null,8,["item"])])):"component"in v?(o(),l("div",oo,[(o(),$(H(v.component),U({ref_for:!0},v.props,{"screen-menu":""}),null,16))])):(o(),l("div",ro,[b(eo,{text:v.text,items:v.items},null,8,["text","items"])]))],64))),128))],8,no)],2))}}),lo=k(io,[["__scopeId","data-v-875057a5"]]),co={key:0,class:"VPNavScreenMenu"},uo=h({__name:"VPNavScreenMenu",setup(a){const{theme:e}=S();return(t,n)=>i(e).nav?(o(),l("nav",co,[(o(!0),l(C,null,w(i(e).nav,s=>(o(),l(C,{key:JSON.stringify(s)},["link"in s?(o(),$(Za,{key:0,item:s},null,8,["item"])):"component"in s?(o(),$(H(s.component),U({key:1,ref_for:!0},s.props,{"screen-menu":""}),null,16)):(o(),$(lo,{key:2,text:s.text||"",items:s.items},null,8,["text","items"]))],64))),128))])):m("",!0)}}),po=h({__name:"VPNavScreenSocialLinks",setup(a){const{theme:e}=S();return(t,n)=>i(e).socialLinks?(o(),$(ne,{key:0,class:"VPNavScreenSocialLinks",links:i(e).socialLinks},null,8,["links"])):m("",!0)}}),vo={class:"list"},fo=h({__name:"VPNavScreenTranslations",setup(a){const{localeLinks:e,currentLang:t}=Z({correspondingLink:!0}),n=I(!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}])},[d("button",{class:"title",onClick:s},[c[0]||(c[0]=d("span",{class:"vpi-languages icon lang"},null,-1)),F(" "+V(i(t).label)+" ",1),c[1]||(c[1]=d("span",{class:"vpi-chevron-down icon chevron"},null,-1))]),d("ul",vo,[(o(!0),l(C,null,w(i(e),v=>(o(),l("li",{key:v.link,class:"item"},[b(Q,{class:"link",href:v.link},{default:f(()=>[F(V(v.text),1)]),_:2},1032,["href"])]))),128))])],2)):m("",!0)}}),mo=k(fo,[["__scopeId","data-v-362991c2"]]),ho={class:"container"},_o=h({__name:"VPNavScreen",props:{open:{type:Boolean}},setup(a){const e=I(null),t=Ce(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"},[d("div",ho,[u(n.$slots,"nav-screen-content-before",{},void 0,!0),b(uo,{class:"menu"}),b(mo,{class:"translations"}),b(za,{class:"appearance"}),b(po,{class:"social-links"}),u(n.$slots,"nav-screen-content-after",{},void 0,!0)])],512)):m("",!0)]),_:3}))}}),bo=k(_o,[["__scopeId","data-v-833aabba"]]),go={key:0,class:"VPNav"},ko=h({__name:"VPNav",setup(a){const{isScreenOpen:e,closeScreen:t,toggleScreen:n}=_n(),{frontmatter:s}=S(),r=y(()=>s.value.navbar!==!1);return he("close-screen",t),q(()=>{te&&document.documentElement.classList.toggle("hide-nav",!r.value)}),(c,v)=>r.value?(o(),l("header",go,[b(Ga,{"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"]),b(bo,{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)}}),$o=k(ko,[["__scopeId","data-v-f1e365da"]]),yo=["role","tabindex"],Ao={key:1,class:"items"},Po=h({__name:"VPSidebarItem",props:{item:{},depth:{}},setup(a){const e=a,{collapsed:t,collapsible:n,isLink:s,isActiveLink:r,hasActiveLink:c,hasChildren:v,toggle:p}=$t(y(()=>e.item)),_=y(()=>v.value?"section":"div"),L=y(()=>s.value?"a":"div"),g=y(()=>v.value?e.depth+2===7?"p":`h${e.depth+2}`:"p"),A=y(()=>s.value?void 0:"button"),P=y(()=>[[`level-${e.depth}`],{collapsible:n.value},{collapsed:t.value},{"is-link":s.value},{"is-active":r.value},{"has-active":c.value}]);function M(N){"key"in N&&N.key!=="Enter"||!e.item.link&&p()}function B(){e.item.link&&p()}return(N,E)=>{const O=J("VPSidebarItem",!0);return o(),$(H(_.value),{class:T(["VPSidebarItem",P.value])},{default:f(()=>[N.item.text?(o(),l("div",U({key:0,class:"item",role:A.value},Xe(N.item.items?{click:M,keydown:M}:{},!0),{tabindex:N.item.items&&0}),[E[1]||(E[1]=d("div",{class:"indicator"},null,-1)),N.item.link?(o(),$(Q,{key:0,tag:L.value,class:"link",href:N.item.link,rel:N.item.rel,target:N.item.target},{default:f(()=>[(o(),$(H(g.value),{class:"text",innerHTML:N.item.text},null,8,["innerHTML"]))]),_:1},8,["tag","href","rel","target"])):(o(),$(H(g.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:B,onKeydown:qe(B,["enter"]),tabindex:"0"},E[0]||(E[0]=[d("span",{class:"vpi-chevron-right caret-icon"},null,-1)]),32)):m("",!0)],16,yo)):m("",!0),N.item.items&&N.item.items.length?(o(),l("div",Ao,[N.depth<5?(o(!0),l(C,{key:0},w(N.item.items,j=>(o(),$(O,{key:j.text,item:j,depth:N.depth+1},null,8,["item","depth"]))),128)):m("",!0)])):m("",!0)]),_:1},8,["class"])}}}),Lo=k(Po,[["__scopeId","data-v-196b2e5f"]]),So=h({__name:"VPSidebarGroup",props:{items:{}},setup(a){const e=I(!0);let t=null;return G(()=>{t=setTimeout(()=>{t=null,e.value=!1},300)}),xe(()=>{t!=null&&(clearTimeout(t),t=null)}),(n,s)=>(o(!0),l(C,null,w(n.items,r=>(o(),l("div",{key:r.text,class:T(["group",{"no-transition":e.value}])},[b(Lo,{item:r,depth:0},null,8,["item"])],2))),128))}}),Vo=k(So,[["__scopeId","data-v-9e426adc"]]),Io={class:"nav",id:"VPSidebarNav","aria-labelledby":"sidebar-aria-label",tabindex:"-1"},No=h({__name:"VPSidebar",props:{open:{type:Boolean}},setup(a){const{sidebarGroups:e,hasSidebar:t}=D(),n=a,s=I(null),r=Ce(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=I(0);return W(e,()=>{c.value+=1},{deep:!0}),(v,p)=>i(t)?(o(),l("aside",{key:0,class:T(["VPSidebar",{open:v.open}]),ref_key:"navEl",ref:s,onClick:p[0]||(p[0]=et(()=>{},["stop"]))},[p[2]||(p[2]=d("div",{class:"curtain"},null,-1)),d("nav",Io,[p[1]||(p[1]=d("span",{class:"visually-hidden",id:"sidebar-aria-label"}," Sidebar Navigation ",-1)),u(v.$slots,"sidebar-nav-before",{},void 0,!0),(o(),$(Vo,{items:i(e),key:c.value},null,8,["items"])),u(v.$slots,"sidebar-nav-after",{},void 0,!0)])],2)):m("",!0)}}),To=k(No,[["__scopeId","data-v-18756405"]]),Co=h({__name:"VPSkipLink",setup(a){const e=ee(),t=I();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,[d("span",{ref_key:"backToTop",ref:t,tabindex:"-1"},null,512),d("a",{href:"#VPContent",class:"VPSkipLink visually-hidden",onClick:n}," Skip to content ")],64))}}),Mo=k(Co,[["__scopeId","data-v-c3508ec8"]]),Bo=h({__name:"Layout",setup(a){const{isOpen:e,open:t,close:n}=D(),s=ee();W(()=>s.path,n),kt(e,n);const{frontmatter:r}=S(),c=Me(),v=y(()=>!!c["home-hero-image"]);return he("hero-image-slot-exists",v),(p,_)=>{const L=J("Content");return i(r).layout!==!1?(o(),l("div",{key:0,class:T(["Layout",i(r).pageClass])},[u(p.$slots,"layout-top",{},void 0,!0),b(Mo),b(it,{class:"backdrop",show:i(e),onClick:i(n)},null,8,["show","onClick"]),b($o,null,{"nav-bar-title-before":f(()=>[u(p.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(p.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[u(p.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[u(p.$slots,"nav-bar-content-after",{},void 0,!0)]),"nav-screen-content-before":f(()=>[u(p.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[u(p.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3}),b(hn,{open:i(e),onOpenMenu:i(t)},null,8,["open","onOpenMenu"]),b(To,{open:i(e)},{"sidebar-nav-before":f(()=>[u(p.$slots,"sidebar-nav-before",{},void 0,!0)]),"sidebar-nav-after":f(()=>[u(p.$slots,"sidebar-nav-after",{},void 0,!0)]),_:3},8,["open"]),b(xs,null,{"page-top":f(()=>[u(p.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[u(p.$slots,"page-bottom",{},void 0,!0)]),"not-found":f(()=>[u(p.$slots,"not-found",{},void 0,!0)]),"home-hero-before":f(()=>[u(p.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[u(p.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(p.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(p.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(p.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(p.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[u(p.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[u(p.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[u(p.$slots,"home-features-after",{},void 0,!0)]),"doc-footer-before":f(()=>[u(p.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[u(p.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[u(p.$slots,"doc-after",{},void 0,!0)]),"doc-top":f(()=>[u(p.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[u(p.$slots,"doc-bottom",{},void 0,!0)]),"aside-top":f(()=>[u(p.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[u(p.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[u(p.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(p.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(p.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(p.$slots,"aside-ads-after",{},void 0,!0)]),_:3}),b(an),u(p.$slots,"layout-bottom",{},void 0,!0)],2)):(o(),$(L,{key:1}))}}}),wo=k(Bo,[["__scopeId","data-v-a9a9e638"]]),Eo={},Qo={class:"VPTeamPage"};function Fo(a,e){return o(),l("div",Qo,[u(a.$slots,"default")])}const Mr=k(Eo,[["render",Fo],["__scopeId","data-v-c2f8e101"]]),Ho={},Wo={class:"VPTeamPageTitle"},Do={key:0,class:"title"},Oo={key:1,class:"lead"};function Uo(a,e){return o(),l("div",Wo,[a.$slots.title?(o(),l("h1",Do,[u(a.$slots,"title",{},void 0,!0)])):m("",!0),a.$slots.lead?(o(),l("p",Oo,[u(a.$slots,"lead",{},void 0,!0)])):m("",!0)])}const Br=k(Ho,[["render",Uo],["__scopeId","data-v-e277e15c"]]),Go={},Jo={class:"VPTeamPageSection"},Ko={class:"title"},jo={key:0,class:"title-text"},zo={key:0,class:"lead"},Ro={key:1,class:"members"};function Zo(a,e){return o(),l("section",Jo,[d("div",Ko,[e[0]||(e[0]=d("div",{class:"title-line"},null,-1)),a.$slots.title?(o(),l("h2",jo,[u(a.$slots,"title",{},void 0,!0)])):m("",!0)]),a.$slots.lead?(o(),l("p",zo,[u(a.$slots,"lead",{},void 0,!0)])):m("",!0),a.$slots.members?(o(),l("div",Ro,[u(a.$slots,"members",{},void 0,!0)])):m("",!0)])}const wr=k(Go,[["render",Zo],["__scopeId","data-v-d43bc49d"]]),Yo={class:"profile"},Xo={class:"avatar"},qo=["src","alt"],xo={class:"data"},er={class:"name"},tr={key:0,class:"affiliation"},sr={key:0,class:"title"},nr={key:1,class:"at"},ar=["innerHTML"],or={key:2,class:"links"},rr={key:0,class:"sp"},ir=h({__name:"VPTeamMembersItem",props:{size:{default:"medium"},member:{}},setup(a){return(e,t)=>(o(),l("article",{class:T(["VPTeamMembersItem",[e.size]])},[d("div",Yo,[d("figure",Xo,[d("img",{class:"avatar-img",src:e.member.avatar,alt:e.member.name},null,8,qo)]),d("div",xo,[d("h1",er,V(e.member.name),1),e.member.title||e.member.org?(o(),l("p",tr,[e.member.title?(o(),l("span",sr,V(e.member.title),1)):m("",!0),e.member.title&&e.member.org?(o(),l("span",nr," @ ")):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(V(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,ar)):m("",!0),e.member.links?(o(),l("div",or,[b(ne,{links:e.member.links},null,8,["links"])])):m("",!0)])]),e.member.sponsor?(o(),l("div",rr,[b(Q,{class:"sp-link",href:e.member.sponsor,"no-icon":""},{default:f(()=>[t[0]||(t[0]=d("span",{class:"vpi-heart sp-icon"},null,-1)),F(" "+V(e.member.actionText||"Sponsor"),1)]),_:1},8,["href"])])):m("",!0)],2))}}),lr=k(ir,[["__scopeId","data-v-f9987cb6"]]),cr={class:"container"},ur=h({__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])},[d("div",cr,[(o(!0),l(C,null,w(n.members,r=>(o(),l("div",{key:r.name,class:"item"},[b(lr,{size:n.size,member:r},null,8,["size","member"])]))),128))])],2))}}),Er=k(ur,[["__scopeId","data-v-fba19bad"]]),Pe={Layout:wo,enhanceApp:({app:a})=>{a.component("Badge",at)}},dr={},pr={style:{"text-align":"center"}};function vr(a,e){const t=J("font");return o(),l(C,null,[e[1]||(e[1]=d("br",null,null,-1)),d("h1",pr,[d("strong",null,[b(t,{color:"orange"},{default:f(()=>e[0]||(e[0]=[F(" Package Ecosystem")])),_:1})])]),e[2]||(e[2]=tt('

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 fr=k(dr,[["render",vr]]),mr=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 Ne(),e.scrollTop=c.offsetTop-v,r}}},We="vitepress:tabSharedState",R=typeof localStorage<"u"?localStorage:null,De="vitepress:tabsSharedState",hr=()=>{const a=R==null?void 0:R.getItem(De);if(a)try{return JSON.parse(a)}catch{}return{}},_r=a=>{R&&R.setItem(De,JSON.stringify(a))},br=a=>{const e=st({});W(()=>e.content,(t,n)=>{t&&n&&_r(t)},{deep:!0}),a.provide(We,e)},gr=(a,e)=>{const t=z(We);if(!t)throw new Error("[vitepress-plugin-tabs] TabsSharedState should be injected");G(()=>{t.content||(t.content=hr())});const n=I(),s=y({get(){var p;const c=e.value,v=a.value;if(c){const _=(p=t.content)==null?void 0:p[c];if(_&&v.includes(_))return _}else{const _=n.value;if(_)return _}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 Le=0;const kr=()=>(Le++,""+Le);function $r(){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 Oe="vitepress:tabSingleState",yr=a=>{he(Oe,a)},Ar=()=>{const a=z(Oe);if(!a)throw new Error("[vitepress-plugin-tabs] TabsSingleState should be injected");return a},Pr={class:"plugin-tabs"},Lr=["id","aria-selected","aria-controls","tabindex","onClick"],Sr=h({__name:"PluginTabs",props:{sharedStateKey:{}},setup(a){const e=a,t=$r(),{selected:n,select:s}=gr(t,nt(e,"sharedStateKey")),r=I(),{stabilizeScrollPosition:c}=mr(r),v=c(s),p=I([]),_=g=>{var M;const A=t.value.indexOf(n.value);let P;g.key==="ArrowLeft"?P=A>=1?A-1:t.value.length-1:g.key==="ArrowRight"&&(P=A(o(),l("div",Pr,[d("div",{ref_key:"tablist",ref:r,class:"plugin-tabs--tab-list",role:"tablist",onKeydown:_},[(o(!0),l(C,null,w(i(t),P=>(o(),l("button",{id:`tab-${P}-${i(L)}`,ref_for:!0,ref_key:"buttonRefs",ref:p,key:P,role:"tab",class:"plugin-tabs--tab","aria-selected":P===i(n),"aria-controls":`panel-${P}-${i(L)}`,tabindex:P===i(n)?0:-1,onClick:()=>i(v)(P)},V(P),9,Lr))),128))],544),u(g.$slots,"default")]))}}),Vr=["id","aria-labelledby"],Ir=h({__name:"PluginTabsTab",props:{label:{}},setup(a){const{uid:e,selected:t}=Ar();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,Vr)):m("",!0)}}),Nr=k(Ir,[["__scopeId","data-v-9b0d03d2"]]),Tr=a=>{br(a),a.component("PluginTabs",Sr),a.component("PluginTabsTab",Nr)},Qr={extends:Pe,Layout(){return ye(Pe.Layout,null,{"aside-ads-before":()=>ye(fr)})},enhanceApp({app:a,router:e,siteData:t}){Tr(a)}};export{Qr as R,Br as V,Er as a,wr as b,Mr as c,ba as d,S as u}; +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/VPLocalSearchBox.0Xt3HADT.js","assets/chunks/framework.BPweQVnH.js"])))=>i.map(i=>d[i]); +import{d as h,o,c as l,r as u,n as T,a as F,t as V,b as $,w as f,e as m,T as pe,_ as k,u as Ue,i as Ge,f as Je,g as ve,h as y,j as d,k as i,l as K,m as ie,p as I,q as W,s as q,v as G,x as fe,y as me,z as Ke,A as je,B as J,F as C,C as w,D as Se,E as x,G as b,H,I as Ve,J as ee,K as U,L as z,M as ze,N as Ie,O as le,P as Ne,Q as Te,R as te,S as Re,U as Ze,V as Ye,W as Ce,X as he,Y as Xe,Z as qe,$ as xe,a0 as et,a1 as Me,a2 as tt,a3 as st,a4 as nt,a5 as ye}from"./framework.BPweQVnH.js";const at=h({__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(V(e.text),1)])],2))}}),ot={key:0,class:"VPBackdrop"},rt=h({__name:"VPBackdrop",props:{show:{type:Boolean}},setup(a){return(e,t)=>(o(),$(pe,{name:"fade"},{default:f(()=>[e.show?(o(),l("div",ot)):m("",!0)]),_:1}))}}),it=k(rt,[["__scopeId","data-v-b06cdb19"]]),S=Ue;function lt(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 _e(a){const{pathname:e,search:t,hash:n,protocol:s}=new URL(a,"http://a.com");if(Ge(a)||a.startsWith("#")||!s.startsWith("http")||!Je(e))return a;const{site:r}=S(),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}=S(),c=y(()=>{var p,_;return{label:(p=e.value.locales[t.value])==null?void 0:p.label,link:((_=e.value.locales[t.value])==null?void 0:_.link)||(t.value==="root"?"/":`/${t.value}/`)}});return{localeLinks:y(()=>Object.entries(e.value.locales).flatMap(([p,_])=>c.value.label===_.label?[]:{text:_.label,link:ct(_.link||(p==="root"?"/":`/${p}/`),s.value.i18nRouting!==!1&&a,n.value.relativePath.slice(c.value.link.length-1),!e.value.cleanUrls)+r.value})),currentLang:c}}function ct(a,e,t,n){return e?a.replace(/\/$/,"")+ce(t.replace(/(^|\/)index\.md$/,"$1").replace(/\.md$/,n?".html":"")):a}const ut={class:"NotFound"},dt={class:"code"},pt={class:"title"},vt={class:"quote"},ft={class:"action"},mt=["href","aria-label"],ht=h({__name:"NotFound",setup(a){const{theme:e}=S(),{currentLang:t}=Z();return(n,s)=>{var r,c,v,p,_;return o(),l("div",ut,[d("p",dt,V(((r=i(e).notFound)==null?void 0:r.code)??"404"),1),d("h1",pt,V(((c=i(e).notFound)==null?void 0:c.title)??"PAGE NOT FOUND"),1),s[0]||(s[0]=d("div",{class:"divider"},null,-1)),d("blockquote",vt,V(((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),d("div",ft,[d("a",{class:"link",href:i(ve)(i(t).link),"aria-label":((p=i(e).notFound)==null?void 0:p.linkLabel)??"go to home"},V(((_=i(e).notFound)==null?void 0:_.linkText)??"Take me home"),9,mt)])])}}}),_t=k(ht,[["__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 bt(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 gt(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)):K(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}=S(),n=ie("(min-width: 960px)"),s=I(!1),r=y(()=>{const B=t.value.sidebar,N=e.value.relativePath;return B?Be(B,N):[]}),c=I(r.value);W(r,(B,N)=>{JSON.stringify(B)!==JSON.stringify(N)&&(c.value=r.value)});const v=y(()=>a.value.sidebar!==!1&&c.value.length>0&&a.value.layout!=="home"),p=y(()=>_?a.value.aside==null?t.value.aside==="left":a.value.aside==="left":!1),_=y(()=>a.value.layout==="home"?!1:a.value.aside!=null?!!a.value.aside:t.value.aside!==!1),L=y(()=>v.value&&n.value),g=y(()=>v.value?bt(c.value):[]);function A(){s.value=!0}function P(){s.value=!1}function M(){s.value?P():A()}return{isOpen:s,sidebar:c,sidebarGroups:g,hasSidebar:v,hasAside:_,leftAside:p,isSidebarEnabled:L,open:A,close:P,toggle:M}}function kt(a,e){let t;q(()=>{t=a.value?document.activeElement:void 0}),G(()=>{window.addEventListener("keyup",n)}),fe(()=>{window.removeEventListener("keyup",n)});function n(s){s.key==="Escape"&&a.value&&(e(),t==null||t.focus())}}function $t(a){const{page:e,hash:t}=S(),n=I(!1),s=y(()=>a.value.collapsed!=null),r=y(()=>!!a.value.link),c=I(!1),v=()=>{c.value=K(e.value.relativePath,a.value.link)};W([e,a,t],v),G(v);const p=y(()=>c.value?!0:a.value.items?ue(e.value.relativePath,a.value.items):!1),_=y(()=>!!(a.value.items&&a.value.items.length));q(()=>{n.value=!!(s.value&&a.value.collapsed)}),me(()=>{(c.value||p.value)&&(n.value=!1)});function L(){s.value&&(n.value=!n.value)}return{collapsed:n,collapsible:s,isLink:r,isActiveLink:c,hasActiveLink:p,hasChildren:_,toggle:L}}function yt(){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 we(a){return typeof a.outline=="object"&&!Array.isArray(a.outline)&&a.outline.label||a.outlineTitle||"On this page"}function be(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:At(t),link:"#"+t.id,level:n}});return Pt(e,a)}function At(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 Pt(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;a=a.filter(c=>c.level>=n&&c.level<=s),de.length=0;for(const{element:c,link:v}of a)de.push({element:c,link:v});const r=[];e:for(let c=0;c=0;p--){const _=a[p];if(_.level{requestAnimationFrame(r),window.addEventListener("scroll",n)}),Ke(()=>{c(location.hash)}),fe(()=>{window.removeEventListener("scroll",n)});function r(){if(!t.value)return;const v=window.scrollY,p=window.innerHeight,_=document.body.offsetHeight,L=Math.abs(v+p-_)<1,g=de.map(({element:P,link:M})=>({link:M,top:St(P)})).filter(({top:P})=>!Number.isNaN(P)).sort((P,M)=>P.top-M.top);if(!g.length){c(null);return}if(v<1){c(null);return}if(L){c(g[g.length-1].link);return}let A=null;for(const{link:P,top:M}of g){if(M>v+je()+4)break;A=P}c(A)}function c(v){s&&s.classList.remove("active"),v==null?s=null:s=a.value.querySelector(`a[href="${decodeURIComponent(v)}"]`);const p=s;p?(p.classList.add("active"),e.value.style.top=p.offsetTop+39+"px",e.value.style.opacity="1"):(e.value.style.top="33px",e.value.style.opacity="0")}}function St(a){let e=0;for(;a!==document.body;){if(a===null)return NaN;e+=a.offsetTop,a=a.offsetParent}return e}const Vt=["href","title"],It=h({__name:"VPDocOutlineItem",props:{headers:{},root:{type:Boolean}},setup(a){function e({target:t}){const n=t.href.split("#")[1],s=document.getElementById(decodeURIComponent(n));s==null||s.focus({preventScroll:!0})}return(t,n)=>{const s=J("VPDocOutlineItem",!0);return o(),l("ul",{class:T(["VPDocOutlineItem",t.root?"root":"nested"])},[(o(!0),l(C,null,w(t.headers,({children:r,link:c,title:v})=>(o(),l("li",null,[d("a",{class:"outline-link",href:c,onClick:e,title:v},V(v),9,Vt),r!=null&&r.length?(o(),$(s,{key:0,headers:r},null,8,["headers"])):m("",!0)]))),256))],2)}}}),Ee=k(It,[["__scopeId","data-v-3f927ebe"]]),Nt={class:"content"},Tt={"aria-level":"2",class:"outline-title",id:"doc-outline-aria-label",role:"heading"},Ct=h({__name:"VPDocAsideOutline",setup(a){const{frontmatter:e,theme:t}=S(),n=Se([]);x(()=>{n.value=be(e.value.outline??t.value.outline)});const s=I(),r=I();return Lt(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},[d("div",Nt,[d("div",{class:"outline-marker",ref_key:"marker",ref:r},null,512),d("div",Tt,V(i(we)(i(t))),1),b(Ee,{headers:n.value,root:!0},null,8,["headers"])])],2))}}),Mt=k(Ct,[["__scopeId","data-v-b38bf2ff"]]),Bt={class:"VPDocAsideCarbonAds"},wt=h({__name:"VPDocAsideCarbonAds",props:{carbonAds:{}},setup(a){const e=()=>null;return(t,n)=>(o(),l("div",Bt,[b(i(e),{"carbon-ads":t.carbonAds},null,8,["carbon-ads"])]))}}),Et={class:"VPDocAside"},Qt=h({__name:"VPDocAside",setup(a){const{theme:e}=S();return(t,n)=>(o(),l("div",Et,[u(t.$slots,"aside-top",{},void 0,!0),u(t.$slots,"aside-outline-before",{},void 0,!0),b(Mt),u(t.$slots,"aside-outline-after",{},void 0,!0),n[0]||(n[0]=d("div",{class:"spacer"},null,-1)),u(t.$slots,"aside-ads-before",{},void 0,!0),i(e).carbonAds?(o(),$(wt,{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)]))}}),Ft=k(Qt,[["__scopeId","data-v-6d7b3c46"]]);function Ht(){const{theme:a,page:e}=S();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 Wt(){const{page:a,theme:e,frontmatter:t}=S();return y(()=>{var _,L,g,A,P,M,B,N;const n=Be(e.value.sidebar,a.value.relativePath),s=gt(n),r=Dt(s,E=>E.link.replace(/[?#].*$/,"")),c=r.findIndex(E=>K(a.value.relativePath,E.link)),v=((_=e.value.docFooter)==null?void 0:_.prev)===!1&&!t.value.prev||t.value.prev===!1,p=((L=e.value.docFooter)==null?void 0:L.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)??((g=r[c-1])==null?void 0:g.docFooterText)??((A=r[c-1])==null?void 0:A.text),link:(typeof t.value.prev=="object"?t.value.prev.link:void 0)??((P=r[c-1])==null?void 0:P.link)},next:p?void 0:{text:(typeof t.value.next=="string"?t.value.next:typeof t.value.next=="object"?t.value.next.text:void 0)??((M=r[c+1])==null?void 0:M.docFooterText)??((B=r[c+1])==null?void 0:B.text),link:(typeof t.value.next=="object"?t.value.next.link:void 0)??((N=r[c+1])==null?void 0:N.link)}}})}function Dt(a,e){const t=new Set;return a.filter(n=>{const s=e(n);return t.has(s)?!1:t.add(s)})}const Q=h({__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&&Ve.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(_e)(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"]))}}),Ot={class:"VPLastUpdated"},Ut=["datetime"],Gt=h({__name:"VPDocFooterLastUpdated",setup(a){const{theme:e,page:t,lang:n}=S(),s=y(()=>new Date(t.value.lastUpdated)),r=y(()=>s.value.toISOString()),c=I("");return G(()=>{q(()=>{var v,p,_;c.value=new Intl.DateTimeFormat((p=(v=e.value.lastUpdated)==null?void 0:v.formatOptions)!=null&&p.forceLocale?n.value:void 0,((_=e.value.lastUpdated)==null?void 0:_.formatOptions)??{dateStyle:"short",timeStyle:"short"}).format(s.value)})}),(v,p)=>{var _;return o(),l("p",Ot,[F(V(((_=i(e).lastUpdated)==null?void 0:_.text)||i(e).lastUpdatedText||"Last updated")+": ",1),d("time",{datetime:r.value},V(c.value),9,Ut)])}}}),Jt=k(Gt,[["__scopeId","data-v-475f71b8"]]),Kt={key:0,class:"VPDocFooter"},jt={key:0,class:"edit-info"},zt={key:0,class:"edit-link"},Rt={key:1,class:"last-updated"},Zt={key:1,class:"prev-next","aria-labelledby":"doc-footer-aria-label"},Yt={class:"pager"},Xt=["innerHTML"],qt=["innerHTML"],xt={class:"pager"},es=["innerHTML"],ts=["innerHTML"],ss=h({__name:"VPDocFooter",setup(a){const{theme:e,page:t,frontmatter:n}=S(),s=Ht(),r=Wt(),c=y(()=>e.value.editLink&&n.value.editLink!==!1),v=y(()=>t.value.lastUpdated),p=y(()=>c.value||v.value||r.value.prev||r.value.next);return(_,L)=>{var g,A,P,M;return p.value?(o(),l("footer",Kt,[u(_.$slots,"doc-footer-before",{},void 0,!0),c.value||v.value?(o(),l("div",jt,[c.value?(o(),l("div",zt,[b(Q,{class:"edit-link-button",href:i(s).url,"no-icon":!0},{default:f(()=>[L[0]||(L[0]=d("span",{class:"vpi-square-pen edit-link-icon"},null,-1)),F(" "+V(i(s).text),1)]),_:1},8,["href"])])):m("",!0),v.value?(o(),l("div",Rt,[b(Jt)])):m("",!0)])):m("",!0),(g=i(r).prev)!=null&&g.link||(A=i(r).next)!=null&&A.link?(o(),l("nav",Zt,[L[1]||(L[1]=d("span",{class:"visually-hidden",id:"doc-footer-aria-label"},"Pager",-1)),d("div",Yt,[(P=i(r).prev)!=null&&P.link?(o(),$(Q,{key:0,class:"pager-link prev",href:i(r).prev.link},{default:f(()=>{var B;return[d("span",{class:"desc",innerHTML:((B=i(e).docFooter)==null?void 0:B.prev)||"Previous page"},null,8,Xt),d("span",{class:"title",innerHTML:i(r).prev.text},null,8,qt)]}),_:1},8,["href"])):m("",!0)]),d("div",xt,[(M=i(r).next)!=null&&M.link?(o(),$(Q,{key:0,class:"pager-link next",href:i(r).next.link},{default:f(()=>{var B;return[d("span",{class:"desc",innerHTML:((B=i(e).docFooter)==null?void 0:B.next)||"Next page"},null,8,es),d("span",{class:"title",innerHTML:i(r).next.text},null,8,ts)]}),_:1},8,["href"])):m("",!0)])])):m("",!0)])):m("",!0)}}}),ns=k(ss,[["__scopeId","data-v-4f9813fa"]]),as={class:"container"},os={class:"aside-container"},rs={class:"aside-content"},is={class:"content"},ls={class:"content-container"},cs={class:"main"},us=h({__name:"VPDoc",setup(a){const{theme:e}=S(),t=ee(),{hasSidebar:n,hasAside:s,leftAside:r}=D(),c=y(()=>t.path.replace(/[./]+/g,"_").replace(/_html$/,""));return(v,p)=>{const _=J("Content");return o(),l("div",{class:T(["VPDoc",{"has-sidebar":i(n),"has-aside":i(s)}])},[u(v.$slots,"doc-top",{},void 0,!0),d("div",as,[i(s)?(o(),l("div",{key:0,class:T(["aside",{"left-aside":i(r)}])},[p[0]||(p[0]=d("div",{class:"aside-curtain"},null,-1)),d("div",os,[d("div",rs,[b(Ft,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),d("div",is,[d("div",ls,[u(v.$slots,"doc-before",{},void 0,!0),d("main",cs,[b(_,{class:T(["vp-doc",[c.value,i(e).externalLinkIcon&&"external-link-icon-enabled"]])},null,8,["class"])]),b(ns,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)}}}),ds=k(us,[["__scopeId","data-v-83890dd9"]]),ps=h({__name:"VPButton",props:{tag:{},size:{default:"medium"},theme:{default:"brand"},text:{},href:{},target:{},rel:{}},setup(a){const e=a,t=y(()=>e.href&&Ve.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(_e)(s.href):void 0,target:e.target??(t.value?"_blank":void 0),rel:e.rel??(t.value?"noreferrer":void 0)},{default:f(()=>[F(V(s.text),1)]),_:1},8,["class","href","target","rel"]))}}),vs=k(ps,[["__scopeId","data-v-14206e74"]]),fs=["src","alt"],ms=h({inheritAttrs:!1,__name:"VPImage",props:{image:{},alt:{}},setup(a){return(e,t)=>{const n=J("VPImage",!0);return e.image?(o(),l(C,{key:0},[typeof e.image=="string"||"src"in e.image?(o(),l("img",U({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,fs)):(o(),l(C,{key:1},[b(n,U({class:"dark",image:e.image.dark,alt:e.image.alt},e.$attrs),null,16,["image","alt"]),b(n,U({class:"light",image:e.image.light,alt:e.image.alt},e.$attrs),null,16,["image","alt"])],64))],64)):m("",!0)}}}),X=k(ms,[["__scopeId","data-v-35a7d0b8"]]),hs={class:"container"},_s={class:"main"},bs={key:0,class:"name"},gs=["innerHTML"],ks=["innerHTML"],$s=["innerHTML"],ys={key:0,class:"actions"},As={key:0,class:"image"},Ps={class:"image-container"},Ls=h({__name:"VPHero",props:{name:{},text:{},tagline:{},image:{},actions:{}},setup(a){const e=z("hero-image-slot-exists");return(t,n)=>(o(),l("div",{class:T(["VPHero",{"has-image":t.image||i(e)}])},[d("div",hs,[d("div",_s,[u(t.$slots,"home-hero-info-before",{},void 0,!0),u(t.$slots,"home-hero-info",{},()=>[t.name?(o(),l("h1",bs,[d("span",{innerHTML:t.name,class:"clip"},null,8,gs)])):m("",!0),t.text?(o(),l("p",{key:1,innerHTML:t.text,class:"text"},null,8,ks)):m("",!0),t.tagline?(o(),l("p",{key:2,innerHTML:t.tagline,class:"tagline"},null,8,$s)):m("",!0)],!0),u(t.$slots,"home-hero-info-after",{},void 0,!0),t.actions?(o(),l("div",ys,[(o(!0),l(C,null,w(t.actions,s=>(o(),l("div",{key:s.link,class:"action"},[b(vs,{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",As,[d("div",Ps,[n[0]||(n[0]=d("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))}}),Ss=k(Ls,[["__scopeId","data-v-955009fc"]]),Vs=h({__name:"VPHomeHero",setup(a){const{frontmatter:e}=S();return(t,n)=>i(e).hero?(o(),$(Ss,{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)}}),Is={class:"box"},Ns={key:0,class:"icon"},Ts=["innerHTML"],Cs=["innerHTML"],Ms=["innerHTML"],Bs={key:4,class:"link-text"},ws={class:"link-text-value"},Es=h({__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(()=>[d("article",Is,[typeof e.icon=="object"&&e.icon.wrap?(o(),l("div",Ns,[b(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,Ts)):m("",!0),d("h2",{class:"title",innerHTML:e.title},null,8,Cs),e.details?(o(),l("p",{key:3,class:"details",innerHTML:e.details},null,8,Ms)):m("",!0),e.linkText?(o(),l("div",Bs,[d("p",ws,[F(V(e.linkText)+" ",1),t[0]||(t[0]=d("span",{class:"vpi-arrow-right link-text-icon"},null,-1))])])):m("",!0)])]),_:1},8,["href","rel","target","tag"]))}}),Qs=k(Es,[["__scopeId","data-v-f5e9645b"]]),Fs={key:0,class:"VPFeatures"},Hs={class:"container"},Ws={class:"items"},Ds=h({__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",Fs,[d("div",Hs,[d("div",Ws,[(o(!0),l(C,null,w(n.features,r=>(o(),l("div",{key:r.title,class:T(["item",[t.value]])},[b(Qs,{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)}}),Os=k(Ds,[["__scopeId","data-v-d0a190d7"]]),Us=h({__name:"VPHomeFeatures",setup(a){const{frontmatter:e}=S();return(t,n)=>i(e).features?(o(),$(Os,{key:0,class:"VPHomeFeatures",features:i(e).features},null,8,["features"])):m("",!0)}}),Gs=h({__name:"VPHomeContent",setup(a){const{width:e}=ze({initialWidth:0,includeScrollbar:!1});return(t,n)=>(o(),l("div",{class:"vp-doc container",style:Ie(i(e)?{"--vp-offset":`calc(50% - ${i(e)/2}px)`}:{})},[u(t.$slots,"default",{},void 0,!0)],4))}}),Js=k(Gs,[["__scopeId","data-v-7a48a447"]]),Ks={class:"VPHome"},js=h({__name:"VPHome",setup(a){const{frontmatter:e}=S();return(t,n)=>{const s=J("Content");return o(),l("div",Ks,[u(t.$slots,"home-hero-before",{},void 0,!0),b(Vs,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),b(Us),u(t.$slots,"home-features-after",{},void 0,!0),i(e).markdownStyles!==!1?(o(),$(Js,{key:0},{default:f(()=>[b(s)]),_:1})):(o(),$(s,{key:1}))])}}}),zs=k(js,[["__scopeId","data-v-cbb6ec48"]]),Rs={},Zs={class:"VPPage"};function Ys(a,e){const t=J("Content");return o(),l("div",Zs,[u(a.$slots,"page-top"),b(t),u(a.$slots,"page-bottom")])}const Xs=k(Rs,[["render",Ys]]),qs=h({__name:"VPContent",setup(a){const{page:e,frontmatter:t}=S(),{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},()=>[b(_t)],!0):i(t).layout==="page"?(o(),$(Xs,{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(),$(zs,{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(),$(ds,{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))}}),xs=k(qs,[["__scopeId","data-v-91765379"]]),en={class:"container"},tn=["innerHTML"],sn=["innerHTML"],nn=h({__name:"VPFooter",setup(a){const{theme:e,frontmatter:t}=S(),{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)}])},[d("div",en,[i(e).footer.message?(o(),l("p",{key:0,class:"message",innerHTML:i(e).footer.message},null,8,tn)):m("",!0),i(e).footer.copyright?(o(),l("p",{key:1,class:"copyright",innerHTML:i(e).footer.copyright},null,8,sn)):m("",!0)])],2)):m("",!0)}}),an=k(nn,[["__scopeId","data-v-c970a860"]]);function on(){const{theme:a,frontmatter:e}=S(),t=Se([]),n=y(()=>t.value.length>0);return x(()=>{t.value=be(e.value.outline??a.value.outline)}),{headers:t,hasLocalNav:n}}const rn={class:"menu-text"},ln={class:"header"},cn={class:"outline"},un=h({__name:"VPLocalNavOutlineDropdown",props:{headers:{},navHeight:{}},setup(a){const e=a,{theme:t}=S(),n=I(!1),s=I(0),r=I(),c=I();function v(g){var A;(A=r.value)!=null&&A.contains(g.target)||(n.value=!1)}W(n,g=>{if(g){document.addEventListener("click",v);return}document.removeEventListener("click",v)}),le("Escape",()=>{n.value=!1}),x(()=>{n.value=!1});function p(){n.value=!n.value,s.value=window.innerHeight+Math.min(window.scrollY-e.navHeight,0)}function _(g){g.target.classList.contains("outline-link")&&(c.value&&(c.value.style.transition="none"),Ne(()=>{n.value=!1}))}function L(){n.value=!1,window.scrollTo({top:0,left:0,behavior:"smooth"})}return(g,A)=>(o(),l("div",{class:"VPLocalNavOutlineDropdown",style:Ie({"--vp-vh":s.value+"px"}),ref_key:"main",ref:r},[g.headers.length>0?(o(),l("button",{key:0,onClick:p,class:T({open:n.value})},[d("span",rn,V(i(we)(i(t))),1),A[0]||(A[0]=d("span",{class:"vpi-chevron-right icon"},null,-1))],2)):(o(),l("button",{key:1,onClick:L},V(i(t).returnToTopLabel||"Return to top"),1)),b(pe,{name:"flyout"},{default:f(()=>[n.value?(o(),l("div",{key:0,ref_key:"items",ref:c,class:"items",onClick:_},[d("div",ln,[d("a",{class:"top-link",href:"#",onClick:L},V(i(t).returnToTopLabel||"Return to top"),1)]),d("div",cn,[b(Ee,{headers:g.headers},null,8,["headers"])])],512)):m("",!0)]),_:1})],4))}}),dn=k(un,[["__scopeId","data-v-bc9dc845"]]),pn={class:"container"},vn=["aria-expanded"],fn={class:"menu-text"},mn=h({__name:"VPLocalNav",props:{open:{type:Boolean}},emits:["open-menu"],setup(a){const{theme:e,frontmatter:t}=S(),{hasSidebar:n}=D(),{headers:s}=on(),{y:r}=Te(),c=I(0);G(()=>{c.value=parseInt(getComputedStyle(document.documentElement).getPropertyValue("--vp-nav-height"))}),x(()=>{s.value=be(t.value.outline??e.value.outline)});const v=y(()=>s.value.length===0),p=y(()=>v.value&&!n.value),_=y(()=>({VPLocalNav:!0,"has-sidebar":n.value,empty:v.value,fixed:p.value}));return(L,g)=>i(t).layout!=="home"&&(!p.value||i(r)>=c.value)?(o(),l("div",{key:0,class:T(_.value)},[d("div",pn,[i(n)?(o(),l("button",{key:0,class:"menu","aria-expanded":L.open,"aria-controls":"VPSidebarNav",onClick:g[0]||(g[0]=A=>L.$emit("open-menu"))},[g[1]||(g[1]=d("span",{class:"vpi-align-left menu-icon"},null,-1)),d("span",fn,V(i(e).sidebarMenuLabel||"Menu"),1)],8,vn)):m("",!0),b(dn,{headers:i(s),navHeight:c.value},null,8,["headers","navHeight"])])],2)):m("",!0)}}),hn=k(mn,[["__scopeId","data-v-070ab83d"]]);function _n(){const a=I(!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 bn={},gn={class:"VPSwitch",type:"button",role:"switch"},kn={class:"check"},$n={key:0,class:"icon"};function yn(a,e){return o(),l("button",gn,[d("span",kn,[a.$slots.default?(o(),l("span",$n,[u(a.$slots,"default",{},void 0,!0)])):m("",!0)])])}const An=k(bn,[["render",yn],["__scopeId","data-v-4a1c76db"]]),Pn=h({__name:"VPSwitchAppearance",setup(a){const{isDark:e,theme:t}=S(),n=z("toggle-appearance",()=>{e.value=!e.value}),s=I("");return me(()=>{s.value=e.value?t.value.lightModeSwitchTitle||"Switch to light theme":t.value.darkModeSwitchTitle||"Switch to dark theme"}),(r,c)=>(o(),$(An,{title:s.value,class:"VPSwitchAppearance","aria-checked":i(e),onClick:i(n)},{default:f(()=>c[0]||(c[0]=[d("span",{class:"vpi-sun sun"},null,-1),d("span",{class:"vpi-moon moon"},null,-1)])),_:1},8,["title","aria-checked","onClick"]))}}),ge=k(Pn,[["__scopeId","data-v-e40a8bb6"]]),Ln={key:0,class:"VPNavBarAppearance"},Sn=h({__name:"VPNavBarAppearance",setup(a){const{site:e}=S();return(t,n)=>i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(o(),l("div",Ln,[b(ge)])):m("",!0)}}),Vn=k(Sn,[["__scopeId","data-v-af096f4a"]]),ke=I();let Qe=!1,re=0;function In(a){const e=I(!1);if(te){!Qe&&Nn(),re++;const t=W(ke,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||Tn()})}return Re(e)}function Nn(){document.addEventListener("focusin",Fe),Qe=!0,ke.value=document.activeElement}function Tn(){document.removeEventListener("focusin",Fe)}function Fe(){ke.value=document.activeElement}const Cn={class:"VPMenuLink"},Mn=h({__name:"VPMenuLink",props:{item:{}},setup(a){const{page:e}=S();return(t,n)=>(o(),l("div",Cn,[b(Q,{class:T({active:i(K)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,target:t.item.target,rel:t.item.rel},{default:f(()=>[F(V(t.item.text),1)]),_:1},8,["class","href","target","rel"])]))}}),se=k(Mn,[["__scopeId","data-v-8b74d055"]]),Bn={class:"VPMenuGroup"},wn={key:0,class:"title"},En=h({__name:"VPMenuGroup",props:{text:{},items:{}},setup(a){return(e,t)=>(o(),l("div",Bn,[e.text?(o(),l("p",wn,V(e.text),1)):m("",!0),(o(!0),l(C,null,w(e.items,n=>(o(),l(C,null,["link"in n?(o(),$(se,{key:0,item:n},null,8,["item"])):m("",!0)],64))),256))]))}}),Qn=k(En,[["__scopeId","data-v-48c802d0"]]),Fn={class:"VPMenu"},Hn={key:0,class:"items"},Wn=h({__name:"VPMenu",props:{items:{}},setup(a){return(e,t)=>(o(),l("div",Fn,[e.items?(o(),l("div",Hn,[(o(!0),l(C,null,w(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),U({key:1,ref_for:!0},n.props),null,16)):(o(),$(Qn,{key:2,text:n.text,items:n.items},null,8,["text","items"]))],64))),128))])):m("",!0),u(e.$slots,"default",{},void 0,!0)]))}}),Dn=k(Wn,[["__scopeId","data-v-7dd3104a"]]),On=["aria-expanded","aria-label"],Un={key:0,class:"text"},Gn=["innerHTML"],Jn={key:1,class:"vpi-more-horizontal icon"},Kn={class:"menu"},jn=h({__name:"VPFlyout",props:{icon:{},button:{},label:{},items:{}},setup(a){const e=I(!1),t=I();In({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)},[d("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",Un,[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,Gn)):m("",!0),r[3]||(r[3]=d("span",{class:"vpi-chevron-down text-icon"},null,-1))])):(o(),l("span",Jn))],8,On),d("div",Kn,[b(Dn,{items:s.items},{default:f(()=>[u(s.$slots,"default",{},void 0,!0)]),_:3},8,["items"])])],544))}}),$e=k(jn,[["__scopeId","data-v-e5380155"]]),zn=["href","aria-label","innerHTML"],Rn=h({__name:"VPSocialLink",props:{icon:{},link:{},ariaLabel:{}},setup(a){const e=a,t=y(()=>typeof e.icon=="object"?e.icon.svg:``);return(n,s)=>(o(),l("a",{class:"VPSocialLink no-icon",href:n.link,"aria-label":n.ariaLabel??(typeof n.icon=="string"?n.icon:""),target:"_blank",rel:"noopener",innerHTML:t.value},null,8,zn))}}),Zn=k(Rn,[["__scopeId","data-v-717b8b75"]]),Yn={class:"VPSocialLinks"},Xn=h({__name:"VPSocialLinks",props:{links:{}},setup(a){return(e,t)=>(o(),l("div",Yn,[(o(!0),l(C,null,w(e.links,({link:n,icon:s,ariaLabel:r})=>(o(),$(Zn,{key:n,icon:s,link:n,ariaLabel:r},null,8,["icon","link","ariaLabel"]))),128))]))}}),ne=k(Xn,[["__scopeId","data-v-ee7a9424"]]),qn={key:0,class:"group translations"},xn={class:"trans-title"},ea={key:1,class:"group"},ta={class:"item appearance"},sa={class:"label"},na={class:"appearance-action"},aa={key:2,class:"group"},oa={class:"item social-links"},ra=h({__name:"VPNavBarExtra",setup(a){const{site:e,theme:t}=S(),{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(),$($e,{key:0,class:"VPNavBarExtra",label:"extra navigation"},{default:f(()=>[i(n).length&&i(s).label?(o(),l("div",qn,[d("p",xn,V(i(s).label),1),(o(!0),l(C,null,w(i(n),p=>(o(),$(se,{key:p.link,item:p},null,8,["item"]))),128))])):m("",!0),i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(o(),l("div",ea,[d("div",ta,[d("p",sa,V(i(t).darkModeSwitchLabel||"Appearance"),1),d("div",na,[b(ge)])])])):m("",!0),i(t).socialLinks?(o(),l("div",aa,[d("div",oa,[b(ne,{class:"social-links-list",links:i(t).socialLinks},null,8,["links"])])])):m("",!0)]),_:1})):m("",!0)}}),ia=k(ra,[["__scopeId","data-v-925effce"]]),la=["aria-expanded"],ca=h({__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]=[d("span",{class:"container"},[d("span",{class:"top"}),d("span",{class:"middle"}),d("span",{class:"bottom"})],-1)]),10,la))}}),ua=k(ca,[["__scopeId","data-v-5dea55bf"]]),da=["innerHTML"],pa=h({__name:"VPNavBarMenuLink",props:{item:{}},setup(a){const{page:e}=S();return(t,n)=>(o(),$(Q,{class:T({VPNavBarMenuLink:!0,active:i(K)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,noIcon:t.item.noIcon,target:t.item.target,rel:t.item.rel,tabindex:"0"},{default:f(()=>[d("span",{innerHTML:t.item.text},null,8,da)]),_:1},8,["class","href","noIcon","target","rel"]))}}),va=k(pa,[["__scopeId","data-v-ed5ac1f6"]]),fa=h({__name:"VPNavBarMenuGroup",props:{item:{}},setup(a){const e=a,{page:t}=S(),n=r=>"component"in r?!1:"link"in r?K(t.value.relativePath,r.link,!!e.item.activeMatch):r.items.some(n),s=y(()=>n(e.item));return(r,c)=>(o(),$($e,{class:T({VPNavBarMenuGroup:!0,active:i(K)(i(t).relativePath,r.item.activeMatch,!!r.item.activeMatch)||s.value}),button:r.item.text,items:r.item.items},null,8,["class","button","items"]))}}),ma={key:0,"aria-labelledby":"main-nav-aria-label",class:"VPNavBarMenu"},ha=h({__name:"VPNavBarMenu",setup(a){const{theme:e}=S();return(t,n)=>i(e).nav?(o(),l("nav",ma,[n[0]||(n[0]=d("span",{id:"main-nav-aria-label",class:"visually-hidden"}," Main Navigation ",-1)),(o(!0),l(C,null,w(i(e).nav,s=>(o(),l(C,{key:JSON.stringify(s)},["link"in s?(o(),$(va,{key:0,item:s},null,8,["item"])):"component"in s?(o(),$(H(s.component),U({key:1,ref_for:!0},s.props),null,16)):(o(),$(fa,{key:2,item:s},null,8,["item"]))],64))),128))])):m("",!0)}}),_a=k(ha,[["__scopeId","data-v-e6d46098"]]);function ba(a){const{localeIndex:e,theme:t}=S();function n(s){var M,B,N;const r=s.split("."),c=(M=t.value.search)==null?void 0:M.options,v=c&&typeof c=="object",p=v&&((N=(B=c.locales)==null?void 0:B[e.value])==null?void 0:N.translations)||null,_=v&&c.translations||null;let L=p,g=_,A=a;const P=r.pop();for(const E of r){let O=null;const j=A==null?void 0:A[E];j&&(O=A=j);const ae=g==null?void 0:g[E];ae&&(O=g=ae);const oe=L==null?void 0:L[E];oe&&(O=L=oe),j||(A=O),ae||(g=O),oe||(L=O)}return(L==null?void 0:L[P])??(g==null?void 0:g[P])??(A==null?void 0:A[P])??""}return n}const ga=["aria-label"],ka={class:"DocSearch-Button-Container"},$a={class:"DocSearch-Button-Placeholder"},Ae=h({__name:"VPNavBarSearchButton",setup(a){const t=ba({button:{buttonText:"Search",buttonAriaLabel:"Search"}});return(n,s)=>(o(),l("button",{type:"button",class:"DocSearch DocSearch-Button","aria-label":i(t)("button.buttonAriaLabel")},[d("span",ka,[s[0]||(s[0]=d("span",{class:"vp-icon DocSearch-Search-Icon"},null,-1)),d("span",$a,V(i(t)("button.buttonText")),1)]),s[1]||(s[1]=d("span",{class:"DocSearch-Button-Keys"},[d("kbd",{class:"DocSearch-Button-Key"}),d("kbd",{class:"DocSearch-Button-Key"},"K")],-1))],8,ga))}}),ya={class:"VPNavBarSearch"},Aa={id:"local-search"},Pa={key:1,id:"docsearch"},La=h({__name:"VPNavBarSearch",setup(a){const e=Ze(()=>Ye(()=>import("./VPLocalSearchBox.0Xt3HADT.js"),__vite__mapDeps([0,1]))),t=()=>null,{theme:n}=S(),s=I(!1),r=I(!1);G(()=>{});function c(){s.value||(s.value=!0,setTimeout(v,16))}function v(){const g=new Event("keydown");g.key="k",g.metaKey=!0,window.dispatchEvent(g),setTimeout(()=>{document.querySelector(".DocSearch-Modal")||v()},16)}function p(g){const A=g.target,P=A.tagName;return A.isContentEditable||P==="INPUT"||P==="SELECT"||P==="TEXTAREA"}const _=I(!1);le("k",g=>{(g.ctrlKey||g.metaKey)&&(g.preventDefault(),_.value=!0)}),le("/",g=>{p(g)||(g.preventDefault(),_.value=!0)});const L="local";return(g,A)=>{var P;return o(),l("div",ya,[i(L)==="local"?(o(),l(C,{key:0},[_.value?(o(),$(i(e),{key:0,onClose:A[0]||(A[0]=M=>_.value=!1)})):m("",!0),d("div",Aa,[b(Ae,{onClick:A[1]||(A[1]=M=>_.value=!0)})])],64)):i(L)==="algolia"?(o(),l(C,{key:1},[s.value?(o(),$(i(t),{key:0,algolia:((P=i(n).search)==null?void 0:P.options)??i(n).algolia,onVnodeBeforeMount:A[2]||(A[2]=M=>r.value=!0)},null,8,["algolia"])):m("",!0),r.value?m("",!0):(o(),l("div",Pa,[b(Ae,{onClick:c})]))],64)):m("",!0)])}}}),Sa=h({__name:"VPNavBarSocialLinks",setup(a){const{theme:e}=S();return(t,n)=>i(e).socialLinks?(o(),$(ne,{key:0,class:"VPNavBarSocialLinks",links:i(e).socialLinks},null,8,["links"])):m("",!0)}}),Va=k(Sa,[["__scopeId","data-v-164c457f"]]),Ia=["href","rel","target"],Na={key:1},Ta={key:2},Ca=h({__name:"VPNavBarTitle",setup(a){const{site:e,theme:t}=S(),{hasSidebar:n}=D(),{currentLang:s}=Z(),r=y(()=>{var p;return typeof t.value.logoLink=="string"?t.value.logoLink:(p=t.value.logoLink)==null?void 0:p.link}),c=y(()=>{var p;return typeof t.value.logoLink=="string"||(p=t.value.logoLink)==null?void 0:p.rel}),v=y(()=>{var p;return typeof t.value.logoLink=="string"||(p=t.value.logoLink)==null?void 0:p.target});return(p,_)=>(o(),l("div",{class:T(["VPNavBarTitle",{"has-sidebar":i(n)}])},[d("a",{class:"title",href:r.value??i(_e)(i(s).link),rel:c.value,target:v.value},[u(p.$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",Na,V(i(t).siteTitle),1)):i(t).siteTitle===void 0?(o(),l("span",Ta,V(i(e).title),1)):m("",!0),u(p.$slots,"nav-bar-title-after",{},void 0,!0)],8,Ia)],2))}}),Ma=k(Ca,[["__scopeId","data-v-28a961f9"]]),Ba={class:"items"},wa={class:"title"},Ea=h({__name:"VPNavBarTranslations",setup(a){const{theme:e}=S(),{localeLinks:t,currentLang:n}=Z({correspondingLink:!0});return(s,r)=>i(t).length&&i(n).label?(o(),$($e,{key:0,class:"VPNavBarTranslations",icon:"vpi-languages",label:i(e).langMenuLabel||"Change language"},{default:f(()=>[d("div",Ba,[d("p",wa,V(i(n).label),1),(o(!0),l(C,null,w(i(t),c=>(o(),$(se,{key:c.link,item:c},null,8,["item"]))),128))])]),_:1},8,["label"])):m("",!0)}}),Qa=k(Ea,[["__scopeId","data-v-c80d9ad0"]]),Fa={class:"wrapper"},Ha={class:"container"},Wa={class:"title"},Da={class:"content"},Oa={class:"content-body"},Ua=h({__name:"VPNavBar",props:{isScreenOpen:{type:Boolean}},emits:["toggle-screen"],setup(a){const e=a,{y:t}=Te(),{hasSidebar:n}=D(),{frontmatter:s}=S(),r=I({});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])},[d("div",Fa,[d("div",Ha,[d("div",Wa,[b(Ma,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})]),d("div",Da,[d("div",Oa,[u(c.$slots,"nav-bar-content-before",{},void 0,!0),b(La,{class:"search"}),b(_a,{class:"menu"}),b(Qa,{class:"translations"}),b(Vn,{class:"appearance"}),b(Va,{class:"social-links"}),b(ia,{class:"extra"}),u(c.$slots,"nav-bar-content-after",{},void 0,!0),b(ua,{class:"hamburger",active:c.isScreenOpen,onClick:v[0]||(v[0]=p=>c.$emit("toggle-screen"))},null,8,["active"])])])])]),v[1]||(v[1]=d("div",{class:"divider"},[d("div",{class:"divider-line"})],-1))],2))}}),Ga=k(Ua,[["__scopeId","data-v-822684d1"]]),Ja={key:0,class:"VPNavScreenAppearance"},Ka={class:"text"},ja=h({__name:"VPNavScreenAppearance",setup(a){const{site:e,theme:t}=S();return(n,s)=>i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(o(),l("div",Ja,[d("p",Ka,V(i(t).darkModeSwitchLabel||"Appearance"),1),b(ge)])):m("",!0)}}),za=k(ja,[["__scopeId","data-v-ffb44008"]]),Ra=h({__name:"VPNavScreenMenuLink",props:{item:{}},setup(a){const e=z("close-screen");return(t,n)=>(o(),$(Q,{class:"VPNavScreenMenuLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:i(e),innerHTML:t.item.text},null,8,["href","target","rel","onClick","innerHTML"]))}}),Za=k(Ra,[["__scopeId","data-v-27d04aeb"]]),Ya=h({__name:"VPNavScreenMenuGroupLink",props:{item:{}},setup(a){const e=z("close-screen");return(t,n)=>(o(),$(Q,{class:"VPNavScreenMenuGroupLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:i(e)},{default:f(()=>[F(V(t.item.text),1)]),_:1},8,["href","target","rel","onClick"]))}}),He=k(Ya,[["__scopeId","data-v-7179dbb7"]]),Xa={class:"VPNavScreenMenuGroupSection"},qa={key:0,class:"title"},xa=h({__name:"VPNavScreenMenuGroupSection",props:{text:{},items:{}},setup(a){return(e,t)=>(o(),l("div",Xa,[e.text?(o(),l("p",qa,V(e.text),1)):m("",!0),(o(!0),l(C,null,w(e.items,n=>(o(),$(He,{key:n.text,item:n},null,8,["item"]))),128))]))}}),eo=k(xa,[["__scopeId","data-v-4b8941ac"]]),to=["aria-controls","aria-expanded"],so=["innerHTML"],no=["id"],ao={key:0,class:"item"},oo={key:1,class:"item"},ro={key:2,class:"group"},io=h({__name:"VPNavScreenMenuGroup",props:{text:{},items:{}},setup(a){const e=a,t=I(!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}])},[d("button",{class:"button","aria-controls":n.value,"aria-expanded":t.value,onClick:s},[d("span",{class:"button-text",innerHTML:r.text},null,8,so),c[0]||(c[0]=d("span",{class:"vpi-plus button-icon"},null,-1))],8,to),d("div",{id:n.value,class:"items"},[(o(!0),l(C,null,w(r.items,v=>(o(),l(C,{key:JSON.stringify(v)},["link"in v?(o(),l("div",ao,[b(He,{item:v},null,8,["item"])])):"component"in v?(o(),l("div",oo,[(o(),$(H(v.component),U({ref_for:!0},v.props,{"screen-menu":""}),null,16))])):(o(),l("div",ro,[b(eo,{text:v.text,items:v.items},null,8,["text","items"])]))],64))),128))],8,no)],2))}}),lo=k(io,[["__scopeId","data-v-875057a5"]]),co={key:0,class:"VPNavScreenMenu"},uo=h({__name:"VPNavScreenMenu",setup(a){const{theme:e}=S();return(t,n)=>i(e).nav?(o(),l("nav",co,[(o(!0),l(C,null,w(i(e).nav,s=>(o(),l(C,{key:JSON.stringify(s)},["link"in s?(o(),$(Za,{key:0,item:s},null,8,["item"])):"component"in s?(o(),$(H(s.component),U({key:1,ref_for:!0},s.props,{"screen-menu":""}),null,16)):(o(),$(lo,{key:2,text:s.text||"",items:s.items},null,8,["text","items"]))],64))),128))])):m("",!0)}}),po=h({__name:"VPNavScreenSocialLinks",setup(a){const{theme:e}=S();return(t,n)=>i(e).socialLinks?(o(),$(ne,{key:0,class:"VPNavScreenSocialLinks",links:i(e).socialLinks},null,8,["links"])):m("",!0)}}),vo={class:"list"},fo=h({__name:"VPNavScreenTranslations",setup(a){const{localeLinks:e,currentLang:t}=Z({correspondingLink:!0}),n=I(!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}])},[d("button",{class:"title",onClick:s},[c[0]||(c[0]=d("span",{class:"vpi-languages icon lang"},null,-1)),F(" "+V(i(t).label)+" ",1),c[1]||(c[1]=d("span",{class:"vpi-chevron-down icon chevron"},null,-1))]),d("ul",vo,[(o(!0),l(C,null,w(i(e),v=>(o(),l("li",{key:v.link,class:"item"},[b(Q,{class:"link",href:v.link},{default:f(()=>[F(V(v.text),1)]),_:2},1032,["href"])]))),128))])],2)):m("",!0)}}),mo=k(fo,[["__scopeId","data-v-362991c2"]]),ho={class:"container"},_o=h({__name:"VPNavScreen",props:{open:{type:Boolean}},setup(a){const e=I(null),t=Ce(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"},[d("div",ho,[u(n.$slots,"nav-screen-content-before",{},void 0,!0),b(uo,{class:"menu"}),b(mo,{class:"translations"}),b(za,{class:"appearance"}),b(po,{class:"social-links"}),u(n.$slots,"nav-screen-content-after",{},void 0,!0)])],512)):m("",!0)]),_:3}))}}),bo=k(_o,[["__scopeId","data-v-833aabba"]]),go={key:0,class:"VPNav"},ko=h({__name:"VPNav",setup(a){const{isScreenOpen:e,closeScreen:t,toggleScreen:n}=_n(),{frontmatter:s}=S(),r=y(()=>s.value.navbar!==!1);return he("close-screen",t),q(()=>{te&&document.documentElement.classList.toggle("hide-nav",!r.value)}),(c,v)=>r.value?(o(),l("header",go,[b(Ga,{"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"]),b(bo,{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)}}),$o=k(ko,[["__scopeId","data-v-f1e365da"]]),yo=["role","tabindex"],Ao={key:1,class:"items"},Po=h({__name:"VPSidebarItem",props:{item:{},depth:{}},setup(a){const e=a,{collapsed:t,collapsible:n,isLink:s,isActiveLink:r,hasActiveLink:c,hasChildren:v,toggle:p}=$t(y(()=>e.item)),_=y(()=>v.value?"section":"div"),L=y(()=>s.value?"a":"div"),g=y(()=>v.value?e.depth+2===7?"p":`h${e.depth+2}`:"p"),A=y(()=>s.value?void 0:"button"),P=y(()=>[[`level-${e.depth}`],{collapsible:n.value},{collapsed:t.value},{"is-link":s.value},{"is-active":r.value},{"has-active":c.value}]);function M(N){"key"in N&&N.key!=="Enter"||!e.item.link&&p()}function B(){e.item.link&&p()}return(N,E)=>{const O=J("VPSidebarItem",!0);return o(),$(H(_.value),{class:T(["VPSidebarItem",P.value])},{default:f(()=>[N.item.text?(o(),l("div",U({key:0,class:"item",role:A.value},Xe(N.item.items?{click:M,keydown:M}:{},!0),{tabindex:N.item.items&&0}),[E[1]||(E[1]=d("div",{class:"indicator"},null,-1)),N.item.link?(o(),$(Q,{key:0,tag:L.value,class:"link",href:N.item.link,rel:N.item.rel,target:N.item.target},{default:f(()=>[(o(),$(H(g.value),{class:"text",innerHTML:N.item.text},null,8,["innerHTML"]))]),_:1},8,["tag","href","rel","target"])):(o(),$(H(g.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:B,onKeydown:qe(B,["enter"]),tabindex:"0"},E[0]||(E[0]=[d("span",{class:"vpi-chevron-right caret-icon"},null,-1)]),32)):m("",!0)],16,yo)):m("",!0),N.item.items&&N.item.items.length?(o(),l("div",Ao,[N.depth<5?(o(!0),l(C,{key:0},w(N.item.items,j=>(o(),$(O,{key:j.text,item:j,depth:N.depth+1},null,8,["item","depth"]))),128)):m("",!0)])):m("",!0)]),_:1},8,["class"])}}}),Lo=k(Po,[["__scopeId","data-v-196b2e5f"]]),So=h({__name:"VPSidebarGroup",props:{items:{}},setup(a){const e=I(!0);let t=null;return G(()=>{t=setTimeout(()=>{t=null,e.value=!1},300)}),xe(()=>{t!=null&&(clearTimeout(t),t=null)}),(n,s)=>(o(!0),l(C,null,w(n.items,r=>(o(),l("div",{key:r.text,class:T(["group",{"no-transition":e.value}])},[b(Lo,{item:r,depth:0},null,8,["item"])],2))),128))}}),Vo=k(So,[["__scopeId","data-v-9e426adc"]]),Io={class:"nav",id:"VPSidebarNav","aria-labelledby":"sidebar-aria-label",tabindex:"-1"},No=h({__name:"VPSidebar",props:{open:{type:Boolean}},setup(a){const{sidebarGroups:e,hasSidebar:t}=D(),n=a,s=I(null),r=Ce(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=I(0);return W(e,()=>{c.value+=1},{deep:!0}),(v,p)=>i(t)?(o(),l("aside",{key:0,class:T(["VPSidebar",{open:v.open}]),ref_key:"navEl",ref:s,onClick:p[0]||(p[0]=et(()=>{},["stop"]))},[p[2]||(p[2]=d("div",{class:"curtain"},null,-1)),d("nav",Io,[p[1]||(p[1]=d("span",{class:"visually-hidden",id:"sidebar-aria-label"}," Sidebar Navigation ",-1)),u(v.$slots,"sidebar-nav-before",{},void 0,!0),(o(),$(Vo,{items:i(e),key:c.value},null,8,["items"])),u(v.$slots,"sidebar-nav-after",{},void 0,!0)])],2)):m("",!0)}}),To=k(No,[["__scopeId","data-v-18756405"]]),Co=h({__name:"VPSkipLink",setup(a){const e=ee(),t=I();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,[d("span",{ref_key:"backToTop",ref:t,tabindex:"-1"},null,512),d("a",{href:"#VPContent",class:"VPSkipLink visually-hidden",onClick:n}," Skip to content ")],64))}}),Mo=k(Co,[["__scopeId","data-v-c3508ec8"]]),Bo=h({__name:"Layout",setup(a){const{isOpen:e,open:t,close:n}=D(),s=ee();W(()=>s.path,n),kt(e,n);const{frontmatter:r}=S(),c=Me(),v=y(()=>!!c["home-hero-image"]);return he("hero-image-slot-exists",v),(p,_)=>{const L=J("Content");return i(r).layout!==!1?(o(),l("div",{key:0,class:T(["Layout",i(r).pageClass])},[u(p.$slots,"layout-top",{},void 0,!0),b(Mo),b(it,{class:"backdrop",show:i(e),onClick:i(n)},null,8,["show","onClick"]),b($o,null,{"nav-bar-title-before":f(()=>[u(p.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[u(p.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[u(p.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[u(p.$slots,"nav-bar-content-after",{},void 0,!0)]),"nav-screen-content-before":f(()=>[u(p.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[u(p.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3}),b(hn,{open:i(e),onOpenMenu:i(t)},null,8,["open","onOpenMenu"]),b(To,{open:i(e)},{"sidebar-nav-before":f(()=>[u(p.$slots,"sidebar-nav-before",{},void 0,!0)]),"sidebar-nav-after":f(()=>[u(p.$slots,"sidebar-nav-after",{},void 0,!0)]),_:3},8,["open"]),b(xs,null,{"page-top":f(()=>[u(p.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[u(p.$slots,"page-bottom",{},void 0,!0)]),"not-found":f(()=>[u(p.$slots,"not-found",{},void 0,!0)]),"home-hero-before":f(()=>[u(p.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[u(p.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[u(p.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[u(p.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[u(p.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[u(p.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[u(p.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[u(p.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[u(p.$slots,"home-features-after",{},void 0,!0)]),"doc-footer-before":f(()=>[u(p.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[u(p.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[u(p.$slots,"doc-after",{},void 0,!0)]),"doc-top":f(()=>[u(p.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[u(p.$slots,"doc-bottom",{},void 0,!0)]),"aside-top":f(()=>[u(p.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[u(p.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[u(p.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[u(p.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[u(p.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[u(p.$slots,"aside-ads-after",{},void 0,!0)]),_:3}),b(an),u(p.$slots,"layout-bottom",{},void 0,!0)],2)):(o(),$(L,{key:1}))}}}),wo=k(Bo,[["__scopeId","data-v-a9a9e638"]]),Eo={},Qo={class:"VPTeamPage"};function Fo(a,e){return o(),l("div",Qo,[u(a.$slots,"default")])}const Mr=k(Eo,[["render",Fo],["__scopeId","data-v-c2f8e101"]]),Ho={},Wo={class:"VPTeamPageTitle"},Do={key:0,class:"title"},Oo={key:1,class:"lead"};function Uo(a,e){return o(),l("div",Wo,[a.$slots.title?(o(),l("h1",Do,[u(a.$slots,"title",{},void 0,!0)])):m("",!0),a.$slots.lead?(o(),l("p",Oo,[u(a.$slots,"lead",{},void 0,!0)])):m("",!0)])}const Br=k(Ho,[["render",Uo],["__scopeId","data-v-e277e15c"]]),Go={},Jo={class:"VPTeamPageSection"},Ko={class:"title"},jo={key:0,class:"title-text"},zo={key:0,class:"lead"},Ro={key:1,class:"members"};function Zo(a,e){return o(),l("section",Jo,[d("div",Ko,[e[0]||(e[0]=d("div",{class:"title-line"},null,-1)),a.$slots.title?(o(),l("h2",jo,[u(a.$slots,"title",{},void 0,!0)])):m("",!0)]),a.$slots.lead?(o(),l("p",zo,[u(a.$slots,"lead",{},void 0,!0)])):m("",!0),a.$slots.members?(o(),l("div",Ro,[u(a.$slots,"members",{},void 0,!0)])):m("",!0)])}const wr=k(Go,[["render",Zo],["__scopeId","data-v-d43bc49d"]]),Yo={class:"profile"},Xo={class:"avatar"},qo=["src","alt"],xo={class:"data"},er={class:"name"},tr={key:0,class:"affiliation"},sr={key:0,class:"title"},nr={key:1,class:"at"},ar=["innerHTML"],or={key:2,class:"links"},rr={key:0,class:"sp"},ir=h({__name:"VPTeamMembersItem",props:{size:{default:"medium"},member:{}},setup(a){return(e,t)=>(o(),l("article",{class:T(["VPTeamMembersItem",[e.size]])},[d("div",Yo,[d("figure",Xo,[d("img",{class:"avatar-img",src:e.member.avatar,alt:e.member.name},null,8,qo)]),d("div",xo,[d("h1",er,V(e.member.name),1),e.member.title||e.member.org?(o(),l("p",tr,[e.member.title?(o(),l("span",sr,V(e.member.title),1)):m("",!0),e.member.title&&e.member.org?(o(),l("span",nr," @ ")):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(V(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,ar)):m("",!0),e.member.links?(o(),l("div",or,[b(ne,{links:e.member.links},null,8,["links"])])):m("",!0)])]),e.member.sponsor?(o(),l("div",rr,[b(Q,{class:"sp-link",href:e.member.sponsor,"no-icon":""},{default:f(()=>[t[0]||(t[0]=d("span",{class:"vpi-heart sp-icon"},null,-1)),F(" "+V(e.member.actionText||"Sponsor"),1)]),_:1},8,["href"])])):m("",!0)],2))}}),lr=k(ir,[["__scopeId","data-v-f9987cb6"]]),cr={class:"container"},ur=h({__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])},[d("div",cr,[(o(!0),l(C,null,w(n.members,r=>(o(),l("div",{key:r.name,class:"item"},[b(lr,{size:n.size,member:r},null,8,["size","member"])]))),128))])],2))}}),Er=k(ur,[["__scopeId","data-v-fba19bad"]]),Pe={Layout:wo,enhanceApp:({app:a})=>{a.component("Badge",at)}},dr={},pr={style:{"text-align":"center"}};function vr(a,e){const t=J("font");return o(),l(C,null,[e[1]||(e[1]=d("br",null,null,-1)),d("h1",pr,[d("strong",null,[b(t,{color:"orange"},{default:f(()=>e[0]||(e[0]=[F(" Package Ecosystem")])),_:1})])]),e[2]||(e[2]=tt('

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 fr=k(dr,[["render",vr]]),mr=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 Ne(),e.scrollTop=c.offsetTop-v,r}}},We="vitepress:tabSharedState",R=typeof localStorage<"u"?localStorage:null,De="vitepress:tabsSharedState",hr=()=>{const a=R==null?void 0:R.getItem(De);if(a)try{return JSON.parse(a)}catch{}return{}},_r=a=>{R&&R.setItem(De,JSON.stringify(a))},br=a=>{const e=st({});W(()=>e.content,(t,n)=>{t&&n&&_r(t)},{deep:!0}),a.provide(We,e)},gr=(a,e)=>{const t=z(We);if(!t)throw new Error("[vitepress-plugin-tabs] TabsSharedState should be injected");G(()=>{t.content||(t.content=hr())});const n=I(),s=y({get(){var p;const c=e.value,v=a.value;if(c){const _=(p=t.content)==null?void 0:p[c];if(_&&v.includes(_))return _}else{const _=n.value;if(_)return _}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 Le=0;const kr=()=>(Le++,""+Le);function $r(){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 Oe="vitepress:tabSingleState",yr=a=>{he(Oe,a)},Ar=()=>{const a=z(Oe);if(!a)throw new Error("[vitepress-plugin-tabs] TabsSingleState should be injected");return a},Pr={class:"plugin-tabs"},Lr=["id","aria-selected","aria-controls","tabindex","onClick"],Sr=h({__name:"PluginTabs",props:{sharedStateKey:{}},setup(a){const e=a,t=$r(),{selected:n,select:s}=gr(t,nt(e,"sharedStateKey")),r=I(),{stabilizeScrollPosition:c}=mr(r),v=c(s),p=I([]),_=g=>{var M;const A=t.value.indexOf(n.value);let P;g.key==="ArrowLeft"?P=A>=1?A-1:t.value.length-1:g.key==="ArrowRight"&&(P=A(o(),l("div",Pr,[d("div",{ref_key:"tablist",ref:r,class:"plugin-tabs--tab-list",role:"tablist",onKeydown:_},[(o(!0),l(C,null,w(i(t),P=>(o(),l("button",{id:`tab-${P}-${i(L)}`,ref_for:!0,ref_key:"buttonRefs",ref:p,key:P,role:"tab",class:"plugin-tabs--tab","aria-selected":P===i(n),"aria-controls":`panel-${P}-${i(L)}`,tabindex:P===i(n)?0:-1,onClick:()=>i(v)(P)},V(P),9,Lr))),128))],544),u(g.$slots,"default")]))}}),Vr=["id","aria-labelledby"],Ir=h({__name:"PluginTabsTab",props:{label:{}},setup(a){const{uid:e,selected:t}=Ar();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,Vr)):m("",!0)}}),Nr=k(Ir,[["__scopeId","data-v-9b0d03d2"]]),Tr=a=>{br(a),a.component("PluginTabs",Sr),a.component("PluginTabsTab",Nr)},Qr={extends:Pe,Layout(){return ye(Pe.Layout,null,{"aside-ads-before":()=>ye(fr)})},enhanceApp({app:a,router:e,siteData:t}){Tr(a)}};export{Qr as R,Br as V,Er as a,wr as b,Mr as c,ba as d,S as u}; diff --git a/previews/PR433/assets/development_contributors.md.VVC92PDW.js b/previews/PR433/assets/development_contributors.md.B88htjW2.js similarity index 98% rename from previews/PR433/assets/development_contributors.md.VVC92PDW.js rename to previews/PR433/assets/development_contributors.md.B88htjW2.js index e4a6eafa..8791d3b6 100644 --- a/previews/PR433/assets/development_contributors.md.VVC92PDW.js +++ b/previews/PR433/assets/development_contributors.md.B88htjW2.js @@ -1 +1 @@ -import{V as u,a as l,b as m,c as g}from"./chunks/theme.BQDL96Rf.js";import{B as h,c,G as r,w as s,k as n,o as b,a as e,j as t}from"./chunks/framework.BPweQVnH.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://pbs.twimg.com/profile_images/1727075196962574336/zB09YH0s_400x400.jpg",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=h("font");return b(),c("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.Caq0HCNK.js";import{B as h,c,G as r,w as s,k as n,o as b,a as e,j as t}from"./chunks/framework.BPweQVnH.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://pbs.twimg.com/profile_images/1727075196962574336/zB09YH0s_400x400.jpg",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=h("font");return b(),c("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/PR433/assets/development_contributors.md.VVC92PDW.lean.js b/previews/PR433/assets/development_contributors.md.B88htjW2.lean.js similarity index 98% rename from previews/PR433/assets/development_contributors.md.VVC92PDW.lean.js rename to previews/PR433/assets/development_contributors.md.B88htjW2.lean.js index e4a6eafa..8791d3b6 100644 --- a/previews/PR433/assets/development_contributors.md.VVC92PDW.lean.js +++ b/previews/PR433/assets/development_contributors.md.B88htjW2.lean.js @@ -1 +1 @@ -import{V as u,a as l,b as m,c as g}from"./chunks/theme.BQDL96Rf.js";import{B as h,c,G as r,w as s,k as n,o as b,a as e,j as t}from"./chunks/framework.BPweQVnH.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://pbs.twimg.com/profile_images/1727075196962574336/zB09YH0s_400x400.jpg",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=h("font");return b(),c("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.Caq0HCNK.js";import{B as h,c,G as r,w as s,k as n,o as b,a as e,j as t}from"./chunks/framework.BPweQVnH.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://pbs.twimg.com/profile_images/1727075196962574336/zB09YH0s_400x400.jpg",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=h("font");return b(),c("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/PR433/assets/ehguwdr.D82lJxN2.jpeg b/previews/PR433/assets/ehguwdr.D82lJxN2.jpeg new file mode 100644 index 00000000..c7d1716d Binary files /dev/null and b/previews/PR433/assets/ehguwdr.D82lJxN2.jpeg differ diff --git a/previews/PR433/assets/get_started.md.BmOqbM1m.js b/previews/PR433/assets/get_started.md.C7dSH3uP.js similarity index 93% rename from previews/PR433/assets/get_started.md.BmOqbM1m.js rename to previews/PR433/assets/get_started.md.C7dSH3uP.js index e65a2910..02013ed9 100644 --- a/previews/PR433/assets/get_started.md.BmOqbM1m.js +++ b/previews/PR433/assets/get_started.md.C7dSH3uP.js @@ -44,13 +44,13 @@ import{_ as a,c as i,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const g ├─────────────────────────────────────────────────────────────────── file size ┤ file size: 46.88 KB └──────────────────────────────────────────────────────────────────────────────┘

Get the temperature map at the first point in time:

julia
a2[variable=At("temperature"), time=1].data
10×15 view(::Array{Float64, 4}, 1, :, :, 1) with eltype Float64:
- 0.482873   0.833974   0.519298  0.916995   …  0.906033  0.352742  0.303377
- 0.904946   0.520148   0.145895  0.223646      0.984425  0.222     0.748748
- 0.487755   0.621823   0.705924  0.241611      0.122685  0.424768  0.674247
- 0.0204708  0.294926   0.105511  0.269821      0.80697   0.339407  0.526508
- 0.0518359  0.923964   0.809612  0.120165      0.247167  0.769602  0.403901
- 0.728969   0.136428   0.21605   0.884424   …  0.943798  0.161314  0.503791
- 0.0535278  0.677699   0.465423  0.422172      0.780068  0.932714  0.200505
- 0.467454   0.0569807  0.307818  0.500822      0.858836  0.676346  0.555382
- 0.705127   0.833973   0.432322  0.0096612     0.624808  0.616082  0.739852
- 0.335015   0.792118   0.118989  0.522934      0.616773  0.807152  0.411336

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.

`,21)]))}const E=a(p,[["render",l]]);export{g as __pageData,E as default}; + 0.298302 0.846797 0.628857 0.863377 … 0.0515713 0.737353 0.17252 + 0.400391 0.511693 0.768983 0.349568 0.533639 0.0107066 0.724029 + 0.718162 0.423804 0.247099 0.330377 0.923612 0.692284 0.327034 + 0.720727 0.420149 0.98003 0.581121 0.369521 0.904493 0.335925 + 0.70372 0.401806 0.408856 0.83703 0.766948 0.512842 0.869494 + 0.36225 0.705164 0.876588 0.793763 … 0.499253 0.204818 0.389304 + 0.400125 0.89668 0.947163 0.804564 0.106907 0.819092 0.740452 + 0.922523 0.734452 0.764151 0.499071 0.608096 0.148857 0.738952 + 0.0849917 0.486106 0.592033 0.160263 0.0944583 0.334695 0.646422 + 0.0149444 0.703536 0.982313 0.774525 0.0284857 0.378228 0.144635

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.

`,21)]))}const E=a(p,[["render",l]]);export{g as __pageData,E as default}; diff --git a/previews/PR433/assets/get_started.md.BmOqbM1m.lean.js b/previews/PR433/assets/get_started.md.C7dSH3uP.lean.js similarity index 93% rename from previews/PR433/assets/get_started.md.BmOqbM1m.lean.js rename to previews/PR433/assets/get_started.md.C7dSH3uP.lean.js index e65a2910..02013ed9 100644 --- a/previews/PR433/assets/get_started.md.BmOqbM1m.lean.js +++ b/previews/PR433/assets/get_started.md.C7dSH3uP.lean.js @@ -44,13 +44,13 @@ import{_ as a,c as i,a2 as n,o as t}from"./chunks/framework.BPweQVnH.js";const g ├─────────────────────────────────────────────────────────────────── file size ┤ file size: 46.88 KB └──────────────────────────────────────────────────────────────────────────────┘

Get the temperature map at the first point in time:

julia
a2[variable=At("temperature"), time=1].data
10×15 view(::Array{Float64, 4}, 1, :, :, 1) with eltype Float64:
- 0.482873   0.833974   0.519298  0.916995   …  0.906033  0.352742  0.303377
- 0.904946   0.520148   0.145895  0.223646      0.984425  0.222     0.748748
- 0.487755   0.621823   0.705924  0.241611      0.122685  0.424768  0.674247
- 0.0204708  0.294926   0.105511  0.269821      0.80697   0.339407  0.526508
- 0.0518359  0.923964   0.809612  0.120165      0.247167  0.769602  0.403901
- 0.728969   0.136428   0.21605   0.884424   …  0.943798  0.161314  0.503791
- 0.0535278  0.677699   0.465423  0.422172      0.780068  0.932714  0.200505
- 0.467454   0.0569807  0.307818  0.500822      0.858836  0.676346  0.555382
- 0.705127   0.833973   0.432322  0.0096612     0.624808  0.616082  0.739852
- 0.335015   0.792118   0.118989  0.522934      0.616773  0.807152  0.411336

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.

`,21)]))}const E=a(p,[["render",l]]);export{g as __pageData,E as default}; + 0.298302 0.846797 0.628857 0.863377 … 0.0515713 0.737353 0.17252 + 0.400391 0.511693 0.768983 0.349568 0.533639 0.0107066 0.724029 + 0.718162 0.423804 0.247099 0.330377 0.923612 0.692284 0.327034 + 0.720727 0.420149 0.98003 0.581121 0.369521 0.904493 0.335925 + 0.70372 0.401806 0.408856 0.83703 0.766948 0.512842 0.869494 + 0.36225 0.705164 0.876588 0.793763 … 0.499253 0.204818 0.389304 + 0.400125 0.89668 0.947163 0.804564 0.106907 0.819092 0.740452 + 0.922523 0.734452 0.764151 0.499071 0.608096 0.148857 0.738952 + 0.0849917 0.486106 0.592033 0.160263 0.0944583 0.334695 0.646422 + 0.0149444 0.703536 0.982313 0.774525 0.0284857 0.378228 0.144635

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.

`,21)]))}const E=a(p,[["render",l]]);export{g as __pageData,E as default}; diff --git a/previews/PR433/assets/gkjlfok.B7KFIfDV.jpeg b/previews/PR433/assets/gzjysyu.B7KFIfDV.jpeg similarity index 100% rename from previews/PR433/assets/gkjlfok.B7KFIfDV.jpeg rename to previews/PR433/assets/gzjysyu.B7KFIfDV.jpeg diff --git a/previews/PR433/assets/anurlrp.96k_BqPR.jpeg b/previews/PR433/assets/hkmboep.96k_BqPR.jpeg similarity index 100% rename from previews/PR433/assets/anurlrp.96k_BqPR.jpeg rename to previews/PR433/assets/hkmboep.96k_BqPR.jpeg diff --git a/previews/PR433/assets/nrjeqaf.DW_FRV2H.png b/previews/PR433/assets/nrjeqaf.DW_FRV2H.png new file mode 100644 index 00000000..b8a50639 Binary files /dev/null and b/previews/PR433/assets/nrjeqaf.DW_FRV2H.png differ diff --git a/previews/PR433/assets/tnhlznh.DqBxx_v6.png b/previews/PR433/assets/tnhlznh.DqBxx_v6.png deleted file mode 100644 index 88ba60af..00000000 Binary files a/previews/PR433/assets/tnhlznh.DqBxx_v6.png and /dev/null differ diff --git a/previews/PR433/assets/tutorials_mean_seasonal_cycle.md.DFCKTDn2.js b/previews/PR433/assets/tutorials_mean_seasonal_cycle.md.QeAo1rKx.js similarity index 95% rename from previews/PR433/assets/tutorials_mean_seasonal_cycle.md.DFCKTDn2.js rename to previews/PR433/assets/tutorials_mean_seasonal_cycle.md.QeAo1rKx.js index 1dfb5acb..4dc6f923 100644 --- a/previews/PR433/assets/tutorials_mean_seasonal_cycle.md.DFCKTDn2.js +++ b/previews/PR433/assets/tutorials_mean_seasonal_cycle.md.QeAo1rKx.js @@ -1,4 +1,4 @@ -import{_ as i,c as a,a2 as n,o as h}from"./chunks/framework.BPweQVnH.js";const l="/YAXArrays.jl/previews/PR433/assets/zfnpdxe.Cd1POTN0.png",k="/YAXArrays.jl/previews/PR433/assets/tnhlznh.DqBxx_v6.png",c=JSON.parse('{"title":"Mean Seasonal Cycle for a single pixel","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/mean_seasonal_cycle.md","filePath":"tutorials/mean_seasonal_cycle.md","lastUpdated":null}'),p={name:"tutorials/mean_seasonal_cycle.md"};function t(e,s,E,d,r,g){return h(),a("div",null,s[0]||(s[0]=[n(`

Mean Seasonal Cycle for a single pixel

julia
using CairoMakie
+import{_ as i,c as a,a2 as n,o as h}from"./chunks/framework.BPweQVnH.js";const l="/YAXArrays.jl/previews/PR433/assets/nrjeqaf.DW_FRV2H.png",k="/YAXArrays.jl/previews/PR433/assets/ufgmawj.HNGhNMld.png",c=JSON.parse('{"title":"Mean Seasonal Cycle for a single pixel","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/mean_seasonal_cycle.md","filePath":"tutorials/mean_seasonal_cycle.md","lastUpdated":null}'),p={name:"tutorials/mean_seasonal_cycle.md"};function t(e,s,E,d,r,g){return h(),a("div",null,s[0]||(s[0]=[n(`

Mean Seasonal Cycle for a single pixel

julia
using CairoMakie
 CairoMakie.activate!()
 using Dates
 using Statistics

We define the data span. For simplicity, three non-leap years were selected.

julia
t =  Date("2021-01-01"):Day(1):Date("2023-12-31")
@@ -37,26 +37,26 @@ import{_ as i,c as a,a2 as n,o as h}from"./chunks/framework.BPweQVnH.js";const l
 end
 
 msc = mean_seasonal_cycle(c);
365×1 Matrix{Float64}:
-  0.05962146169311534
- -0.013577071736726981
-  0.1587064471290398
- -0.03578249953362155
- -0.0229117785910893
-  0.10760840078216743
-  0.1100274384149154
-  0.035872769140528234
-  0.17990065519662
-  0.15312158042235022
+ -0.09329674379184255
+  0.04376433159000188
+  0.07841279557004051
+  0.08656024174884165
+  0.09203611918034278
+ -0.023022916616376222
+  0.13223853458064064
+  0.27325659707701094
+  0.10807037626788309
+  0.22804880215726372
 
- -0.16910344913300465
- -0.10175741892564506
- -0.15363206678270366
- -0.05460847748381422
- -0.13667673386838822
- -0.05178960889413877
-  0.0026831646804903
- -0.019208419972569894
-  0.057607218686596795

TODO: Apply the new groupby funtion from DD

Plot results: mean seasonal cycle

julia
fig, ax, obj = lines(1:365, var[1:365]; label="2021", color=:black,
+ -0.0442435336821679
+ -0.22821476412824596
+ -0.025201021715753346
+ -0.07726759891855832
+ -0.10649437632711685
+ -0.15071249876826362
+ -0.10313690750071668
+ -0.07327711099969396
+ -0.003659893790864051

TODO: Apply the new groupby funtion from DD

Plot results: mean seasonal cycle

julia
fig, ax, obj = lines(1:365, var[1:365]; label="2021", color=:black,
     linewidth=2.0, linestyle=:dot,
     axis = (;  xlabel="Day of Year", ylabel="Variable"),
     figure=(; size = (600,400))
diff --git a/previews/PR433/assets/tutorials_mean_seasonal_cycle.md.DFCKTDn2.lean.js b/previews/PR433/assets/tutorials_mean_seasonal_cycle.md.QeAo1rKx.lean.js
similarity index 95%
rename from previews/PR433/assets/tutorials_mean_seasonal_cycle.md.DFCKTDn2.lean.js
rename to previews/PR433/assets/tutorials_mean_seasonal_cycle.md.QeAo1rKx.lean.js
index 1dfb5acb..4dc6f923 100644
--- a/previews/PR433/assets/tutorials_mean_seasonal_cycle.md.DFCKTDn2.lean.js
+++ b/previews/PR433/assets/tutorials_mean_seasonal_cycle.md.QeAo1rKx.lean.js
@@ -1,4 +1,4 @@
-import{_ as i,c as a,a2 as n,o as h}from"./chunks/framework.BPweQVnH.js";const l="/YAXArrays.jl/previews/PR433/assets/zfnpdxe.Cd1POTN0.png",k="/YAXArrays.jl/previews/PR433/assets/tnhlznh.DqBxx_v6.png",c=JSON.parse('{"title":"Mean Seasonal Cycle for a single pixel","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/mean_seasonal_cycle.md","filePath":"tutorials/mean_seasonal_cycle.md","lastUpdated":null}'),p={name:"tutorials/mean_seasonal_cycle.md"};function t(e,s,E,d,r,g){return h(),a("div",null,s[0]||(s[0]=[n(`

Mean Seasonal Cycle for a single pixel

julia
using CairoMakie
+import{_ as i,c as a,a2 as n,o as h}from"./chunks/framework.BPweQVnH.js";const l="/YAXArrays.jl/previews/PR433/assets/nrjeqaf.DW_FRV2H.png",k="/YAXArrays.jl/previews/PR433/assets/ufgmawj.HNGhNMld.png",c=JSON.parse('{"title":"Mean Seasonal Cycle for a single pixel","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/mean_seasonal_cycle.md","filePath":"tutorials/mean_seasonal_cycle.md","lastUpdated":null}'),p={name:"tutorials/mean_seasonal_cycle.md"};function t(e,s,E,d,r,g){return h(),a("div",null,s[0]||(s[0]=[n(`

Mean Seasonal Cycle for a single pixel

julia
using CairoMakie
 CairoMakie.activate!()
 using Dates
 using Statistics

We define the data span. For simplicity, three non-leap years were selected.

julia
t =  Date("2021-01-01"):Day(1):Date("2023-12-31")
@@ -37,26 +37,26 @@ import{_ as i,c as a,a2 as n,o as h}from"./chunks/framework.BPweQVnH.js";const l
 end
 
 msc = mean_seasonal_cycle(c);
365×1 Matrix{Float64}:
-  0.05962146169311534
- -0.013577071736726981
-  0.1587064471290398
- -0.03578249953362155
- -0.0229117785910893
-  0.10760840078216743
-  0.1100274384149154
-  0.035872769140528234
-  0.17990065519662
-  0.15312158042235022
+ -0.09329674379184255
+  0.04376433159000188
+  0.07841279557004051
+  0.08656024174884165
+  0.09203611918034278
+ -0.023022916616376222
+  0.13223853458064064
+  0.27325659707701094
+  0.10807037626788309
+  0.22804880215726372
 
- -0.16910344913300465
- -0.10175741892564506
- -0.15363206678270366
- -0.05460847748381422
- -0.13667673386838822
- -0.05178960889413877
-  0.0026831646804903
- -0.019208419972569894
-  0.057607218686596795

TODO: Apply the new groupby funtion from DD

Plot results: mean seasonal cycle

julia
fig, ax, obj = lines(1:365, var[1:365]; label="2021", color=:black,
+ -0.0442435336821679
+ -0.22821476412824596
+ -0.025201021715753346
+ -0.07726759891855832
+ -0.10649437632711685
+ -0.15071249876826362
+ -0.10313690750071668
+ -0.07327711099969396
+ -0.003659893790864051

TODO: Apply the new groupby funtion from DD

Plot results: mean seasonal cycle

julia
fig, ax, obj = lines(1:365, var[1:365]; label="2021", color=:black,
     linewidth=2.0, linestyle=:dot,
     axis = (;  xlabel="Day of Year", ylabel="Variable"),
     figure=(; size = (600,400))
diff --git a/previews/PR433/assets/tutorials_plottingmaps.md.C6af0uvs.js b/previews/PR433/assets/tutorials_plottingmaps.md.CHa3Wspu.js
similarity index 99%
rename from previews/PR433/assets/tutorials_plottingmaps.md.C6af0uvs.js
rename to previews/PR433/assets/tutorials_plottingmaps.md.CHa3Wspu.js
index c48a407a..94582f0a 100644
--- a/previews/PR433/assets/tutorials_plottingmaps.md.C6af0uvs.js
+++ b/previews/PR433/assets/tutorials_plottingmaps.md.CHa3Wspu.js
@@ -1,4 +1,4 @@
-import{_ as i,c as a,a2 as h,o as n}from"./chunks/framework.BPweQVnH.js";const t="/YAXArrays.jl/previews/PR433/assets/edzrvvk.xrZxBsPv.jpeg",k="/YAXArrays.jl/previews/PR433/assets/gkjlfok.B7KFIfDV.jpeg",l="/YAXArrays.jl/previews/PR433/assets/anurlrp.96k_BqPR.jpeg",F=JSON.parse('{"title":"Plotting maps","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/plottingmaps.md","filePath":"tutorials/plottingmaps.md","lastUpdated":null}'),p={name:"tutorials/plottingmaps.md"};function e(E,s,r,d,g,y){return n(),a("div",null,s[0]||(s[0]=[h(`

Plotting maps

As test data we use the CMIP6 Scenarios.

julia
using Zarr, YAXArrays, Dates
+import{_ as i,c as a,a2 as h,o as n}from"./chunks/framework.BPweQVnH.js";const t="/YAXArrays.jl/previews/PR433/assets/zwafbia.xrZxBsPv.jpeg",k="/YAXArrays.jl/previews/PR433/assets/gzjysyu.B7KFIfDV.jpeg",l="/YAXArrays.jl/previews/PR433/assets/hkmboep.96k_BqPR.jpeg",F=JSON.parse('{"title":"Plotting maps","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/plottingmaps.md","filePath":"tutorials/plottingmaps.md","lastUpdated":null}'),p={name:"tutorials/plottingmaps.md"};function e(E,s,r,d,g,y){return n(),a("div",null,s[0]||(s[0]=[h(`

Plotting maps

As test data we use the CMIP6 Scenarios.

julia
using Zarr, YAXArrays, Dates
 using DimensionalData
 using GLMakie, GeoMakie
 using GLMakie.GeometryBasics
diff --git a/previews/PR433/assets/tutorials_plottingmaps.md.C6af0uvs.lean.js b/previews/PR433/assets/tutorials_plottingmaps.md.CHa3Wspu.lean.js
similarity index 99%
rename from previews/PR433/assets/tutorials_plottingmaps.md.C6af0uvs.lean.js
rename to previews/PR433/assets/tutorials_plottingmaps.md.CHa3Wspu.lean.js
index c48a407a..94582f0a 100644
--- a/previews/PR433/assets/tutorials_plottingmaps.md.C6af0uvs.lean.js
+++ b/previews/PR433/assets/tutorials_plottingmaps.md.CHa3Wspu.lean.js
@@ -1,4 +1,4 @@
-import{_ as i,c as a,a2 as h,o as n}from"./chunks/framework.BPweQVnH.js";const t="/YAXArrays.jl/previews/PR433/assets/edzrvvk.xrZxBsPv.jpeg",k="/YAXArrays.jl/previews/PR433/assets/gkjlfok.B7KFIfDV.jpeg",l="/YAXArrays.jl/previews/PR433/assets/anurlrp.96k_BqPR.jpeg",F=JSON.parse('{"title":"Plotting maps","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/plottingmaps.md","filePath":"tutorials/plottingmaps.md","lastUpdated":null}'),p={name:"tutorials/plottingmaps.md"};function e(E,s,r,d,g,y){return n(),a("div",null,s[0]||(s[0]=[h(`

Plotting maps

As test data we use the CMIP6 Scenarios.

julia
using Zarr, YAXArrays, Dates
+import{_ as i,c as a,a2 as h,o as n}from"./chunks/framework.BPweQVnH.js";const t="/YAXArrays.jl/previews/PR433/assets/zwafbia.xrZxBsPv.jpeg",k="/YAXArrays.jl/previews/PR433/assets/gzjysyu.B7KFIfDV.jpeg",l="/YAXArrays.jl/previews/PR433/assets/hkmboep.96k_BqPR.jpeg",F=JSON.parse('{"title":"Plotting maps","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/plottingmaps.md","filePath":"tutorials/plottingmaps.md","lastUpdated":null}'),p={name:"tutorials/plottingmaps.md"};function e(E,s,r,d,g,y){return n(),a("div",null,s[0]||(s[0]=[h(`

Plotting maps

As test data we use the CMIP6 Scenarios.

julia
using Zarr, YAXArrays, Dates
 using DimensionalData
 using GLMakie, GeoMakie
 using GLMakie.GeometryBasics
diff --git a/previews/PR433/assets/uemcpgt.BoWCwv4U.jpeg b/previews/PR433/assets/uemcpgt.BoWCwv4U.jpeg
deleted file mode 100644
index 5fc546f0..00000000
Binary files a/previews/PR433/assets/uemcpgt.BoWCwv4U.jpeg and /dev/null differ
diff --git a/previews/PR433/assets/ufgmawj.HNGhNMld.png b/previews/PR433/assets/ufgmawj.HNGhNMld.png
new file mode 100644
index 00000000..c5c27dcf
Binary files /dev/null and b/previews/PR433/assets/ufgmawj.HNGhNMld.png differ
diff --git a/previews/PR433/assets/zfnpdxe.Cd1POTN0.png b/previews/PR433/assets/zfnpdxe.Cd1POTN0.png
deleted file mode 100644
index 09a4428c..00000000
Binary files a/previews/PR433/assets/zfnpdxe.Cd1POTN0.png and /dev/null differ
diff --git a/previews/PR433/assets/snyvetv.CBBZcGwj.png b/previews/PR433/assets/zsafadp.CBBZcGwj.png
similarity index 100%
rename from previews/PR433/assets/snyvetv.CBBZcGwj.png
rename to previews/PR433/assets/zsafadp.CBBZcGwj.png
diff --git a/previews/PR433/assets/edzrvvk.xrZxBsPv.jpeg b/previews/PR433/assets/zwafbia.xrZxBsPv.jpeg
similarity index 100%
rename from previews/PR433/assets/edzrvvk.xrZxBsPv.jpeg
rename to previews/PR433/assets/zwafbia.xrZxBsPv.jpeg
diff --git a/previews/PR433/development/contribute.html b/previews/PR433/development/contribute.html
index 92bc877e..ed9612f9 100644
--- a/previews/PR433/development/contribute.html
+++ b/previews/PR433/development/contribute.html
@@ -8,9 +8,9 @@
     
     
     
-    
+    
     
-    
+    
     
     
     
@@ -20,7 +20,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/PR433/development/contributors.html b/previews/PR433/development/contributors.html index e5e5d8f5..b7d5367d 100644 --- a/previews/PR433/development/contributors.html +++ b/previews/PR433/development/contributors.html @@ -8,17 +8,17 @@ - + - + - +
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/PR433/get_started.html b/previews/PR433/get_started.html index 728613d4..d8aa094a 100644 --- a/previews/PR433/get_started.html +++ b/previews/PR433/get_started.html @@ -8,11 +8,11 @@ - + - + - + @@ -63,17 +63,17 @@ ├─────────────────────────────────────────────────────────────────── file size ┤ file size: 46.88 KB └──────────────────────────────────────────────────────────────────────────────┘

Get the temperature map at the first point in time:

julia
a2[variable=At("temperature"), time=1].data
10×15 view(::Array{Float64, 4}, 1, :, :, 1) with eltype Float64:
- 0.482873   0.833974   0.519298  0.916995   …  0.906033  0.352742  0.303377
- 0.904946   0.520148   0.145895  0.223646      0.984425  0.222     0.748748
- 0.487755   0.621823   0.705924  0.241611      0.122685  0.424768  0.674247
- 0.0204708  0.294926   0.105511  0.269821      0.80697   0.339407  0.526508
- 0.0518359  0.923964   0.809612  0.120165      0.247167  0.769602  0.403901
- 0.728969   0.136428   0.21605   0.884424   …  0.943798  0.161314  0.503791
- 0.0535278  0.677699   0.465423  0.422172      0.780068  0.932714  0.200505
- 0.467454   0.0569807  0.307818  0.500822      0.858836  0.676346  0.555382
- 0.705127   0.833973   0.432322  0.0096612     0.624808  0.616082  0.739852
- 0.335015   0.792118   0.118989  0.522934      0.616773  0.807152  0.411336

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.

- + 0.298302 0.846797 0.628857 0.863377 … 0.0515713 0.737353 0.17252 + 0.400391 0.511693 0.768983 0.349568 0.533639 0.0107066 0.724029 + 0.718162 0.423804 0.247099 0.330377 0.923612 0.692284 0.327034 + 0.720727 0.420149 0.98003 0.581121 0.369521 0.904493 0.335925 + 0.70372 0.401806 0.408856 0.83703 0.766948 0.512842 0.869494 + 0.36225 0.705164 0.876588 0.793763 … 0.499253 0.204818 0.389304 + 0.400125 0.89668 0.947163 0.804564 0.106907 0.819092 0.740452 + 0.922523 0.734452 0.764151 0.499071 0.608096 0.148857 0.738952 + 0.0849917 0.486106 0.592033 0.160263 0.0944583 0.334695 0.646422 + 0.0149444 0.703536 0.982313 0.774525 0.0284857 0.378228 0.144635

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/PR433/hashmap.json b/previews/PR433/hashmap.json index 6c64eae7..03af0fbc 100644 --- a/previews/PR433/hashmap.json +++ b/previews/PR433/hashmap.json @@ -1 +1 @@ -{"api.md":"jFKpXLcy","development_contribute.md":"BcW0xAGS","development_contributors.md":"VVC92PDW","get_started.md":"BmOqbM1m","index.md":"1_2zgw1f","tutorials_mean_seasonal_cycle.md":"DFCKTDn2","tutorials_other_tutorials.md":"CxUhufmO","tutorials_plottingmaps.md":"C6af0uvs","userguide_cache.md":"ChSZ3Nfy","userguide_chunk.md":"CqQ5rzc-","userguide_combine.md":"B5lXwvme","userguide_compute.md":"DvAwlT_J","userguide_convert.md":"7MiqjyWQ","userguide_create.md":"BaTp9A4S","userguide_faq.md":"DLJxmCfU","userguide_group.md":"BEe_VKpU","userguide_read.md":"bPYUQyEF","userguide_select.md":"Bp7s5xsc","userguide_types.md":"RjP4avqu","userguide_write.md":"DM2Gr-8l"} +{"api.md":"IuTNblWp","development_contribute.md":"BcW0xAGS","development_contributors.md":"B88htjW2","get_started.md":"C7dSH3uP","index.md":"1_2zgw1f","tutorials_mean_seasonal_cycle.md":"QeAo1rKx","tutorials_other_tutorials.md":"CxUhufmO","tutorials_plottingmaps.md":"CHa3Wspu","userguide_cache.md":"ChSZ3Nfy","userguide_chunk.md":"CqQ5rzc-","userguide_combine.md":"B5lXwvme","userguide_compute.md":"CVYwcht1","userguide_convert.md":"BmsQR5_8","userguide_create.md":"BaTp9A4S","userguide_faq.md":"CMeCUZtU","userguide_group.md":"CrTZhDfa","userguide_read.md":"bPYUQyEF","userguide_select.md":"Bp7s5xsc","userguide_types.md":"RjP4avqu","userguide_write.md":"BVC43nk2"} diff --git a/previews/PR433/index.html b/previews/PR433/index.html index 8b9c99c1..4eb0763f 100644 --- a/previews/PR433/index.html +++ b/previews/PR433/index.html @@ -8,9 +8,9 @@ - + - + @@ -18,7 +18,7 @@
Skip to content

YAXArrays.jl

Yet another xarray-like Julia package

A package for operating on out-of-core labeled arrays, based on stores like NetCDF, Zarr or GDAL.

VitePress
- + \ No newline at end of file diff --git a/previews/PR433/tutorials/mean_seasonal_cycle.html b/previews/PR433/tutorials/mean_seasonal_cycle.html index 1e0382a2..0970345f 100644 --- a/previews/PR433/tutorials/mean_seasonal_cycle.html +++ b/previews/PR433/tutorials/mean_seasonal_cycle.html @@ -8,11 +8,11 @@ - + - + - + @@ -28,7 +28,7 @@ ) ax.xticklabelrotation = π / 4 ax.xticklabelalign = (:right, :center) -fig

Define the cube

julia
julia> using YAXArrays, DimensionalData
+fig

Define the cube

julia
julia> using YAXArrays, DimensionalData
 
 julia> axes = (Dim{: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}
@@ -56,26 +56,26 @@
 end
 
 msc = mean_seasonal_cycle(c);
365×1 Matrix{Float64}:
-  0.05962146169311534
- -0.013577071736726981
-  0.1587064471290398
- -0.03578249953362155
- -0.0229117785910893
-  0.10760840078216743
-  0.1100274384149154
-  0.035872769140528234
-  0.17990065519662
-  0.15312158042235022
+ -0.09329674379184255
+  0.04376433159000188
+  0.07841279557004051
+  0.08656024174884165
+  0.09203611918034278
+ -0.023022916616376222
+  0.13223853458064064
+  0.27325659707701094
+  0.10807037626788309
+  0.22804880215726372
 
- -0.16910344913300465
- -0.10175741892564506
- -0.15363206678270366
- -0.05460847748381422
- -0.13667673386838822
- -0.05178960889413877
-  0.0026831646804903
- -0.019208419972569894
-  0.057607218686596795

TODO: Apply the new groupby funtion from DD

Plot results: mean seasonal cycle

julia
fig, ax, obj = lines(1:365, var[1:365]; label="2021", color=:black,
+ -0.0442435336821679
+ -0.22821476412824596
+ -0.025201021715753346
+ -0.07726759891855832
+ -0.10649437632711685
+ -0.15071249876826362
+ -0.10313690750071668
+ -0.07327711099969396
+ -0.003659893790864051

TODO: Apply the new groupby funtion from DD

Plot results: mean seasonal cycle

julia
fig, ax, obj = lines(1:365, var[1:365]; label="2021", color=:black,
     linewidth=2.0, linestyle=:dot,
     axis = (;  xlabel="Day of Year", ylabel="Variable"),
     figure=(; size = (600,400))
@@ -88,8 +88,8 @@
 ax.xticklabelrotation = π / 4
 ax.xticklabelalign = (:right, :center)
 fig
-current_figure()

- +current_figure()

+ \ No newline at end of file diff --git a/previews/PR433/tutorials/other_tutorials.html b/previews/PR433/tutorials/other_tutorials.html index e12fc5c5..b18ef7a4 100644 --- a/previews/PR433/tutorials/other_tutorials.html +++ b/previews/PR433/tutorials/other_tutorials.html @@ -8,9 +8,9 @@ - + - + @@ -18,7 +18,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/PR433/tutorials/plottingmaps.html b/previews/PR433/tutorials/plottingmaps.html index 8126fca0..71ab0017 100644 --- a/previews/PR433/tutorials/plottingmaps.html +++ b/previews/PR433/tutorials/plottingmaps.html @@ -8,11 +8,11 @@ - + - + - + @@ -39,19 +39,19 @@ fig, ax, plt = heatmap(ct1_slice; colormap = :seaborn_icefire_gradient, axis = (; aspect=DataAspect()), figure = (; size = (1200,600), fontsize=24)) -fig

Wintri Projection

Some transformations

julia
δlon = (lon[2]-lon[1])/2
+fig

Wintri Projection

Some transformations

julia
δlon = (lon[2]-lon[1])/2
 nlon = lon .- 180 .+ δlon
 ndata = circshift(data, (192,1))

and add Coastlines with GeoMakie.coastlines(),

julia
fig = Figure(;size=(1200,600))
 ax = GeoAxis(fig[1,1])
 surface!(ax, nlon, lat, ndata; colormap = :seaborn_icefire_gradient, shading=false)
 cl=lines!(ax, GeoMakie.coastlines(), color = :white, linewidth=0.85)
 translate!(cl, 0, 0, 1000)
-fig

Moll projection

julia
fig = Figure(; size=(1200,600))
+fig

Moll projection

julia
fig = Figure(; size=(1200,600))
 ax = GeoAxis(fig[1,1]; dest = "+proj=moll")
 surface!(ax, nlon, lat, ndata; colormap = :seaborn_icefire_gradient, shading=false)
 cl=lines!(ax, GeoMakie.coastlines(), color = :white, linewidth=0.85)
 translate!(cl, 0, 0, 1000)
-fig

3D sphere plot

julia
using Bonito, WGLMakie
+fig

3D sphere plot

julia
using Bonito, WGLMakie
 Page(exportable=true, offline=true)
 
 WGLMakie.activate!()
@@ -67,7 +67,7 @@
 zoom!(ax.scene, cameracontrols(ax.scene), 0.5)
 rotate!(ax.scene, 2.5)
 fig
- + \ No newline at end of file