diff --git a/previews/PR446/404.html b/previews/PR446/404.html index 06054159..fa54b20a 100644 --- a/previews/PR446/404.html +++ b/previews/PR446/404.html @@ -8,7 +8,7 @@ - + @@ -18,7 +18,7 @@
- + \ No newline at end of file diff --git a/previews/PR446/UserGuide/cache.html b/previews/PR446/UserGuide/cache.html index d1ca6bbf..128cf4cd 100644 --- a/previews/PR446/UserGuide/cache.html +++ b/previews/PR446/UserGuide/cache.html @@ -8,9 +8,9 @@ - + - + @@ -25,7 +25,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/PR446/UserGuide/chunk.html b/previews/PR446/UserGuide/chunk.html index 7f1a0e55..8a422421 100644 --- a/previews/PR446/UserGuide/chunk.html +++ b/previews/PR446/UserGuide/chunk.html @@ -8,9 +8,9 @@ - + - + @@ -118,7 +118,7 @@ Variables: x, y, z

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

- + \ No newline at end of file diff --git a/previews/PR446/UserGuide/combine.html b/previews/PR446/UserGuide/combine.html index 4f5aee51..54b9e82c 100644 --- a/previews/PR446/UserGuide/combine.html +++ b/previews/PR446/UserGuide/combine.html @@ -8,9 +8,9 @@ - + - + @@ -48,7 +48,7 @@ ├───────────────────────────────────────────────────── file size ┤ file size: 96.0 bytes └────────────────────────────────────────────────────────────────┘ - + \ No newline at end of file diff --git a/previews/PR446/UserGuide/compute.html b/previews/PR446/UserGuide/compute.html index 2d41548d..f0080ed6 100644 --- a/previews/PR446/UserGuide/compute.html +++ b/previews/PR446/UserGuide/compute.html @@ -8,11 +8,11 @@ - + - + - + @@ -41,7 +41,7 @@ :origin => "user guide" ├─────────────────────────────────────────────────────────────────── file size ┤ file size: 35.16 KB -└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.35344092446349085
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.6449679240642969
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,
@@ -201,7 +201,7 @@
   "description" => "multi dimensional test cube"
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 960.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

One to many output cubes

In the following function, note how the outputs are defined first and the inputs later.

julia
function one_to_many(xout_one, xout_two, xout_flat, xin_one)
+└──────────────────────────────────────────────────────────────────────────────┘

One InDims to many OutDims

In the following function, note how the outputs are defined first and the inputs later.

julia
function one_to_many(xout_one, xout_two, xout_flat, xin_one)
     xout_one .= f1.(xin_one)
     xout_two .= f2.(xin_one)
     xout_flat .= sum(xin_one)
@@ -230,7 +230,7 @@
   "name" => "plus_two"
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 960.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

many to many cubes

Let's consider a second test set

julia
properties_2d = Dict("description" => "2d dimensional test cube")
+└──────────────────────────────────────────────────────────────────────────────┘

Many InDims to many OutDims

Let's consider a second test set

julia
properties_2d = Dict("description" => "2d dimensional test cube")
 yax_2d = YAXArray(axlist[2:end], rand(-1:1, 4, 3, 2), properties_2d)
╭─────────────────────────╮
 │ 4×3×2 YAXArray{Int64,3} │
 ├─────────────────────────┴───────────────────────────────────────── dims ┐
@@ -294,7 +294,7 @@
   "description" => "multi dimensional test cube"
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 480.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

and the corresponding function

julia
function mix_time_depth(xin_xyt, xin_xyz)
+└──────────────────────────────────────────────────────────────────────────────┘

and the corresponding functions

julia
function mix_time_depth(xin_xyt, xin_xyz)
     s = sum(abs.(xin_xyz))
     return xin_xyt.^2 .+ s
 end
@@ -315,7 +315,7 @@
   Dict{String, Any}()
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 480.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

Creating a vector array

Here we transform a raster array with spatial dimension lat and lon into a vector array having just one spatial dimension i.e. region. First, create the raster array:

julia
using YAXArrays
+└──────────────────────────────────────────────────────────────────────────────┘

Creating a vector array

Here we transform a raster array with spatial dimension lat and lon into a vector array having just one spatial dimension i.e. region. First, create the raster array:

julia
using YAXArrays
 using DimensionalData
 using Dates
 
@@ -426,7 +426,7 @@
 mapCube(mymean, a, indims=InDims("time"), outdims=OutDims())

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

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

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

julia
using Distributed
 using ClusterManagers
 addprocs(SlurmManager(10))
- + \ No newline at end of file diff --git a/previews/PR446/UserGuide/convert.html b/previews/PR446/UserGuide/convert.html index 790c6ca2..5e4b3e2e 100644 --- a/previews/PR446/UserGuide/convert.html +++ b/previews/PR446/UserGuide/convert.html @@ -8,9 +8,9 @@ - + - + @@ -98,7 +98,7 @@ 3 0.522262 0.237824 0.165853 0.662295 0.327439 0.793913 4 0.365971 0.215988 0.520744 0.096862 0.625389 0.725765 5 0.271209 0.521769 0.858065 0.162134 0.181798 0.425153

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/PR446/UserGuide/create.html b/previews/PR446/UserGuide/create.html index e662b08e..04928e62 100644 --- a/previews/PR446/UserGuide/create.html +++ b/previews/PR446/UserGuide/create.html @@ -8,9 +8,9 @@ - + - + @@ -68,7 +68,7 @@ a2, a3 Properties: Dict(:origin => "user guide") - + \ No newline at end of file diff --git a/previews/PR446/UserGuide/faq.html b/previews/PR446/UserGuide/faq.html index e44792b4..d9793ee8 100644 --- a/previews/PR446/UserGuide/faq.html +++ b/previews/PR446/UserGuide/faq.html @@ -8,11 +8,11 @@ - + - + - + @@ -218,7 +218,7 @@ Additional Axes: (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points) Variables: - latitudes + longitudes Additional Axes: (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points, @@ -229,7 +229,7 @@ Additional Axes: (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points) Variables: - longitudes

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

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

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

julia
latitudes_yasxa  = readcubedata(ds["latitudes"])
 longitudes_yasxa = readcubedata(ds["longitudes"])
 ds_subset = ds[points = Where(p-> latitudes_yasxa[p]  >= 20 && latitudes_yasxa[p]  <= 80 &&
                              longitudes_yasxa[p] >= 0  && longitudes_yasxa[p] <= 180
@@ -241,12 +241,12 @@
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points)
   Variables: 
-  latitudes
+  longitudes
 
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points)
   Variables: 
-  longitudes
+  latitudes
 
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points,
@@ -360,7 +360,7 @@
   (time     Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 variable Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
   Variables: 
-  Stock3
+  Stock2
 
   Additional Axes: 
   (time     Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
@@ -372,7 +372,7 @@
   (time     Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 variable Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
   Variables: 
-  Stock2

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

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

and voilà

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

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

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

and voilà

julia
julia> ds = Dataset(; (d_keys .=> yax_list)...)
YAXArray Dataset
 Shared Axes:
   (time     Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 variable Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
@@ -399,7 +399,7 @@
 ├──────────────────────────────────────────────────────── memory size ┤
   summarysize: 164.0 bytes
 └─────────────────────────────────────────────────────────────────────┘

WARNING

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

- + \ No newline at end of file diff --git a/previews/PR446/UserGuide/group.html b/previews/PR446/UserGuide/group.html index 50fe68ab..09bd0e0c 100644 --- a/previews/PR446/UserGuide/group.html +++ b/previews/PR446/UserGuide/group.html @@ -8,9 +8,9 @@ - + - + @@ -210,7 +210,7 @@ rowgap!(fig.layout, 5) fig end

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

- + \ No newline at end of file diff --git a/previews/PR446/UserGuide/read.html b/previews/PR446/UserGuide/read.html index 20fb3f16..0951e089 100644 --- a/previews/PR446/UserGuide/read.html +++ b/previews/PR446/UserGuide/read.html @@ -8,9 +8,9 @@ - + - + @@ -106,7 +106,7 @@ Blue, Green, Red Properties: Dict{String, Any}("projection" => "GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AXIS[\"Latitude\",NORTH],AXIS[\"Longitude\",EAST],AUTHORITY[\"EPSG\",\"4326\"]]") - + \ No newline at end of file diff --git a/previews/PR446/UserGuide/select.html b/previews/PR446/UserGuide/select.html index 5219aa91..a322a79f 100644 --- a/previews/PR446/UserGuide/select.html +++ b/previews/PR446/UserGuide/select.html @@ -8,9 +8,9 @@ - + - + @@ -314,7 +314,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/PR446/UserGuide/types.html b/previews/PR446/UserGuide/types.html index 14712e84..2b946c0c 100644 --- a/previews/PR446/UserGuide/types.html +++ b/previews/PR446/UserGuide/types.html @@ -8,9 +8,9 @@ - + - + @@ -21,7 +21,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/PR446/UserGuide/write.html b/previews/PR446/UserGuide/write.html index e52cb9bb..9301f201 100644 --- a/previews/PR446/UserGuide/write.html +++ b/previews/PR446/UserGuide/write.html @@ -8,11 +8,11 @@ - + - + - + @@ -42,7 +42,7 @@ savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

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

netcdf compression

Save a dataset to NetCDF format with compression:

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

Comparing it to the default saved file

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

Overwrite a Dataset

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

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

DANGER

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

Look at the doc string for more information

YAXArrays.Datasets.savedataset Function

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

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

Warning

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

source

Append to a Dataset

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

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

Overwrite a Dataset

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

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

DANGER

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

Look at the doc string for more information

YAXArrays.Datasets.savedataset Function

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

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

Warning

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

source

Append to a Dataset

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

julia
ds2 = Dataset(z = YAXArray(rand(10,20,5)))
 savedataset(ds2, path="ds.zarr", backend=:zarr, append=true)
julia
julia> open_dataset("ds.zarr", driver=:zarr)
YAXArray Dataset
 Shared Axes:
 None
@@ -92,7 +92,7 @@
  0.459041  0.761553   0.367809  0.414041
  0.223574  0.898926   0.647957  0.820737
  0.457984  0.839919   0.858795  0.1921

indeed, those entries had been updated.

- + \ No newline at end of file diff --git a/previews/PR446/api.html b/previews/PR446/api.html index c5eef1b2..e8f28950 100644 --- a/previews/PR446/api.html +++ b/previews/PR446/api.html @@ -8,11 +8,11 @@ - + - + - + @@ -20,20 +20,20 @@ -
Skip to content

API Reference

This section describes all available functions of this package.

Public API

YAXArrays.getAxis Method
julia
getAxis(desc, c)

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

  • the name as a string or symbol.

  • an Axis object

source

YAXArrays.Cubes Module

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

source

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

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

Fields

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

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

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

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

source

YAXArrays.Cubes.caxes Function

Returns the axes of a Cube

source

YAXArrays.Cubes.caxes Method
julia
caxes

Embeds Cube inside a new Cube

source

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

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

source

YAXArrays.Cubes.readcubedata Method
julia
readcubedata(cube)

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

source

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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source

YAXArrays.Cubes.subsetcube Function

This function calculates a subset of a cube's data

source

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

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

Keyword arguments

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

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

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

source

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

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

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

source

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

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

  • axisdesc: List of input axis names

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

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

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

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

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

source

YAXArrays.DAT.CubeTable Method
julia
CubeTable()

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

source

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

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

source

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

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

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

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

source

YAXArrays.DAT.mapCube Method
julia
mapCube(fun, cube, addargs...;kwargs...)
+    
Skip to content

API Reference

This section describes all available functions of this package.

Public API

YAXArrays.getAxis Method
julia
getAxis(desc, c)

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

  • the name as a string or symbol.

  • an Axis object

source

YAXArrays.Cubes Module

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

source

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

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

Fields

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

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

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

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

source

YAXArrays.Cubes.caxes Function

Returns the axes of a Cube

source

YAXArrays.Cubes.caxes Method
julia
caxes

Embeds Cube inside a new Cube

source

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

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

source

YAXArrays.Cubes.readcubedata Method
julia
readcubedata(cube)

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

source

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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source

YAXArrays.Cubes.subsetcube Function

This function calculates a subset of a cube's data

source

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

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

Keyword arguments

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

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

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

source

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

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

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

source

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

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

  • axisdesc: List of input axis names

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

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

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

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

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

source

YAXArrays.DAT.CubeTable Method
julia
CubeTable()

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

source

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

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

source

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

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

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

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

source

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

source

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

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

Keyword arguments

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

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

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

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

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

  • showprog boolean indicating if a ProgressMeter shall be shown

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

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

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

  • kwargs additional keyword arguments are passed to the inner function

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

source

YAXArrays.Datasets.Dataset Type
julia
Dataset object which stores an `OrderedDict` of YAXArrays with Symbol keys.
+For the specific keyword arguments see the docstring of the mapCube function for cubes.

source

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

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

Keyword arguments

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

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

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

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

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

  • showprog boolean indicating if a ProgressMeter shall be shown

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

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

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

  • kwargs additional keyword arguments are passed to the inner function

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

source

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

source

YAXArrays.Datasets.Dataset Method

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

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

source

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

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

source

YAXArrays.Datasets.open_dataset Method

open_dataset(g; driver=:all)

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

source

YAXArrays.Datasets.savecube Method
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.savedataset Method

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

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

Warning

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

source

YAXArrays.Datasets.to_dataset Method

to_dataset(c;datasetaxis = "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.YAXDefaults Constant

Default configuration for YAXArrays, has the following fields:

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

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

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

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

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

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

source

YAXArrays.findAxis Method
julia
findAxis(desc, c)

Internal function

Extended Help

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

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

YAXArrays.getOutAxis Method
julia
getOutAxis

source

YAXArrays.get_descriptor Method
julia
get_descriptor(a)

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

source

YAXArrays.match_axis Method
julia
match_axis

Internal function

Extended Help

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

source

YAXArrays.Datasets.Dataset Method

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

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

source

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

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

source

YAXArrays.Datasets.open_dataset Method

open_dataset(g; driver=:all)

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

source

YAXArrays.Datasets.savecube Method
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.savedataset Method

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

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

Warning

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

source

YAXArrays.Datasets.to_dataset Method

to_dataset(c;datasetaxis = "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.YAXDefaults Constant

Default configuration for YAXArrays, has the following fields:

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

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

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

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

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

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

source

YAXArrays.findAxis Method
julia
findAxis(desc, c)

Internal function

Extended Help

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

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

YAXArrays.getOutAxis Method
julia
getOutAxis

source

YAXArrays.get_descriptor Method
julia
get_descriptor(a)

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

source

YAXArrays.match_axis Method
julia
match_axis

Internal function

Extended Help

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

source

YAXArrays.Cubes.CleanMe Type
julia
mutable struct CleanMe

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

source

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

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

source

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

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

source

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

Internal

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

source

YAXArrays.DAT.DATConfig Type

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

  • incubes::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.InputCube Type

Internal representation of an input cube for DAT operations

  • cube: The input data

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

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

  • icolon

  • colonperm

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

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

  • window

  • iwindow

  • windowloopinds

  • iall

source

YAXArrays.DAT.OutputCube Type

Internal representation of an output cube for DAT operations

Fields

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

  • cube_unpermuted: The unpermuted output cube

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

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

  • allAxes: List of all the axes of the cube

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

  • innerchunks

  • outtype: Elementtype of the outputcube

source

YAXArrays.DAT.YAXColumn Type
julia
YAXColumn

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

  • inarBC

  • inds

source

YAXArrays.DAT.cmpcachmisses Method

Function that compares two cache miss specifiers by their importance

source

YAXArrays.DAT.getFrontPerm Method

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

source

YAXArrays.DAT.getLoopCacheSize Method

Calculate optimal Cache size to DAT operation

source

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

Internal function

Get the element type for the output cube

source

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

Internal function

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

source

YAXArrays.DAT.permuteloopaxes Method
julia
permuteloopaxes(dc)

Internal function

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

source

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

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

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

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

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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source

YAXArrays.Datasets.collectfromhandle Method

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

source

YAXArrays.Datasets.createdataset Method

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

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

Keyword arguments

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

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

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

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

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

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

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

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

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

  • datasetaxis="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.getarrayinfo Method

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

source

YAXArrays.Datasets.testrange Method

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

source

- +For example to disregard differences of captialisation.

source

YAXArrays.Cubes.CleanMe Type
julia
mutable struct CleanMe

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

source

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

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

source

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

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

source

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

Internal

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

source

YAXArrays.DAT.DATConfig Type

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

  • incubes::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.InputCube Type

Internal representation of an input cube for DAT operations

  • cube: The input data

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

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

  • icolon

  • colonperm

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

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

  • window

  • iwindow

  • windowloopinds

  • iall

source

YAXArrays.DAT.OutputCube Type

Internal representation of an output cube for DAT operations

Fields

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

  • cube_unpermuted: The unpermuted output cube

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

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

  • allAxes: List of all the axes of the cube

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

  • innerchunks

  • outtype: Elementtype of the outputcube

source

YAXArrays.DAT.YAXColumn Type
julia
YAXColumn

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

  • inarBC

  • inds

source

YAXArrays.DAT.cmpcachmisses Method

Function that compares two cache miss specifiers by their importance

source

YAXArrays.DAT.getFrontPerm Method

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

source

YAXArrays.DAT.getLoopCacheSize Method

Calculate optimal Cache size to DAT operation

source

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

Internal function

Get the element type for the output cube

source

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

Internal function

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

source

YAXArrays.DAT.permuteloopaxes Method
julia
permuteloopaxes(dc)

Internal function

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

source

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

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

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

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

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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source

YAXArrays.Datasets.collectfromhandle Method

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

source

YAXArrays.Datasets.createdataset Method

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

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

Keyword arguments

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

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

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

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

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

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

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

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

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

  • datasetaxis="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.getarrayinfo Method

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

source

YAXArrays.Datasets.testrange Method

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

source

+ \ No newline at end of file diff --git a/previews/PR446/assets/UserGuide_compute.md.DdcbgHEr.js b/previews/PR446/assets/UserGuide_compute.md.C9pwzXHx.js similarity index 95% rename from previews/PR446/assets/UserGuide_compute.md.DdcbgHEr.js rename to previews/PR446/assets/UserGuide_compute.md.C9pwzXHx.js index 7a68b50f..550e4eb0 100644 --- a/previews/PR446/assets/UserGuide_compute.md.DdcbgHEr.js +++ b/previews/PR446/assets/UserGuide_compute.md.C9pwzXHx.js @@ -19,7 +19,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.dNXAuqoR.js";const g :origin => "user guide" ├─────────────────────────────────────────────────────────────────── file size ┤ file size: 35.16 KB -└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.35344092446349085
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.6449679240642969
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,
@@ -179,7 +179,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.dNXAuqoR.js";const g
   "description" => "multi dimensional test cube"
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 960.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

One to many output cubes

In the following function, note how the outputs are defined first and the inputs later.

julia
function one_to_many(xout_one, xout_two, xout_flat, xin_one)
+└──────────────────────────────────────────────────────────────────────────────┘

One InDims to many OutDims

In the following function, note how the outputs are defined first and the inputs later.

julia
function one_to_many(xout_one, xout_two, xout_flat, xin_one)
     xout_one .= f1.(xin_one)
     xout_two .= f2.(xin_one)
     xout_flat .= sum(xin_one)
@@ -208,7 +208,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.dNXAuqoR.js";const g
   "name" => "plus_two"
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 960.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

many to many cubes

Let's consider a second test set

julia
properties_2d = Dict("description" => "2d dimensional test cube")
+└──────────────────────────────────────────────────────────────────────────────┘

Many InDims to many OutDims

Let's consider a second test set

julia
properties_2d = Dict("description" => "2d dimensional test cube")
 yax_2d = YAXArray(axlist[2:end], rand(-1:1, 4, 3, 2), properties_2d)
╭─────────────────────────╮
 │ 4×3×2 YAXArray{Int64,3} │
 ├─────────────────────────┴───────────────────────────────────────── dims ┐
@@ -272,7 +272,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.dNXAuqoR.js";const g
   "description" => "multi dimensional test cube"
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 480.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

and the corresponding function

julia
function mix_time_depth(xin_xyt, xin_xyz)
+└──────────────────────────────────────────────────────────────────────────────┘

and the corresponding functions

julia
function mix_time_depth(xin_xyt, xin_xyz)
     s = sum(abs.(xin_xyz))
     return xin_xyt.^2 .+ s
 end
@@ -293,7 +293,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.dNXAuqoR.js";const g
   Dict{String, Any}()
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 480.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

Creating a vector array

Here we transform a raster array with spatial dimension lat and lon into a vector array having just one spatial dimension i.e. region. First, create the raster array:

julia
using YAXArrays
+└──────────────────────────────────────────────────────────────────────────────┘

Creating a vector array

Here we transform a raster array with spatial dimension lat and lon into a vector array having just one spatial dimension i.e. region. First, create the raster array:

julia
using YAXArrays
 using DimensionalData
 using Dates
 
diff --git a/previews/PR446/assets/UserGuide_compute.md.DdcbgHEr.lean.js b/previews/PR446/assets/UserGuide_compute.md.C9pwzXHx.lean.js
similarity index 95%
rename from previews/PR446/assets/UserGuide_compute.md.DdcbgHEr.lean.js
rename to previews/PR446/assets/UserGuide_compute.md.C9pwzXHx.lean.js
index 7a68b50f..550e4eb0 100644
--- a/previews/PR446/assets/UserGuide_compute.md.DdcbgHEr.lean.js
+++ b/previews/PR446/assets/UserGuide_compute.md.C9pwzXHx.lean.js
@@ -19,7 +19,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.dNXAuqoR.js";const g
   :origin => "user guide"
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 35.16 KB
-└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.35344092446349085
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.6449679240642969
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,
@@ -179,7 +179,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.dNXAuqoR.js";const g
   "description" => "multi dimensional test cube"
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 960.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

One to many output cubes

In the following function, note how the outputs are defined first and the inputs later.

julia
function one_to_many(xout_one, xout_two, xout_flat, xin_one)
+└──────────────────────────────────────────────────────────────────────────────┘

One InDims to many OutDims

In the following function, note how the outputs are defined first and the inputs later.

julia
function one_to_many(xout_one, xout_two, xout_flat, xin_one)
     xout_one .= f1.(xin_one)
     xout_two .= f2.(xin_one)
     xout_flat .= sum(xin_one)
@@ -208,7 +208,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.dNXAuqoR.js";const g
   "name" => "plus_two"
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 960.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

many to many cubes

Let's consider a second test set

julia
properties_2d = Dict("description" => "2d dimensional test cube")
+└──────────────────────────────────────────────────────────────────────────────┘

Many InDims to many OutDims

Let's consider a second test set

julia
properties_2d = Dict("description" => "2d dimensional test cube")
 yax_2d = YAXArray(axlist[2:end], rand(-1:1, 4, 3, 2), properties_2d)
╭─────────────────────────╮
 │ 4×3×2 YAXArray{Int64,3} │
 ├─────────────────────────┴───────────────────────────────────────── dims ┐
@@ -272,7 +272,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.dNXAuqoR.js";const g
   "description" => "multi dimensional test cube"
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 480.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

and the corresponding function

julia
function mix_time_depth(xin_xyt, xin_xyz)
+└──────────────────────────────────────────────────────────────────────────────┘

and the corresponding functions

julia
function mix_time_depth(xin_xyt, xin_xyz)
     s = sum(abs.(xin_xyz))
     return xin_xyt.^2 .+ s
 end
@@ -293,7 +293,7 @@ import{_ as i,c as a,a2 as n,o as t}from"./chunks/framework.dNXAuqoR.js";const g
   Dict{String, Any}()
 ├─────────────────────────────────────────────────────────────────── file size ┤
   file size: 480.0 bytes
-└──────────────────────────────────────────────────────────────────────────────┘

Creating a vector array

Here we transform a raster array with spatial dimension lat and lon into a vector array having just one spatial dimension i.e. region. First, create the raster array:

julia
using YAXArrays
+└──────────────────────────────────────────────────────────────────────────────┘

Creating a vector array

Here we transform a raster array with spatial dimension lat and lon into a vector array having just one spatial dimension i.e. region. First, create the raster array:

julia
using YAXArrays
 using DimensionalData
 using Dates
 
diff --git a/previews/PR446/assets/UserGuide_faq.md.Ci6WXaZL.js b/previews/PR446/assets/UserGuide_faq.md.BGc9k2Bj.js
similarity index 99%
rename from previews/PR446/assets/UserGuide_faq.md.Ci6WXaZL.js
rename to previews/PR446/assets/UserGuide_faq.md.BGc9k2Bj.js
index 0ebc64c6..3d6d78c1 100644
--- a/previews/PR446/assets/UserGuide_faq.md.Ci6WXaZL.js
+++ b/previews/PR446/assets/UserGuide_faq.md.BGc9k2Bj.js
@@ -196,7 +196,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.dNXAuqoR.js";const t
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points)
   Variables: 
-  latitudes
+  longitudes
 
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points,
@@ -207,7 +207,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.dNXAuqoR.js";const t
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points)
   Variables: 
-  longitudes

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

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

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

julia
latitudes_yasxa  = readcubedata(ds["latitudes"])
 longitudes_yasxa = readcubedata(ds["longitudes"])
 ds_subset = ds[points = Where(p-> latitudes_yasxa[p]  >= 20 && latitudes_yasxa[p]  <= 80 &&
                              longitudes_yasxa[p] >= 0  && longitudes_yasxa[p] <= 180
@@ -219,12 +219,12 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.dNXAuqoR.js";const t
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points)
   Variables: 
-  latitudes
+  longitudes
 
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points)
   Variables: 
-  longitudes
+  latitudes
 
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points,
@@ -338,7 +338,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.dNXAuqoR.js";const t
   (time     Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 variable Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
   Variables: 
-  Stock3
+  Stock2
 
   Additional Axes: 
   (time     Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
@@ -350,7 +350,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.dNXAuqoR.js";const t
   (time     Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 variable Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
   Variables: 
-  Stock2

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

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

and voilà

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

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

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

and voilà

julia
julia> ds = Dataset(; (d_keys .=> yax_list)...)
YAXArray Dataset
 Shared Axes:
   (time     Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 variable Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
diff --git a/previews/PR446/assets/UserGuide_faq.md.Ci6WXaZL.lean.js b/previews/PR446/assets/UserGuide_faq.md.BGc9k2Bj.lean.js
similarity index 99%
rename from previews/PR446/assets/UserGuide_faq.md.Ci6WXaZL.lean.js
rename to previews/PR446/assets/UserGuide_faq.md.BGc9k2Bj.lean.js
index 0ebc64c6..3d6d78c1 100644
--- a/previews/PR446/assets/UserGuide_faq.md.Ci6WXaZL.lean.js
+++ b/previews/PR446/assets/UserGuide_faq.md.BGc9k2Bj.lean.js
@@ -196,7 +196,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.dNXAuqoR.js";const t
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points)
   Variables: 
-  latitudes
+  longitudes
 
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points,
@@ -207,7 +207,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.dNXAuqoR.js";const t
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points)
   Variables: 
-  longitudes

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

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

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

julia
latitudes_yasxa  = readcubedata(ds["latitudes"])
 longitudes_yasxa = readcubedata(ds["longitudes"])
 ds_subset = ds[points = Where(p-> latitudes_yasxa[p]  >= 20 && latitudes_yasxa[p]  <= 80 &&
                              longitudes_yasxa[p] >= 0  && longitudes_yasxa[p] <= 180
@@ -219,12 +219,12 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.dNXAuqoR.js";const t
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points)
   Variables: 
-  latitudes
+  longitudes
 
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points)
   Variables: 
-  longitudes
+  latitudes
 
   Additional Axes: 
   (↓ points Sampled{Int64} [9, 13, …, 95, 100] ForwardOrdered Irregular Points,
@@ -338,7 +338,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.dNXAuqoR.js";const t
   (time     Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 variable Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
   Variables: 
-  Stock3
+  Stock2
 
   Additional Axes: 
   (time     Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
@@ -350,7 +350,7 @@ import{_ as i,c as a,a2 as n,o as e}from"./chunks/framework.dNXAuqoR.js";const t
   (time     Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 variable Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
   Variables: 
-  Stock2

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

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

and voilà

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

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

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

and voilà

julia
julia> ds = Dataset(; (d_keys .=> yax_list)...)
YAXArray Dataset
 Shared Axes:
   (time     Sampled{DateTime} [2020-01-01T00:00:00, …, 2020-01-21T19:00:00] ForwardOrdered Irregular Points,
 variable Categorical{Symbol} [:Open, :High, :Low, :Close, :Volume] Unordered)
diff --git a/previews/PR446/assets/UserGuide_write.md.C6z1uU6M.js b/previews/PR446/assets/UserGuide_write.md.Bu7kKZO8.js
similarity index 99%
rename from previews/PR446/assets/UserGuide_write.md.C6z1uU6M.js
rename to previews/PR446/assets/UserGuide_write.md.Bu7kKZO8.js
index a2621a07..8963d8cd 100644
--- a/previews/PR446/assets/UserGuide_write.md.C6z1uU6M.js
+++ b/previews/PR446/assets/UserGuide_write.md.Bu7kKZO8.js
@@ -20,7 +20,7 @@ import{_ as n,c as l,a2 as t,j as i,a,G as p,B as h,o as k}from"./chunks/framewo
 savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

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

netcdf compression

Save a dataset to NetCDF format with compression:

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

Comparing it to the default saved file

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

Overwrite a Dataset

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

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

DANGER

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

Look at the doc string for more information

`,29)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"YAXArrays.Datasets.savedataset",href:"#YAXArrays.Datasets.savedataset"},[i("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[1]||(s[1]=a()),p(e,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[2]||(s[2]=i("p",null,'savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)',-1)),s[3]||(s[3]=i("p",null,[a("Saves a Dataset into a file at "),i("code",null,"path"),a(" with the format given by "),i("code",null,"driver"),a(", i.e., driver=:netcdf or driver=:zarr.")],-1)),s[4]||(s[4]=i("div",{class:"warning custom-block"},[i("p",{class:"custom-block-title"},"Warning"),i("p",null,"overwrite = true, deletes ALL your data and it will create a new file.")],-1)),s[5]||(s[5]=i("p",null,[i("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L557-L566",target:"_blank",rel:"noreferrer"},"source")],-1))]),s[7]||(s[7]=t(`

Append to a Dataset

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

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

Overwrite a Dataset

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

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

DANGER

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

Look at the doc string for more information

`,29)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"YAXArrays.Datasets.savedataset",href:"#YAXArrays.Datasets.savedataset"},[i("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[1]||(s[1]=a()),p(e,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[2]||(s[2]=i("p",null,'savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)',-1)),s[3]||(s[3]=i("p",null,[a("Saves a Dataset into a file at "),i("code",null,"path"),a(" with the format given by "),i("code",null,"driver"),a(", i.e., driver=:netcdf or driver=:zarr.")],-1)),s[4]||(s[4]=i("div",{class:"warning custom-block"},[i("p",{class:"custom-block-title"},"Warning"),i("p",null,"overwrite = true, deletes ALL your data and it will create a new file.")],-1)),s[5]||(s[5]=i("p",null,[i("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L557-L566",target:"_blank",rel:"noreferrer"},"source")],-1))]),s[7]||(s[7]=t(`

Append to a Dataset

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

julia
ds2 = Dataset(z = YAXArray(rand(10,20,5)))
 savedataset(ds2, path="ds.zarr", backend=:zarr, append=true)
julia
julia> open_dataset("ds.zarr", driver=:zarr)
YAXArray Dataset
 Shared Axes:
 None
diff --git a/previews/PR446/assets/UserGuide_write.md.C6z1uU6M.lean.js b/previews/PR446/assets/UserGuide_write.md.Bu7kKZO8.lean.js
similarity index 99%
rename from previews/PR446/assets/UserGuide_write.md.C6z1uU6M.lean.js
rename to previews/PR446/assets/UserGuide_write.md.Bu7kKZO8.lean.js
index a2621a07..8963d8cd 100644
--- a/previews/PR446/assets/UserGuide_write.md.C6z1uU6M.lean.js
+++ b/previews/PR446/assets/UserGuide_write.md.Bu7kKZO8.lean.js
@@ -20,7 +20,7 @@ import{_ as n,c as l,a2 as t,j as i,a,G as p,B as h,o as k}from"./chunks/framewo
 savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

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

netcdf compression

Save a dataset to NetCDF format with compression:

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

Comparing it to the default saved file

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

Overwrite a Dataset

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

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

DANGER

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

Look at the doc string for more information

`,29)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"YAXArrays.Datasets.savedataset",href:"#YAXArrays.Datasets.savedataset"},[i("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[1]||(s[1]=a()),p(e,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[2]||(s[2]=i("p",null,'savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)',-1)),s[3]||(s[3]=i("p",null,[a("Saves a Dataset into a file at "),i("code",null,"path"),a(" with the format given by "),i("code",null,"driver"),a(", i.e., driver=:netcdf or driver=:zarr.")],-1)),s[4]||(s[4]=i("div",{class:"warning custom-block"},[i("p",{class:"custom-block-title"},"Warning"),i("p",null,"overwrite = true, deletes ALL your data and it will create a new file.")],-1)),s[5]||(s[5]=i("p",null,[i("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L557-L566",target:"_blank",rel:"noreferrer"},"source")],-1))]),s[7]||(s[7]=t(`

Append to a Dataset

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

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

Overwrite a Dataset

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

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

DANGER

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

Look at the doc string for more information

`,29)),i("details",r,[i("summary",null,[s[0]||(s[0]=i("a",{id:"YAXArrays.Datasets.savedataset",href:"#YAXArrays.Datasets.savedataset"},[i("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[1]||(s[1]=a()),p(e,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[2]||(s[2]=i("p",null,'savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)',-1)),s[3]||(s[3]=i("p",null,[a("Saves a Dataset into a file at "),i("code",null,"path"),a(" with the format given by "),i("code",null,"driver"),a(", i.e., driver=:netcdf or driver=:zarr.")],-1)),s[4]||(s[4]=i("div",{class:"warning custom-block"},[i("p",{class:"custom-block-title"},"Warning"),i("p",null,"overwrite = true, deletes ALL your data and it will create a new file.")],-1)),s[5]||(s[5]=i("p",null,[i("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L557-L566",target:"_blank",rel:"noreferrer"},"source")],-1))]),s[7]||(s[7]=t(`

Append to a Dataset

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

julia
ds2 = Dataset(z = YAXArray(rand(10,20,5)))
 savedataset(ds2, path="ds.zarr", backend=:zarr, append=true)
julia
julia> open_dataset("ds.zarr", driver=:zarr)
YAXArray Dataset
 Shared Axes:
 None
diff --git a/previews/PR446/assets/api.md.B5Zjm_UF.js b/previews/PR446/assets/api.md.CJNj27NI.js
similarity index 91%
rename from previews/PR446/assets/api.md.B5Zjm_UF.js
rename to previews/PR446/assets/api.md.CJNj27NI.js
index 6314b26f..8cd667a3 100644
--- a/previews/PR446/assets/api.md.B5Zjm_UF.js
+++ b/previews/PR446/assets/api.md.CJNj27NI.js
@@ -1,10 +1,10 @@
-import{_ as n,c as o,j as e,a,G as i,a2 as l,B as r,o as p}from"./chunks/framework.dNXAuqoR.js";const hs=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),d={name:"api.md"},u={class:"jldocstring custom-block",open:""},h={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""},b={class:"jldocstring custom-block",open:""},y={class:"jldocstring custom-block",open:""},f={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},A={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""},m={class:"jldocstring custom-block",open:""},j={class:"jldocstring custom-block",open:""},C={class:"jldocstring custom-block",open:""},D={class:"jldocstring custom-block",open:""},E={class:"jldocstring custom-block",open:""},T={class:"jldocstring custom-block",open:""},v={class:"jldocstring custom-block",open:""},X={class:"jldocstring custom-block",open:""},Y={class:"jldocstring custom-block",open:""},x={class:"jldocstring custom-block",open:""},F={class:"jldocstring custom-block",open:""},w={class:"jldocstring custom-block",open:""},L={class:"jldocstring custom-block",open:""},M={class:"jldocstring custom-block",open:""},O={class:"jldocstring custom-block",open:""},I={class:"jldocstring custom-block",open:""},B={class:"jldocstring custom-block",open:""},J={class:"jldocstring custom-block",open:""},P={class:"jldocstring custom-block",open:""},z={class:"jldocstring custom-block",open:""},N={class:"jldocstring custom-block",open:""},S={class:"jldocstring custom-block",open:""},q={class:"jldocstring custom-block",open:""},R={class:"jldocstring custom-block",open:""},V={class:"jldocstring custom-block",open:""},G={class:"jldocstring custom-block",open:""},W={class:"jldocstring custom-block",open:""},U={class:"jldocstring custom-block",open:""},$={class:"jldocstring custom-block",open:""},H={class:"jldocstring custom-block",open:""},K={class:"jldocstring custom-block",open:""},Z={class:"jldocstring custom-block",open:""},Q={class:"jldocstring custom-block",open:""},_={class:"jldocstring custom-block",open:""},ss={class:"jldocstring custom-block",open:""},es={class:"jldocstring custom-block",open:""},as={class:"jldocstring custom-block",open:""},ts={class:"jldocstring custom-block",open:""},is={class:"jldocstring custom-block",open:""};function ls(ns,s,os,rs,ps,ds){const t=r("Badge");return p(),o("div",null,[s[162]||(s[162]=e("h1",{id:"API-Reference",tabindex:"-1"},[a("API Reference "),e("a",{class:"header-anchor",href:"#API-Reference","aria-label":'Permalink to "API Reference {#API-Reference}"'},"​")],-1)),s[163]||(s[163]=e("p",null,"This section describes all available functions of this package.",-1)),s[164]||(s[164]=e("h2",{id:"Public-API",tabindex:"-1"},[a("Public API "),e("a",{class:"header-anchor",href:"#Public-API","aria-label":'Permalink to "Public API {#Public-API}"'},"​")],-1)),e("details",u,[e("summary",null,[s[0]||(s[0]=e("a",{id:"YAXArrays.getAxis-Tuple{Any, Any}",href:"#YAXArrays.getAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getAxis")],-1)),s[1]||(s[1]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=l('
julia
getAxis(desc, c)

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

  • the name as a string or symbol.

  • an Axis object

source

',4))]),e("details",h,[e("summary",null,[s[3]||(s[3]=e("a",{id:"YAXArrays.Cubes",href:"#YAXArrays.Cubes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes")],-1)),s[4]||(s[4]=a()),i(t,{type:"info",class:"jlObjectType jlModule",text:"Module"})]),s[5]||(s[5]=e("p",null,"The functions provided by YAXArrays are supposed to work on different types of cubes. This module defines the interface for all Data types that",-1)),s[6]||(s[6]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/Cubes/Cubes.jl#L1-L4",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",c,[e("summary",null,[s[7]||(s[7]=e("a",{id:"YAXArrays.Cubes.YAXArray",href:"#YAXArrays.Cubes.YAXArray"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.YAXArray")],-1)),s[8]||(s[8]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[9]||(s[9]=l('
julia
YAXArray{T,N}

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

Fields

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

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

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

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

source

',5))]),e("details",b,[e("summary",null,[s[10]||(s[10]=e("a",{id:"YAXArrays.Cubes.caxes",href:"#YAXArrays.Cubes.caxes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[11]||(s[11]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[12]||(s[12]=e("p",null,"Returns the axes of a Cube",-1)),s[13]||(s[13]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/Cubes/Cubes.jl#L27",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",y,[e("summary",null,[s[14]||(s[14]=e("a",{id:"YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[15]||(s[15]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[16]||(s[16]=l('
julia
caxes

Embeds Cube inside a new Cube

source

',3))]),e("details",f,[e("summary",null,[s[17]||(s[17]=e("a",{id:"YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.concatenatecubes")],-1)),s[18]||(s[18]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[19]||(s[19]=l('
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

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

source

',3))]),e("details",g,[e("summary",null,[s[20]||(s[20]=e("a",{id:"YAXArrays.Cubes.readcubedata-Tuple{Any}",href:"#YAXArrays.Cubes.readcubedata-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.readcubedata")],-1)),s[21]||(s[21]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[22]||(s[22]=l('
julia
readcubedata(cube)

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

source

',3))]),e("details",A,[e("summary",null,[s[23]||(s[23]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[24]||(s[24]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[25]||(s[25]=l('
julia
setchunks(c::YAXArray,chunks)

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source

',4))]),e("details",k,[e("summary",null,[s[26]||(s[26]=e("a",{id:"YAXArrays.Cubes.subsetcube",href:"#YAXArrays.Cubes.subsetcube"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.subsetcube")],-1)),s[27]||(s[27]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[28]||(s[28]=e("p",null,"This function calculates a subset of a cube's data",-1)),s[29]||(s[29]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/Cubes/Cubes.jl#L22-L24",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",m,[e("summary",null,[s[30]||(s[30]=e("a",{id:"YAXArrays.DAT.InDims",href:"#YAXArrays.DAT.InDims"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InDims")],-1)),s[31]||(s[31]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[32]||(s[32]=l('
julia
InDims(axisdesc...;...)

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

Keyword arguments

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

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

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

source

',5))]),e("details",j,[e("summary",null,[s[33]||(s[33]=e("a",{id:"YAXArrays.DAT.MovingWindow",href:"#YAXArrays.DAT.MovingWindow"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.MovingWindow")],-1)),s[34]||(s[34]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[35]||(s[35]=l('
julia
MovingWindow(desc, pre, after)

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

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

source

',4))]),e("details",C,[e("summary",null,[s[36]||(s[36]=e("a",{id:"YAXArrays.DAT.OutDims-Tuple",href:"#YAXArrays.DAT.OutDims-Tuple"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutDims")],-1)),s[37]||(s[37]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[38]||(s[38]=l('
julia
OutDims(axisdesc;...)

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

  • axisdesc: List of input axis names

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

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

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

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

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

source

',4))]),e("details",D,[e("summary",null,[s[39]||(s[39]=e("a",{id:"YAXArrays.DAT.CubeTable-Tuple{}",href:"#YAXArrays.DAT.CubeTable-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.CubeTable")],-1)),s[40]||(s[40]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[41]||(s[41]=l('
julia
CubeTable()

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

source

',3))]),e("details",E,[e("summary",null,[s[42]||(s[42]=e("a",{id:"YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}",href:"#YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cubefittable")],-1)),s[43]||(s[43]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[44]||(s[44]=l('
julia
cubefittable(tab,o,fitsym;post=getpostfunction(o),kwargs...)

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

source

',3))]),e("details",T,[e("summary",null,[s[45]||(s[45]=e("a",{id:"YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}",href:"#YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.fittable")],-1)),s[46]||(s[46]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[47]||(s[47]=l('
julia
fittable(tab,o,fitsym;by=(),weight=nothing)

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

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

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

source

',5))]),e("details",v,[e("summary",null,[s[48]||(s[48]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[49]||(s[49]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[50]||(s[50]=l(`
julia
mapCube(fun, cube, addargs...;kwargs...)
+import{_ as n,c as o,j as e,a,G as i,a2 as l,B as r,o as p}from"./chunks/framework.dNXAuqoR.js";const cs=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),d={name:"api.md"},u={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""},h={class:"jldocstring custom-block",open:""},b={class:"jldocstring custom-block",open:""},y={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},A={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""},f={class:"jldocstring custom-block",open:""},m={class:"jldocstring custom-block",open:""},j={class:"jldocstring custom-block",open:""},C={class:"jldocstring custom-block",open:""},D={class:"jldocstring custom-block",open:""},E={class:"jldocstring custom-block",open:""},T={class:"jldocstring custom-block",open:""},v={class:"jldocstring custom-block",open:""},X={class:"jldocstring custom-block",open:""},Y={class:"jldocstring custom-block",open:""},x={class:"jldocstring custom-block",open:""},F={class:"jldocstring custom-block",open:""},w={class:"jldocstring custom-block",open:""},L={class:"jldocstring custom-block",open:""},M={class:"jldocstring custom-block",open:""},O={class:"jldocstring custom-block",open:""},I={class:"jldocstring custom-block",open:""},B={class:"jldocstring custom-block",open:""},J={class:"jldocstring custom-block",open:""},P={class:"jldocstring custom-block",open:""},z={class:"jldocstring custom-block",open:""},N={class:"jldocstring custom-block",open:""},S={class:"jldocstring custom-block",open:""},q={class:"jldocstring custom-block",open:""},R={class:"jldocstring custom-block",open:""},V={class:"jldocstring custom-block",open:""},G={class:"jldocstring custom-block",open:""},W={class:"jldocstring custom-block",open:""},U={class:"jldocstring custom-block",open:""},$={class:"jldocstring custom-block",open:""},H={class:"jldocstring custom-block",open:""},K={class:"jldocstring custom-block",open:""},Z={class:"jldocstring custom-block",open:""},Q={class:"jldocstring custom-block",open:""},_={class:"jldocstring custom-block",open:""},ss={class:"jldocstring custom-block",open:""},es={class:"jldocstring custom-block",open:""},as={class:"jldocstring custom-block",open:""},ts={class:"jldocstring custom-block",open:""},is={class:"jldocstring custom-block",open:""};function ls(ns,s,os,rs,ps,ds){const t=r("Badge");return p(),o("div",null,[s[162]||(s[162]=e("h1",{id:"API-Reference",tabindex:"-1"},[a("API Reference "),e("a",{class:"header-anchor",href:"#API-Reference","aria-label":'Permalink to "API Reference {#API-Reference}"'},"​")],-1)),s[163]||(s[163]=e("p",null,"This section describes all available functions of this package.",-1)),s[164]||(s[164]=e("h2",{id:"Public-API",tabindex:"-1"},[a("Public API "),e("a",{class:"header-anchor",href:"#Public-API","aria-label":'Permalink to "Public API {#Public-API}"'},"​")],-1)),e("details",u,[e("summary",null,[s[0]||(s[0]=e("a",{id:"YAXArrays.getAxis-Tuple{Any, Any}",href:"#YAXArrays.getAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getAxis")],-1)),s[1]||(s[1]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=l('
julia
getAxis(desc, c)

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

  • the name as a string or symbol.

  • an Axis object

source

',4))]),e("details",c,[e("summary",null,[s[3]||(s[3]=e("a",{id:"YAXArrays.Cubes",href:"#YAXArrays.Cubes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes")],-1)),s[4]||(s[4]=a()),i(t,{type:"info",class:"jlObjectType jlModule",text:"Module"})]),s[5]||(s[5]=e("p",null,"The functions provided by YAXArrays are supposed to work on different types of cubes. This module defines the interface for all Data types that",-1)),s[6]||(s[6]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/Cubes/Cubes.jl#L1-L4",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",h,[e("summary",null,[s[7]||(s[7]=e("a",{id:"YAXArrays.Cubes.YAXArray",href:"#YAXArrays.Cubes.YAXArray"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.YAXArray")],-1)),s[8]||(s[8]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[9]||(s[9]=l('
julia
YAXArray{T,N}

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

Fields

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

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

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

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

source

',5))]),e("details",b,[e("summary",null,[s[10]||(s[10]=e("a",{id:"YAXArrays.Cubes.caxes",href:"#YAXArrays.Cubes.caxes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[11]||(s[11]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[12]||(s[12]=e("p",null,"Returns the axes of a Cube",-1)),s[13]||(s[13]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/Cubes/Cubes.jl#L27",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",y,[e("summary",null,[s[14]||(s[14]=e("a",{id:"YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[15]||(s[15]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[16]||(s[16]=l('
julia
caxes

Embeds Cube inside a new Cube

source

',3))]),e("details",g,[e("summary",null,[s[17]||(s[17]=e("a",{id:"YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.concatenatecubes")],-1)),s[18]||(s[18]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[19]||(s[19]=l('
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

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

source

',3))]),e("details",A,[e("summary",null,[s[20]||(s[20]=e("a",{id:"YAXArrays.Cubes.readcubedata-Tuple{Any}",href:"#YAXArrays.Cubes.readcubedata-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.readcubedata")],-1)),s[21]||(s[21]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[22]||(s[22]=l('
julia
readcubedata(cube)

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

source

',3))]),e("details",k,[e("summary",null,[s[23]||(s[23]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[24]||(s[24]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[25]||(s[25]=l('
julia
setchunks(c::YAXArray,chunks)

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source

',4))]),e("details",f,[e("summary",null,[s[26]||(s[26]=e("a",{id:"YAXArrays.Cubes.subsetcube",href:"#YAXArrays.Cubes.subsetcube"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.subsetcube")],-1)),s[27]||(s[27]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[28]||(s[28]=e("p",null,"This function calculates a subset of a cube's data",-1)),s[29]||(s[29]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/Cubes/Cubes.jl#L22-L24",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",m,[e("summary",null,[s[30]||(s[30]=e("a",{id:"YAXArrays.DAT.InDims",href:"#YAXArrays.DAT.InDims"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InDims")],-1)),s[31]||(s[31]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[32]||(s[32]=l('
julia
InDims(axisdesc...;...)

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

Keyword arguments

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

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

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

source

',5))]),e("details",j,[e("summary",null,[s[33]||(s[33]=e("a",{id:"YAXArrays.DAT.MovingWindow",href:"#YAXArrays.DAT.MovingWindow"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.MovingWindow")],-1)),s[34]||(s[34]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[35]||(s[35]=l('
julia
MovingWindow(desc, pre, after)

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

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

source

',4))]),e("details",C,[e("summary",null,[s[36]||(s[36]=e("a",{id:"YAXArrays.DAT.OutDims-Tuple",href:"#YAXArrays.DAT.OutDims-Tuple"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutDims")],-1)),s[37]||(s[37]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[38]||(s[38]=l('
julia
OutDims(axisdesc;...)

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

  • axisdesc: List of input axis names

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

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

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

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

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

source

',4))]),e("details",D,[e("summary",null,[s[39]||(s[39]=e("a",{id:"YAXArrays.DAT.CubeTable-Tuple{}",href:"#YAXArrays.DAT.CubeTable-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.CubeTable")],-1)),s[40]||(s[40]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[41]||(s[41]=l('
julia
CubeTable()

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

source

',3))]),e("details",E,[e("summary",null,[s[42]||(s[42]=e("a",{id:"YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}",href:"#YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cubefittable")],-1)),s[43]||(s[43]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[44]||(s[44]=l('
julia
cubefittable(tab,o,fitsym;post=getpostfunction(o),kwargs...)

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

source

',3))]),e("details",T,[e("summary",null,[s[45]||(s[45]=e("a",{id:"YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}",href:"#YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.fittable")],-1)),s[46]||(s[46]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[47]||(s[47]=l('
julia
fittable(tab,o,fitsym;by=(),weight=nothing)

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

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

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

source

',5))]),e("details",v,[e("summary",null,[s[48]||(s[48]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[49]||(s[49]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[50]||(s[50]=l(`
julia
mapCube(fun, cube, addargs...;kwargs...)
 
 Map a given function \`fun\` over slices of all cubes of the dataset \`ds\`. 
 Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.
 For Datasets, only one output cube can be specified.
 In contrast to the mapCube function for cubes, additional arguments for the inner function should be set as keyword arguments.
 
-For the specific keyword arguments see the docstring of the mapCube function for cubes.

source

`,2))]),e("details",X,[e("summary",null,[s[51]||(s[51]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[52]||(s[52]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[53]||(s[53]=l('
julia
mapCube(fun, cube, addargs...;kwargs...)

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

Keyword arguments

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

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

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

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

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

  • showprog boolean indicating if a ProgressMeter shall be shown

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

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

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

  • kwargs additional keyword arguments are passed to the inner function

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

source

',6))]),e("details",Y,[e("summary",null,[s[54]||(s[54]=e("a",{id:"YAXArrays.Datasets.Dataset",href:"#YAXArrays.Datasets.Dataset"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[55]||(s[55]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[56]||(s[56]=l('
julia
Dataset object which stores an `OrderedDict` of YAXArrays with Symbol keys.\na dictionary of CubeAxes and a Dictionary of general properties.\nA dictionary can hold cubes with differing axes. But it will share the common axes between the subcubes.

source

',2))]),e("details",x,[e("summary",null,[s[57]||(s[57]=e("a",{id:"YAXArrays.Datasets.Dataset-Tuple{}",href:"#YAXArrays.Datasets.Dataset-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[58]||(s[58]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[59]||(s[59]=e("p",null,"Dataset(; properties = Dict{String,Any}, cubes...)",-1)),s[60]||(s[60]=e("p",null,[a("Construct a YAXArray Dataset with global attributes "),e("code",null,"properties"),a(" a and a list of named YAXArrays cubes...")],-1)),s[61]||(s[61]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L28-L32",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",F,[e("summary",null,[s[62]||(s[62]=e("a",{id:"YAXArrays.Datasets.Cube-Tuple{Dataset}",href:"#YAXArrays.Datasets.Cube-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Cube")],-1)),s[63]||(s[63]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[64]||(s[64]=l('
julia
Cube(ds::Dataset; joinname="Variable")

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

source

',3))]),e("details",w,[e("summary",null,[s[65]||(s[65]=e("a",{id:"YAXArrays.Datasets.open_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.open_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.open_dataset")],-1)),s[66]||(s[66]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[67]||(s[67]=e("p",null,"open_dataset(g; driver=:all)",-1)),s[68]||(s[68]=e("p",null,[a("Open the dataset at "),e("code",null,"g"),a(" with the given "),e("code",null,"driver"),a(". The default driver will search for available drivers and tries to detect the useable driver from the filename extension.")],-1)),s[69]||(s[69]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L330-L335",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",L,[e("summary",null,[s[70]||(s[70]=e("a",{id:"YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}",href:"#YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savecube")],-1)),s[71]||(s[71]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[72]||(s[72]=l('
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

',6))]),e("details",M,[e("summary",null,[s[73]||(s[73]=e("a",{id:"YAXArrays.Datasets.savedataset-Tuple{Dataset}",href:"#YAXArrays.Datasets.savedataset-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[74]||(s[74]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[75]||(s[75]=e("p",null,'savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)',-1)),s[76]||(s[76]=e("p",null,[a("Saves a Dataset into a file at "),e("code",null,"path"),a(" with the format given by "),e("code",null,"driver"),a(", i.e., driver=:netcdf or driver=:zarr.")],-1)),s[77]||(s[77]=e("div",{class:"warning custom-block"},[e("p",{class:"custom-block-title"},"Warning"),e("p",null,"overwrite = true, deletes ALL your data and it will create a new file.")],-1)),s[78]||(s[78]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L557-L566",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",O,[e("summary",null,[s[79]||(s[79]=e("a",{id:"YAXArrays.Datasets.to_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.to_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.to_dataset")],-1)),s[80]||(s[80]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[81]||(s[81]=e("p",null,'to_dataset(c;datasetaxis = "Variable", layername = "layer")',-1)),s[82]||(s[82]=e("p",null,[a(`Convert a Data Cube into a Dataset. It is possible to treat one of the Cube's axes as a "DatasetAxis" i.e. the cube will be split into different parts that become variables in the Dataset. If no such axis is specified or found, there will only be a single variable in the dataset with the name `),e("code",null,"layername")],-1)),s[83]||(s[83]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L45-L53",target:"_blank",rel:"noreferrer"},"source")],-1))]),s[165]||(s[165]=e("h2",{id:"Internal-API",tabindex:"-1"},[a("Internal API "),e("a",{class:"header-anchor",href:"#Internal-API","aria-label":'Permalink to "Internal API {#Internal-API}"'},"​")],-1)),e("details",I,[e("summary",null,[s[84]||(s[84]=e("a",{id:"YAXArrays.YAXDefaults",href:"#YAXArrays.YAXDefaults"},[e("span",{class:"jlbinding"},"YAXArrays.YAXDefaults")],-1)),s[85]||(s[85]=a()),i(t,{type:"info",class:"jlObjectType jlConstant",text:"Constant"})]),s[86]||(s[86]=l('

Default configuration for YAXArrays, has the following fields:

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

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

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

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

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

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

source

',3))]),e("details",B,[e("summary",null,[s[87]||(s[87]=e("a",{id:"YAXArrays.findAxis-Tuple{Any, Any}",href:"#YAXArrays.findAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.findAxis")],-1)),s[88]||(s[88]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[89]||(s[89]=l('
julia
findAxis(desc, c)

Internal function

Extended Help

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

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

',7))]),e("details",J,[e("summary",null,[s[90]||(s[90]=e("a",{id:"YAXArrays.getOutAxis-NTuple{5, Any}",href:"#YAXArrays.getOutAxis-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getOutAxis")],-1)),s[91]||(s[91]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[92]||(s[92]=l('
julia
getOutAxis

source

',2))]),e("details",P,[e("summary",null,[s[93]||(s[93]=e("a",{id:"YAXArrays.get_descriptor-Tuple{String}",href:"#YAXArrays.get_descriptor-Tuple{String}"},[e("span",{class:"jlbinding"},"YAXArrays.get_descriptor")],-1)),s[94]||(s[94]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[95]||(s[95]=l('
julia
get_descriptor(a)

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

source

',3))]),e("details",z,[e("summary",null,[s[96]||(s[96]=e("a",{id:"YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}",href:"#YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.match_axis")],-1)),s[97]||(s[97]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[98]||(s[98]=l(`
julia
match_axis

Internal function

Extended Help

Match the Axis based on the AxisDescriptor.
+For the specific keyword arguments see the docstring of the mapCube function for cubes.

source

`,2))]),e("details",X,[e("summary",null,[s[51]||(s[51]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[52]||(s[52]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[53]||(s[53]=l('
julia
mapCube(fun, cube, addargs...;kwargs...)

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

Keyword arguments

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

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

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

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

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

  • showprog boolean indicating if a ProgressMeter shall be shown

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

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

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

  • kwargs additional keyword arguments are passed to the inner function

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

source

',6))]),e("details",Y,[e("summary",null,[s[54]||(s[54]=e("a",{id:"YAXArrays.Datasets.Dataset",href:"#YAXArrays.Datasets.Dataset"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[55]||(s[55]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[56]||(s[56]=l('
julia
Dataset object which stores an `OrderedDict` of YAXArrays with Symbol keys.\na dictionary of CubeAxes and a Dictionary of general properties.\nA dictionary can hold cubes with differing axes. But it will share the common axes between the subcubes.

source

',2))]),e("details",x,[e("summary",null,[s[57]||(s[57]=e("a",{id:"YAXArrays.Datasets.Dataset-Tuple{}",href:"#YAXArrays.Datasets.Dataset-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[58]||(s[58]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[59]||(s[59]=e("p",null,"Dataset(; properties = Dict{String,Any}, cubes...)",-1)),s[60]||(s[60]=e("p",null,[a("Construct a YAXArray Dataset with global attributes "),e("code",null,"properties"),a(" a and a list of named YAXArrays cubes...")],-1)),s[61]||(s[61]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L28-L32",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",F,[e("summary",null,[s[62]||(s[62]=e("a",{id:"YAXArrays.Datasets.Cube-Tuple{Dataset}",href:"#YAXArrays.Datasets.Cube-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Cube")],-1)),s[63]||(s[63]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[64]||(s[64]=l('
julia
Cube(ds::Dataset; joinname="Variable")

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

source

',3))]),e("details",w,[e("summary",null,[s[65]||(s[65]=e("a",{id:"YAXArrays.Datasets.open_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.open_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.open_dataset")],-1)),s[66]||(s[66]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[67]||(s[67]=e("p",null,"open_dataset(g; driver=:all)",-1)),s[68]||(s[68]=e("p",null,[a("Open the dataset at "),e("code",null,"g"),a(" with the given "),e("code",null,"driver"),a(". The default driver will search for available drivers and tries to detect the useable driver from the filename extension.")],-1)),s[69]||(s[69]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L330-L335",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",L,[e("summary",null,[s[70]||(s[70]=e("a",{id:"YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}",href:"#YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savecube")],-1)),s[71]||(s[71]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[72]||(s[72]=l('
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

',6))]),e("details",M,[e("summary",null,[s[73]||(s[73]=e("a",{id:"YAXArrays.Datasets.savedataset-Tuple{Dataset}",href:"#YAXArrays.Datasets.savedataset-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[74]||(s[74]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[75]||(s[75]=e("p",null,'savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)',-1)),s[76]||(s[76]=e("p",null,[a("Saves a Dataset into a file at "),e("code",null,"path"),a(" with the format given by "),e("code",null,"driver"),a(", i.e., driver=:netcdf or driver=:zarr.")],-1)),s[77]||(s[77]=e("div",{class:"warning custom-block"},[e("p",{class:"custom-block-title"},"Warning"),e("p",null,"overwrite = true, deletes ALL your data and it will create a new file.")],-1)),s[78]||(s[78]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L557-L566",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",O,[e("summary",null,[s[79]||(s[79]=e("a",{id:"YAXArrays.Datasets.to_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.to_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.to_dataset")],-1)),s[80]||(s[80]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[81]||(s[81]=e("p",null,'to_dataset(c;datasetaxis = "Variable", layername = "layer")',-1)),s[82]||(s[82]=e("p",null,[a(`Convert a Data Cube into a Dataset. It is possible to treat one of the Cube's axes as a "DatasetAxis" i.e. the cube will be split into different parts that become variables in the Dataset. If no such axis is specified or found, there will only be a single variable in the dataset with the name `),e("code",null,"layername")],-1)),s[83]||(s[83]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L45-L53",target:"_blank",rel:"noreferrer"},"source")],-1))]),s[165]||(s[165]=e("h2",{id:"Internal-API",tabindex:"-1"},[a("Internal API "),e("a",{class:"header-anchor",href:"#Internal-API","aria-label":'Permalink to "Internal API {#Internal-API}"'},"​")],-1)),e("details",I,[e("summary",null,[s[84]||(s[84]=e("a",{id:"YAXArrays.YAXDefaults",href:"#YAXArrays.YAXDefaults"},[e("span",{class:"jlbinding"},"YAXArrays.YAXDefaults")],-1)),s[85]||(s[85]=a()),i(t,{type:"info",class:"jlObjectType jlConstant",text:"Constant"})]),s[86]||(s[86]=l('

Default configuration for YAXArrays, has the following fields:

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

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

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

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

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

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

source

',3))]),e("details",B,[e("summary",null,[s[87]||(s[87]=e("a",{id:"YAXArrays.findAxis-Tuple{Any, Any}",href:"#YAXArrays.findAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.findAxis")],-1)),s[88]||(s[88]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[89]||(s[89]=l('
julia
findAxis(desc, c)

Internal function

Extended Help

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

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

',7))]),e("details",J,[e("summary",null,[s[90]||(s[90]=e("a",{id:"YAXArrays.getOutAxis-NTuple{5, Any}",href:"#YAXArrays.getOutAxis-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getOutAxis")],-1)),s[91]||(s[91]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[92]||(s[92]=l('
julia
getOutAxis

source

',2))]),e("details",P,[e("summary",null,[s[93]||(s[93]=e("a",{id:"YAXArrays.get_descriptor-Tuple{String}",href:"#YAXArrays.get_descriptor-Tuple{String}"},[e("span",{class:"jlbinding"},"YAXArrays.get_descriptor")],-1)),s[94]||(s[94]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[95]||(s[95]=l('
julia
get_descriptor(a)

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

source

',3))]),e("details",z,[e("summary",null,[s[96]||(s[96]=e("a",{id:"YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}",href:"#YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.match_axis")],-1)),s[97]||(s[97]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[98]||(s[98]=l(`
julia
match_axis

Internal function

Extended Help

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

source

`,5))]),e("details",N,[e("summary",null,[s[99]||(s[99]=e("a",{id:"YAXArrays.Cubes.CleanMe",href:"#YAXArrays.Cubes.CleanMe"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.CleanMe")],-1)),s[100]||(s[100]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[101]||(s[101]=l('
julia
mutable struct CleanMe

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

source

',3))]),e("details",S,[e("summary",null,[s[102]||(s[102]=e("a",{id:"YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}",href:"#YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.clean")],-1)),s[103]||(s[103]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[104]||(s[104]=l('
julia
clean(c::CleanMe)

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

source

',3))]),e("details",q,[e("summary",null,[s[105]||(s[105]=e("a",{id:"YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}",href:"#YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.copydata")],-1)),s[106]||(s[106]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[107]||(s[107]=l('
julia
copydata(outar, inar, copybuf)

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

source

',3))]),e("details",R,[e("summary",null,[s[108]||(s[108]=e("a",{id:"YAXArrays.Cubes.optifunc-NTuple{7, Any}",href:"#YAXArrays.Cubes.optifunc-NTuple{7, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.optifunc")],-1)),s[109]||(s[109]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[110]||(s[110]=l('
julia
optifunc(s, maxbuf, incs, outcs, insize, outsize, writefac)

Internal

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

source

',4))]),e("details",V,[e("summary",null,[s[111]||(s[111]=e("a",{id:"YAXArrays.DAT.DATConfig",href:"#YAXArrays.DAT.DATConfig"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.DATConfig")],-1)),s[112]||(s[112]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[113]||(s[113]=l('

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

',3))]),e("details",G,[e("summary",null,[s[114]||(s[114]=e("a",{id:"YAXArrays.DAT.InputCube",href:"#YAXArrays.DAT.InputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InputCube")],-1)),s[115]||(s[115]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[116]||(s[116]=l('

Internal representation of an input cube for DAT operations

  • cube: The input data

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

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

  • icolon

  • colonperm

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

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

  • window

  • iwindow

  • windowloopinds

  • iall

source

',3))]),e("details",W,[e("summary",null,[s[117]||(s[117]=e("a",{id:"YAXArrays.DAT.OutputCube",href:"#YAXArrays.DAT.OutputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutputCube")],-1)),s[118]||(s[118]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[119]||(s[119]=l('

Internal representation of an output cube for DAT operations

Fields

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

  • cube_unpermuted: The unpermuted output cube

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

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

  • allAxes: List of all the axes of the cube

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

  • innerchunks

  • outtype: Elementtype of the outputcube

source

',4))]),e("details",U,[e("summary",null,[s[120]||(s[120]=e("a",{id:"YAXArrays.DAT.YAXColumn",href:"#YAXArrays.DAT.YAXColumn"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.YAXColumn")],-1)),s[121]||(s[121]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[122]||(s[122]=l('
julia
YAXColumn

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

  • inarBC

  • inds

source

',4))]),e("details",$,[e("summary",null,[s[123]||(s[123]=e("a",{id:"YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}",href:"#YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cmpcachmisses")],-1)),s[124]||(s[124]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[125]||(s[125]=e("p",null,"Function that compares two cache miss specifiers by their importance",-1)),s[126]||(s[126]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DAT/DAT.jl#L957-L959",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",H,[e("summary",null,[s[127]||(s[127]=e("a",{id:"YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}",href:"#YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getFrontPerm")],-1)),s[128]||(s[128]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[129]||(s[129]=e("p",null,"Calculate an axis permutation that brings the wanted dimensions to the front",-1)),s[130]||(s[130]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DAT/DAT.jl#L1202",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",K,[e("summary",null,[s[131]||(s[131]=e("a",{id:"YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}",href:"#YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getLoopCacheSize")],-1)),s[132]||(s[132]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[133]||(s[133]=e("p",null,"Calculate optimal Cache size to DAT operation",-1)),s[134]||(s[134]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DAT/DAT.jl#L1056",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",Z,[e("summary",null,[s[135]||(s[135]=e("a",{id:"YAXArrays.DAT.getOuttype-Tuple{Int64, Any}",href:"#YAXArrays.DAT.getOuttype-Tuple{Int64, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getOuttype")],-1)),s[136]||(s[136]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[137]||(s[137]=l('
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source

',4))]),e("details",Q,[e("summary",null,[s[138]||(s[138]=e("a",{id:"YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}",href:"#YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getloopchunks")],-1)),s[139]||(s[139]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[140]||(s[140]=l('
julia
getloopchunks(dc::DATConfig)

Internal function

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

source

',4))]),e("details",_,[e("summary",null,[s[141]||(s[141]=e("a",{id:"YAXArrays.DAT.permuteloopaxes-Tuple{Any}",href:"#YAXArrays.DAT.permuteloopaxes-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.permuteloopaxes")],-1)),s[142]||(s[142]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[143]||(s[143]=l('
julia
permuteloopaxes(dc)

Internal function

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

source

',4))]),e("details",ss,[e("summary",null,[s[144]||(s[144]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[145]||(s[145]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[146]||(s[146]=l('
julia
setchunks(c::Dataset,chunks)

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

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

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

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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source

',6))]),e("details",es,[e("summary",null,[s[147]||(s[147]=e("a",{id:"YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}",href:"#YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.collectfromhandle")],-1)),s[148]||(s[148]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[149]||(s[149]=e("p",null,"Extracts a YAXArray from a dataset handle that was just created from a arrayinfo",-1)),s[150]||(s[150]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L463-L465",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",as,[e("summary",null,[s[151]||(s[151]=e("a",{id:"YAXArrays.Datasets.createdataset-Tuple{Any, Any}",href:"#YAXArrays.Datasets.createdataset-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.createdataset")],-1)),s[152]||(s[152]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[153]||(s[153]=l('

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

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

Keyword arguments

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

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

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

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

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

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

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

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

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

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

',6))]),e("details",ts,[e("summary",null,[s[154]||(s[154]=e("a",{id:"YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}",href:"#YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.getarrayinfo")],-1)),s[155]||(s[155]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[156]||(s[156]=e("p",null,"Extract necessary information to create a YAXArrayBase dataset from a name and YAXArray pair",-1)),s[157]||(s[157]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L432-L434",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",is,[e("summary",null,[s[158]||(s[158]=e("a",{id:"YAXArrays.Datasets.testrange-Tuple{Any}",href:"#YAXArrays.Datasets.testrange-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.testrange")],-1)),s[159]||(s[159]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[160]||(s[160]=e("p",null,"Test if data in x can be approximated by a step range",-1)),s[161]||(s[161]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L302",target:"_blank",rel:"noreferrer"},"source")],-1))])])}const cs=n(d,[["render",ls]]);export{hs as __pageData,cs as default}; +For example to disregard differences of captialisation.

source

`,5))]),e("details",N,[e("summary",null,[s[99]||(s[99]=e("a",{id:"YAXArrays.Cubes.CleanMe",href:"#YAXArrays.Cubes.CleanMe"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.CleanMe")],-1)),s[100]||(s[100]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[101]||(s[101]=l('
julia
mutable struct CleanMe

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

source

',3))]),e("details",S,[e("summary",null,[s[102]||(s[102]=e("a",{id:"YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}",href:"#YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.clean")],-1)),s[103]||(s[103]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[104]||(s[104]=l('
julia
clean(c::CleanMe)

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

source

',3))]),e("details",q,[e("summary",null,[s[105]||(s[105]=e("a",{id:"YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}",href:"#YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.copydata")],-1)),s[106]||(s[106]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[107]||(s[107]=l('
julia
copydata(outar, inar, copybuf)

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

source

',3))]),e("details",R,[e("summary",null,[s[108]||(s[108]=e("a",{id:"YAXArrays.Cubes.optifunc-NTuple{7, Any}",href:"#YAXArrays.Cubes.optifunc-NTuple{7, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.optifunc")],-1)),s[109]||(s[109]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[110]||(s[110]=l('
julia
optifunc(s, maxbuf, incs, outcs, insize, outsize, writefac)

Internal

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

source

',4))]),e("details",V,[e("summary",null,[s[111]||(s[111]=e("a",{id:"YAXArrays.DAT.DATConfig",href:"#YAXArrays.DAT.DATConfig"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.DATConfig")],-1)),s[112]||(s[112]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[113]||(s[113]=l('

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

',3))]),e("details",G,[e("summary",null,[s[114]||(s[114]=e("a",{id:"YAXArrays.DAT.InputCube",href:"#YAXArrays.DAT.InputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InputCube")],-1)),s[115]||(s[115]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[116]||(s[116]=l('

Internal representation of an input cube for DAT operations

  • cube: The input data

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

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

  • icolon

  • colonperm

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

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

  • window

  • iwindow

  • windowloopinds

  • iall

source

',3))]),e("details",W,[e("summary",null,[s[117]||(s[117]=e("a",{id:"YAXArrays.DAT.OutputCube",href:"#YAXArrays.DAT.OutputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutputCube")],-1)),s[118]||(s[118]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[119]||(s[119]=l('

Internal representation of an output cube for DAT operations

Fields

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

  • cube_unpermuted: The unpermuted output cube

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

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

  • allAxes: List of all the axes of the cube

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

  • innerchunks

  • outtype: Elementtype of the outputcube

source

',4))]),e("details",U,[e("summary",null,[s[120]||(s[120]=e("a",{id:"YAXArrays.DAT.YAXColumn",href:"#YAXArrays.DAT.YAXColumn"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.YAXColumn")],-1)),s[121]||(s[121]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[122]||(s[122]=l('
julia
YAXColumn

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

  • inarBC

  • inds

source

',4))]),e("details",$,[e("summary",null,[s[123]||(s[123]=e("a",{id:"YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}",href:"#YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cmpcachmisses")],-1)),s[124]||(s[124]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[125]||(s[125]=e("p",null,"Function that compares two cache miss specifiers by their importance",-1)),s[126]||(s[126]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DAT/DAT.jl#L957-L959",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",H,[e("summary",null,[s[127]||(s[127]=e("a",{id:"YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}",href:"#YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getFrontPerm")],-1)),s[128]||(s[128]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[129]||(s[129]=e("p",null,"Calculate an axis permutation that brings the wanted dimensions to the front",-1)),s[130]||(s[130]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DAT/DAT.jl#L1202",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",K,[e("summary",null,[s[131]||(s[131]=e("a",{id:"YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}",href:"#YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getLoopCacheSize")],-1)),s[132]||(s[132]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[133]||(s[133]=e("p",null,"Calculate optimal Cache size to DAT operation",-1)),s[134]||(s[134]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DAT/DAT.jl#L1056",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",Z,[e("summary",null,[s[135]||(s[135]=e("a",{id:"YAXArrays.DAT.getOuttype-Tuple{Int64, Any}",href:"#YAXArrays.DAT.getOuttype-Tuple{Int64, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getOuttype")],-1)),s[136]||(s[136]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[137]||(s[137]=l('
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source

',4))]),e("details",Q,[e("summary",null,[s[138]||(s[138]=e("a",{id:"YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}",href:"#YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getloopchunks")],-1)),s[139]||(s[139]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[140]||(s[140]=l('
julia
getloopchunks(dc::DATConfig)

Internal function

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

source

',4))]),e("details",_,[e("summary",null,[s[141]||(s[141]=e("a",{id:"YAXArrays.DAT.permuteloopaxes-Tuple{Any}",href:"#YAXArrays.DAT.permuteloopaxes-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.permuteloopaxes")],-1)),s[142]||(s[142]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[143]||(s[143]=l('
julia
permuteloopaxes(dc)

Internal function

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

source

',4))]),e("details",ss,[e("summary",null,[s[144]||(s[144]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[145]||(s[145]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[146]||(s[146]=l('
julia
setchunks(c::Dataset,chunks)

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

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

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

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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source

',6))]),e("details",es,[e("summary",null,[s[147]||(s[147]=e("a",{id:"YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}",href:"#YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.collectfromhandle")],-1)),s[148]||(s[148]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[149]||(s[149]=e("p",null,"Extracts a YAXArray from a dataset handle that was just created from a arrayinfo",-1)),s[150]||(s[150]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L463-L465",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",as,[e("summary",null,[s[151]||(s[151]=e("a",{id:"YAXArrays.Datasets.createdataset-Tuple{Any, Any}",href:"#YAXArrays.Datasets.createdataset-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.createdataset")],-1)),s[152]||(s[152]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[153]||(s[153]=l('

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

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

Keyword arguments

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

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

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

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

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

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

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

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

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

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

',6))]),e("details",ts,[e("summary",null,[s[154]||(s[154]=e("a",{id:"YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}",href:"#YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.getarrayinfo")],-1)),s[155]||(s[155]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[156]||(s[156]=e("p",null,"Extract necessary information to create a YAXArrayBase dataset from a name and YAXArray pair",-1)),s[157]||(s[157]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L432-L434",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",is,[e("summary",null,[s[158]||(s[158]=e("a",{id:"YAXArrays.Datasets.testrange-Tuple{Any}",href:"#YAXArrays.Datasets.testrange-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.testrange")],-1)),s[159]||(s[159]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[160]||(s[160]=e("p",null,"Test if data in x can be approximated by a step range",-1)),s[161]||(s[161]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L302",target:"_blank",rel:"noreferrer"},"source")],-1))])])}const hs=n(d,[["render",ls]]);export{cs as __pageData,hs as default}; diff --git a/previews/PR446/assets/api.md.B5Zjm_UF.lean.js b/previews/PR446/assets/api.md.CJNj27NI.lean.js similarity index 91% rename from previews/PR446/assets/api.md.B5Zjm_UF.lean.js rename to previews/PR446/assets/api.md.CJNj27NI.lean.js index 6314b26f..8cd667a3 100644 --- a/previews/PR446/assets/api.md.B5Zjm_UF.lean.js +++ b/previews/PR446/assets/api.md.CJNj27NI.lean.js @@ -1,10 +1,10 @@ -import{_ as n,c as o,j as e,a,G as i,a2 as l,B as r,o as p}from"./chunks/framework.dNXAuqoR.js";const hs=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),d={name:"api.md"},u={class:"jldocstring custom-block",open:""},h={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""},b={class:"jldocstring custom-block",open:""},y={class:"jldocstring custom-block",open:""},f={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},A={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""},m={class:"jldocstring custom-block",open:""},j={class:"jldocstring custom-block",open:""},C={class:"jldocstring custom-block",open:""},D={class:"jldocstring custom-block",open:""},E={class:"jldocstring custom-block",open:""},T={class:"jldocstring custom-block",open:""},v={class:"jldocstring custom-block",open:""},X={class:"jldocstring custom-block",open:""},Y={class:"jldocstring custom-block",open:""},x={class:"jldocstring custom-block",open:""},F={class:"jldocstring custom-block",open:""},w={class:"jldocstring custom-block",open:""},L={class:"jldocstring custom-block",open:""},M={class:"jldocstring custom-block",open:""},O={class:"jldocstring custom-block",open:""},I={class:"jldocstring custom-block",open:""},B={class:"jldocstring custom-block",open:""},J={class:"jldocstring custom-block",open:""},P={class:"jldocstring custom-block",open:""},z={class:"jldocstring custom-block",open:""},N={class:"jldocstring custom-block",open:""},S={class:"jldocstring custom-block",open:""},q={class:"jldocstring custom-block",open:""},R={class:"jldocstring custom-block",open:""},V={class:"jldocstring custom-block",open:""},G={class:"jldocstring custom-block",open:""},W={class:"jldocstring custom-block",open:""},U={class:"jldocstring custom-block",open:""},$={class:"jldocstring custom-block",open:""},H={class:"jldocstring custom-block",open:""},K={class:"jldocstring custom-block",open:""},Z={class:"jldocstring custom-block",open:""},Q={class:"jldocstring custom-block",open:""},_={class:"jldocstring custom-block",open:""},ss={class:"jldocstring custom-block",open:""},es={class:"jldocstring custom-block",open:""},as={class:"jldocstring custom-block",open:""},ts={class:"jldocstring custom-block",open:""},is={class:"jldocstring custom-block",open:""};function ls(ns,s,os,rs,ps,ds){const t=r("Badge");return p(),o("div",null,[s[162]||(s[162]=e("h1",{id:"API-Reference",tabindex:"-1"},[a("API Reference "),e("a",{class:"header-anchor",href:"#API-Reference","aria-label":'Permalink to "API Reference {#API-Reference}"'},"​")],-1)),s[163]||(s[163]=e("p",null,"This section describes all available functions of this package.",-1)),s[164]||(s[164]=e("h2",{id:"Public-API",tabindex:"-1"},[a("Public API "),e("a",{class:"header-anchor",href:"#Public-API","aria-label":'Permalink to "Public API {#Public-API}"'},"​")],-1)),e("details",u,[e("summary",null,[s[0]||(s[0]=e("a",{id:"YAXArrays.getAxis-Tuple{Any, Any}",href:"#YAXArrays.getAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getAxis")],-1)),s[1]||(s[1]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=l('
julia
getAxis(desc, c)

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

  • the name as a string or symbol.

  • an Axis object

source

',4))]),e("details",h,[e("summary",null,[s[3]||(s[3]=e("a",{id:"YAXArrays.Cubes",href:"#YAXArrays.Cubes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes")],-1)),s[4]||(s[4]=a()),i(t,{type:"info",class:"jlObjectType jlModule",text:"Module"})]),s[5]||(s[5]=e("p",null,"The functions provided by YAXArrays are supposed to work on different types of cubes. This module defines the interface for all Data types that",-1)),s[6]||(s[6]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/Cubes/Cubes.jl#L1-L4",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",c,[e("summary",null,[s[7]||(s[7]=e("a",{id:"YAXArrays.Cubes.YAXArray",href:"#YAXArrays.Cubes.YAXArray"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.YAXArray")],-1)),s[8]||(s[8]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[9]||(s[9]=l('
julia
YAXArray{T,N}

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

Fields

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

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

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

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

source

',5))]),e("details",b,[e("summary",null,[s[10]||(s[10]=e("a",{id:"YAXArrays.Cubes.caxes",href:"#YAXArrays.Cubes.caxes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[11]||(s[11]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[12]||(s[12]=e("p",null,"Returns the axes of a Cube",-1)),s[13]||(s[13]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/Cubes/Cubes.jl#L27",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",y,[e("summary",null,[s[14]||(s[14]=e("a",{id:"YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[15]||(s[15]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[16]||(s[16]=l('
julia
caxes

Embeds Cube inside a new Cube

source

',3))]),e("details",f,[e("summary",null,[s[17]||(s[17]=e("a",{id:"YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.concatenatecubes")],-1)),s[18]||(s[18]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[19]||(s[19]=l('
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

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

source

',3))]),e("details",g,[e("summary",null,[s[20]||(s[20]=e("a",{id:"YAXArrays.Cubes.readcubedata-Tuple{Any}",href:"#YAXArrays.Cubes.readcubedata-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.readcubedata")],-1)),s[21]||(s[21]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[22]||(s[22]=l('
julia
readcubedata(cube)

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

source

',3))]),e("details",A,[e("summary",null,[s[23]||(s[23]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[24]||(s[24]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[25]||(s[25]=l('
julia
setchunks(c::YAXArray,chunks)

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source

',4))]),e("details",k,[e("summary",null,[s[26]||(s[26]=e("a",{id:"YAXArrays.Cubes.subsetcube",href:"#YAXArrays.Cubes.subsetcube"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.subsetcube")],-1)),s[27]||(s[27]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[28]||(s[28]=e("p",null,"This function calculates a subset of a cube's data",-1)),s[29]||(s[29]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/Cubes/Cubes.jl#L22-L24",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",m,[e("summary",null,[s[30]||(s[30]=e("a",{id:"YAXArrays.DAT.InDims",href:"#YAXArrays.DAT.InDims"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InDims")],-1)),s[31]||(s[31]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[32]||(s[32]=l('
julia
InDims(axisdesc...;...)

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

Keyword arguments

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

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

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

source

',5))]),e("details",j,[e("summary",null,[s[33]||(s[33]=e("a",{id:"YAXArrays.DAT.MovingWindow",href:"#YAXArrays.DAT.MovingWindow"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.MovingWindow")],-1)),s[34]||(s[34]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[35]||(s[35]=l('
julia
MovingWindow(desc, pre, after)

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

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

source

',4))]),e("details",C,[e("summary",null,[s[36]||(s[36]=e("a",{id:"YAXArrays.DAT.OutDims-Tuple",href:"#YAXArrays.DAT.OutDims-Tuple"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutDims")],-1)),s[37]||(s[37]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[38]||(s[38]=l('
julia
OutDims(axisdesc;...)

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

  • axisdesc: List of input axis names

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

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

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

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

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

source

',4))]),e("details",D,[e("summary",null,[s[39]||(s[39]=e("a",{id:"YAXArrays.DAT.CubeTable-Tuple{}",href:"#YAXArrays.DAT.CubeTable-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.CubeTable")],-1)),s[40]||(s[40]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[41]||(s[41]=l('
julia
CubeTable()

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

source

',3))]),e("details",E,[e("summary",null,[s[42]||(s[42]=e("a",{id:"YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}",href:"#YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cubefittable")],-1)),s[43]||(s[43]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[44]||(s[44]=l('
julia
cubefittable(tab,o,fitsym;post=getpostfunction(o),kwargs...)

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

source

',3))]),e("details",T,[e("summary",null,[s[45]||(s[45]=e("a",{id:"YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}",href:"#YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.fittable")],-1)),s[46]||(s[46]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[47]||(s[47]=l('
julia
fittable(tab,o,fitsym;by=(),weight=nothing)

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

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

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

source

',5))]),e("details",v,[e("summary",null,[s[48]||(s[48]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[49]||(s[49]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[50]||(s[50]=l(`
julia
mapCube(fun, cube, addargs...;kwargs...)
+import{_ as n,c as o,j as e,a,G as i,a2 as l,B as r,o as p}from"./chunks/framework.dNXAuqoR.js";const cs=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),d={name:"api.md"},u={class:"jldocstring custom-block",open:""},c={class:"jldocstring custom-block",open:""},h={class:"jldocstring custom-block",open:""},b={class:"jldocstring custom-block",open:""},y={class:"jldocstring custom-block",open:""},g={class:"jldocstring custom-block",open:""},A={class:"jldocstring custom-block",open:""},k={class:"jldocstring custom-block",open:""},f={class:"jldocstring custom-block",open:""},m={class:"jldocstring custom-block",open:""},j={class:"jldocstring custom-block",open:""},C={class:"jldocstring custom-block",open:""},D={class:"jldocstring custom-block",open:""},E={class:"jldocstring custom-block",open:""},T={class:"jldocstring custom-block",open:""},v={class:"jldocstring custom-block",open:""},X={class:"jldocstring custom-block",open:""},Y={class:"jldocstring custom-block",open:""},x={class:"jldocstring custom-block",open:""},F={class:"jldocstring custom-block",open:""},w={class:"jldocstring custom-block",open:""},L={class:"jldocstring custom-block",open:""},M={class:"jldocstring custom-block",open:""},O={class:"jldocstring custom-block",open:""},I={class:"jldocstring custom-block",open:""},B={class:"jldocstring custom-block",open:""},J={class:"jldocstring custom-block",open:""},P={class:"jldocstring custom-block",open:""},z={class:"jldocstring custom-block",open:""},N={class:"jldocstring custom-block",open:""},S={class:"jldocstring custom-block",open:""},q={class:"jldocstring custom-block",open:""},R={class:"jldocstring custom-block",open:""},V={class:"jldocstring custom-block",open:""},G={class:"jldocstring custom-block",open:""},W={class:"jldocstring custom-block",open:""},U={class:"jldocstring custom-block",open:""},$={class:"jldocstring custom-block",open:""},H={class:"jldocstring custom-block",open:""},K={class:"jldocstring custom-block",open:""},Z={class:"jldocstring custom-block",open:""},Q={class:"jldocstring custom-block",open:""},_={class:"jldocstring custom-block",open:""},ss={class:"jldocstring custom-block",open:""},es={class:"jldocstring custom-block",open:""},as={class:"jldocstring custom-block",open:""},ts={class:"jldocstring custom-block",open:""},is={class:"jldocstring custom-block",open:""};function ls(ns,s,os,rs,ps,ds){const t=r("Badge");return p(),o("div",null,[s[162]||(s[162]=e("h1",{id:"API-Reference",tabindex:"-1"},[a("API Reference "),e("a",{class:"header-anchor",href:"#API-Reference","aria-label":'Permalink to "API Reference {#API-Reference}"'},"​")],-1)),s[163]||(s[163]=e("p",null,"This section describes all available functions of this package.",-1)),s[164]||(s[164]=e("h2",{id:"Public-API",tabindex:"-1"},[a("Public API "),e("a",{class:"header-anchor",href:"#Public-API","aria-label":'Permalink to "Public API {#Public-API}"'},"​")],-1)),e("details",u,[e("summary",null,[s[0]||(s[0]=e("a",{id:"YAXArrays.getAxis-Tuple{Any, Any}",href:"#YAXArrays.getAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getAxis")],-1)),s[1]||(s[1]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[2]||(s[2]=l('
julia
getAxis(desc, c)

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

  • the name as a string or symbol.

  • an Axis object

source

',4))]),e("details",c,[e("summary",null,[s[3]||(s[3]=e("a",{id:"YAXArrays.Cubes",href:"#YAXArrays.Cubes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes")],-1)),s[4]||(s[4]=a()),i(t,{type:"info",class:"jlObjectType jlModule",text:"Module"})]),s[5]||(s[5]=e("p",null,"The functions provided by YAXArrays are supposed to work on different types of cubes. This module defines the interface for all Data types that",-1)),s[6]||(s[6]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/Cubes/Cubes.jl#L1-L4",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",h,[e("summary",null,[s[7]||(s[7]=e("a",{id:"YAXArrays.Cubes.YAXArray",href:"#YAXArrays.Cubes.YAXArray"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.YAXArray")],-1)),s[8]||(s[8]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[9]||(s[9]=l('
julia
YAXArray{T,N}

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

Fields

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

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

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

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

source

',5))]),e("details",b,[e("summary",null,[s[10]||(s[10]=e("a",{id:"YAXArrays.Cubes.caxes",href:"#YAXArrays.Cubes.caxes"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[11]||(s[11]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[12]||(s[12]=e("p",null,"Returns the axes of a Cube",-1)),s[13]||(s[13]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/Cubes/Cubes.jl#L27",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",y,[e("summary",null,[s[14]||(s[14]=e("a",{id:"YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.caxes-Tuple{DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.caxes")],-1)),s[15]||(s[15]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[16]||(s[16]=l('
julia
caxes

Embeds Cube inside a new Cube

source

',3))]),e("details",g,[e("summary",null,[s[17]||(s[17]=e("a",{id:"YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}",href:"#YAXArrays.Cubes.concatenatecubes-Tuple{Any, DimensionalData.Dimensions.Dimension}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.concatenatecubes")],-1)),s[18]||(s[18]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[19]||(s[19]=l('
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

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

source

',3))]),e("details",A,[e("summary",null,[s[20]||(s[20]=e("a",{id:"YAXArrays.Cubes.readcubedata-Tuple{Any}",href:"#YAXArrays.Cubes.readcubedata-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.readcubedata")],-1)),s[21]||(s[21]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[22]||(s[22]=l('
julia
readcubedata(cube)

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

source

',3))]),e("details",k,[e("summary",null,[s[23]||(s[23]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{YAXArray, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[24]||(s[24]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[25]||(s[25]=l('
julia
setchunks(c::YAXArray,chunks)

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source

',4))]),e("details",f,[e("summary",null,[s[26]||(s[26]=e("a",{id:"YAXArrays.Cubes.subsetcube",href:"#YAXArrays.Cubes.subsetcube"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.subsetcube")],-1)),s[27]||(s[27]=a()),i(t,{type:"info",class:"jlObjectType jlFunction",text:"Function"})]),s[28]||(s[28]=e("p",null,"This function calculates a subset of a cube's data",-1)),s[29]||(s[29]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/Cubes/Cubes.jl#L22-L24",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",m,[e("summary",null,[s[30]||(s[30]=e("a",{id:"YAXArrays.DAT.InDims",href:"#YAXArrays.DAT.InDims"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InDims")],-1)),s[31]||(s[31]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[32]||(s[32]=l('
julia
InDims(axisdesc...;...)

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

Keyword arguments

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

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

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

source

',5))]),e("details",j,[e("summary",null,[s[33]||(s[33]=e("a",{id:"YAXArrays.DAT.MovingWindow",href:"#YAXArrays.DAT.MovingWindow"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.MovingWindow")],-1)),s[34]||(s[34]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[35]||(s[35]=l('
julia
MovingWindow(desc, pre, after)

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

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

source

',4))]),e("details",C,[e("summary",null,[s[36]||(s[36]=e("a",{id:"YAXArrays.DAT.OutDims-Tuple",href:"#YAXArrays.DAT.OutDims-Tuple"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutDims")],-1)),s[37]||(s[37]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[38]||(s[38]=l('
julia
OutDims(axisdesc;...)

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

  • axisdesc: List of input axis names

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

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

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

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

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

source

',4))]),e("details",D,[e("summary",null,[s[39]||(s[39]=e("a",{id:"YAXArrays.DAT.CubeTable-Tuple{}",href:"#YAXArrays.DAT.CubeTable-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.CubeTable")],-1)),s[40]||(s[40]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[41]||(s[41]=l('
julia
CubeTable()

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

source

',3))]),e("details",E,[e("summary",null,[s[42]||(s[42]=e("a",{id:"YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}",href:"#YAXArrays.DAT.cubefittable-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cubefittable")],-1)),s[43]||(s[43]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[44]||(s[44]=l('
julia
cubefittable(tab,o,fitsym;post=getpostfunction(o),kwargs...)

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

source

',3))]),e("details",T,[e("summary",null,[s[45]||(s[45]=e("a",{id:"YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}",href:"#YAXArrays.DAT.fittable-Tuple{YAXArrays.DAT.CubeIterator, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.fittable")],-1)),s[46]||(s[46]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[47]||(s[47]=l('
julia
fittable(tab,o,fitsym;by=(),weight=nothing)

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

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

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

source

',5))]),e("details",v,[e("summary",null,[s[48]||(s[48]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Dataset, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[49]||(s[49]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[50]||(s[50]=l(`
julia
mapCube(fun, cube, addargs...;kwargs...)
 
 Map a given function \`fun\` over slices of all cubes of the dataset \`ds\`. 
 Use InDims to discribe the input dimensions and OutDims to describe the output dimensions of the function.
 For Datasets, only one output cube can be specified.
 In contrast to the mapCube function for cubes, additional arguments for the inner function should be set as keyword arguments.
 
-For the specific keyword arguments see the docstring of the mapCube function for cubes.

source

`,2))]),e("details",X,[e("summary",null,[s[51]||(s[51]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[52]||(s[52]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[53]||(s[53]=l('
julia
mapCube(fun, cube, addargs...;kwargs...)

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

Keyword arguments

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

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

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

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

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

  • showprog boolean indicating if a ProgressMeter shall be shown

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

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

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

  • kwargs additional keyword arguments are passed to the inner function

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

source

',6))]),e("details",Y,[e("summary",null,[s[54]||(s[54]=e("a",{id:"YAXArrays.Datasets.Dataset",href:"#YAXArrays.Datasets.Dataset"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[55]||(s[55]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[56]||(s[56]=l('
julia
Dataset object which stores an `OrderedDict` of YAXArrays with Symbol keys.\na dictionary of CubeAxes and a Dictionary of general properties.\nA dictionary can hold cubes with differing axes. But it will share the common axes between the subcubes.

source

',2))]),e("details",x,[e("summary",null,[s[57]||(s[57]=e("a",{id:"YAXArrays.Datasets.Dataset-Tuple{}",href:"#YAXArrays.Datasets.Dataset-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[58]||(s[58]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[59]||(s[59]=e("p",null,"Dataset(; properties = Dict{String,Any}, cubes...)",-1)),s[60]||(s[60]=e("p",null,[a("Construct a YAXArray Dataset with global attributes "),e("code",null,"properties"),a(" a and a list of named YAXArrays cubes...")],-1)),s[61]||(s[61]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L28-L32",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",F,[e("summary",null,[s[62]||(s[62]=e("a",{id:"YAXArrays.Datasets.Cube-Tuple{Dataset}",href:"#YAXArrays.Datasets.Cube-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Cube")],-1)),s[63]||(s[63]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[64]||(s[64]=l('
julia
Cube(ds::Dataset; joinname="Variable")

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

source

',3))]),e("details",w,[e("summary",null,[s[65]||(s[65]=e("a",{id:"YAXArrays.Datasets.open_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.open_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.open_dataset")],-1)),s[66]||(s[66]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[67]||(s[67]=e("p",null,"open_dataset(g; driver=:all)",-1)),s[68]||(s[68]=e("p",null,[a("Open the dataset at "),e("code",null,"g"),a(" with the given "),e("code",null,"driver"),a(". The default driver will search for available drivers and tries to detect the useable driver from the filename extension.")],-1)),s[69]||(s[69]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L330-L335",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",L,[e("summary",null,[s[70]||(s[70]=e("a",{id:"YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}",href:"#YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savecube")],-1)),s[71]||(s[71]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[72]||(s[72]=l('
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

',6))]),e("details",M,[e("summary",null,[s[73]||(s[73]=e("a",{id:"YAXArrays.Datasets.savedataset-Tuple{Dataset}",href:"#YAXArrays.Datasets.savedataset-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[74]||(s[74]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[75]||(s[75]=e("p",null,'savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)',-1)),s[76]||(s[76]=e("p",null,[a("Saves a Dataset into a file at "),e("code",null,"path"),a(" with the format given by "),e("code",null,"driver"),a(", i.e., driver=:netcdf or driver=:zarr.")],-1)),s[77]||(s[77]=e("div",{class:"warning custom-block"},[e("p",{class:"custom-block-title"},"Warning"),e("p",null,"overwrite = true, deletes ALL your data and it will create a new file.")],-1)),s[78]||(s[78]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L557-L566",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",O,[e("summary",null,[s[79]||(s[79]=e("a",{id:"YAXArrays.Datasets.to_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.to_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.to_dataset")],-1)),s[80]||(s[80]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[81]||(s[81]=e("p",null,'to_dataset(c;datasetaxis = "Variable", layername = "layer")',-1)),s[82]||(s[82]=e("p",null,[a(`Convert a Data Cube into a Dataset. It is possible to treat one of the Cube's axes as a "DatasetAxis" i.e. the cube will be split into different parts that become variables in the Dataset. If no such axis is specified or found, there will only be a single variable in the dataset with the name `),e("code",null,"layername")],-1)),s[83]||(s[83]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L45-L53",target:"_blank",rel:"noreferrer"},"source")],-1))]),s[165]||(s[165]=e("h2",{id:"Internal-API",tabindex:"-1"},[a("Internal API "),e("a",{class:"header-anchor",href:"#Internal-API","aria-label":'Permalink to "Internal API {#Internal-API}"'},"​")],-1)),e("details",I,[e("summary",null,[s[84]||(s[84]=e("a",{id:"YAXArrays.YAXDefaults",href:"#YAXArrays.YAXDefaults"},[e("span",{class:"jlbinding"},"YAXArrays.YAXDefaults")],-1)),s[85]||(s[85]=a()),i(t,{type:"info",class:"jlObjectType jlConstant",text:"Constant"})]),s[86]||(s[86]=l('

Default configuration for YAXArrays, has the following fields:

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

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

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

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

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

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

source

',3))]),e("details",B,[e("summary",null,[s[87]||(s[87]=e("a",{id:"YAXArrays.findAxis-Tuple{Any, Any}",href:"#YAXArrays.findAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.findAxis")],-1)),s[88]||(s[88]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[89]||(s[89]=l('
julia
findAxis(desc, c)

Internal function

Extended Help

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

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

',7))]),e("details",J,[e("summary",null,[s[90]||(s[90]=e("a",{id:"YAXArrays.getOutAxis-NTuple{5, Any}",href:"#YAXArrays.getOutAxis-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getOutAxis")],-1)),s[91]||(s[91]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[92]||(s[92]=l('
julia
getOutAxis

source

',2))]),e("details",P,[e("summary",null,[s[93]||(s[93]=e("a",{id:"YAXArrays.get_descriptor-Tuple{String}",href:"#YAXArrays.get_descriptor-Tuple{String}"},[e("span",{class:"jlbinding"},"YAXArrays.get_descriptor")],-1)),s[94]||(s[94]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[95]||(s[95]=l('
julia
get_descriptor(a)

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

source

',3))]),e("details",z,[e("summary",null,[s[96]||(s[96]=e("a",{id:"YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}",href:"#YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.match_axis")],-1)),s[97]||(s[97]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[98]||(s[98]=l(`
julia
match_axis

Internal function

Extended Help

Match the Axis based on the AxisDescriptor.
+For the specific keyword arguments see the docstring of the mapCube function for cubes.

source

`,2))]),e("details",X,[e("summary",null,[s[51]||(s[51]=e("a",{id:"YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}",href:"#YAXArrays.DAT.mapCube-Tuple{Function, Tuple, Vararg{Any}}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.mapCube")],-1)),s[52]||(s[52]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[53]||(s[53]=l('
julia
mapCube(fun, cube, addargs...;kwargs...)

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

Keyword arguments

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

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

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

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

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

  • showprog boolean indicating if a ProgressMeter shall be shown

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

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

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

  • kwargs additional keyword arguments are passed to the inner function

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

source

',6))]),e("details",Y,[e("summary",null,[s[54]||(s[54]=e("a",{id:"YAXArrays.Datasets.Dataset",href:"#YAXArrays.Datasets.Dataset"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[55]||(s[55]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[56]||(s[56]=l('
julia
Dataset object which stores an `OrderedDict` of YAXArrays with Symbol keys.\na dictionary of CubeAxes and a Dictionary of general properties.\nA dictionary can hold cubes with differing axes. But it will share the common axes between the subcubes.

source

',2))]),e("details",x,[e("summary",null,[s[57]||(s[57]=e("a",{id:"YAXArrays.Datasets.Dataset-Tuple{}",href:"#YAXArrays.Datasets.Dataset-Tuple{}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Dataset")],-1)),s[58]||(s[58]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[59]||(s[59]=e("p",null,"Dataset(; properties = Dict{String,Any}, cubes...)",-1)),s[60]||(s[60]=e("p",null,[a("Construct a YAXArray Dataset with global attributes "),e("code",null,"properties"),a(" a and a list of named YAXArrays cubes...")],-1)),s[61]||(s[61]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L28-L32",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",F,[e("summary",null,[s[62]||(s[62]=e("a",{id:"YAXArrays.Datasets.Cube-Tuple{Dataset}",href:"#YAXArrays.Datasets.Cube-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.Cube")],-1)),s[63]||(s[63]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[64]||(s[64]=l('
julia
Cube(ds::Dataset; joinname="Variable")

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

source

',3))]),e("details",w,[e("summary",null,[s[65]||(s[65]=e("a",{id:"YAXArrays.Datasets.open_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.open_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.open_dataset")],-1)),s[66]||(s[66]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[67]||(s[67]=e("p",null,"open_dataset(g; driver=:all)",-1)),s[68]||(s[68]=e("p",null,[a("Open the dataset at "),e("code",null,"g"),a(" with the given "),e("code",null,"driver"),a(". The default driver will search for available drivers and tries to detect the useable driver from the filename extension.")],-1)),s[69]||(s[69]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L330-L335",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",L,[e("summary",null,[s[70]||(s[70]=e("a",{id:"YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}",href:"#YAXArrays.Datasets.savecube-Tuple{Any, AbstractString}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savecube")],-1)),s[71]||(s[71]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[72]||(s[72]=l('
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

',6))]),e("details",M,[e("summary",null,[s[73]||(s[73]=e("a",{id:"YAXArrays.Datasets.savedataset-Tuple{Dataset}",href:"#YAXArrays.Datasets.savedataset-Tuple{Dataset}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.savedataset")],-1)),s[74]||(s[74]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[75]||(s[75]=e("p",null,'savedataset(ds::Dataset; path = "", persist = nothing, overwrite = false, append = false, skeleton=false, backend = :all, driver = backend, max_cache = 5e8, writefac=4.0)',-1)),s[76]||(s[76]=e("p",null,[a("Saves a Dataset into a file at "),e("code",null,"path"),a(" with the format given by "),e("code",null,"driver"),a(", i.e., driver=:netcdf or driver=:zarr.")],-1)),s[77]||(s[77]=e("div",{class:"warning custom-block"},[e("p",{class:"custom-block-title"},"Warning"),e("p",null,"overwrite = true, deletes ALL your data and it will create a new file.")],-1)),s[78]||(s[78]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L557-L566",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",O,[e("summary",null,[s[79]||(s[79]=e("a",{id:"YAXArrays.Datasets.to_dataset-Tuple{Any}",href:"#YAXArrays.Datasets.to_dataset-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.to_dataset")],-1)),s[80]||(s[80]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[81]||(s[81]=e("p",null,'to_dataset(c;datasetaxis = "Variable", layername = "layer")',-1)),s[82]||(s[82]=e("p",null,[a(`Convert a Data Cube into a Dataset. It is possible to treat one of the Cube's axes as a "DatasetAxis" i.e. the cube will be split into different parts that become variables in the Dataset. If no such axis is specified or found, there will only be a single variable in the dataset with the name `),e("code",null,"layername")],-1)),s[83]||(s[83]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L45-L53",target:"_blank",rel:"noreferrer"},"source")],-1))]),s[165]||(s[165]=e("h2",{id:"Internal-API",tabindex:"-1"},[a("Internal API "),e("a",{class:"header-anchor",href:"#Internal-API","aria-label":'Permalink to "Internal API {#Internal-API}"'},"​")],-1)),e("details",I,[e("summary",null,[s[84]||(s[84]=e("a",{id:"YAXArrays.YAXDefaults",href:"#YAXArrays.YAXDefaults"},[e("span",{class:"jlbinding"},"YAXArrays.YAXDefaults")],-1)),s[85]||(s[85]=a()),i(t,{type:"info",class:"jlObjectType jlConstant",text:"Constant"})]),s[86]||(s[86]=l('

Default configuration for YAXArrays, has the following fields:

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

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

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

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

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

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

source

',3))]),e("details",B,[e("summary",null,[s[87]||(s[87]=e("a",{id:"YAXArrays.findAxis-Tuple{Any, Any}",href:"#YAXArrays.findAxis-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.findAxis")],-1)),s[88]||(s[88]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[89]||(s[89]=l('
julia
findAxis(desc, c)

Internal function

Extended Help

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

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source

',7))]),e("details",J,[e("summary",null,[s[90]||(s[90]=e("a",{id:"YAXArrays.getOutAxis-NTuple{5, Any}",href:"#YAXArrays.getOutAxis-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.getOutAxis")],-1)),s[91]||(s[91]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[92]||(s[92]=l('
julia
getOutAxis

source

',2))]),e("details",P,[e("summary",null,[s[93]||(s[93]=e("a",{id:"YAXArrays.get_descriptor-Tuple{String}",href:"#YAXArrays.get_descriptor-Tuple{String}"},[e("span",{class:"jlbinding"},"YAXArrays.get_descriptor")],-1)),s[94]||(s[94]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[95]||(s[95]=l('
julia
get_descriptor(a)

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

source

',3))]),e("details",z,[e("summary",null,[s[96]||(s[96]=e("a",{id:"YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}",href:"#YAXArrays.match_axis-Tuple{YAXArrays.ByName, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.match_axis")],-1)),s[97]||(s[97]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[98]||(s[98]=l(`
julia
match_axis

Internal function

Extended Help

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

source

`,5))]),e("details",N,[e("summary",null,[s[99]||(s[99]=e("a",{id:"YAXArrays.Cubes.CleanMe",href:"#YAXArrays.Cubes.CleanMe"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.CleanMe")],-1)),s[100]||(s[100]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[101]||(s[101]=l('
julia
mutable struct CleanMe

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

source

',3))]),e("details",S,[e("summary",null,[s[102]||(s[102]=e("a",{id:"YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}",href:"#YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.clean")],-1)),s[103]||(s[103]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[104]||(s[104]=l('
julia
clean(c::CleanMe)

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

source

',3))]),e("details",q,[e("summary",null,[s[105]||(s[105]=e("a",{id:"YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}",href:"#YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.copydata")],-1)),s[106]||(s[106]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[107]||(s[107]=l('
julia
copydata(outar, inar, copybuf)

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

source

',3))]),e("details",R,[e("summary",null,[s[108]||(s[108]=e("a",{id:"YAXArrays.Cubes.optifunc-NTuple{7, Any}",href:"#YAXArrays.Cubes.optifunc-NTuple{7, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.optifunc")],-1)),s[109]||(s[109]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[110]||(s[110]=l('
julia
optifunc(s, maxbuf, incs, outcs, insize, outsize, writefac)

Internal

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

source

',4))]),e("details",V,[e("summary",null,[s[111]||(s[111]=e("a",{id:"YAXArrays.DAT.DATConfig",href:"#YAXArrays.DAT.DATConfig"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.DATConfig")],-1)),s[112]||(s[112]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[113]||(s[113]=l('

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

',3))]),e("details",G,[e("summary",null,[s[114]||(s[114]=e("a",{id:"YAXArrays.DAT.InputCube",href:"#YAXArrays.DAT.InputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InputCube")],-1)),s[115]||(s[115]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[116]||(s[116]=l('

Internal representation of an input cube for DAT operations

  • cube: The input data

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

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

  • icolon

  • colonperm

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

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

  • window

  • iwindow

  • windowloopinds

  • iall

source

',3))]),e("details",W,[e("summary",null,[s[117]||(s[117]=e("a",{id:"YAXArrays.DAT.OutputCube",href:"#YAXArrays.DAT.OutputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutputCube")],-1)),s[118]||(s[118]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[119]||(s[119]=l('

Internal representation of an output cube for DAT operations

Fields

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

  • cube_unpermuted: The unpermuted output cube

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

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

  • allAxes: List of all the axes of the cube

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

  • innerchunks

  • outtype: Elementtype of the outputcube

source

',4))]),e("details",U,[e("summary",null,[s[120]||(s[120]=e("a",{id:"YAXArrays.DAT.YAXColumn",href:"#YAXArrays.DAT.YAXColumn"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.YAXColumn")],-1)),s[121]||(s[121]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[122]||(s[122]=l('
julia
YAXColumn

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

  • inarBC

  • inds

source

',4))]),e("details",$,[e("summary",null,[s[123]||(s[123]=e("a",{id:"YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}",href:"#YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cmpcachmisses")],-1)),s[124]||(s[124]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[125]||(s[125]=e("p",null,"Function that compares two cache miss specifiers by their importance",-1)),s[126]||(s[126]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DAT/DAT.jl#L957-L959",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",H,[e("summary",null,[s[127]||(s[127]=e("a",{id:"YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}",href:"#YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getFrontPerm")],-1)),s[128]||(s[128]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[129]||(s[129]=e("p",null,"Calculate an axis permutation that brings the wanted dimensions to the front",-1)),s[130]||(s[130]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DAT/DAT.jl#L1202",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",K,[e("summary",null,[s[131]||(s[131]=e("a",{id:"YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}",href:"#YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getLoopCacheSize")],-1)),s[132]||(s[132]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[133]||(s[133]=e("p",null,"Calculate optimal Cache size to DAT operation",-1)),s[134]||(s[134]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DAT/DAT.jl#L1056",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",Z,[e("summary",null,[s[135]||(s[135]=e("a",{id:"YAXArrays.DAT.getOuttype-Tuple{Int64, Any}",href:"#YAXArrays.DAT.getOuttype-Tuple{Int64, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getOuttype")],-1)),s[136]||(s[136]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[137]||(s[137]=l('
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source

',4))]),e("details",Q,[e("summary",null,[s[138]||(s[138]=e("a",{id:"YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}",href:"#YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getloopchunks")],-1)),s[139]||(s[139]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[140]||(s[140]=l('
julia
getloopchunks(dc::DATConfig)

Internal function

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

source

',4))]),e("details",_,[e("summary",null,[s[141]||(s[141]=e("a",{id:"YAXArrays.DAT.permuteloopaxes-Tuple{Any}",href:"#YAXArrays.DAT.permuteloopaxes-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.permuteloopaxes")],-1)),s[142]||(s[142]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[143]||(s[143]=l('
julia
permuteloopaxes(dc)

Internal function

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

source

',4))]),e("details",ss,[e("summary",null,[s[144]||(s[144]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[145]||(s[145]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[146]||(s[146]=l('
julia
setchunks(c::Dataset,chunks)

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

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

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

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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source

',6))]),e("details",es,[e("summary",null,[s[147]||(s[147]=e("a",{id:"YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}",href:"#YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.collectfromhandle")],-1)),s[148]||(s[148]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[149]||(s[149]=e("p",null,"Extracts a YAXArray from a dataset handle that was just created from a arrayinfo",-1)),s[150]||(s[150]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L463-L465",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",as,[e("summary",null,[s[151]||(s[151]=e("a",{id:"YAXArrays.Datasets.createdataset-Tuple{Any, Any}",href:"#YAXArrays.Datasets.createdataset-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.createdataset")],-1)),s[152]||(s[152]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[153]||(s[153]=l('

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

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

Keyword arguments

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

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

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

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

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

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

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

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

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

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

',6))]),e("details",ts,[e("summary",null,[s[154]||(s[154]=e("a",{id:"YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}",href:"#YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.getarrayinfo")],-1)),s[155]||(s[155]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[156]||(s[156]=e("p",null,"Extract necessary information to create a YAXArrayBase dataset from a name and YAXArray pair",-1)),s[157]||(s[157]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L432-L434",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",is,[e("summary",null,[s[158]||(s[158]=e("a",{id:"YAXArrays.Datasets.testrange-Tuple{Any}",href:"#YAXArrays.Datasets.testrange-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.testrange")],-1)),s[159]||(s[159]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[160]||(s[160]=e("p",null,"Test if data in x can be approximated by a step range",-1)),s[161]||(s[161]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/8dab7d83c3e3bf81ffd78dff690b032df6b25032/src/DatasetAPI/Datasets.jl#L302",target:"_blank",rel:"noreferrer"},"source")],-1))])])}const cs=n(d,[["render",ls]]);export{hs as __pageData,cs as default}; +For example to disregard differences of captialisation.

source

`,5))]),e("details",N,[e("summary",null,[s[99]||(s[99]=e("a",{id:"YAXArrays.Cubes.CleanMe",href:"#YAXArrays.Cubes.CleanMe"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.CleanMe")],-1)),s[100]||(s[100]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[101]||(s[101]=l('
julia
mutable struct CleanMe

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

source

',3))]),e("details",S,[e("summary",null,[s[102]||(s[102]=e("a",{id:"YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}",href:"#YAXArrays.Cubes.clean-Tuple{YAXArrays.Cubes.CleanMe}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.clean")],-1)),s[103]||(s[103]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[104]||(s[104]=l('
julia
clean(c::CleanMe)

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

source

',3))]),e("details",q,[e("summary",null,[s[105]||(s[105]=e("a",{id:"YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}",href:"#YAXArrays.Cubes.copydata-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.copydata")],-1)),s[106]||(s[106]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[107]||(s[107]=l('
julia
copydata(outar, inar, copybuf)

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

source

',3))]),e("details",R,[e("summary",null,[s[108]||(s[108]=e("a",{id:"YAXArrays.Cubes.optifunc-NTuple{7, Any}",href:"#YAXArrays.Cubes.optifunc-NTuple{7, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.optifunc")],-1)),s[109]||(s[109]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[110]||(s[110]=l('
julia
optifunc(s, maxbuf, incs, outcs, insize, outsize, writefac)

Internal

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

source

',4))]),e("details",V,[e("summary",null,[s[111]||(s[111]=e("a",{id:"YAXArrays.DAT.DATConfig",href:"#YAXArrays.DAT.DATConfig"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.DATConfig")],-1)),s[112]||(s[112]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[113]||(s[113]=l('

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

',3))]),e("details",G,[e("summary",null,[s[114]||(s[114]=e("a",{id:"YAXArrays.DAT.InputCube",href:"#YAXArrays.DAT.InputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.InputCube")],-1)),s[115]||(s[115]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[116]||(s[116]=l('

Internal representation of an input cube for DAT operations

  • cube: The input data

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

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

  • icolon

  • colonperm

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

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

  • window

  • iwindow

  • windowloopinds

  • iall

source

',3))]),e("details",W,[e("summary",null,[s[117]||(s[117]=e("a",{id:"YAXArrays.DAT.OutputCube",href:"#YAXArrays.DAT.OutputCube"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.OutputCube")],-1)),s[118]||(s[118]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[119]||(s[119]=l('

Internal representation of an output cube for DAT operations

Fields

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

  • cube_unpermuted: The unpermuted output cube

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

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

  • allAxes: List of all the axes of the cube

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

  • innerchunks

  • outtype: Elementtype of the outputcube

source

',4))]),e("details",U,[e("summary",null,[s[120]||(s[120]=e("a",{id:"YAXArrays.DAT.YAXColumn",href:"#YAXArrays.DAT.YAXColumn"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.YAXColumn")],-1)),s[121]||(s[121]=a()),i(t,{type:"info",class:"jlObjectType jlType",text:"Type"})]),s[122]||(s[122]=l('
julia
YAXColumn

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

  • inarBC

  • inds

source

',4))]),e("details",$,[e("summary",null,[s[123]||(s[123]=e("a",{id:"YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}",href:"#YAXArrays.DAT.cmpcachmisses-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.cmpcachmisses")],-1)),s[124]||(s[124]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[125]||(s[125]=e("p",null,"Function that compares two cache miss specifiers by their importance",-1)),s[126]||(s[126]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DAT/DAT.jl#L957-L959",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",H,[e("summary",null,[s[127]||(s[127]=e("a",{id:"YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}",href:"#YAXArrays.DAT.getFrontPerm-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getFrontPerm")],-1)),s[128]||(s[128]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[129]||(s[129]=e("p",null,"Calculate an axis permutation that brings the wanted dimensions to the front",-1)),s[130]||(s[130]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DAT/DAT.jl#L1202",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",K,[e("summary",null,[s[131]||(s[131]=e("a",{id:"YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}",href:"#YAXArrays.DAT.getLoopCacheSize-NTuple{5, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getLoopCacheSize")],-1)),s[132]||(s[132]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[133]||(s[133]=e("p",null,"Calculate optimal Cache size to DAT operation",-1)),s[134]||(s[134]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DAT/DAT.jl#L1056",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",Z,[e("summary",null,[s[135]||(s[135]=e("a",{id:"YAXArrays.DAT.getOuttype-Tuple{Int64, Any}",href:"#YAXArrays.DAT.getOuttype-Tuple{Int64, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getOuttype")],-1)),s[136]||(s[136]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[137]||(s[137]=l('
julia
getOuttype(outtype, cdata)

Internal function

Get the element type for the output cube

source

',4))]),e("details",Q,[e("summary",null,[s[138]||(s[138]=e("a",{id:"YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}",href:"#YAXArrays.DAT.getloopchunks-Tuple{YAXArrays.DAT.DATConfig}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.getloopchunks")],-1)),s[139]||(s[139]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[140]||(s[140]=l('
julia
getloopchunks(dc::DATConfig)

Internal function

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

source

',4))]),e("details",_,[e("summary",null,[s[141]||(s[141]=e("a",{id:"YAXArrays.DAT.permuteloopaxes-Tuple{Any}",href:"#YAXArrays.DAT.permuteloopaxes-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.DAT.permuteloopaxes")],-1)),s[142]||(s[142]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[143]||(s[143]=l('
julia
permuteloopaxes(dc)

Internal function

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

source

',4))]),e("details",ss,[e("summary",null,[s[144]||(s[144]=e("a",{id:"YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}",href:"#YAXArrays.Cubes.setchunks-Tuple{Dataset, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Cubes.setchunks")],-1)),s[145]||(s[145]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[146]||(s[146]=l('
julia
setchunks(c::Dataset,chunks)

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

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

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

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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source

',6))]),e("details",es,[e("summary",null,[s[147]||(s[147]=e("a",{id:"YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}",href:"#YAXArrays.Datasets.collectfromhandle-Tuple{Any, Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.collectfromhandle")],-1)),s[148]||(s[148]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[149]||(s[149]=e("p",null,"Extracts a YAXArray from a dataset handle that was just created from a arrayinfo",-1)),s[150]||(s[150]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L463-L465",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",as,[e("summary",null,[s[151]||(s[151]=e("a",{id:"YAXArrays.Datasets.createdataset-Tuple{Any, Any}",href:"#YAXArrays.Datasets.createdataset-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.createdataset")],-1)),s[152]||(s[152]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[153]||(s[153]=l('

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

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

Keyword arguments

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

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

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

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

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

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

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

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

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

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

',6))]),e("details",ts,[e("summary",null,[s[154]||(s[154]=e("a",{id:"YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}",href:"#YAXArrays.Datasets.getarrayinfo-Tuple{Any, Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.getarrayinfo")],-1)),s[155]||(s[155]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[156]||(s[156]=e("p",null,"Extract necessary information to create a YAXArrayBase dataset from a name and YAXArray pair",-1)),s[157]||(s[157]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L432-L434",target:"_blank",rel:"noreferrer"},"source")],-1))]),e("details",is,[e("summary",null,[s[158]||(s[158]=e("a",{id:"YAXArrays.Datasets.testrange-Tuple{Any}",href:"#YAXArrays.Datasets.testrange-Tuple{Any}"},[e("span",{class:"jlbinding"},"YAXArrays.Datasets.testrange")],-1)),s[159]||(s[159]=a()),i(t,{type:"info",class:"jlObjectType jlMethod",text:"Method"})]),s[160]||(s[160]=e("p",null,"Test if data in x can be approximated by a step range",-1)),s[161]||(s[161]=e("p",null,[e("a",{href:"https://github.com/JuliaDataCubes/YAXArrays.jl/blob/25132a7d06f4698ac11bd7af8d17857b4acfa66e/src/DatasetAPI/Datasets.jl#L302",target:"_blank",rel:"noreferrer"},"source")],-1))])])}const hs=n(d,[["render",ls]]);export{cs as __pageData,hs as default}; diff --git a/previews/PR446/assets/app.7He8dz8K.js b/previews/PR446/assets/app.-yPqtyCp.js similarity index 95% rename from previews/PR446/assets/app.7He8dz8K.js rename to previews/PR446/assets/app.-yPqtyCp.js index c3b41988..f57e951a 100644 --- a/previews/PR446/assets/app.7He8dz8K.js +++ b/previews/PR446/assets/app.-yPqtyCp.js @@ -1 +1 @@ -import{R as p}from"./chunks/theme.CcT_h3C1.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.dNXAuqoR.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.lol215Rp.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.dNXAuqoR.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/PR446/assets/chunks/@localSearchIndexroot.BEHTyAxJ.js b/previews/PR446/assets/chunks/@localSearchIndexroot.BEHTyAxJ.js deleted file mode 100644 index 02ed9c8e..00000000 --- a/previews/PR446/assets/chunks/@localSearchIndexroot.BEHTyAxJ.js +++ /dev/null @@ -1 +0,0 @@ -const e='{"documentCount":103,"nextId":103,"documentIds":{"0":"/YAXArrays.jl/previews/PR446/UserGuide/cache.html#Caching-YAXArrays","1":"/YAXArrays.jl/previews/PR446/UserGuide/chunk.html#Chunk-YAXArrays","2":"/YAXArrays.jl/previews/PR446/UserGuide/chunk.html#Chunking-YAXArrays","3":"/YAXArrays.jl/previews/PR446/UserGuide/chunk.html#Chunking-Datasets","4":"/YAXArrays.jl/previews/PR446/UserGuide/chunk.html#Set-Chunks-by-Axis","5":"/YAXArrays.jl/previews/PR446/UserGuide/chunk.html#Set-chunking-by-Variable","6":"/YAXArrays.jl/previews/PR446/UserGuide/chunk.html#Set-chunking-for-all-variables","7":"/YAXArrays.jl/previews/PR446/UserGuide/combine.html#Combine-YAXArrays","8":"/YAXArrays.jl/previews/PR446/UserGuide/combine.html#cat-along-an-existing-dimension","9":"/YAXArrays.jl/previews/PR446/UserGuide/combine.html#concatenatecubes-to-a-new-dimension","10":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Compute-YAXArrays","11":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Modify-elements-of-a-YAXArray","12":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#arithmetics","13":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#map","14":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#mapslices","15":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#mapCube","16":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Operations-over-several-YAXArrays","17":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#OutDims-and-YAXArray-Properties","18":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#One-to-many-output-cubes","19":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#many-to-many-cubes","20":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Specify-path-in-OutDims","21":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Different-InDims-names","22":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Creating-a-vector-array","23":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Distributed-Computation","24":"/YAXArrays.jl/previews/PR446/UserGuide/convert.html#Convert-YAXArrays","25":"/YAXArrays.jl/previews/PR446/UserGuide/convert.html#Convert-Base.Array","26":"/YAXArrays.jl/previews/PR446/UserGuide/convert.html#Convert-Raster","27":"/YAXArrays.jl/previews/PR446/UserGuide/convert.html#Convert-DimArray","28":"/YAXArrays.jl/previews/PR446/UserGuide/create.html#Create-YAXArrays-and-Datasets","29":"/YAXArrays.jl/previews/PR446/UserGuide/create.html#Create-a-YAXArray","30":"/YAXArrays.jl/previews/PR446/UserGuide/create.html#Create-a-Dataset","31":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Frequently-Asked-Questions-(FAQ)","32":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Extract-the-axes-names-from-a-Cube","33":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#rebuild","34":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Obtain-values-from-axes-and-data-from-the-cube","35":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#How-do-I-concatenate-cubes","36":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#How-do-I-subset-a-YAXArray-(-Cube-)-or-Dataset?","37":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Subsetting-a-YAXArray","38":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Subsetting-a-Dataset","39":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Subsetting-a-Dataset-whose-variables-share-all-their-dimensions","40":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Subsetting-a-Dataset-whose-variables-share-some-but-not-all-of-their-dimensions","41":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#How-do-I-apply-map-algebra?","42":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#How-do-I-use-the-CubeTable-function?","43":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#How-do-I-assign-variable-names-to-YAXArrays-in-a-Dataset","44":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#One-variable-name","45":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Multiple-variable-names","46":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Ho-do-I-construct-a-Dataset-from-a-TimeArray","47":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Create-a-YAXArray-with-unions-containing-Strings","48":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#Group-YAXArrays-and-Datasets","49":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#Seasonal-Averages-from-Time-Series-of-Monthly-Means","50":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#Download-the-data","51":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#GroupBy:-seasons","52":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#dropdims","53":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#seasons","54":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#GroupBy:-weight","55":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#weights","56":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#weighted-seasons","57":"/YAXArrays.jl/previews/PR446/UserGuide/read.html#Read-YAXArrays-and-Datasets","58":"/YAXArrays.jl/previews/PR446/UserGuide/read.html#Read-Zarr","59":"/YAXArrays.jl/previews/PR446/UserGuide/read.html#Read-NetCDF","60":"/YAXArrays.jl/previews/PR446/UserGuide/read.html#Read-GDAL-(GeoTIFF,-GeoJSON)","61":"/YAXArrays.jl/previews/PR446/UserGuide/select.html#Select-YAXArrays-and-Datasets","62":"/YAXArrays.jl/previews/PR446/UserGuide/select.html#Select-a-YAXArray","63":"/YAXArrays.jl/previews/PR446/UserGuide/select.html#Select-elements","64":"/YAXArrays.jl/previews/PR446/UserGuide/select.html#Select-ranges","65":"/YAXArrays.jl/previews/PR446/UserGuide/select.html#Closed-and-open-intervals","66":"/YAXArrays.jl/previews/PR446/UserGuide/select.html#Get-a-dimension","67":"/YAXArrays.jl/previews/PR446/UserGuide/types.html#types","68":"/YAXArrays.jl/previews/PR446/UserGuide/types.html#yaxarray","69":"/YAXArrays.jl/previews/PR446/UserGuide/types.html#dataset","70":"/YAXArrays.jl/previews/PR446/UserGuide/types.html#(Data)-Cube","71":"/YAXArrays.jl/previews/PR446/UserGuide/types.html#dimension","72":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Write-YAXArrays-and-Datasets","73":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Write-Zarr","74":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#zarr-compression","75":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Write-NetCDF","76":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#netcdf-compression","77":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Overwrite-a-Dataset","78":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Append-to-a-Dataset","79":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Save-Skeleton","80":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Update-values-of-dataset","81":"/YAXArrays.jl/previews/PR446/api.html#API-Reference","82":"/YAXArrays.jl/previews/PR446/api.html#Public-API","83":"/YAXArrays.jl/previews/PR446/api.html#Internal-API","84":"/YAXArrays.jl/previews/PR446/development/contribute.html#Contribute-to-YAXArrays.jl","85":"/YAXArrays.jl/previews/PR446/development/contribute.html#Contribute-to-Documentation","86":"/YAXArrays.jl/previews/PR446/development/contribute.html#Build-docs-locally","87":"/YAXArrays.jl/previews/PR446/get_started.html#Getting-Started","88":"/YAXArrays.jl/previews/PR446/get_started.html#installation","89":"/YAXArrays.jl/previews/PR446/get_started.html#quickstart","90":"/YAXArrays.jl/previews/PR446/get_started.html#updates","91":"/YAXArrays.jl/previews/PR446/tutorials/mean_seasonal_cycle.html#Mean-Seasonal-Cycle-for-a-single-pixel","92":"/YAXArrays.jl/previews/PR446/tutorials/mean_seasonal_cycle.html#Define-the-cube","93":"/YAXArrays.jl/previews/PR446/tutorials/mean_seasonal_cycle.html#Plot-results:-mean-seasonal-cycle","94":"/YAXArrays.jl/previews/PR446/tutorials/other_tutorials.html#Other-tutorials","95":"/YAXArrays.jl/previews/PR446/tutorials/other_tutorials.html#General-overview-of-the-functionality-of-YAXArrays","96":"/YAXArrays.jl/previews/PR446/tutorials/other_tutorials.html#Table-style-iteration-over-YAXArrays","97":"/YAXArrays.jl/previews/PR446/tutorials/other_tutorials.html#Combining-multiple-tiff-files-into-a-zarr-based-datacube","98":"/YAXArrays.jl/previews/PR446/tutorials/plottingmaps.html#Plotting-maps","99":"/YAXArrays.jl/previews/PR446/tutorials/plottingmaps.html#Heatmap-plot","100":"/YAXArrays.jl/previews/PR446/tutorials/plottingmaps.html#Wintri-Projection","101":"/YAXArrays.jl/previews/PR446/tutorials/plottingmaps.html#Moll-projection","102":"/YAXArrays.jl/previews/PR446/tutorials/plottingmaps.html#3D-sphere-plot"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[2,1,86],"1":[2,1,58],"2":[2,2,57],"3":[2,2,9],"4":[4,4,76],"5":[4,4,76],"6":[5,4,81],"7":[2,1,31],"8":[5,2,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,98],"18":[5,7,126],"19":[3,7,97],"20":[4,7,91],"21":[3,3,144],"22":[4,3,248],"23":[2,2,138],"24":[2,1,52],"25":[3,2,84],"26":[2,2,116],"27":[2,2,120],"28":[4,1,14],"29":[3,4,106],"30":[3,4,45],"31":[5,1,19],"32":[7,5,75],"33":[1,11,90],"34":[8,5,75],"35":[5,5,87],"36":[10,5,33],"37":[3,14,144],"38":[3,14,18],"39":[9,14,69],"40":[13,14,156],"41":[7,5,112],"42":[8,5,169],"43":[11,5,1],"44":[3,15,24],"45":[3,15,59],"46":[8,5,140],"47":[7,5,80],"48":[4,1,30],"49":[8,4,35],"50":[3,4,67],"51":[2,4,136],"52":[1,6,102],"53":[1,6,49],"54":[2,4,107],"55":[1,6,87],"56":[2,6,349],"57":[4,1,14],"58":[2,4,188],"59":[2,4,206],"60":[5,4,90],"61":[4,1,165],"62":[3,4,106],"63":[2,4,117],"64":[2,4,131],"65":[4,4,144],"66":[3,4,73],"67":[1,1,16],"68":[1,1,113],"69":[1,1,78],"70":[3,1,70],"71":[1,1,32],"72":[4,1,146],"73":[2,4,19],"74":[2,5,52],"75":[2,4,20],"76":[2,5,44],"77":[3,4,77],"78":[4,4,157],"79":[2,4,154],"80":[4,4,93],"81":[2,1,10],"82":[2,2,554],"83":[2,2,463],"84":[4,1,15],"85":[3,4,40],"86":[3,5,75],"87":[2,1,1],"88":[1,2,34],"89":[1,2,196],"90":[1,2,49],"91":[7,1,73],"92":[3,7,132],"93":[5,7,48],"94":[2,1,49],"95":[6,2,12],"96":[5,2,38],"97":[9,2,1],"98":[2,1,136],"99":[2,2,21],"100":[2,1,46],"101":[2,2,33],"102":[3,2,57]},"averageFieldLength":[3.4854368932038833,3.8349514563106792,92.01941747572816],"storedFields":{"0":{"title":"Caching YAXArrays","titles":[]},"1":{"title":"Chunk YAXArrays","titles":[]},"2":{"title":"Chunking YAXArrays","titles":["Chunk YAXArrays"]},"3":{"title":"Chunking Datasets","titles":["Chunk YAXArrays"]},"4":{"title":"Set Chunks by Axis","titles":["Chunk YAXArrays","Chunking Datasets"]},"5":{"title":"Set chunking by Variable","titles":["Chunk YAXArrays","Chunking Datasets"]},"6":{"title":"Set chunking for all variables","titles":["Chunk YAXArrays","Chunking Datasets"]},"7":{"title":"Combine YAXArrays","titles":[]},"8":{"title":"cat along an existing dimension","titles":["Combine YAXArrays"]},"9":{"title":"concatenatecubes to a new dimension","titles":["Combine YAXArrays"]},"10":{"title":"Compute YAXArrays","titles":[]},"11":{"title":"Modify elements of a YAXArray","titles":["Compute YAXArrays"]},"12":{"title":"Arithmetics","titles":["Compute YAXArrays"]},"13":{"title":"map","titles":["Compute YAXArrays"]},"14":{"title":"mapslices","titles":["Compute YAXArrays"]},"15":{"title":"mapCube","titles":["Compute YAXArrays"]},"16":{"title":"Operations over several YAXArrays","titles":["Compute YAXArrays","mapCube"]},"17":{"title":"OutDims and YAXArray Properties","titles":["Compute YAXArrays","mapCube"]},"18":{"title":"One to many output cubes","titles":["Compute YAXArrays","mapCube","OutDims and YAXArray Properties"]},"19":{"title":"many to many cubes","titles":["Compute YAXArrays","mapCube","OutDims and YAXArray Properties"]},"20":{"title":"Specify path in OutDims","titles":["Compute YAXArrays","mapCube","OutDims and YAXArray Properties"]},"21":{"title":"Different InDims names","titles":["Compute YAXArrays","mapCube"]},"22":{"title":"Creating a vector array","titles":["Compute YAXArrays","mapCube"]},"23":{"title":"Distributed Computation","titles":["Compute YAXArrays"]},"24":{"title":"Convert YAXArrays","titles":[]},"25":{"title":"Convert Base.Array","titles":["Convert YAXArrays"]},"26":{"title":"Convert Raster","titles":["Convert YAXArrays"]},"27":{"title":"Convert DimArray","titles":["Convert YAXArrays"]},"28":{"title":"Create YAXArrays and Datasets","titles":[]},"29":{"title":"Create a YAXArray","titles":["Create YAXArrays and Datasets"]},"30":{"title":"Create a Dataset","titles":["Create YAXArrays and Datasets"]},"31":{"title":"Frequently Asked Questions (FAQ)","titles":[]},"32":{"title":"Extract the axes names from a Cube","titles":["Frequently Asked Questions (FAQ)"]},"33":{"title":"rebuild","titles":["Frequently Asked Questions (FAQ)","Extract the axes names from a Cube"]},"34":{"title":"Obtain values from axes and data from the cube","titles":["Frequently Asked Questions (FAQ)"]},"35":{"title":"How do I concatenate cubes","titles":["Frequently Asked Questions (FAQ)"]},"36":{"title":"How do I subset a YAXArray ( Cube ) or Dataset?","titles":["Frequently Asked Questions (FAQ)"]},"37":{"title":"Subsetting a YAXArray","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?"]},"38":{"title":"Subsetting a Dataset","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?"]},"39":{"title":"Subsetting a Dataset whose variables share all their dimensions","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?","Subsetting a Dataset"]},"40":{"title":"Subsetting a Dataset whose variables share some but not all of their dimensions","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?","Subsetting a Dataset"]},"41":{"title":"How do I apply map algebra?","titles":["Frequently Asked Questions (FAQ)"]},"42":{"title":"How do I use the CubeTable function?","titles":["Frequently Asked Questions (FAQ)"]},"43":{"title":"How do I assign variable names to YAXArrays in a Dataset","titles":["Frequently Asked Questions (FAQ)"]},"44":{"title":"One variable name","titles":["Frequently Asked Questions (FAQ)","How do I assign variable names to YAXArrays in a Dataset"]},"45":{"title":"Multiple variable names","titles":["Frequently Asked Questions (FAQ)","How do I assign variable names to YAXArrays in a Dataset"]},"46":{"title":"Ho do I construct a Dataset from a TimeArray","titles":["Frequently Asked Questions (FAQ)"]},"47":{"title":"Create a YAXArray with unions containing Strings","titles":["Frequently Asked Questions (FAQ)"]},"48":{"title":"Group YAXArrays and Datasets","titles":[]},"49":{"title":"Seasonal Averages from Time Series of Monthly Means","titles":["Group YAXArrays and Datasets"]},"50":{"title":"Download the data","titles":["Group YAXArrays and Datasets"]},"51":{"title":"GroupBy: seasons","titles":["Group YAXArrays and Datasets"]},"52":{"title":"dropdims","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"53":{"title":"seasons","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"54":{"title":"GroupBy: weight","titles":["Group YAXArrays and Datasets"]},"55":{"title":"weights","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"56":{"title":"weighted seasons","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"57":{"title":"Read YAXArrays and Datasets","titles":[]},"58":{"title":"Read Zarr","titles":["Read YAXArrays and Datasets"]},"59":{"title":"Read NetCDF","titles":["Read YAXArrays and Datasets"]},"60":{"title":"Read GDAL (GeoTIFF, GeoJSON)","titles":["Read YAXArrays and Datasets"]},"61":{"title":"Select YAXArrays and Datasets","titles":[]},"62":{"title":"Select a YAXArray","titles":["Select YAXArrays and Datasets"]},"63":{"title":"Select elements","titles":["Select YAXArrays and Datasets"]},"64":{"title":"Select ranges","titles":["Select YAXArrays and Datasets"]},"65":{"title":"Closed and open intervals","titles":["Select YAXArrays and Datasets"]},"66":{"title":"Get a dimension","titles":["Select YAXArrays and Datasets"]},"67":{"title":"Types","titles":[]},"68":{"title":"YAXArray","titles":["Types"]},"69":{"title":"Dataset","titles":["Types"]},"70":{"title":"(Data) Cube","titles":["Types"]},"71":{"title":"Dimension","titles":["Types"]},"72":{"title":"Write YAXArrays and Datasets","titles":[]},"73":{"title":"Write Zarr","titles":["Write YAXArrays and Datasets"]},"74":{"title":"zarr compression","titles":["Write YAXArrays and Datasets","Write Zarr"]},"75":{"title":"Write NetCDF","titles":["Write YAXArrays and Datasets"]},"76":{"title":"netcdf compression","titles":["Write YAXArrays and Datasets","Write NetCDF"]},"77":{"title":"Overwrite a Dataset","titles":["Write YAXArrays and Datasets"]},"78":{"title":"Append to a Dataset","titles":["Write YAXArrays and Datasets"]},"79":{"title":"Save Skeleton","titles":["Write YAXArrays and Datasets"]},"80":{"title":"Update values of dataset","titles":["Write YAXArrays and Datasets"]},"81":{"title":"API Reference","titles":[]},"82":{"title":"Public API","titles":["API Reference"]},"83":{"title":"Internal API","titles":["API Reference"]},"84":{"title":"Contribute to YAXArrays.jl","titles":[]},"85":{"title":"Contribute to Documentation","titles":["Contribute to YAXArrays.jl"]},"86":{"title":"Build docs locally","titles":["Contribute to YAXArrays.jl","Contribute to Documentation"]},"87":{"title":"Getting Started","titles":[]},"88":{"title":"Installation","titles":["Getting Started"]},"89":{"title":"Quickstart","titles":["Getting Started"]},"90":{"title":"Updates","titles":["Getting Started"]},"91":{"title":"Mean Seasonal Cycle for a single pixel","titles":[]},"92":{"title":"Define the cube","titles":["Mean Seasonal Cycle for a single pixel"]},"93":{"title":"Plot results: mean seasonal cycle","titles":["Mean Seasonal Cycle for a single pixel"]},"94":{"title":"Other tutorials","titles":[]},"95":{"title":"General overview of the functionality of YAXArrays","titles":["Other tutorials"]},"96":{"title":"Table-style iteration over YAXArrays","titles":["Other tutorials"]},"97":{"title":"Combining multiple tiff files into a zarr based datacube","titles":["Other tutorials"]},"98":{"title":"Plotting maps","titles":[]},"99":{"title":"Heatmap plot","titles":["Plotting maps"]},"100":{"title":"Wintri Projection","titles":[]},"101":{"title":"Moll projection","titles":["Wintri Projection"]},"102":{"title":"3D sphere plot","titles":["Wintri Projection"]}},"dirtCount":0,"index":[["δlon",{"2":{"100":1}}],["├─────────────────────┴─────────────────────────────────────────",{"2":{"47":1}}],["├─────────────────────────┴──────────────────────────",{"2":{"37":1}}],["├─────────────────────────┴─────────────────────────────────────",{"2":{"89":1}}],["├─────────────────────────┴──────────────────────────────────────",{"2":{"33":1}}],["├─────────────────────────┴──────────────────────────────────────────────",{"2":{"34":1,"42":1}}],["├─────────────────────────┴─────────────────────────────────────────",{"2":{"19":1}}],["├─────────────────────────┴──────────────────────────────────",{"2":{"27":2}}],["├─────────────────────────┴────────────────────────────────",{"2":{"9":1}}],["├──────────────────────────┴────────────────────────────",{"2":{"26":1}}],["├──────────────────────────┴────────────────────────────────────",{"2":{"25":1}}],["├──────────────────────────┴─────────────────────────────────────────────",{"2":{"22":1,"37":1}}],["├────────────────────────────┴───────────────────────────────────────────",{"2":{"37":2}}],["├────────────────────────────┴──────────────────────────",{"2":{"26":1}}],["├─────────────────────────────┴──────────────────────────────────",{"2":{"29":1}}],["├─────────────────────────────┴──────────────────────────────────────────",{"2":{"16":1,"32":1}}],["├───────────────────────────────┴────────────────────────────────────────",{"2":{"55":1}}],["├──────────────────────────────────┴─────────────────────────────────────",{"2":{"92":1}}],["├────────────────────────────────────┴───────────────────────────────────",{"2":{"58":1}}],["├──────────────────────────────────────┴────────────────────────",{"2":{"47":1}}],["├──────────────────────────────────────────┴─────────────────────────────",{"2":{"22":1,"42":1}}],["├─────────────────────────────────────────────┴─────────────────",{"2":{"63":1}}],["├───────────────────────────────────────────────┴────────────────────────",{"2":{"42":1,"64":1,"65":5}}],["├───────────────────────────────────────────────",{"2":{"37":1}}],["├────────────────────────────────────────────────",{"2":{"21":1,"37":1}}],["├──────────────────────────────────────────────────┴─────────────────────",{"2":{"51":1}}],["├──────────────────────────────────────────────────",{"2":{"26":1}}],["├───────────────────────────────────────────────────",{"2":{"26":2}}],["├─────────────────────────────────────────────────────",{"2":{"9":1,"26":1}}],["├───────────────────────────────────────────────────────",{"2":{"27":1}}],["├────────────────────────────────────────────────────────",{"2":{"27":2,"47":2}}],["├──────────────────────────────────────────────────────────",{"2":{"25":1,"89":1}}],["├───────────────────────────────────────────────────────────",{"2":{"25":1,"29":1,"33":1,"47":2,"89":1}}],["├────────────────────────────────────────────────────────────",{"2":{"8":1,"29":1,"33":1}}],["├──────────────────────────────────────────────────────────────",{"2":{"19":1}}],["├──────────────────────────────────────────────────────────────────",{"2":{"51":1,"54":1}}],["├───────────────────────────────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"21":2,"22":2,"29":1,"32":1,"33":2,"34":1,"35":1,"37":4,"41":3,"42":3,"54":1,"58":1,"59":1,"62":2,"63":2,"64":3,"65":5,"79":1,"89":1,"92":1}}],["├─────────────────────────────────────────────────────────────────────",{"2":{"63":1}}],["├─────────────────────────────────────────────────────────────────────┴",{"2":{"63":1}}],["├────────────────────────────────────────────────────────────────────────",{"2":{"51":1,"52":1,"54":1,"55":1,"56":3}}],["├────────────────────────────────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"21":2,"22":3,"29":1,"32":1,"33":2,"34":1,"35":1,"37":4,"41":3,"42":3,"51":2,"52":1,"54":3,"55":2,"56":3,"58":1,"59":1,"62":2,"63":2,"64":3,"65":5,"79":1,"89":1,"92":1}}],["├───────────────────────────────────────────────────────────────",{"2":{"19":1}}],["├─────────────────────────────────────────────────────────────",{"2":{"8":1}}],["├──────────────────────────────────────────────────────",{"2":{"9":1}}],["├─────────────────────────────────────────────────",{"2":{"21":1}}],["├────────────────────────────────────────────────┴───────────────────────",{"2":{"14":1,"54":1,"59":1,"62":2,"63":2}}],["├──────────────────────────────────────────────┴─────────────────────────",{"2":{"16":2,"41":1,"64":2}}],["├───────────────────────────────────────────┴────────────────────────────",{"2":{"14":1,"18":1,"21":1,"79":1}}],["├────────────────────────────────┴───────────────────────────────────────",{"2":{"35":1,"89":1}}],["├────────────────────────────────┴────────────────────────────────",{"2":{"8":1}}],["├──────────────────────────────┴─────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"16":2,"22":1,"29":1,"41":2,"54":1}}],["├───────────────────────────┴─────────────────────────",{"2":{"21":1}}],["├───────────────────────────┴────────────────────────────────────────────",{"2":{"17":1,"21":1,"22":1,"33":2,"37":1}}],["╭─────────────────────╮",{"2":{"47":1}}],["╭──────────────────────────╮",{"2":{"22":1,"25":1,"26":1,"37":1}}],["╭────────────────────────────╮",{"2":{"26":1,"37":2}}],["╭─────────────────────────────╮",{"2":{"16":1,"29":1,"32":1}}],["╭───────────────────────────────╮",{"2":{"55":1}}],["╭──────────────────────────────────╮",{"2":{"92":1}}],["╭────────────────────────────────────╮",{"2":{"58":1}}],["╭──────────────────────────────────────╮",{"2":{"47":1}}],["╭──────────────────────────────────────────╮",{"2":{"22":1,"42":1}}],["╭─────────────────────────────────────────────╮",{"2":{"63":1}}],["╭──────────────────────────────────────────────────────────────────────────────╮",{"2":{"51":1,"52":1,"54":1,"55":1,"56":3}}],["╭──────────────────────────────────────────────────╮",{"2":{"51":1}}],["╭────────────────────────────────────────────────╮",{"2":{"14":1,"54":1,"59":1,"62":2,"63":2}}],["╭───────────────────────────────────────────────╮",{"2":{"42":1,"64":1,"65":5}}],["╭──────────────────────────────────────────────╮",{"2":{"16":2,"41":1,"64":2}}],["╭───────────────────────────────────────────╮",{"2":{"14":1,"18":1,"21":1,"79":1}}],["╭────────────────────────────────╮",{"2":{"8":1,"35":1,"89":1}}],["╭──────────────────────────────╮",{"2":{"10":1,"12":1,"13":1,"16":2,"22":1,"29":1,"41":2,"54":1}}],["╭───────────────────────────╮",{"2":{"17":1,"21":2,"22":1,"33":2,"37":1}}],["╭─────────────────────────╮",{"2":{"9":1,"19":1,"27":2,"33":1,"34":1,"37":1,"42":1,"89":1}}],["π",{"2":{"41":2,"91":1,"93":1}}],[">var",{"2":{"92":1}}],[">dates",{"2":{"92":1}}],[">month",{"2":{"82":1}}],[">abs",{"2":{"82":1}}],[">=",{"2":{"40":4}}],[">",{"2":{"40":2,"41":2,"92":1}}],["└──────────────────────────────────────────────────────────┘",{"2":{"37":1}}],["└─────────────────────────────────────────────────────────────┘",{"2":{"26":2}}],["└──────────────────────────────────────────────────────────────────┘",{"2":{"27":2}}],["└──────────────────────────────────────────────────────────────────────┘",{"2":{"29":1,"33":1}}],["└────────────────────────────────────────────────────────────────────────────────┘",{"2":{"63":1}}],["└──────────────────────────────────────────────────────────────────────────────┘",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"21":2,"22":4,"29":1,"32":1,"33":2,"34":1,"35":1,"37":4,"41":3,"42":3,"51":2,"52":1,"54":3,"55":2,"56":3,"58":1,"59":1,"62":2,"63":2,"64":3,"65":5,"79":1,"89":1,"92":1}}],["└─────────────────────────────────────────────────────────────────────────┘",{"2":{"19":1}}],["└───────────────────────────────────────────────────────────────────────┘",{"2":{"8":1}}],["└─────────────────────────────────────────────────────────────────────┘",{"2":{"25":1,"47":2,"89":1}}],["└────────────────────────────────────────────────────────────────┘",{"2":{"9":1}}],["└───────────────────────────────────────────────────────────┘",{"2":{"21":1}}],["`diskarrays",{"2":{"83":1}}],["`ds`",{"2":{"82":1}}],["`ordereddict`",{"2":{"82":1}}],["`fun`",{"2":{"82":1}}],["`a",{"2":{"37":1}}],["`layer`",{"2":{"18":1}}],["quickstart",{"0":{"89":1}}],["query",{"2":{"61":1}}],["questions",{"0":{"31":1},"1":{"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1}}],["quot",{"2":{"16":2,"42":2,"77":2,"79":4,"82":16,"83":12}}],["jj+1",{"2":{"59":1,"61":1,"72":1,"78":1}}],["jj",{"2":{"59":1,"61":1,"72":1,"78":1}}],["joinname",{"2":{"82":1}}],["joinname=",{"2":{"82":1}}],["journal",{"2":{"59":1,"61":1,"72":1,"78":1}}],["joe",{"2":{"49":1,"56":1}}],["j",{"2":{"56":8}}],["jan",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["jl",{"0":{"84":1},"1":{"85":1,"86":1},"2":{"26":1,"27":1,"42":1,"46":2,"50":1,"56":1,"68":1,"71":1,"84":1,"86":2,"88":1,"89":2,"90":3,"96":1}}],["jussieu",{"2":{"59":1,"61":1,"72":1,"78":1}}],["just",{"2":{"22":1,"68":1,"70":1,"82":1,"83":2}}],["jul",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["juliaδlon",{"2":{"100":1}}],["juliaglmakie",{"2":{"99":1}}],["juliagetloopchunks",{"2":{"83":1}}],["juliagetouttype",{"2":{"83":1}}],["juliagetoutaxis",{"2":{"83":1}}],["juliaget",{"2":{"83":1}}],["juliagetaxis",{"2":{"82":1}}],["juliagettarrayaxes",{"2":{"46":1}}],["juliagen",{"2":{"16":1}}],["juliax",{"2":{"91":1}}],["juliapkg>",{"2":{"88":1,"90":1}}],["juliapermuteloopaxes",{"2":{"83":1}}],["juliaproperties",{"2":{"19":1}}],["juliaoptifunc",{"2":{"83":1}}],["juliaoutdims",{"2":{"82":1}}],["juliaoffset",{"2":{"13":1}}],["juliacopydata",{"2":{"83":1}}],["juliacollect",{"2":{"34":1,"66":1}}],["juliaclean",{"2":{"83":1}}],["juliacube",{"2":{"82":1}}],["juliacubefittable",{"2":{"82":1}}],["juliacubetable",{"2":{"82":1}}],["juliacaxes",{"2":{"82":1}}],["julian",{"2":{"74":1,"76":1}}],["juliasavecube",{"2":{"82":1}}],["juliasavedataset",{"2":{"73":1,"75":1,"77":1}}],["juliasetchunks",{"2":{"82":1,"83":1}}],["juliaseasons",{"2":{"53":1}}],["julialon",{"2":{"98":1}}],["julialookup",{"2":{"66":1}}],["julialatitudes",{"2":{"40":1}}],["juliawith",{"2":{"56":1}}],["julia>",{"2":{"56":1,"86":1,"92":1}}],["juliaurl",{"2":{"50":1}}],["juliausing",{"2":{"0":1,"2":1,"4":1,"5":1,"6":1,"8":1,"9":1,"10":1,"16":1,"17":1,"22":1,"23":2,"25":1,"26":1,"27":1,"29":2,"32":1,"33":1,"35":1,"37":1,"39":1,"40":1,"42":2,"46":1,"48":1,"56":1,"58":1,"59":1,"60":1,"61":1,"63":1,"65":1,"72":1,"73":1,"75":1,"79":1,"89":2,"91":1,"98":1,"102":1}}],["juliakeylist",{"2":{"45":1}}],["juliaylonlat",{"2":{"37":1}}],["juliaytime3",{"2":{"37":1}}],["juliaytime2",{"2":{"37":1}}],["juliaytime",{"2":{"37":1}}],["juliay",{"2":{"37":1}}],["juliayaxcolumn",{"2":{"83":1}}],["juliayaxarray",{"2":{"82":1}}],["juliayax",{"2":{"0":1,"46":2}}],["juliatos",{"2":{"62":2,"63":2,"64":3,"65":1,"66":1}}],["juliatempo",{"2":{"54":1}}],["juliatest",{"2":{"47":2}}],["juliat",{"2":{"37":1,"42":1,"91":1}}],["juliatspan",{"2":{"16":1}}],["juliamutable",{"2":{"83":1}}],["juliamatch",{"2":{"83":1}}],["juliamapcube",{"2":{"82":2}}],["juliamapslices",{"2":{"14":1,"23":1}}],["juliamovingwindow",{"2":{"82":1}}],["juliamean",{"2":{"56":1}}],["juliam2",{"2":{"25":1}}],["julia",{"2":{"24":1,"83":1,"86":1,"88":2,"90":2}}],["juliavector",{"2":{"22":1}}],["juliadataset",{"2":{"82":1}}],["juliadata3",{"2":{"30":1}}],["juliadim",{"2":{"27":1}}],["juliadimarray",{"2":{"22":1}}],["juliads2",{"2":{"78":1}}],["juliads",{"2":{"18":2,"20":2,"21":1,"39":1,"40":1,"58":1,"59":1,"76":1,"79":2,"80":3}}],["juliareadcubedata",{"2":{"82":1}}],["juliaregions",{"2":{"22":2}}],["juliar",{"2":{"79":1}}],["juliaras2",{"2":{"26":1}}],["juliarandom",{"2":{"21":2}}],["juliaindims",{"2":{"18":1,"20":1,"82":1}}],["juliaimport",{"2":{"14":1,"88":1}}],["juliajulia>",{"2":{"16":5,"32":3,"33":2,"34":1,"35":1,"41":3,"42":3,"44":1,"45":1,"46":2,"51":2,"52":1,"54":2,"55":2,"56":3,"65":4,"78":1,"79":1,"92":2,"98":3}}],["juliaall",{"2":{"79":1}}],["juliaaxs",{"2":{"50":1}}],["juliaaxes",{"2":{"37":1}}],["juliaa2",{"2":{"12":2,"29":2,"89":1}}],["juliaa",{"2":{"2":1,"11":3}}],["juliafig",{"2":{"91":1,"93":1,"100":1,"101":1}}],["juliafindaxis",{"2":{"83":1}}],["juliafittable",{"2":{"82":2}}],["juliafunction",{"2":{"16":1,"18":1,"19":1,"21":1,"51":1,"82":1,"92":1}}],["juliaf",{"2":{"2":1,"4":1,"5":1,"6":1,"16":1}}],["jun",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["∘",{"2":{"23":1}}],["|>",{"2":{"22":2}}],["⋱",{"2":{"22":1}}],["⋮",{"2":{"22":2,"66":1,"92":1}}],["^2",{"2":{"21":1}}],["⬔",{"2":{"17":1,"18":1,"35":1,"89":1}}],["92491",{"2":{"89":1}}],["928614",{"2":{"89":1}}],["926096",{"2":{"26":1}}],["986",{"2":{"56":1}}],["984803",{"2":{"22":1}}],["976187",{"2":{"89":1}}],["97649",{"2":{"56":1}}],["97047",{"2":{"56":1}}],["973332",{"2":{"26":1}}],["94534",{"2":{"56":1}}],["9404",{"2":{"51":1,"52":1}}],["9432",{"2":{"51":1,"52":1}}],["949935",{"2":{"25":1}}],["959899",{"2":{"80":2}}],["959",{"2":{"56":1}}],["95",{"2":{"40":6,"56":1}}],["902991",{"2":{"89":1}}],["902979",{"2":{"89":1}}],["90712",{"2":{"56":1}}],["90365",{"2":{"56":1}}],["90",{"2":{"40":2,"60":1,"65":5}}],["9122",{"2":{"60":1}}],["9192",{"2":{"56":1}}],["91",{"2":{"32":1,"65":5}}],["917969",{"2":{"27":1}}],["916686",{"2":{"26":1}}],["918555",{"2":{"25":1}}],["935959",{"2":{"89":1}}],["935631",{"2":{"25":1}}],["937012",{"2":{"89":1}}],["9375",{"2":{"58":2,"98":1}}],["93743",{"2":{"56":1}}],["9362",{"2":{"56":1}}],["938094",{"2":{"26":1}}],["93986",{"2":{"22":1}}],["9",{"2":{"16":14,"22":2,"34":1,"37":1,"40":6,"54":4,"64":4,"74":2,"76":1,"83":1}}],["96x71x19",{"2":{"59":1,"61":1,"72":1,"78":1}}],["96f0",{"2":{"59":1,"61":1,"72":1}}],["9682",{"2":{"51":1,"52":1}}],["960",{"2":{"17":1,"18":1,"22":1}}],["96",{"2":{"8":1,"9":1,"63":2,"78":1}}],["898926",{"2":{"80":2}}],["8984",{"2":{"56":1}}],["8901",{"2":{"60":1}}],["89",{"2":{"58":4,"59":2,"60":1,"61":1,"62":2,"63":1,"64":1,"65":5,"66":1,"72":1,"78":1,"98":2}}],["89237",{"2":{"56":1}}],["864937",{"2":{"89":1}}],["86457",{"2":{"56":1}}],["86",{"2":{"66":1}}],["862644",{"2":{"26":1}}],["884949",{"2":{"89":1}}],["882929",{"2":{"80":2}}],["88",{"2":{"35":1,"58":4,"66":1,"89":1,"98":2}}],["889583",{"2":{"22":1}}],["81705",{"2":{"89":1}}],["812577",{"2":{"89":1}}],["811959",{"2":{"89":1}}],["81",{"2":{"29":1,"66":1}}],["81362",{"2":{"26":1}}],["853962",{"2":{"89":1}}],["858795",{"2":{"80":2}}],["858065",{"2":{"27":1}}],["85",{"2":{"66":1,"100":1,"101":1}}],["850",{"2":{"56":1}}],["85ºn",{"2":{"40":1}}],["85714",{"2":{"22":1}}],["839919",{"2":{"80":2}}],["83",{"2":{"66":1}}],["830391",{"2":{"25":1}}],["83556",{"2":{"25":1}}],["874428",{"2":{"89":1}}],["875981",{"2":{"89":1}}],["875658",{"2":{"22":1}}],["87",{"2":{"66":1}}],["87705",{"2":{"56":1}}],["872575",{"2":{"26":1}}],["870888",{"2":{"26":1}}],["870826",{"2":{"25":1}}],["841123",{"2":{"80":2}}],["84",{"2":{"60":2,"66":1}}],["845983",{"2":{"25":1}}],["840389",{"2":{"22":1}}],["825766",{"2":{"89":1}}],["828299",{"2":{"89":1}}],["820737",{"2":{"80":2}}],["82",{"2":{"66":1}}],["82421875",{"2":{"60":2}}],["824354",{"2":{"22":1}}],["829062",{"2":{"22":1}}],["8",{"2":{"16":12,"22":2,"34":1,"37":1,"59":2,"61":1,"62":2,"72":1,"78":1,"92":1}}],["807171",{"2":{"89":1}}],["80759",{"2":{"56":1}}],["800",{"2":{"33":3,"34":1,"37":1}}],["80",{"2":{"16":1,"40":2}}],["v",{"2":{"59":1,"61":1,"72":1,"78":1}}],["v1",{"2":{"59":2,"61":2,"72":2,"78":2,"88":1}}],["v20190710",{"2":{"58":1,"98":2}}],["vol",{"2":{"59":1,"61":1,"72":1,"78":1}}],["volume",{"2":{"46":4}}],["voilà",{"2":{"46":1}}],["video",{"2":{"94":1}}],["videos",{"2":{"94":1}}],["visualization",{"2":{"42":1}}],["vice",{"2":{"24":1}}],["view",{"2":{"22":1,"89":1}}],["version",{"2":{"58":1,"59":1,"61":1,"72":1,"78":1,"90":2,"98":1}}],["versa",{"2":{"24":1}}],["verify",{"2":{"55":1,"80":1}}],["very",{"2":{"13":1,"42":1,"68":1}}],["vector",{"0":{"22":1},"2":{"22":4,"34":1,"47":1,"51":1,"53":1,"54":2,"55":3,"56":2,"66":1,"68":1,"82":2,"83":3}}],["val",{"2":{"34":2,"66":1}}],["vals",{"2":{"22":1}}],["value",{"2":{"12":1,"14":3,"16":2,"41":1,"59":1,"62":2,"63":3,"64":3,"65":5,"82":4,"83":1}}],["values=ds1",{"2":{"42":1}}],["values",{"0":{"34":1,"80":1},"2":{"9":1,"20":1,"21":1,"22":2,"28":1,"29":2,"32":2,"33":1,"34":1,"40":3,"42":4,"45":1,"46":2,"64":1,"66":2,"68":1,"69":1,"79":1,"80":3,"82":9,"89":1,"98":1}}],["vararg",{"2":{"83":2}}],["varoables",{"2":{"82":1}}],["variant",{"2":{"58":1,"98":1}}],["variable=at",{"2":{"89":1}}],["variable",{"0":{"5":1,"43":1,"44":1,"45":1},"1":{"44":1,"45":1},"2":{"5":1,"9":3,"40":3,"46":5,"58":1,"79":2,"82":4,"83":7,"89":3,"91":1,"92":1,"93":1,"98":1}}],["variables=at",{"2":{"41":2}}],["variables",{"0":{"6":1,"39":1,"40":1},"2":{"4":5,"5":4,"6":2,"9":2,"17":2,"18":1,"19":1,"20":1,"24":1,"30":1,"35":2,"38":1,"39":2,"40":11,"44":1,"45":4,"46":6,"58":4,"59":1,"60":1,"61":1,"69":1,"70":1,"72":1,"78":4,"79":1,"82":2,"98":4}}],["varlist",{"2":{"45":2}}],["var2=var2",{"2":{"39":1}}],["var2",{"2":{"35":2,"39":3,"41":1}}],["var1=var1",{"2":{"39":1}}],["var1",{"2":{"35":2,"39":3,"41":1}}],["var",{"2":{"9":2,"91":2,"92":2,"93":2}}],["uv",{"2":{"102":1}}],["u",{"2":{"92":1}}],["up",{"2":{"82":1}}],["updates",{"0":{"90":1}}],["updated",{"2":{"80":1}}],["update",{"0":{"80":1},"2":{"80":2,"82":1}}],["updating",{"2":{"48":1,"80":1}}],["ucar",{"2":{"59":1,"61":1,"69":1,"72":1}}],["urls",{"2":{"57":1}}],["url",{"2":{"50":1,"58":1}}],["unpermuted",{"2":{"83":2}}],["unpractical",{"2":{"50":1}}],["underlying",{"2":{"82":1,"83":1,"90":1}}],["unlike",{"2":{"70":1}}],["unique",{"2":{"92":1}}],["unidata",{"2":{"59":1,"61":1,"69":1,"72":1}}],["unit",{"2":{"60":1}}],["units",{"2":{"58":1,"59":2,"62":4,"63":6,"64":6,"65":10}}],["unitrange",{"2":{"51":2,"52":2,"56":6}}],["unions",{"0":{"47":1}}],["union",{"2":{"14":2,"16":4,"18":2,"20":1,"21":1,"22":1,"41":1,"42":2,"47":2,"59":1,"62":2,"63":3,"64":3,"65":5,"79":2,"80":1}}],["unweighted",{"2":{"51":1,"56":1}}],["unordered",{"2":{"46":4,"51":2,"52":1,"53":1,"54":2,"55":2,"56":3}}],["unnecessary",{"2":{"22":1}}],["unchanged",{"2":{"13":1}}],["usually",{"2":{"58":1,"68":2,"69":2}}],["usual",{"2":{"51":1}}],["us",{"2":{"22":1}}],["useable",{"2":{"82":1}}],["used",{"2":{"22":1,"23":1,"37":1,"61":1,"66":1,"67":1,"68":1,"71":1,"82":4,"83":3}}],["uses",{"2":{"20":1,"42":1}}],["userguide",{"2":{"85":2}}],["users",{"2":{"83":1}}],["user",{"2":{"10":2,"12":1,"13":1,"23":1,"29":3,"30":1,"83":1}}],["use",{"0":{"42":1},"2":{"0":1,"8":1,"9":1,"10":4,"13":1,"23":2,"32":2,"37":1,"39":1,"40":1,"41":1,"42":2,"46":2,"48":1,"50":1,"52":1,"65":2,"70":1,"74":1,"79":1,"82":3,"83":1,"94":1,"96":1,"98":2}}],["useful",{"2":{"0":1,"70":1}}],["using",{"2":{"0":1,"8":1,"9":1,"10":1,"16":2,"17":2,"22":2,"23":7,"27":1,"32":1,"33":2,"35":1,"37":2,"39":2,"40":2,"41":1,"42":1,"46":1,"48":4,"58":2,"59":3,"60":2,"61":2,"63":3,"64":2,"72":2,"78":1,"79":3,"90":1,"91":2,"92":1,"98":3}}],["+proj=moll",{"2":{"101":1}}],["+",{"2":{"12":2,"13":1,"16":2,"18":2,"21":1,"91":1,"100":1}}],["kwargs",{"2":{"82":4,"83":2}}],["k",{"2":{"46":5,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5}}],["keyword",{"2":{"78":1,"82":6,"83":2}}],["key",{"2":{"48":1,"82":1}}],["keyset",{"2":{"46":1}}],["keys",{"2":{"46":7,"82":1}}],["keylist",{"2":{"45":1}}],["keeps",{"2":{"13":1}}],["keep",{"2":{"0":1,"83":1}}],["kb",{"2":{"10":1,"12":1,"13":1,"14":1,"16":2,"22":1,"26":1,"29":2,"32":1,"35":1,"37":4,"41":3,"42":1,"63":1,"64":3,"65":5,"89":1,"92":1}}],["↗",{"2":{"10":1,"12":1,"13":1,"16":2,"17":1,"18":1,"19":1,"20":1,"21":3,"22":1,"26":2,"29":3,"30":1,"32":3,"35":1,"37":5,"39":2,"41":3,"51":1,"58":2,"59":2,"61":1,"62":2,"64":3,"65":5,"72":1,"78":2,"79":2,"89":1,"98":1}}],["047283",{"2":{"89":1}}],["0474875",{"2":{"89":1}}],["0465",{"2":{"56":1}}],["0e8",{"2":{"82":1}}],["02627341416046051",{"2":{"92":1}}],["028497582895211832",{"2":{"92":1}}],["02",{"2":{"58":1}}],["0210077",{"2":{"25":1}}],["0214057",{"2":{"25":1}}],["0f20",{"2":{"58":1,"59":2,"62":4,"63":6,"64":6,"65":10}}],["0f32",{"2":{"16":2}}],["06183225090497175",{"2":{"92":1}}],["060422",{"2":{"89":1}}],["0693719",{"2":{"89":1}}],["0625",{"2":{"58":2,"98":1}}],["0620649",{"2":{"26":1}}],["06755",{"2":{"56":1}}],["08964458904045909",{"2":{"92":1}}],["08383207080301504",{"2":{"92":1}}],["08",{"2":{"54":1}}],["0881736",{"2":{"27":1}}],["09470732715757708",{"2":{"92":1}}],["09317591352691727",{"2":{"92":1}}],["0916764",{"2":{"89":1}}],["0972941",{"2":{"89":1}}],["09",{"2":{"54":1}}],["096862",{"2":{"27":1}}],["0ºe",{"2":{"40":1}}],["07400365941169999",{"2":{"92":1}}],["0743642",{"2":{"89":1}}],["07111923498269067",{"2":{"92":1}}],["0776029",{"2":{"89":1}}],["07",{"2":{"58":2,"98":1}}],["0702532",{"2":{"26":1}}],["0723492",{"2":{"22":1}}],["03856393968274492",{"2":{"92":1}}],["0353507",{"2":{"89":1}}],["0358348",{"2":{"25":1}}],["0302534",{"2":{"89":1}}],["03361",{"2":{"56":1}}],["03",{"2":{"26":1}}],["00997173",{"2":{"89":1}}],["00990356",{"2":{"56":1}}],["00722034",{"2":{"56":1}}],["00709111",{"2":{"56":1}}],["0063020041736240135",{"2":{"92":1}}],["00684233",{"2":{"56":1}}],["00693713",{"2":{"56":1}}],["0057",{"2":{"56":1}}],["00388",{"2":{"56":1}}],["00",{"2":{"20":4,"46":16,"54":4,"58":9,"59":8,"61":4,"62":8,"63":8,"64":12,"65":20,"72":4,"78":4,"98":5}}],["05116592548280876",{"2":{"92":1}}],["0512364",{"2":{"89":1}}],["05345455485976908",{"2":{"92":1}}],["05344184427965779",{"2":{"92":1}}],["0537",{"2":{"51":1,"52":1}}],["05846",{"2":{"56":1}}],["0593761",{"2":{"26":1}}],["0566881",{"2":{"26":1}}],["05t00",{"2":{"20":1}}],["05",{"2":{"17":2,"18":1,"21":3,"37":3}}],["013646215450068194",{"2":{"92":1}}],["0174532925199433",{"2":{"60":1}}],["0178074",{"2":{"56":1}}],["01t03",{"2":{"58":2,"98":1}}],["01t00",{"2":{"20":1,"46":4,"58":2,"98":1}}],["0117519",{"2":{"56":1}}],["0115514",{"2":{"56":1}}],["0127077",{"2":{"56":1}}],["0123091",{"2":{"56":1}}],["0121037",{"2":{"56":1}}],["019016",{"2":{"56":1}}],["0188721",{"2":{"80":2}}],["018571",{"2":{"56":1}}],["0182373",{"2":{"56":1}}],["0180572",{"2":{"56":1}}],["0183003",{"2":{"56":1}}],["018",{"2":{"51":1,"52":1}}],["01",{"2":{"10":6,"12":3,"13":3,"14":3,"16":12,"17":6,"18":3,"20":2,"21":9,"22":9,"23":3,"29":9,"30":3,"37":22,"39":8,"40":11,"46":8,"58":5,"59":4,"61":2,"62":4,"63":6,"64":6,"65":10,"72":2,"78":2,"91":2,"92":4,"98":5}}],["0",{"2":{"8":1,"9":1,"10":6,"11":2,"12":6,"13":6,"14":7,"16":303,"17":7,"18":7,"19":7,"20":6,"21":10,"22":75,"25":36,"26":36,"27":45,"29":12,"30":6,"33":3,"34":1,"35":9,"37":1,"40":4,"41":27,"42":11,"47":2,"54":2,"55":40,"56":19,"58":7,"59":10,"60":6,"61":6,"62":8,"63":6,"64":14,"65":20,"66":6,"72":6,"74":1,"76":1,"77":1,"78":6,"79":1,"80":40,"82":2,"83":1,"89":80,"90":1,"91":2,"92":19,"93":1,"98":4,"100":2,"101":2,"102":2}}],["┤",{"2":{"8":2,"9":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":2,"18":2,"19":2,"21":6,"22":5,"25":2,"26":4,"27":3,"29":4,"32":2,"33":6,"34":2,"35":2,"37":10,"41":6,"42":6,"47":4,"51":4,"52":2,"54":6,"55":3,"56":6,"58":2,"59":2,"62":4,"63":5,"64":6,"65":10,"79":2,"89":4,"92":2}}],["┐",{"2":{"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"21":3,"22":4,"25":1,"26":2,"27":2,"29":2,"32":1,"33":3,"34":1,"35":1,"37":5,"41":3,"42":3,"47":2,"51":1,"54":2,"55":1,"58":1,"59":1,"62":2,"63":4,"64":3,"65":5,"79":1,"89":2,"92":1}}],["│",{"2":{"8":2,"9":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":2,"18":2,"19":2,"21":6,"22":8,"25":2,"26":4,"27":4,"29":4,"32":2,"33":6,"34":2,"35":2,"37":10,"41":6,"42":6,"47":4,"51":4,"52":2,"54":6,"55":4,"56":6,"58":2,"59":2,"62":4,"63":6,"64":6,"65":10,"79":2,"89":4,"92":2}}],["720352",{"2":{"89":1}}],["720635",{"2":{"80":2}}],["72",{"2":{"66":1}}],["725765",{"2":{"27":1}}],["768363",{"2":{"89":1}}],["761553",{"2":{"80":2}}],["76",{"2":{"66":1}}],["762559",{"2":{"26":1}}],["705063",{"2":{"89":1}}],["70",{"2":{"64":3,"66":1}}],["7030",{"2":{"60":1}}],["701332",{"2":{"22":1}}],["730",{"2":{"93":1}}],["732556",{"2":{"89":1}}],["7341",{"2":{"56":1}}],["73",{"2":{"56":1,"66":1}}],["731779",{"2":{"26":1}}],["755932",{"2":{"89":1}}],["75",{"2":{"66":1}}],["7593",{"2":{"56":1}}],["75891",{"2":{"56":1}}],["75269",{"2":{"25":1}}],["752417",{"2":{"22":1}}],["77",{"2":{"66":1}}],["77687",{"2":{"56":1}}],["77587",{"2":{"56":1}}],["770949",{"2":{"26":1}}],["79",{"2":{"59":2,"61":1,"62":2,"63":2,"64":4,"65":5,"66":1,"72":1,"78":1}}],["79502",{"2":{"56":1}}],["793913",{"2":{"27":1}}],["791138",{"2":{"27":1}}],["796375",{"2":{"26":1}}],["746804",{"2":{"89":1}}],["74",{"2":{"66":1}}],["744521",{"2":{"26":1}}],["74732",{"2":{"25":1}}],["717",{"2":{"65":5}}],["71",{"2":{"64":1,"66":1}}],["7158",{"2":{"51":1,"52":1}}],["7119",{"2":{"51":1,"52":1}}],["71314",{"2":{"26":1}}],["718667",{"2":{"26":1}}],["71429",{"2":{"22":2}}],["78",{"2":{"64":1,"66":1}}],["780824",{"2":{"27":1}}],["78467",{"2":{"25":1}}],["789891",{"2":{"25":1}}],["781773",{"2":{"22":1}}],["7",{"2":{"8":1,"16":10,"21":3,"22":1,"26":1,"29":1,"34":1,"58":1,"76":1,"98":1}}],["→",{"2":{"4":1,"5":1,"6":1,"9":1,"10":1,"12":1,"13":1,"14":1,"16":2,"17":1,"18":1,"19":1,"20":1,"21":3,"22":6,"25":1,"26":3,"27":3,"29":3,"30":1,"32":3,"33":3,"34":1,"35":1,"37":6,"39":2,"40":2,"41":3,"42":2,"45":2,"46":4,"47":2,"51":1,"58":2,"59":2,"60":1,"61":1,"62":2,"63":1,"64":3,"65":5,"72":1,"78":2,"79":2,"89":2,"98":1}}],["↓",{"2":{"4":3,"5":3,"6":1,"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"20":1,"21":3,"22":6,"25":1,"26":3,"27":3,"29":3,"30":1,"32":3,"33":3,"34":1,"35":1,"37":6,"39":2,"40":8,"41":3,"42":3,"44":1,"45":3,"46":4,"47":2,"51":3,"52":1,"54":4,"55":2,"56":3,"58":2,"59":2,"60":1,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":2,"79":2,"89":2,"92":2,"98":1}}],["438885",{"2":{"89":1}}],["4326",{"2":{"60":1}}],["43254",{"2":{"56":1}}],["4325",{"2":{"51":1,"52":1}}],["432286",{"2":{"22":1}}],["457984",{"2":{"80":2}}],["459041",{"2":{"80":2}}],["45×170×24",{"2":{"65":5}}],["456765",{"2":{"25":1}}],["48",{"2":{"89":1}}],["48367",{"2":{"56":1}}],["480",{"2":{"21":2,"42":1}}],["414041",{"2":{"80":2}}],["4198",{"2":{"56":1}}],["41241",{"2":{"56":1}}],["41049",{"2":{"56":1}}],["41634",{"2":{"56":1}}],["417937",{"2":{"22":1}}],["404819",{"2":{"89":1}}],["40",{"2":{"40":2}}],["400",{"2":{"25":1,"79":1,"91":1,"93":1}}],["44",{"2":{"37":1,"41":3}}],["471857",{"2":{"80":2}}],["47951",{"2":{"27":1}}],["475725",{"2":{"26":1}}],["472308",{"2":{"22":1}}],["497881",{"2":{"80":2}}],["497189",{"2":{"22":1}}],["49909",{"2":{"56":1}}],["4947",{"2":{"56":1}}],["492817",{"2":{"26":1}}],["4×30",{"2":{"22":1}}],["4×3×7",{"2":{"21":1}}],["4×3×2",{"2":{"19":1}}],["461652",{"2":{"89":1}}],["46506",{"2":{"56":1}}],["465103",{"2":{"22":1}}],["46",{"2":{"35":1,"89":1}}],["463503",{"2":{"22":1}}],["425153",{"2":{"27":1}}],["426519",{"2":{"25":1}}],["42857",{"2":{"22":2}}],["42",{"2":{"11":3}}],["4",{"2":{"4":4,"5":4,"16":4,"17":4,"18":2,"19":2,"20":1,"21":8,"22":9,"27":1,"34":1,"35":1,"51":2,"52":1,"53":1,"54":2,"55":2,"56":4,"79":3,"80":2,"89":3,"91":1,"93":1}}],["3d",{"0":{"102":1}}],["3hr",{"2":{"58":2,"98":3}}],["339529",{"2":{"89":1}}],["33565",{"2":{"56":1}}],["337926",{"2":{"25":1}}],["325997",{"2":{"89":1}}],["32555",{"2":{"56":1}}],["3252",{"2":{"51":1,"52":1}}],["32149",{"2":{"56":1}}],["327439",{"2":{"27":1}}],["3×3",{"2":{"47":1}}],["3×20",{"2":{"42":1}}],["384×192×251288",{"2":{"58":1}}],["3866",{"2":{"56":1}}],["38364",{"2":{"56":1}}],["3835",{"2":{"51":1,"52":1}}],["38",{"2":{"37":1,"64":3}}],["312",{"2":{"56":1}}],["31753",{"2":{"56":1}}],["3169",{"2":{"56":1}}],["3188",{"2":{"56":1}}],["31",{"2":{"37":2,"39":1,"40":1,"91":1,"92":2}}],["366",{"2":{"93":1}}],["365×1",{"2":{"92":1}}],["365",{"2":{"92":1,"93":4}}],["365971",{"2":{"27":1}}],["367809",{"2":{"80":2}}],["36126",{"2":{"56":1}}],["36142",{"2":{"56":1}}],["36836",{"2":{"56":1}}],["369",{"2":{"40":1}}],["36",{"2":{"37":1,"39":2,"40":1,"54":1}}],["3600",{"2":{"37":1,"39":2}}],["364288",{"2":{"25":1}}],["34818",{"2":{"56":1}}],["34832",{"2":{"56":1}}],["348362",{"2":{"25":1}}],["34549",{"2":{"56":1}}],["34218",{"2":{"56":1}}],["340769",{"2":{"27":1}}],["3785",{"2":{"89":1}}],["37878",{"2":{"56":1}}],["37",{"2":{"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1}}],["372",{"2":{"56":1}}],["372761",{"2":{"22":1}}],["376409",{"2":{"26":1}}],["376135",{"2":{"22":1}}],["35700351866494",{"2":{"58":4,"98":2}}],["35432",{"2":{"56":1}}],["35483",{"2":{"56":1}}],["359",{"2":{"40":1,"58":2,"59":2,"61":1,"62":2,"63":1,"66":2,"72":1,"78":1,"98":1}}],["35344092446349085",{"2":{"11":1}}],["35",{"2":{"10":1,"12":1,"13":1,"22":1,"29":1}}],["307f8f0e584a39a050c042849004e6a2bd674f99",{"2":{"60":1}}],["3069",{"2":{"56":1}}],["30018",{"2":{"56":1}}],["30142",{"2":{"56":1}}],["30113",{"2":{"56":1}}],["30×15×10",{"2":{"16":1}}],["30×10×15",{"2":{"10":1,"12":1,"13":1,"22":1,"29":1}}],["30",{"2":{"10":3,"12":1,"13":1,"14":2,"16":5,"22":5,"23":2,"26":10,"29":4,"30":2,"56":2,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5,"98":1}}],["393083",{"2":{"89":1}}],["395234",{"2":{"26":1}}],["39",{"2":{"10":1,"16":3,"18":1,"19":1,"33":1,"35":1,"37":1,"39":1,"40":1,"41":2,"56":1,"61":1,"71":1,"74":1,"82":2,"85":4,"92":3}}],["3",{"2":{"4":8,"5":8,"6":10,"10":1,"11":3,"12":3,"13":2,"16":4,"17":3,"18":1,"19":3,"20":1,"21":14,"22":6,"26":2,"27":1,"29":3,"32":5,"34":1,"37":4,"41":4,"42":5,"46":1,"47":2,"51":2,"56":31,"58":1,"59":1,"62":2,"64":4,"65":5,"78":1,"79":3,"82":1,"89":3,"91":2}}],["zoom",{"2":{"102":1}}],["zopen",{"2":{"58":1,"80":1,"98":1}}],["zeros",{"2":{"79":3,"92":1}}],["z",{"2":{"4":2,"5":3,"6":2,"78":2}}],["zarray",{"2":{"80":1}}],["zarr",{"0":{"58":1,"73":1,"74":1,"97":1},"1":{"74":1},"2":{"0":1,"2":2,"4":2,"5":2,"6":2,"16":5,"17":1,"20":2,"23":1,"27":1,"47":1,"58":3,"73":5,"74":5,"77":3,"78":4,"79":6,"80":2,"82":2,"83":2,"98":1}}],["xticklabelalign",{"2":{"91":1,"93":1}}],["xticklabelrotation",{"2":{"91":1,"93":1}}],["xlabel=",{"2":{"91":1,"93":1}}],["xx",{"2":{"59":1,"61":1,"72":1,"78":1}}],["xarray",{"2":{"49":1,"50":1}}],["x26",{"2":{"22":12,"40":12}}],["x3c",{"2":{"22":12,"40":4}}],["xyz",{"2":{"21":2}}],["xy",{"2":{"19":2}}],["xyt",{"2":{"19":2,"21":2}}],["xin",{"2":{"18":8,"19":11,"21":8,"22":3,"41":3}}],["xout",{"2":{"16":2,"18":6,"19":6,"21":2,"22":3}}],["x",{"2":{"4":2,"5":3,"6":2,"13":2,"26":4,"27":3,"41":4,"47":2,"51":2,"52":1,"56":3,"60":1,"68":1,"80":2,"83":1,"89":5,"91":1,"92":6}}],["ndata",{"2":{"100":2,"101":1,"102":1}}],["ndays",{"2":{"92":4}}],["nlon",{"2":{"100":2,"101":1}}],["npy",{"2":{"91":2,"92":2}}],["ntuple",{"2":{"83":2}}],["ntr",{"2":{"83":1}}],["nthreads",{"2":{"82":2}}],["nin",{"2":{"83":2}}],["nvalid",{"2":{"82":1}}],["n",{"2":{"67":1,"82":3}}],["n256",{"2":{"56":1}}],["nan",{"2":{"50":1,"51":48,"52":48,"56":384}}],["name=cube",{"2":{"82":1}}],["named",{"2":{"61":1,"63":1,"64":1,"68":1,"82":2,"90":1}}],["namedtuple",{"2":{"18":1,"20":1,"82":1,"83":3}}],["names",{"0":{"21":1,"32":1,"43":1,"45":1},"1":{"33":1,"44":1,"45":1},"2":{"29":2,"46":1,"53":1,"68":2,"82":2,"83":1}}],["namely",{"2":{"16":1,"17":1}}],["name",{"0":{"44":1},"2":{"2":1,"18":4,"20":1,"45":1,"56":1,"58":3,"59":4,"62":8,"63":12,"64":12,"65":20,"71":1,"79":2,"82":6,"83":5,"89":1}}],["nc",{"2":{"50":2,"59":2,"61":2,"72":2,"75":2,"76":3}}],["number",{"2":{"49":1,"54":1,"74":1,"76":1,"82":2,"83":1,"92":1}}],["numbers",{"2":{"10":1,"89":1}}],["nout",{"2":{"83":2}}],["normal",{"2":{"82":1,"102":1}}],["north",{"2":{"60":1}}],["nometadata",{"2":{"51":3,"52":2,"54":1,"55":1,"56":10}}],["november",{"2":{"59":1,"61":1,"72":1,"78":1}}],["nov",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["nonmissingtype",{"2":{"83":1}}],["none",{"2":{"40":2,"45":1,"46":1,"58":1,"78":1,"98":1}}],["non",{"2":{"23":1,"82":1,"83":1,"91":1}}],["now",{"2":{"16":3,"18":1,"22":1,"33":1,"35":1,"37":1,"42":1,"46":1,"51":1,"52":1,"54":1,"56":1,"79":2,"80":1,"86":1}}],["no",{"2":{"14":1,"21":1,"27":1,"36":1,"74":1,"76":1,"79":1,"82":1,"83":1}}],["notice",{"2":{"74":1}}],["notation",{"2":{"37":1,"65":1}}],["nothing",{"2":{"18":1,"19":1,"21":1,"56":3,"77":1,"82":1,"83":1}}],["note",{"2":{"9":1,"13":1,"16":4,"18":1,"21":1,"22":1,"33":1,"40":1,"47":1,"52":1,"79":1,"82":1,"83":1}}],["not",{"0":{"40":1},"2":{"0":1,"1":1,"13":1,"36":1,"40":3,"45":1,"46":2,"47":1,"50":1,"79":2,"82":2,"83":3}}],["neighbour",{"2":{"82":1}}],["neighboring",{"2":{"13":1}}],["near",{"2":{"58":2,"65":1,"98":1}}],["needed",{"2":{"82":1}}],["need",{"2":{"45":1,"80":1,"82":1,"83":1,"85":1}}],["next",{"2":{"41":1,"42":1,"53":1,"86":2}}],["netcdf",{"0":{"59":1,"75":1,"76":1},"1":{"76":1},"2":{"27":1,"47":1,"48":2,"59":4,"61":2,"69":3,"72":2,"75":3,"76":2,"77":1,"82":1}}],["necessary",{"2":{"16":1,"49":1,"50":1,"80":1,"83":4}}],["new",{"0":{"9":1},"2":{"10":1,"12":1,"16":1,"29":1,"32":1,"33":3,"48":1,"50":1,"53":1,"70":1,"77":1,"78":1,"79":1,"82":5,"83":4,"85":6,"92":1}}],["bits",{"2":{"82":2}}],["big",{"2":{"68":1}}],["black",{"2":{"93":1}}],["blocks",{"2":{"82":1}}],["blosccompressor",{"2":{"74":1}}],["blue",{"2":{"60":1,"69":1}}],["bonito",{"2":{"102":1}}],["boundaries",{"2":{"83":1}}],["bounds",{"2":{"82":1}}],["bold",{"2":{"56":1}}],["bool=true",{"2":{"83":1}}],["bool=false",{"2":{"82":1,"83":1}}],["boolean",{"2":{"82":3}}],["bool",{"2":{"47":3,"83":6}}],["bwr",{"2":{"56":1}}],["b`",{"2":{"37":1}}],["broad",{"2":{"95":1}}],["broadcasts",{"2":{"83":1}}],["broadcast",{"2":{"51":1,"56":1}}],["broadcasted",{"2":{"16":2,"82":1,"83":1}}],["brown",{"2":{"93":1}}],["browser",{"2":{"86":1}}],["brightness",{"2":{"68":1,"69":1}}],["brings",{"2":{"83":1}}],["bring",{"2":{"34":1}}],["branch",{"2":{"58":1,"98":1}}],["bug",{"2":{"84":1}}],["bundle",{"2":{"69":1}}],["build",{"0":{"86":1},"2":{"32":1,"86":1}}],["but",{"0":{"40":1},"2":{"8":1,"16":2,"32":1,"33":2,"40":2,"45":1,"46":2,"63":1,"64":1,"82":2}}],["b",{"2":{"17":2,"18":1,"19":1,"20":1,"22":13,"45":2,"65":2}}],["backgroundcolor=",{"2":{"102":1}}],["back",{"2":{"82":1}}],["backend",{"2":{"77":2,"82":8}}],["backendlist",{"2":{"48":1,"82":1}}],["backend=",{"2":{"2":1,"16":2,"78":1}}],["based",{"0":{"97":1},"2":{"83":1}}],["base",{"0":{"25":1},"2":{"4":4,"5":4,"6":2,"18":1,"20":1,"25":4,"29":3,"32":9,"33":6,"44":1,"45":5,"47":4,"79":6,"83":1,"89":2}}],["by=",{"2":{"42":2,"82":2}}],["bytes",{"2":{"8":1,"9":1,"14":1,"16":3,"17":1,"18":1,"19":1,"21":3,"22":1,"25":1,"27":1,"33":3,"34":1,"37":1,"42":2,"47":2,"54":1,"63":2,"76":4,"79":1,"89":1}}],["by",{"0":{"4":1,"5":1},"2":{"2":1,"10":2,"14":1,"16":1,"22":1,"28":1,"29":1,"33":1,"36":1,"37":6,"40":2,"42":1,"49":1,"53":1,"54":1,"55":1,"56":1,"58":1,"68":3,"70":1,"71":1,"77":1,"80":2,"82":12,"83":6,"85":1,"86":1,"88":1,"92":1}}],["beware",{"2":{"94":1}}],["best",{"2":{"83":1,"96":1}}],["become",{"2":{"82":1}}],["because",{"2":{"1":1,"13":1,"14":1,"16":1}}],["before",{"2":{"79":1,"82":1,"86":1}}],["belonging",{"2":{"69":1}}],["belongs",{"2":{"22":1}}],["being",{"2":{"46":1}}],["been",{"2":{"40":1,"80":1}}],["between",{"2":{"26":1,"27":1,"37":1,"39":1,"40":2,"65":1,"74":1,"76":1,"82":1}}],["begin",{"2":{"23":1}}],["be",{"2":{"0":5,"2":1,"3":1,"4":1,"13":1,"15":1,"16":2,"22":1,"24":1,"37":1,"40":1,"41":1,"42":2,"45":1,"46":1,"50":1,"58":2,"59":1,"60":1,"66":1,"68":1,"70":2,"77":1,"78":1,"79":1,"82":22,"83":9,"85":1,"90":1,"94":1,"98":1}}],["628915",{"2":{"89":1}}],["626919",{"2":{"89":1}}],["624506",{"2":{"89":1}}],["625389",{"2":{"27":1}}],["696114",{"2":{"89":1}}],["69",{"2":{"58":1}}],["69085",{"2":{"56":1}}],["600",{"2":{"91":1,"93":1,"99":1,"100":1,"101":1}}],["607478",{"2":{"89":1}}],["606561",{"2":{"89":1}}],["60265",{"2":{"58":1,"98":1}}],["60918",{"2":{"56":1}}],["60175",{"2":{"56":1}}],["647957",{"2":{"80":2}}],["64976",{"2":{"56":1}}],["642",{"2":{"50":1}}],["645758",{"2":{"25":1}}],["665833",{"2":{"89":1}}],["665723",{"2":{"25":1}}],["662295",{"2":{"27":1}}],["634856",{"2":{"89":1}}],["6326",{"2":{"60":1}}],["6378137",{"2":{"60":1}}],["63006",{"2":{"56":1}}],["630469",{"2":{"27":1}}],["63593",{"2":{"27":1}}],["655204",{"2":{"89":1}}],["65105",{"2":{"56":1}}],["658321",{"2":{"27":1}}],["652339",{"2":{"25":1}}],["6122",{"2":{"56":1}}],["61197",{"2":{"56":1}}],["611084",{"2":{"25":1}}],["619",{"2":{"51":1,"52":1}}],["617023",{"2":{"26":1}}],["6×6×25",{"2":{"26":2}}],["6×2",{"2":{"9":1}}],["673373",{"2":{"25":1}}],["671662",{"2":{"22":1}}],["672",{"2":{"21":1}}],["686278",{"2":{"27":1}}],["687891",{"2":{"26":1}}],["684389",{"2":{"22":1}}],["685454",{"2":{"22":1}}],["6",{"2":{"2":6,"4":6,"5":6,"6":6,"8":4,"9":5,"16":8,"22":1,"34":1,"37":1,"58":1,"98":1}}],["1e8",{"2":{"83":1}}],["1f2",{"2":{"47":1}}],["1984",{"2":{"60":1}}],["1983",{"2":{"54":1}}],["1980",{"2":{"54":1}}],["193109",{"2":{"26":1}}],["197238",{"2":{"25":1}}],["1921",{"2":{"80":2}}],["19241",{"2":{"56":1}}],["192",{"2":{"19":1,"100":1}}],["19",{"2":{"16":16,"64":3,"65":5}}],["18554488323324722",{"2":{"92":1}}],["18583",{"2":{"56":1}}],["183083",{"2":{"89":1}}],["18892",{"2":{"56":1}}],["18434",{"2":{"56":1}}],["180×170",{"2":{"63":1}}],["180×170×24",{"2":{"59":1,"62":2}}],["180",{"2":{"40":2,"60":1,"65":5,"100":1}}],["180ºe",{"2":{"40":1}}],["181798",{"2":{"27":1}}],["18",{"2":{"16":18}}],["142733",{"2":{"89":1}}],["14286",{"2":{"22":1}}],["1437",{"2":{"56":1}}],["145747",{"2":{"22":1}}],["14",{"2":{"16":20,"27":1}}],["13853500608021024",{"2":{"92":1}}],["136",{"2":{"59":1,"61":1,"72":1,"78":1}}],["1363",{"2":{"51":1,"52":1}}],["13z",{"2":{"58":2,"98":1}}],["1372",{"2":{"51":1,"52":1}}],["13",{"2":{"16":20,"27":1,"40":6,"59":1,"61":1,"72":1,"78":1}}],["170",{"2":{"66":1}}],["179",{"2":{"60":1,"65":5}}],["17578125",{"2":{"60":2}}],["17593",{"2":{"22":1}}],["17434",{"2":{"56":1}}],["174934",{"2":{"25":1}}],["17852",{"2":{"56":1}}],["17863",{"2":{"56":1}}],["178603",{"2":{"22":1}}],["17647",{"2":{"56":1}}],["1762",{"2":{"51":1,"52":1}}],["17t00",{"2":{"54":1}}],["17",{"2":{"14":1,"16":22,"42":1,"64":1}}],["16t00",{"2":{"59":4,"61":2,"62":4,"63":4,"64":6,"65":10,"72":2,"78":2}}],["16t12",{"2":{"54":1}}],["16824",{"2":{"56":1}}],["16581",{"2":{"56":1}}],["165853",{"2":{"27":1}}],["16631",{"2":{"56":1}}],["166212",{"2":{"25":1}}],["16713",{"2":{"56":1}}],["167676",{"2":{"22":1}}],["16258",{"2":{"56":1}}],["162134",{"2":{"27":1}}],["1644",{"2":{"56":1}}],["164",{"2":{"47":1}}],["169284",{"2":{"25":1}}],["16",{"2":{"10":1,"12":1,"13":1,"16":20,"22":1,"29":1,"59":2,"61":1,"62":2,"63":4,"64":3,"65":5,"72":1,"78":1}}],["157268",{"2":{"89":1}}],["159",{"2":{"64":1}}],["15644",{"2":{"56":1}}],["15532",{"2":{"56":1}}],["151146",{"2":{"25":1}}],["152534",{"2":{"25":1}}],["15394",{"2":{"22":1}}],["15×10×30",{"2":{"16":1}}],["15×10",{"2":{"16":2}}],["15",{"2":{"10":1,"16":25,"22":6,"23":1,"27":4,"29":1,"30":1,"35":2,"42":1,"89":1}}],["128",{"2":{"102":1}}],["128204",{"2":{"25":1}}],["1242",{"2":{"56":1}}],["12575",{"2":{"56":1}}],["12568",{"2":{"26":1}}],["121947",{"2":{"22":1}}],["12320189493957617",{"2":{"92":1}}],["123",{"2":{"17":1,"21":2}}],["1200",{"2":{"99":1,"100":1,"101":1}}],["120997",{"2":{"22":1}}],["120",{"2":{"16":1}}],["12",{"2":{"8":4,"16":20,"27":1,"37":10,"39":3,"40":4,"59":2,"61":1,"62":2,"63":2,"64":3,"65":5,"72":1,"78":1,"91":1,"92":2}}],["1=5",{"2":{"2":1}}],["1159914",{"2":{"76":1}}],["119",{"2":{"63":1}}],["1181",{"2":{"56":1}}],["112319",{"2":{"55":12}}],["114815",{"2":{"55":6}}],["113553",{"2":{"55":3}}],["113",{"2":{"47":1}}],["11",{"2":{"2":6,"4":6,"5":6,"6":6,"8":1,"16":18,"27":1,"51":4,"52":4,"56":4,"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1}}],["1",{"2":{"2":12,"4":19,"5":20,"6":22,"8":5,"9":3,"10":8,"11":3,"12":7,"13":5,"14":6,"16":24,"17":10,"18":9,"19":8,"20":5,"21":17,"22":34,"23":3,"25":1,"26":7,"27":6,"29":15,"30":4,"32":3,"33":3,"34":8,"35":8,"37":23,"39":10,"40":8,"41":15,"42":14,"44":1,"45":3,"46":1,"47":5,"51":4,"52":2,"54":6,"55":11,"56":55,"58":4,"59":8,"61":4,"62":8,"63":13,"64":18,"65":15,"66":2,"72":4,"78":11,"79":2,"80":2,"83":1,"89":11,"91":2,"92":5,"93":5,"98":3,"100":4,"101":2,"102":5}}],["1095",{"2":{"92":1}}],["10989",{"2":{"55":6}}],["10mb",{"2":{"82":2}}],["1083",{"2":{"56":1}}],["108696",{"2":{"55":6}}],["103704",{"2":{"55":3}}],["100",{"2":{"40":13}}],["1000",{"2":{"0":1,"100":1,"101":1}}],["10×170×24",{"2":{"64":1}}],["10×10×24",{"2":{"64":2}}],["10×10×8",{"2":{"37":1}}],["10×10×12",{"2":{"37":1}}],["10×10×36",{"2":{"37":1}}],["10×10×5",{"2":{"32":1}}],["10×10",{"2":{"33":3,"34":1,"37":1}}],["10×15×20",{"2":{"41":1}}],["10×15",{"2":{"14":1,"22":2,"42":1,"89":1}}],["10×20×5",{"2":{"29":1}}],["10x15",{"2":{"22":1}}],["101524",{"2":{"22":1}}],["10",{"2":{"2":14,"4":16,"5":18,"6":17,"10":3,"12":1,"13":1,"14":1,"16":21,"22":15,"23":3,"25":2,"27":4,"29":6,"30":2,"32":8,"33":12,"34":5,"35":4,"37":16,"39":10,"41":3,"42":2,"44":2,"45":4,"58":1,"59":1,"62":2,"63":3,"64":6,"65":5,"78":2,"88":1,"89":3}}],["garbage",{"2":{"83":1}}],["gc",{"2":{"83":2}}],["gt",{"2":{"82":1,"83":3,"86":1}}],["gdalworkshop",{"2":{"60":1}}],["gdal",{"0":{"60":1},"2":{"60":1}}],["gb",{"2":{"58":1}}],["gn",{"2":{"58":1,"98":2}}],["gs",{"2":{"58":1,"98":2}}],["ggplot2",{"2":{"56":1}}],["github",{"2":{"50":2,"60":1,"84":1}}],["gives",{"2":{"22":1}}],["given",{"2":{"2":1,"22":2,"68":1,"70":1,"77":1,"82":6,"83":3,"89":1}}],["globalproperties=dict",{"2":{"83":1}}],["global",{"2":{"82":1,"83":1}}],["glmakie",{"2":{"42":2,"98":2}}],["glue",{"2":{"8":1}}],["gradient",{"2":{"99":1,"100":1,"101":1,"102":1}}],["gradually",{"2":{"79":1}}],["grey25",{"2":{"102":1}}],["grey15",{"2":{"42":1,"56":1}}],["greenwich",{"2":{"60":1}}],["green",{"2":{"60":1,"69":1}}],["grouped",{"2":{"82":1}}],["groups",{"2":{"55":1}}],["groupby",{"0":{"51":1,"54":1},"1":{"52":1,"53":1,"55":1,"56":1},"2":{"48":1,"50":1,"51":6,"52":1,"53":1,"54":3,"55":3,"56":3,"82":1,"92":1}}],["group",{"0":{"48":1},"1":{"49":1,"50":1,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1},"2":{"51":1,"53":1,"54":2,"69":1,"82":3}}],["grouping",{"2":{"42":2,"53":2}}],["grid=false",{"2":{"56":1}}],["grid",{"2":{"23":1,"68":1,"82":1}}],["gridchunks",{"2":{"2":3,"4":1,"5":1,"6":1,"82":1,"83":1}}],["go",{"2":{"86":2}}],["going",{"2":{"83":1}}],["good",{"2":{"56":1}}],["goal",{"2":{"21":1,"33":1,"49":1}}],["goes",{"2":{"16":2,"82":1,"83":1}}],["guide",{"2":{"10":2,"12":1,"13":1,"23":1,"29":3,"30":1}}],["gen",{"2":{"16":6}}],["general",{"0":{"95":1},"2":{"82":1}}],["generated",{"2":{"59":1,"61":1,"72":1,"78":1,"83":1}}],["generate",{"2":{"16":2,"37":1,"39":1,"40":1,"82":1,"86":1}}],["generic",{"2":{"16":2,"18":1,"19":1,"21":1,"29":1}}],["getting",{"0":{"87":1},"1":{"88":1,"89":1,"90":1}}],["gettarrayaxes",{"2":{"46":1}}],["getarrayinfo",{"2":{"83":1}}],["getaxis",{"2":{"34":1,"42":2,"82":1}}],["getloopchunks",{"2":{"83":1}}],["getloopcachesize",{"2":{"83":1}}],["getouttype",{"2":{"83":1}}],["getoutaxis",{"2":{"83":1}}],["getfrontperm",{"2":{"83":1}}],["gets",{"2":{"82":1,"83":1}}],["get",{"0":{"66":1},"2":{"10":1,"18":1,"32":1,"50":1,"54":1,"62":1,"64":1,"66":1,"83":3,"89":1,"92":1,"98":1}}],["geoaxis",{"2":{"100":1,"101":1}}],["geometrybasics",{"2":{"98":1}}],["geomakie",{"2":{"98":1,"100":2,"101":1}}],["geogcs",{"2":{"60":1}}],["geojson",{"0":{"60":1}}],["geotiff",{"0":{"60":1}}],["geo",{"2":{"1":1}}],["g",{"2":{"7":1,"10":1,"11":1,"13":1,"16":4,"23":1,"29":1,"51":26,"52":2,"53":2,"54":2,"55":1,"56":18,"66":1,"68":1,"71":1,"82":5,"98":2}}],["2π",{"2":{"91":1}}],["2×3",{"2":{"89":1}}],["2×2×3",{"2":{"4":1,"5":1,"6":1}}],["2×2",{"2":{"2":3,"47":1}}],["2x2l31",{"2":{"59":1,"61":1,"72":1,"78":1}}],["2f0",{"2":{"47":1}}],["2963858",{"2":{"76":1}}],["298",{"2":{"60":1}}],["29816",{"2":{"56":1}}],["29473",{"2":{"56":1}}],["29564",{"2":{"56":1}}],["299637",{"2":{"26":1}}],["29",{"2":{"26":2}}],["283788",{"2":{"89":1}}],["28422753251364",{"2":{"58":4,"98":2}}],["28008",{"2":{"56":1}}],["2894",{"2":{"56":1}}],["288",{"2":{"54":1}}],["2818",{"2":{"51":1,"52":1}}],["28",{"2":{"26":2,"37":1,"51":3,"52":3,"56":3}}],["28571",{"2":{"22":2}}],["2857142857142857",{"2":{"10":1,"12":1,"13":1,"14":1,"22":3,"29":2,"30":1,"35":1,"41":3,"42":1,"89":1}}],["2747",{"2":{"56":1}}],["273",{"2":{"54":1}}],["276",{"2":{"54":2}}],["270",{"2":{"54":1}}],["275×205×9",{"2":{"51":4}}],["271209",{"2":{"27":1}}],["27",{"2":{"26":2,"51":1,"52":1,"56":1}}],["2d",{"2":{"19":5,"20":3,"21":2}}],["265107",{"2":{"89":1}}],["265797",{"2":{"25":1}}],["26274",{"2":{"56":1}}],["268675",{"2":{"26":1}}],["26",{"2":{"16":2,"26":2,"58":2,"98":1}}],["25526503219661817",{"2":{"92":1}}],["258509",{"2":{"89":1}}],["257223563",{"2":{"60":1}}],["25153",{"2":{"56":1}}],["25",{"2":{"16":4,"26":10,"37":1,"91":1}}],["245867",{"2":{"89":1}}],["24375",{"2":{"56":1}}],["2434",{"2":{"56":1}}],["241882",{"2":{"25":1}}],["24",{"2":{"16":6,"42":1,"63":2}}],["240588",{"2":{"89":1}}],["240",{"2":{"14":1,"16":1,"27":1}}],["235899",{"2":{"89":1}}],["235707",{"2":{"89":1}}],["234116",{"2":{"89":1}}],["237824",{"2":{"27":1}}],["23",{"2":{"16":8,"41":3,"56":1,"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1}}],["223574",{"2":{"80":2}}],["22211",{"2":{"56":1}}],["229281",{"2":{"27":1}}],["225542",{"2":{"26":1}}],["22",{"2":{"16":10}}],["21t06",{"2":{"58":2,"98":1}}],["21t19",{"2":{"46":4}}],["2101",{"2":{"58":2,"98":1}}],["21056",{"2":{"26":1}}],["21699",{"2":{"56":1}}],["21209",{"2":{"56":1}}],["215988",{"2":{"27":1}}],["215973",{"2":{"26":1}}],["21",{"2":{"16":12,"51":8,"52":8,"56":8}}],["2=10",{"2":{"2":1}}],["2",{"2":{"2":3,"4":8,"5":9,"6":10,"8":1,"9":1,"11":3,"12":2,"13":1,"14":1,"17":1,"18":2,"19":2,"20":1,"22":9,"23":1,"25":2,"27":3,"29":1,"32":3,"33":6,"34":3,"37":1,"42":6,"45":4,"46":1,"47":8,"51":1,"52":1,"56":40,"58":3,"59":3,"61":1,"62":4,"63":2,"64":2,"65":5,"66":2,"72":1,"78":2,"79":2,"82":2,"89":5,"98":3,"100":2,"102":1}}],["2003",{"2":{"59":1,"61":1,"72":1,"78":1}}],["2004",{"2":{"59":1,"61":1,"72":1,"78":1}}],["2005",{"2":{"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1}}],["2002",{"2":{"59":3,"61":2,"62":2,"63":2,"64":3,"65":5,"72":2,"78":1}}],["2001",{"2":{"59":3,"61":2,"62":2,"63":3,"64":3,"65":5,"72":2,"78":1}}],["2000",{"2":{"26":4}}],["2019",{"2":{"58":2,"98":1}}],["2015",{"2":{"58":2,"59":1,"61":1,"72":1,"78":1,"98":2}}],["20×10×15",{"2":{"41":2}}],["20×10×15×2",{"2":{"35":1,"89":1}}],["20ºn",{"2":{"40":1}}],["203714",{"2":{"26":1}}],["2023",{"2":{"91":1,"92":2}}],["2021",{"2":{"37":9,"91":1,"92":2,"93":1}}],["2020",{"2":{"37":5,"39":3,"40":4,"46":8,"70":1}}],["2024",{"2":{"26":4}}],["2022",{"2":{"10":4,"12":2,"13":2,"14":2,"16":8,"17":4,"18":2,"20":2,"21":6,"22":6,"23":2,"29":6,"30":2,"37":5,"39":3,"40":4,"93":1}}],["20",{"2":{"2":7,"4":10,"5":10,"6":10,"16":14,"29":2,"35":4,"40":2,"41":3,"42":1,"56":1,"78":2,"89":3}}],["542309",{"2":{"89":1}}],["540514",{"2":{"26":1}}],["55",{"2":{"92":1}}],["552072",{"2":{"89":1}}],["551732",{"2":{"22":1}}],["515079",{"2":{"89":1}}],["5173",{"2":{"86":1}}],["514979",{"2":{"22":1}}],["5e8",{"2":{"77":1,"82":1}}],["5743",{"2":{"56":1}}],["57873",{"2":{"56":1}}],["57695",{"2":{"56":1}}],["57143",{"2":{"22":2}}],["56632",{"2":{"56":1}}],["561549",{"2":{"26":1}}],["52908",{"2":{"89":1}}],["520406",{"2":{"80":2}}],["520744",{"2":{"27":1}}],["52419",{"2":{"56":1}}],["521769",{"2":{"27":1}}],["521991",{"2":{"26":1}}],["522262",{"2":{"27":1}}],["59212",{"2":{"56":1}}],["59085",{"2":{"56":1}}],["594514",{"2":{"25":1}}],["595405",{"2":{"22":1}}],["5×4",{"2":{"80":2}}],["5×4×5",{"2":{"79":1}}],["5×4×3",{"2":{"21":2}}],["5×4×3×2",{"2":{"17":1,"18":1}}],["5×6×36",{"2":{"37":1}}],["5×6",{"2":{"27":2}}],["5×10",{"2":{"25":2}}],["507176",{"2":{"89":1}}],["508557",{"2":{"22":1}}],["50089",{"2":{"56":1}}],["500",{"2":{"0":1,"56":1,"102":2}}],["500mb",{"2":{"0":2}}],["531092",{"2":{"89":1}}],["53",{"2":{"63":1}}],["536273",{"2":{"27":1}}],["536399",{"2":{"22":1}}],["538981",{"2":{"22":1}}],["587477",{"2":{"89":1}}],["5843",{"2":{"51":1,"52":1}}],["581312",{"2":{"25":1}}],["58",{"2":{"16":2}}],["5",{"2":{"2":7,"4":16,"5":18,"6":7,"10":2,"12":3,"13":2,"14":1,"16":6,"17":2,"21":4,"22":10,"23":1,"25":2,"27":4,"29":5,"30":1,"32":4,"34":1,"35":2,"37":3,"39":4,"41":3,"42":2,"45":4,"56":5,"59":4,"61":2,"62":4,"63":3,"64":10,"65":10,"66":19,"72":2,"78":4,"79":6,"80":3,"89":2,"90":1,"93":2,"102":2}}],["rotate",{"2":{"102":1}}],["row",{"2":{"71":1,"82":1}}],["rowgap",{"2":{"56":1}}],["right",{"2":{"91":1,"93":1}}],["rights",{"2":{"80":1}}],["r",{"2":{"79":1}}],["r1i1p1f1",{"2":{"58":2,"98":3}}],["running",{"2":{"86":1}}],["run",{"2":{"23":1,"86":3}}],["runs",{"2":{"13":1,"83":1}}],["rafaqz",{"2":{"50":1}}],["raw",{"2":{"50":1,"60":1}}],["rasm",{"2":{"50":2}}],["ras",{"2":{"26":3}}],["rasters",{"2":{"26":2}}],["raster",{"0":{"26":1},"2":{"22":11,"26":5}}],["ranges",{"0":{"64":1},"2":{"34":1,"61":1}}],["range",{"2":{"10":2,"16":2,"17":2,"22":2,"23":2,"29":2,"35":3,"37":1,"83":1,"89":3,"91":1}}],["randn",{"2":{"91":1}}],["random",{"2":{"17":2,"40":2,"46":3,"89":1}}],["rand",{"2":{"2":1,"4":3,"5":3,"6":3,"8":2,"9":2,"10":1,"17":1,"19":1,"21":3,"22":1,"23":1,"25":1,"26":1,"27":1,"29":2,"30":1,"32":1,"33":2,"35":2,"40":3,"42":1,"44":1,"45":3,"78":1,"80":1,"89":2}}],["relational",{"2":{"68":1}}],["related",{"2":{"50":1}}],["recommend",{"2":{"90":1}}],["recommended",{"2":{"65":1}}],["rechunking",{"2":{"83":1}}],["recalculate",{"2":{"83":1}}],["recal",{"2":{"83":1}}],["recently",{"2":{"0":1}}],["rewrote",{"2":{"58":1,"59":1,"61":1,"72":1,"78":1,"98":1}}],["realization",{"2":{"59":1,"61":1,"72":1,"78":1}}],["realm",{"2":{"58":1,"98":1}}],["readcubedata",{"2":{"40":2,"82":1}}],["read",{"0":{"57":1,"58":1,"59":1,"60":1},"1":{"58":1,"59":1,"60":1},"2":{"1":1,"40":1,"50":1,"57":1,"60":1,"64":1,"82":1}}],["red",{"2":{"56":1,"60":1,"69":1}}],["reduce",{"2":{"10":1,"14":1,"19":1}}],["reverse",{"2":{"56":1}}],["reverseordered",{"2":{"9":1,"60":1,"89":1}}],["rename",{"2":{"45":1}}],["resets",{"2":{"82":1,"83":1}}],["respectively",{"2":{"69":1}}],["reshape",{"2":{"37":1,"39":2}}],["result",{"2":{"34":1,"42":1}}],["resulting",{"2":{"8":1,"9":1,"14":1,"82":1,"83":1}}],["results",{"0":{"93":1},"2":{"2":1,"5":1,"56":2,"82":1,"83":1}}],["references",{"2":{"59":1,"61":1,"72":1,"78":1}}],["reference",{"0":{"81":1},"1":{"82":1,"83":1},"2":{"46":1}}],["ref",{"2":{"35":1,"82":1,"83":1}}],["rebuild",{"0":{"33":1},"2":{"32":1,"33":2,"46":2,"50":1}}],["repeat",{"2":{"91":1}}],["repl",{"2":{"88":1}}],["replace",{"2":{"23":1,"50":1,"102":1}}],["repository",{"2":{"84":1,"94":1}}],["reports",{"2":{"84":1}}],["reproduces",{"2":{"49":1}}],["represented",{"2":{"82":1,"96":1}}],["represents",{"2":{"69":1}}],["representing",{"2":{"22":2,"83":1}}],["representation",{"2":{"1":1,"82":2,"83":3}}],["re",{"2":{"22":1}}],["registration",{"2":{"83":2}}],["registered",{"2":{"83":1}}],["regions",{"2":{"22":8}}],["region",{"2":{"22":12}}],["regular",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":3,"16":9,"17":3,"18":3,"19":2,"20":2,"21":9,"22":8,"25":2,"26":6,"27":4,"29":9,"30":3,"32":9,"33":6,"34":2,"35":3,"37":14,"39":6,"40":4,"41":9,"42":3,"44":1,"45":5,"47":4,"51":2,"52":2,"56":6,"58":2,"59":4,"60":2,"61":2,"62":4,"63":2,"64":3,"65":10,"66":2,"72":2,"78":5,"79":6,"89":5,"92":1,"98":1}}],["regularchunks",{"2":{"2":6,"4":3,"5":3,"6":3}}],["returned",{"2":{"82":1}}],["returns",{"2":{"82":5,"83":2}}],["return",{"2":{"18":1,"19":1,"21":2,"22":4,"51":1,"82":1,"83":1,"92":1}}],["requests",{"2":{"84":1}}],["requested",{"2":{"13":1}}],["requirements",{"2":{"59":1,"61":1,"72":1,"78":1}}],["required",{"2":{"37":1}}],["requires",{"2":{"16":1}}],["removes",{"2":{"83":1}}],["remove",{"2":{"52":1}}],["removed",{"2":{"15":1,"83":1}}],["remote",{"2":{"0":1}}],["http",{"2":{"86":1}}],["https",{"2":{"50":2,"59":1,"60":1,"61":1,"69":1,"72":1}}],["html",{"2":{"69":1}}],["hr",{"2":{"58":1,"98":2}}],["history",{"2":{"58":2,"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1,"98":1}}],["hidedecorations",{"2":{"56":1}}],["highclip",{"2":{"56":4}}],["high",{"2":{"46":4}}],["hm",{"2":{"56":8}}],["hold",{"2":{"82":1}}],["holds",{"2":{"82":1,"83":1}}],["ho",{"0":{"46":1}}],["however",{"2":{"24":1,"37":1}}],["how",{"0":{"35":1,"36":1,"41":1,"42":1,"43":1},"1":{"37":1,"38":1,"39":1,"40":1,"44":1,"45":1},"2":{"6":1,"7":1,"10":1,"17":2,"18":1,"24":1,"28":1,"31":1,"42":1,"57":1,"80":1,"82":1,"94":1,"96":1}}],["happens",{"2":{"83":1}}],["had",{"2":{"80":1,"82":1,"83":1}}],["hamman",{"2":{"49":1,"56":1}}],["handled",{"2":{"83":1}}],["handle",{"2":{"68":1,"83":1}}],["handling",{"2":{"9":1,"82":1}}],["handy",{"2":{"42":1}}],["has",{"2":{"8":1,"9":1,"22":1,"26":1,"27":1,"40":1,"49":1,"52":1,"83":1}}],["half",{"2":{"8":5}}],["have",{"2":{"6":1,"9":1,"22":1,"29":1,"38":1,"40":2,"70":1,"82":3}}],["having",{"2":{"1":1,"22":1}}],["help",{"2":{"82":1,"83":2}}],["height",{"2":{"58":2,"98":1}}],["heatmap",{"0":{"99":1},"2":{"42":1,"56":3,"99":1}}],["hereby",{"2":{"22":1}}],["here",{"2":{"8":1,"9":1,"13":1,"16":2,"17":1,"21":1,"22":1,"36":1,"42":1,"64":1,"79":1,"85":2}}],["hence",{"2":{"1":1}}],["yeesian",{"2":{"60":1}}],["years",{"2":{"37":1,"91":1,"92":1}}],["year",{"2":{"8":4,"93":1}}],["yyyy",{"2":{"59":2,"61":2,"72":2,"78":2}}],["ylabel=",{"2":{"91":1,"93":1}}],["ylabel",{"2":{"56":3}}],["yasxa",{"2":{"40":6}}],["yaxcolumn",{"2":{"83":1}}],["yaxconvert",{"2":{"27":2}}],["yaxdefaults",{"2":{"83":1}}],["yaxarraybase",{"2":{"27":1,"82":1,"83":1}}],["yaxarray",{"0":{"11":1,"17":1,"29":1,"36":1,"37":1,"47":1,"62":1,"68":1},"1":{"18":1,"19":1,"20":1,"37":1,"38":1,"39":1,"40":1},"2":{"2":1,"4":4,"5":4,"6":4,"7":1,"8":3,"9":3,"10":2,"12":1,"13":1,"14":2,"16":8,"17":2,"18":1,"19":2,"20":1,"21":5,"22":3,"23":1,"25":4,"26":3,"27":5,"29":5,"30":2,"32":3,"33":5,"34":1,"35":3,"36":1,"37":15,"39":4,"40":6,"41":3,"42":4,"44":2,"45":4,"46":4,"47":4,"50":2,"51":7,"52":1,"54":9,"55":1,"56":3,"58":2,"59":2,"60":1,"61":2,"62":2,"63":3,"64":3,"65":5,"68":1,"70":1,"72":1,"73":1,"75":1,"78":2,"79":4,"82":10,"83":3,"89":5,"92":2,"96":1,"98":1}}],["yaxarrays",{"0":{"0":1,"1":1,"2":1,"7":1,"10":1,"16":1,"24":1,"28":1,"43":1,"48":1,"57":1,"61":1,"72":1,"84":1,"95":1,"96":1},"1":{"2":1,"3":1,"4":1,"5":1,"6":1,"8":1,"9":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"25":1,"26":1,"27":1,"29":1,"30":1,"44":1,"45":1,"49":1,"50":1,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1,"58":1,"59":1,"60":1,"62":1,"63":1,"64":1,"65":1,"66":1,"73":1,"74":1,"75":1,"76":1,"77":1,"78":1,"79":1,"80":1,"85":1,"86":1},"2":{"0":3,"2":1,"4":1,"5":1,"6":1,"8":1,"9":1,"10":2,"16":4,"17":1,"22":1,"23":2,"24":2,"25":1,"29":1,"32":1,"33":1,"35":1,"36":1,"37":1,"38":1,"39":2,"40":4,"44":1,"45":1,"46":2,"48":1,"57":1,"58":1,"59":1,"60":2,"61":1,"67":1,"69":1,"72":1,"77":1,"79":1,"82":27,"83":28,"84":1,"86":1,"88":3,"89":3,"90":2,"92":1,"94":1,"95":1,"98":1}}],["yax",{"2":{"0":1,"17":1,"18":1,"19":1,"20":3,"21":4,"33":1,"46":3,"47":2}}],["y",{"2":{"4":2,"5":3,"6":2,"26":4,"27":3,"37":4,"41":4,"51":2,"52":1,"56":3,"60":1,"68":1,"89":5}}],["you",{"2":{"1":1,"23":1,"36":1,"40":3,"45":2,"74":1,"82":1,"83":2,"85":1,"86":2,"88":2,"90":1,"94":3,"96":2}}],["yourself",{"2":{"86":1}}],["your",{"2":{"1":2,"40":2,"77":2,"79":1,"82":1,"85":4,"86":4}}],["circshift",{"2":{"100":1}}],["ct1",{"2":{"98":4,"99":1}}],["cycle",{"0":{"91":1,"93":1},"1":{"92":1,"93":1},"2":{"92":4}}],["cycle=12",{"2":{"51":2,"52":1,"54":2,"55":2,"56":3}}],["cdata",{"2":{"83":1}}],["center",{"2":{"82":1,"91":1,"93":1}}],["certain",{"2":{"61":2,"83":1}}],["cell",{"2":{"58":2,"59":1,"62":2,"63":3,"64":3,"65":5,"82":1}}],["cf",{"2":{"58":2,"59":2,"61":2,"72":2,"78":2,"98":2}}],["cftime",{"2":{"51":4,"54":7,"55":5,"56":5,"59":6,"61":3,"62":6,"63":7,"64":9,"65":15,"72":3,"78":3}}],["cmpcachmisses",{"2":{"83":1}}],["cm4",{"2":{"59":4,"61":4,"72":4,"78":4}}],["cmip",{"2":{"58":1,"98":1}}],["cmip6",{"2":{"58":3,"98":6}}],["cmor",{"2":{"58":2,"59":3,"61":2,"62":2,"63":3,"64":3,"65":5,"72":2,"78":2,"98":1}}],["c54",{"2":{"56":1}}],["cb",{"2":{"56":1}}],["cbar",{"2":{"42":1}}],["cgrad",{"2":{"42":1}}],["cl",{"2":{"100":1,"101":1}}],["cl=lines",{"2":{"100":1,"101":1}}],["clean",{"2":{"83":1}}],["cleanme",{"2":{"83":4}}],["cleaner",{"2":{"82":2}}],["clevel=n",{"2":{"74":1}}],["climate",{"2":{"59":1,"61":1,"72":1,"78":1}}],["closedinterval",{"2":{"65":1}}],["closed",{"0":{"65":1},"2":{"65":3}}],["close",{"2":{"46":4}}],["cloud",{"2":{"11":1,"58":1}}],["classes=classes",{"2":{"42":1}}],["classes",{"2":{"42":8}}],["classification",{"2":{"42":2}}],["class",{"2":{"42":3}}],["clustermanagers",{"2":{"23":2}}],["cluster",{"2":{"23":1}}],["cpus",{"2":{"23":1}}],["cpu",{"2":{"23":1}}],["c",{"2":{"22":11,"32":5,"33":7,"34":3,"42":2,"45":2,"69":1,"74":1,"76":4,"82":3,"83":3,"92":4,"98":2}}],["custom",{"2":{"29":1,"82":1}}],["current",{"2":{"22":2,"69":1,"82":1,"93":1}}],["currently",{"2":{"16":1,"46":1,"50":1,"94":1}}],["cubeaxis",{"2":{"83":1}}],["cubeaxes",{"2":{"82":1}}],["cubedir",{"2":{"83":1}}],["cube2",{"2":{"82":1}}],["cube1",{"2":{"82":1}}],["cubelist",{"2":{"82":1}}],["cubefittable",{"2":{"42":2,"82":1}}],["cubetable",{"0":{"42":1},"2":{"42":3,"82":3}}],["cubes",{"0":{"18":1,"19":1,"35":1},"2":{"9":2,"17":1,"21":1,"35":2,"40":1,"41":2,"42":1,"62":1,"70":1,"82":18,"83":9}}],["cube",{"0":{"32":1,"34":1,"36":1,"70":1,"92":1},"1":{"33":1,"37":1,"38":1,"39":1,"40":1},"2":{"2":1,"4":1,"5":1,"6":1,"16":11,"17":2,"19":2,"21":2,"32":1,"34":1,"36":2,"40":1,"41":1,"42":2,"50":1,"70":3,"79":1,"82":34,"83":19,"96":1}}],["chose",{"2":{"69":1}}],["child",{"2":{"58":1,"98":1}}],["check",{"2":{"16":1,"79":1,"90":1}}],["changed",{"2":{"90":1,"94":1}}],["change",{"2":{"10":1,"82":1,"83":1}}],["chunkoffset",{"2":{"83":1}}],["chunksize`",{"2":{"83":1}}],["chunksizes",{"2":{"82":2}}],["chunksize",{"2":{"82":1,"83":3}}],["chunks",{"0":{"4":1},"2":{"2":5,"4":1,"5":1,"6":2,"82":4,"83":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,"82":4,"83":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,"82":4,"83":4}}],["criteria",{"2":{"42":1}}],["creation",{"2":{"47":1}}],["creating",{"0":{"22":1},"2":{"10":1,"33":1,"37":1,"79":1,"85":1}}],["createdataset",{"2":{"83":2}}],["created",{"2":{"83":2}}],["creates",{"2":{"42":1,"82":2,"83":1}}],["create",{"0":{"28":1,"29":1,"30":1,"47":1},"1":{"29":1,"30":1},"2":{"10":1,"16":1,"22":2,"28":1,"29":1,"33":1,"35":1,"37":2,"42":1,"46":1,"50":1,"54":1,"72":1,"77":1,"79":3,"82":1,"83":1,"89":1,"91":1}}],["crucial",{"2":{"1":1}}],["coastlines",{"2":{"100":3,"101":1}}],["cosd",{"2":{"82":1}}],["country",{"2":{"82":4}}],["country=cube2",{"2":{"82":1}}],["could",{"2":{"33":1,"46":1}}],["copies",{"2":{"83":1}}],["copied",{"2":{"79":1}}],["copybuf",{"2":{"83":2}}],["copydata",{"2":{"83":1}}],["copy",{"2":{"32":1,"82":1,"86":1}}],["coordinates",{"2":{"58":1}}],["college",{"2":{"94":1}}],["collected",{"2":{"83":1}}],["collectfromhandle",{"2":{"83":1}}],["collection",{"2":{"31":1,"68":1}}],["collect",{"2":{"25":1,"34":3,"92":1}}],["colonperm",{"2":{"83":1}}],["color=",{"2":{"93":3}}],["color",{"2":{"91":1,"100":1,"101":1,"102":1}}],["colormap=",{"2":{"56":1}}],["colormap=makie",{"2":{"42":1}}],["colormap",{"2":{"56":3,"99":1,"100":1,"101":1,"102":1}}],["colorrange=",{"2":{"56":1}}],["colorrange",{"2":{"56":3}}],["colorbar",{"2":{"42":1,"56":2}}],["column",{"2":{"71":1,"83":1}}],["colgap",{"2":{"56":1}}],["colnames",{"2":{"46":1}}],["configuration",{"2":{"83":2}}],["concatenating",{"2":{"82":1}}],["concatenates",{"2":{"82":1}}],["concatenate",{"0":{"35":1},"2":{"35":2}}],["concatenatecubes",{"0":{"9":1},"2":{"9":2,"35":2,"82":2}}],["concrete",{"2":{"82":2}}],["contributing",{"2":{"85":1}}],["contribute",{"0":{"84":1,"85":1},"1":{"85":1,"86":2}}],["contrast",{"2":{"82":1}}],["content",{"2":{"82":1}}],["contact",{"2":{"59":1,"61":1,"72":1,"78":1}}],["contains",{"2":{"65":1,"82":1,"83":1}}],["contain",{"2":{"58":1,"59":1,"83":1}}],["containing",{"0":{"47":1},"2":{"8":1,"42":1,"69":1,"70":1,"82":1}}],["continue",{"2":{"51":1}}],["consolidated=true",{"2":{"58":1,"98":1}}],["constructor",{"2":{"82":1}}],["constructs",{"2":{"82":1}}],["construct",{"0":{"46":1},"2":{"82":2}}],["consistent",{"2":{"58":1,"98":1}}],["consisting",{"2":{"8":1}}],["considering",{"2":{"49":1}}],["considered",{"2":{"42":1}}],["consider",{"2":{"17":1,"19":1,"21":1,"33":1}}],["convinient",{"2":{"31":1}}],["conventions",{"2":{"59":1,"61":1,"72":1,"78":1}}],["convenient",{"2":{"23":1}}],["conversion",{"2":{"24":1,"26":1,"27":1}}],["conversions",{"2":{"24":1}}],["converted",{"2":{"70":1}}],["convert",{"0":{"24":1,"25":1,"26":1,"27":1},"1":{"25":1,"26":1,"27":1},"2":{"24":1,"25":2,"27":2,"82":1,"83":1}}],["corresponding",{"2":{"7":1,"21":2,"22":2,"70":1,"82":1}}],["combining",{"0":{"97":1}}],["combined",{"2":{"9":2,"70":2}}],["combine",{"0":{"7":1},"1":{"8":1,"9":1},"2":{"7":1,"8":1,"9":1,"96":1}}],["comment",{"2":{"58":1}}],["common",{"2":{"40":5,"82":1}}],["com",{"2":{"50":2,"60":1}}],["compiler",{"2":{"90":1}}],["compuation",{"2":{"82":1}}],["computing",{"2":{"42":1}}],["computations",{"2":{"13":1,"41":1}}],["computation",{"0":{"23":1},"2":{"13":1,"68":1,"82":3,"83":3}}],["computed",{"2":{"83":1}}],["compute",{"0":{"10":1},"1":{"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1},"2":{"92":1}}],["compares",{"2":{"83":1}}],["comparing",{"2":{"76":1}}],["compatible",{"2":{"60":1}}],["compress",{"2":{"76":2}}],["compress=n",{"2":{"76":1}}],["compressors",{"2":{"74":1}}],["compressor=compression",{"2":{"74":1}}],["compression",{"0":{"74":1,"76":1},"2":{"74":5,"76":4}}],["comply",{"2":{"59":1,"61":1,"72":1,"78":1}}],["complexity",{"2":{"41":1}}],["complex",{"2":{"10":2,"89":1}}],["comes",{"2":{"1":1}}],["code",{"2":{"6":1,"13":1,"23":2,"31":1,"46":1}}],["captialisation",{"2":{"83":1}}],["cameracontrols",{"2":{"102":1}}],["came",{"2":{"70":1}}],["cairomakie",{"2":{"56":1,"91":2}}],["caxes",{"2":{"32":2,"82":2}}],["car",{"2":{"22":1}}],["cartesianindex",{"2":{"22":11}}],["caluclate",{"2":{"82":1}}],["calculations",{"2":{"56":1,"83":1}}],["calculating",{"2":{"14":1,"82":1}}],["calculates",{"2":{"82":1}}],["calculated",{"2":{"42":2,"51":1}}],["calculate",{"2":{"14":1,"22":1,"42":2,"48":1,"49":2,"51":1,"56":1,"83":2,"92":1}}],["calling",{"2":{"56":1}}],["called",{"2":{"16":1,"68":3,"83":1}}],["call",{"2":{"1":1,"23":1}}],["case",{"2":{"13":1,"19":1,"40":1,"53":1,"58":1}}],["cases",{"2":{"0":1,"65":1,"94":1}}],["cataxis",{"2":{"82":2}}],["categoricalaxis",{"2":{"82":1}}],["categorical",{"2":{"9":1,"17":1,"18":1,"19":1,"22":1,"35":1,"42":1,"46":4,"51":2,"52":1,"53":1,"54":2,"55":2,"56":3,"82":1,"83":1,"89":1}}],["cat",{"0":{"8":1},"2":{"8":2}}],["cache=1gb```",{"2":{"82":1}}],["cache=1e9",{"2":{"16":2}}],["cache=",{"2":{"82":1}}],["cache=5",{"2":{"82":1}}],["cache=yaxdefaults",{"2":{"82":1}}],["caches",{"2":{"0":1}}],["cachesize",{"2":{"0":2,"83":1}}],["cache",{"2":{"0":6,"77":1,"82":4,"83":7}}],["caching",{"0":{"0":1}}],["can",{"2":{"0":5,"2":1,"3":1,"13":2,"14":1,"16":3,"20":1,"22":1,"23":3,"29":2,"35":1,"36":1,"38":1,"40":1,"41":1,"42":2,"46":1,"52":1,"56":1,"58":2,"59":1,"60":1,"66":1,"68":3,"69":2,"70":1,"78":1,"79":1,"80":1,"82":11,"83":6,"85":1,"88":2,"94":2}}],["msc",{"2":{"92":3,"93":2}}],["mscarray",{"2":{"92":2}}],["md",{"2":{"85":2}}],["mpi",{"2":{"58":1,"98":2}}],["m",{"2":{"25":2}}],["miss",{"2":{"83":1}}],["missing",{"2":{"14":2,"16":6,"18":1,"21":1,"22":2,"41":1,"42":2,"59":2,"62":4,"63":6,"64":6,"65":10,"79":3,"80":1,"82":2,"83":2,"102":1}}],["minimized",{"2":{"83":1}}],["minutes",{"2":{"59":1,"62":2,"63":3,"64":3,"65":5}}],["might",{"2":{"24":1,"94":1}}],["mix",{"2":{"21":2}}],["mm",{"2":{"20":3,"59":2,"61":2,"72":2,"78":2}}],["mymean",{"2":{"23":4}}],["my",{"2":{"16":2}}],["manager",{"2":{"88":1}}],["many",{"0":{"18":1,"19":2},"2":{"18":2,"19":2,"20":4,"68":1,"83":1}}],["mahecha",{"2":{"70":1}}],["mar",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["marketdata",{"2":{"46":2}}],["master",{"2":{"50":1}}],["mask",{"2":{"42":2}}],["makie",{"2":{"56":1,"102":1}}],["making",{"2":{"11":1,"61":1}}],["make",{"2":{"39":1,"40":2,"79":1,"82":1,"83":2,"86":1,"102":1}}],["main",{"2":{"36":1,"83":1}}],["machine",{"2":{"23":1,"68":1}}],["matching",{"2":{"89":1}}],["match",{"2":{"83":2}}],["matched",{"2":{"82":1}}],["matches",{"2":{"20":1}}],["mat",{"2":{"22":4}}],["matrix",{"2":{"16":2,"22":1,"25":1,"46":1,"52":1,"56":2,"68":1,"80":2,"92":1}}],["maximal",{"2":{"83":1}}],["maximum",{"2":{"41":1,"82":1,"83":1}}],["maxbuf",{"2":{"83":1}}],["max",{"2":{"16":2,"74":1,"76":1,"77":1,"82":7,"83":2}}],["maxsize",{"2":{"0":2}}],["may",{"2":{"10":1,"15":1,"51":4,"52":2,"53":1,"54":4,"55":4,"56":6,"58":1,"59":1,"90":1}}],["maps",{"0":{"98":1},"1":{"99":1}}],["mapslice",{"2":{"23":1}}],["mapslices",{"0":{"14":1},"2":{"10":1,"13":1,"14":1,"23":1,"41":1,"92":1}}],["mapped",{"2":{"82":1}}],["mapping",{"2":{"82":1,"83":3}}],["mapcube",{"0":{"15":1},"1":{"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1},"2":{"10":1,"13":1,"15":1,"16":4,"18":1,"20":1,"21":2,"22":2,"23":3,"82":5,"83":2}}],["map",{"0":{"13":1,"41":1},"2":{"10":1,"13":2,"21":1,"22":3,"23":3,"41":4,"42":1,"51":2,"55":1,"56":1,"82":2,"89":1,"92":2}}],["moll",{"0":{"101":1}}],["mowingwindow",{"2":{"82":1}}],["movingwindow",{"2":{"82":4}}],["module",{"2":{"82":1}}],["model",{"2":{"59":1,"61":1,"69":2,"72":1,"78":1}}],["modification",{"2":{"11":1,"23":1}}],["modify",{"0":{"11":1}}],["monthday",{"2":{"92":4}}],["monthly",{"0":{"49":1}}],["month",{"2":{"37":7,"39":3,"40":4,"49":1,"51":4,"52":1,"53":1,"54":5,"55":2,"56":3,"82":1,"92":2}}],["moment",{"2":{"27":1}}],["more",{"2":{"9":1,"10":1,"36":1,"41":1,"42":1,"64":1,"65":1,"70":1,"74":1,"77":1,"82":3,"83":1,"89":1}}],["most",{"2":{"1":1,"15":1,"24":1}}],["mesh",{"2":{"102":2}}],["merely",{"2":{"79":1}}],["measured",{"2":{"69":1,"70":1}}],["measure",{"2":{"68":1}}],["measures",{"2":{"58":1}}],["means",{"0":{"49":1},"2":{"14":1,"82":1}}],["mean",{"0":{"91":1,"93":1},"1":{"92":1,"93":1},"2":{"10":1,"14":3,"23":4,"42":4,"51":10,"52":2,"53":1,"56":2,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5,"82":1,"92":5}}],["meter",{"2":{"58":1}}],["method",{"2":{"16":2,"18":1,"19":1,"21":1}}],["methods",{"2":{"7":1,"23":1,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5}}],["metadata",{"2":{"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"21":3,"22":3,"24":1,"25":1,"26":2,"27":3,"29":2,"32":1,"33":3,"34":1,"35":1,"37":5,"41":3,"42":3,"47":2,"51":2,"52":1,"54":3,"55":2,"56":3,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5,"79":2,"82":1,"89":3,"92":1}}],["members",{"2":{"83":1}}],["member",{"2":{"6":1}}],["memory",{"2":{"1":1,"22":1,"24":3,"40":4,"47":2,"50":1,"68":1,"79":1,"82":2,"83":1}}],["multi",{"2":{"17":2,"21":2}}],["multiplying",{"2":{"41":1}}],["multiply",{"2":{"10":1,"41":1}}],["multiple",{"0":{"45":1,"97":1},"2":{"7":1,"23":1,"58":1,"59":1,"68":1,"82":1}}],["must",{"2":{"0":1,"70":1,"82":1,"83":1}}],["mb",{"2":{"0":1,"59":1,"62":2}}],["pkg",{"2":{"88":2}}],["pkg>",{"2":{"86":1}}],["purple",{"2":{"91":1}}],["purpose",{"2":{"31":1,"41":1}}],["pull",{"2":{"84":1}}],["public",{"0":{"82":1}}],["published",{"2":{"56":1}}],["pydata",{"2":{"50":1}}],["p",{"2":{"40":10,"59":1,"61":1,"72":1,"78":1}}],["picture",{"2":{"68":1,"69":1}}],["pieces",{"2":{"31":1}}],["pixel",{"0":{"91":1},"1":{"92":1,"93":1},"2":{"21":1,"23":2}}],["post=getpostfunction",{"2":{"82":1}}],["positions",{"2":{"83":2}}],["position",{"2":{"68":1}}],["positional",{"2":{"63":1,"64":1}}],["possible",{"2":{"23":2,"24":1,"35":1,"47":1,"79":1,"82":3,"83":1}}],["pos",{"2":{"22":2}}],["point3f",{"2":{"102":1}}],["point",{"2":{"22":3,"58":1,"89":1}}],["points",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":4,"16":9,"17":3,"18":3,"19":2,"20":3,"21":9,"22":16,"23":1,"25":2,"26":6,"27":4,"29":9,"30":3,"32":9,"33":6,"34":2,"35":3,"37":14,"39":6,"40":21,"41":9,"42":5,"44":1,"45":5,"46":4,"47":4,"51":3,"52":2,"54":2,"55":1,"56":7,"58":6,"59":6,"60":2,"61":3,"62":6,"63":4,"64":9,"65":16,"66":2,"68":2,"69":1,"72":3,"78":6,"79":6,"89":5,"92":1,"98":3}}],["plt",{"2":{"99":1}}],["place",{"2":{"83":1}}],["please",{"2":{"74":1}}],["plots",{"2":{"102":1}}],["plot",{"0":{"93":1,"99":1,"102":1},"2":{"56":2}}],["plotting",{"0":{"98":1},"1":{"99":1},"2":{"0":1}}],["plus",{"2":{"18":3,"50":1,"82":1}}],["page",{"2":{"102":1}}],["paste",{"2":{"86":1}}],["pass",{"2":{"82":1}}],["passed",{"2":{"82":4}}],["passing",{"2":{"21":1,"82":3}}],["pair",{"2":{"83":1}}],["pairs",{"2":{"18":1,"20":1}}],["partitioned",{"2":{"83":1}}],["participate",{"2":{"82":1}}],["particular",{"2":{"71":1}}],["parts",{"2":{"82":1}}],["parent",{"2":{"58":1,"98":1}}],["parallelized",{"2":{"83":1}}],["parallelisation",{"2":{"82":1}}],["parallel",{"2":{"23":1,"68":1}}],["package",{"2":{"23":1,"64":1,"66":1,"81":1,"88":1}}],["packages",{"2":{"16":1,"24":1}}],["paths",{"2":{"83":2}}],["path=",{"2":{"16":2,"58":1,"73":1,"74":1,"75":1,"76":1,"77":1,"78":1,"79":1,"83":1}}],["path=f",{"2":{"4":1,"5":1,"6":1}}],["path",{"0":{"20":1},"2":{"0":1,"20":1,"50":2,"58":3,"59":2,"60":2,"61":2,"72":2,"77":3,"82":4,"86":1}}],["pr",{"2":{"86":1}}],["println",{"2":{"76":1}}],["printed",{"2":{"46":2}}],["primem",{"2":{"60":1}}],["prior",{"2":{"1":1}}],["props",{"2":{"89":2}}],["properly",{"2":{"49":1}}],["properties=dict",{"2":{"83":1}}],["properties=properties",{"2":{"18":2}}],["properties",{"0":{"17":1},"1":{"18":1,"19":1,"20":1},"2":{"10":2,"17":2,"18":2,"19":1,"20":2,"21":2,"23":2,"29":3,"30":3,"50":1,"56":1,"58":1,"59":1,"60":1,"61":1,"72":1,"78":1,"82":5,"83":1,"98":1}}],["probably",{"2":{"83":1}}],["provide",{"2":{"82":1}}],["provides",{"2":{"68":1,"95":1}}],["provided",{"2":{"36":1,"79":1,"82":1}}],["process",{"2":{"68":1,"83":2}}],["processed",{"2":{"13":1}}],["projection",{"0":{"100":1,"101":1},"1":{"101":1,"102":1},"2":{"60":1}}],["progressmeter",{"2":{"82":1}}],["progress",{"2":{"50":1,"94":1,"96":1}}],["product",{"2":{"22":1}}],["pressing",{"2":{"88":1}}],["pre",{"2":{"82":2}}],["previous",{"2":{"56":1,"77":1,"79":1,"82":1}}],["previously",{"2":{"42":1}}],["prepared",{"2":{"59":1,"61":1,"72":1,"78":1}}],["prep",{"2":{"9":2}}],["precipitation",{"2":{"9":2,"69":1,"70":1,"89":2}}],["permute",{"2":{"83":1}}],["permuteloopaxes",{"2":{"83":1}}],["permutation",{"2":{"83":1}}],["persistend",{"2":{"83":1}}],["persistency",{"2":{"83":1}}],["persistent",{"2":{"82":1,"83":2}}],["persist",{"2":{"77":1,"82":1,"83":1}}],["perform",{"2":{"83":1}}],["performed",{"2":{"13":2}}],["performing",{"2":{"10":1}}],["per",{"2":{"7":1,"14":1,"51":1,"54":1,"55":1}}],["=interval",{"2":{"65":2}}],["===",{"2":{"46":1}}],["==",{"2":{"12":1,"46":1,"92":1}}],["=>nan",{"2":{"102":1}}],["=>",{"2":{"10":2,"12":1,"13":1,"16":2,"17":2,"18":3,"19":2,"20":1,"21":2,"22":5,"23":1,"29":3,"30":3,"44":1,"45":1,"46":5,"50":1,"51":5,"52":1,"54":3,"55":2,"56":3,"58":20,"59":20,"60":1,"61":10,"62":20,"63":30,"64":30,"65":50,"72":10,"78":10,"89":6,"98":10}}],["=>2",{"2":{"4":1}}],["=>10",{"2":{"4":1}}],["=>5",{"2":{"4":1,"5":1}}],["=",{"2":{"0":5,"2":4,"4":9,"5":15,"6":9,"8":5,"9":5,"10":4,"11":1,"12":1,"13":1,"16":14,"17":4,"18":14,"19":7,"20":11,"21":12,"22":16,"23":5,"25":3,"26":8,"27":4,"29":5,"30":4,"32":1,"33":3,"35":6,"37":7,"39":6,"40":17,"42":7,"44":1,"45":3,"46":7,"47":4,"50":8,"51":16,"52":1,"53":1,"54":4,"55":1,"56":22,"58":2,"59":2,"60":2,"61":2,"62":2,"63":6,"64":6,"65":3,"72":2,"74":2,"76":3,"77":8,"78":2,"79":4,"80":5,"82":11,"83":7,"89":5,"91":10,"92":11,"93":5,"98":8,"99":5,"100":7,"101":5,"102":6}}],["dc",{"2":{"83":2}}],["dkrz",{"2":{"58":1,"98":2}}],["dufresne",{"2":{"59":1,"61":1,"72":1,"78":1}}],["due",{"2":{"53":1}}],["dummy",{"2":{"35":1,"37":1,"91":1,"92":1}}],["during",{"2":{"22":1,"23":1,"24":1}}],["dd",{"2":{"32":1,"92":1}}],["d",{"2":{"22":5,"46":5,"56":3,"92":1}}],["drop",{"2":{"56":1}}],["dropdims",{"0":{"52":1},"2":{"51":2,"52":2,"56":1}}],["drivers",{"2":{"82":1}}],["driver",{"2":{"48":1,"77":2,"82":6}}],["driver=",{"2":{"4":1,"5":1,"6":1,"73":2,"74":1,"75":2,"76":1,"77":3,"78":1,"79":2,"82":3}}],["drei",{"2":{"19":2}}],["dash",{"2":{"93":1}}],["danger",{"2":{"77":1}}],["daysinmonth",{"2":{"51":1,"54":1}}],["days",{"2":{"49":1,"51":2,"53":1,"54":2,"55":2}}],["dayofyear",{"2":{"16":1}}],["day",{"2":{"10":2,"12":1,"13":1,"14":1,"16":4,"17":2,"18":1,"21":3,"22":3,"23":1,"29":3,"30":1,"91":1,"92":4,"93":1}}],["datconfig",{"2":{"83":2}}],["datset",{"2":{"82":1}}],["dat",{"2":{"82":8,"83":16}}],["datum",{"2":{"60":1}}],["datetime360day",{"2":{"59":6,"61":3,"62":6,"63":7,"64":9,"65":15,"72":3,"78":3}}],["datetimenoleap",{"2":{"51":4,"54":7,"55":5,"56":5}}],["datetime",{"2":{"20":1,"46":5,"58":2,"98":1}}],["date",{"2":{"10":5,"12":3,"13":3,"14":3,"16":12,"17":5,"18":3,"21":8,"22":11,"23":3,"29":8,"30":3,"37":24,"39":8,"40":11,"68":1,"91":2,"92":5,"98":1}}],["datesid",{"2":{"92":2}}],["dates",{"2":{"10":2,"12":1,"13":1,"14":1,"16":5,"17":2,"18":1,"21":2,"22":3,"23":1,"29":3,"30":1,"37":8,"39":4,"40":5,"48":1,"70":1,"91":1,"92":2,"98":1}}],["data=cube1",{"2":{"82":1}}],["databases",{"2":{"68":1}}],["dataframe",{"2":{"42":1,"82":1}}],["dataframes",{"2":{"42":1}}],["datacubes",{"2":{"82":1}}],["datacube",{"0":{"97":1},"2":{"42":2,"79":1,"82":1}}],["datatypes",{"2":{"36":1}}],["data1",{"2":{"35":2}}],["data3",{"2":{"30":1}}],["data2",{"2":{"29":2,"35":2}}],["datasetaxis",{"2":{"82":2,"83":1}}],["datasetaxis=",{"2":{"82":1,"83":1}}],["dataset",{"0":{"30":1,"36":1,"38":1,"39":1,"40":1,"43":1,"46":1,"69":1,"77":1,"78":1,"80":1},"1":{"37":1,"38":1,"39":2,"40":2,"44":1,"45":1},"2":{"0":3,"3":1,"4":4,"5":2,"6":3,"9":1,"10":1,"18":1,"20":2,"24":1,"30":2,"38":1,"39":3,"40":5,"44":2,"45":3,"46":5,"58":3,"59":3,"60":3,"61":3,"62":1,"69":3,"70":2,"72":3,"73":1,"74":1,"75":1,"76":1,"77":3,"78":4,"79":2,"80":2,"82":18,"83":9,"98":2}}],["datasets",{"0":{"3":1,"28":1,"48":1,"57":1,"61":1,"72":1},"1":{"4":1,"5":1,"6":1,"29":1,"30":1,"49":1,"50":1,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1,"58":1,"59":1,"60":1,"62":1,"63":1,"64":1,"65":1,"66":1,"73":1,"74":1,"75":1,"76":1,"77":1,"78":1,"79":1,"80":1},"2":{"0":2,"24":1,"28":1,"40":1,"57":1,"77":1,"82":8,"83":4,"96":1}}],["data",{"0":{"34":1,"50":1,"70":1},"2":{"0":3,"1":2,"7":1,"8":1,"10":2,"11":1,"16":4,"17":2,"21":3,"22":2,"23":2,"25":1,"26":1,"34":1,"37":1,"39":1,"40":2,"42":2,"50":8,"58":2,"59":4,"61":3,"62":2,"63":3,"64":3,"65":5,"67":1,"68":3,"69":2,"70":3,"72":3,"77":2,"78":3,"79":3,"80":1,"82":20,"83":12,"89":4,"90":1,"91":2,"92":1,"96":4,"98":5,"100":1}}],["dev",{"2":{"86":1}}],["dependencies",{"2":{"86":1}}],["depth",{"2":{"21":8}}],["detect",{"2":{"82":1,"83":1}}],["determined",{"2":{"83":1}}],["determines",{"2":{"82":1}}],["determine",{"2":{"1":1,"82":1}}],["deletes",{"2":{"77":1,"82":1}}],["delete",{"2":{"77":2,"79":1}}],["denoting",{"2":{"82":1}}],["dense",{"2":{"68":1}}],["denvil",{"2":{"59":2,"61":2,"72":2,"78":2}}],["degree",{"2":{"60":1}}],["degc",{"2":{"59":1,"62":2,"63":3,"64":3,"65":5}}],["dec",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["defaultfillval",{"2":{"83":1}}],["defaults",{"2":{"82":7}}],["default",{"2":{"18":1,"76":3,"79":1,"82":1,"83":4}}],["definition",{"2":{"70":1}}],["definitions",{"2":{"17":1,"19":1}}],["defining",{"2":{"23":1}}],["defines",{"2":{"82":1}}],["defined",{"2":{"18":1,"26":1,"27":1,"42":1,"56":1,"66":1,"68":1,"71":1,"79":1,"89":1}}],["define",{"0":{"92":1},"2":{"16":2,"18":1,"37":1,"42":1,"56":1,"82":2,"91":1}}],["deal",{"2":{"17":1}}],["dest",{"2":{"101":1}}],["desc",{"2":{"82":3,"83":3}}],["descriptor",{"2":{"83":4}}],["descriptors",{"2":{"82":2}}],["descriptions",{"2":{"82":1}}],["description",{"2":{"17":2,"19":2,"21":2,"36":1,"82":4,"83":11}}],["described",{"2":{"96":1}}],["describe",{"2":{"82":2}}],["describes",{"2":{"7":1,"10":1,"24":1,"28":1,"57":1,"65":1,"67":1,"81":1,"83":1}}],["describing",{"2":{"82":1}}],["designed",{"2":{"24":2,"68":1}}],["desired",{"2":{"16":1,"83":4}}],["demand",{"2":{"13":1}}],["diverging",{"2":{"56":1}}],["divided",{"2":{"41":1}}],["differing",{"2":{"82":1}}],["difference",{"2":{"56":1}}],["differences",{"2":{"46":1,"51":1,"56":1,"83":1}}],["different",{"0":{"21":1},"2":{"9":2,"16":1,"17":2,"23":1,"32":1,"33":1,"45":1,"49":1,"69":1,"82":3,"83":2,"94":1}}],["diff",{"2":{"51":2,"56":3}}],["directory",{"2":{"58":1,"73":2,"75":2}}],["directories",{"2":{"57":1,"83":1}}],["direct",{"2":{"46":1}}],["directly",{"2":{"16":1,"20":1,"27":1,"28":1,"29":1,"80":2}}],["dictionary",{"2":{"69":1,"82":3}}],["dict",{"2":{"4":1,"5":1,"8":1,"9":1,"10":2,"12":1,"13":1,"14":2,"16":5,"17":2,"18":3,"19":2,"20":1,"21":4,"22":4,"23":1,"25":1,"26":2,"27":3,"29":4,"30":2,"32":1,"33":3,"34":1,"35":1,"37":5,"41":3,"42":3,"46":2,"47":2,"51":3,"52":2,"54":4,"55":3,"56":3,"58":2,"59":2,"60":1,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1,"79":1,"82":3,"89":3,"92":1,"98":1}}],["dime",{"2":{"58":1}}],["dimensionaldata",{"2":{"22":1,"27":2,"32":1,"33":1,"37":1,"39":1,"40":1,"46":1,"48":1,"50":1,"51":16,"52":10,"54":6,"55":6,"56":39,"64":1,"65":2,"66":3,"68":1,"71":1,"89":1,"90":3,"92":1,"98":1}}],["dimensional",{"2":{"17":2,"19":2,"21":2,"67":1,"68":2,"82":1}}],["dimensions",{"0":{"39":1,"40":1},"2":{"9":1,"10":1,"13":1,"15":1,"16":2,"20":1,"21":1,"22":2,"23":1,"29":2,"33":1,"35":1,"38":1,"40":3,"41":2,"45":1,"50":1,"51":16,"52":10,"54":6,"55":6,"56":39,"61":1,"66":2,"68":3,"69":1,"82":8,"83":3,"89":3,"90":1}}],["dimension",{"0":{"8":1,"9":1,"66":1,"71":1},"2":{"2":1,"8":2,"9":1,"10":1,"14":2,"16":3,"18":1,"19":1,"22":3,"37":1,"40":1,"52":1,"53":1,"56":1,"64":1,"66":1,"68":1,"70":1,"71":1,"82":3,"83":3,"89":1}}],["dimgroupbyarray",{"2":{"51":1,"54":1}}],["dimarray",{"0":{"27":1},"2":{"22":3,"27":6,"51":1,"52":1,"54":1,"55":2,"56":3,"68":1}}],["dims=2",{"2":{"92":1}}],["dims=",{"2":{"14":2,"23":1,"41":1,"51":5,"52":1,"54":1,"56":1}}],["dims",{"2":{"8":3,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"21":3,"22":4,"25":1,"26":3,"27":2,"29":2,"32":3,"33":4,"34":1,"35":1,"37":5,"41":3,"42":3,"46":1,"47":2,"50":1,"51":6,"52":1,"54":5,"55":2,"56":5,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5,"79":1,"89":2,"92":1}}],["dim",{"2":{"2":2,"4":7,"5":8,"6":2,"8":2,"9":3,"10":3,"16":3,"17":4,"21":6,"22":4,"23":3,"25":2,"27":2,"29":7,"32":9,"33":6,"34":3,"35":4,"37":3,"39":3,"40":2,"44":1,"45":5,"46":2,"47":4,"51":2,"52":2,"56":6,"78":3,"79":6,"89":4,"92":1}}],["disregard",{"2":{"83":1}}],["dispatch",{"2":{"83":1}}],["discribe",{"2":{"82":2}}],["discussion",{"2":{"74":1}}],["distribute",{"2":{"23":1}}],["distributed",{"0":{"23":1},"2":{"0":1,"23":2}}],["diskarray",{"2":{"82":1}}],["diskarrays",{"2":{"2":9,"4":4,"5":4,"6":4,"82":2,"83":1}}],["disk",{"2":{"1":1,"16":1,"20":1,"27":1,"68":1,"79":3,"80":2,"82":1,"83":2}}],["dodgerblue",{"2":{"93":1}}],["documenter",{"2":{"102":1}}],["documentation",{"0":{"85":1},"1":{"86":1}}],["doc",{"2":{"77":1}}],["docstring",{"2":{"82":1}}],["docs",{"0":{"86":1},"2":{"69":1,"85":2,"86":6,"90":1}}],["don",{"2":{"74":1}}],["done",{"2":{"33":1,"41":1,"56":1,"85":2}}],["download",{"0":{"50":1},"2":{"50":1,"59":2,"60":2,"61":2,"72":2}}],["downloads",{"2":{"48":1,"50":1,"59":1,"60":1,"61":1,"72":1}}],["doing",{"2":{"23":1,"32":1,"34":1,"86":1}}],["does",{"2":{"23":1,"79":1,"82":1,"83":1}}],["dot",{"2":{"21":1,"93":1}}],["do",{"0":{"35":1,"36":1,"41":1,"42":1,"43":1,"46":1},"1":{"37":1,"38":1,"39":1,"40":1,"44":1,"45":1},"2":{"1":1,"13":1,"16":1,"22":3,"23":1,"31":2,"41":1,"49":1,"56":1,"79":1,"80":1,"83":1,"86":1,"88":1}}],["dsw",{"2":{"51":2,"56":2}}],["dsfinal",{"2":{"35":1,"41":2,"42":2}}],["ds2",{"2":{"35":3,"41":1,"78":1}}],["ds1",{"2":{"35":3,"41":3,"42":1}}],["dschunked",{"2":{"4":3,"5":3,"6":3}}],["ds",{"2":{"0":3,"4":2,"5":2,"6":2,"30":1,"39":2,"40":12,"44":1,"45":1,"46":2,"50":5,"51":10,"54":1,"56":3,"58":1,"59":1,"60":1,"61":1,"62":2,"72":1,"73":3,"74":2,"75":3,"76":7,"77":3,"78":2,"79":1,"80":5,"82":3,"83":1,"102":2}}],["wglmakie",{"2":{"102":2}}],["wgs",{"2":{"60":3}}],["would",{"2":{"82":2}}],["world",{"2":{"60":2}}],["workdir",{"2":{"83":1}}],["worker",{"2":{"82":1}}],["workers",{"2":{"82":1}}],["work",{"2":{"24":2,"50":1,"67":1,"82":1,"94":2,"96":1}}],["workload",{"2":{"23":1}}],["working",{"2":{"16":1,"80":1}}],["works",{"2":{"6":1,"34":1,"39":1,"40":1,"79":1}}],["workflows",{"2":{"1":1}}],["written",{"2":{"82":1,"83":1}}],["writing",{"2":{"80":1}}],["writefac",{"2":{"83":1}}],["writefac=4",{"2":{"77":1,"82":1}}],["writes",{"2":{"82":1}}],["write",{"0":{"72":1,"73":1,"75":1},"1":{"73":1,"74":2,"75":1,"76":2,"77":1,"78":1,"79":1,"80":1},"2":{"79":1,"82":2}}],["wrapping",{"2":{"53":1,"66":2}}],["wrapped",{"2":{"16":1}}],["wrap",{"2":{"0":1,"82":1}}],["www",{"2":{"59":1,"61":1,"72":1}}],["w",{"2":{"56":2,"80":2}}],["was",{"2":{"20":1,"22":1,"23":1,"83":1}}],["way",{"2":{"15":1,"24":1,"32":1}}],["warning",{"2":{"11":1,"24":1,"32":1,"40":1,"45":1,"47":1,"50":1,"77":1,"79":1,"82":1}}],["wanted",{"2":{"83":1}}],["wants",{"2":{"79":1}}],["want",{"2":{"0":1,"1":1,"70":1,"83":1,"86":1,"96":1}}],["white",{"2":{"100":1,"101":1}}],["while",{"2":{"79":1}}],["which",{"2":{"9":1,"16":1,"22":2,"33":1,"40":2,"56":1,"62":1,"65":1,"66":1,"70":3,"82":5,"83":4,"96":1}}],["whose",{"0":{"39":1,"40":1}}],["whole",{"2":{"8":3}}],["whether",{"2":{"83":2}}],["when",{"2":{"1":1,"6":1,"13":1,"70":1,"82":2,"83":1}}],["whereas",{"2":{"68":1}}],["where",{"2":{"0":1,"23":1,"40":4,"49":1,"65":1,"80":1,"82":1,"83":4}}],["wintri",{"0":{"100":1},"1":{"101":1,"102":1}}],["windowloopinds",{"2":{"83":1}}],["window",{"2":{"82":1,"83":1}}],["without",{"2":{"83":1}}],["within",{"2":{"64":1}}],["with",{"0":{"47":1},"2":{"4":1,"5":1,"8":1,"10":1,"12":1,"13":1,"16":7,"17":3,"18":2,"19":2,"21":3,"22":4,"23":2,"24":1,"29":3,"32":1,"33":1,"40":6,"41":2,"42":3,"45":2,"46":3,"47":1,"51":3,"52":1,"54":2,"55":2,"56":5,"58":3,"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"67":1,"69":1,"72":1,"74":1,"76":1,"77":1,"78":2,"79":2,"80":1,"82":11,"83":1,"85":1,"89":4,"90":3,"94":1,"96":1,"98":2,"100":1}}],["will",{"2":{"0":1,"1":1,"4":1,"5":1,"13":1,"16":3,"17":2,"18":1,"19":1,"22":1,"36":1,"40":1,"41":2,"42":2,"45":2,"46":1,"48":1,"53":2,"77":3,"79":3,"80":1,"82":12,"83":3,"96":1}}],["wether",{"2":{"82":1}}],["weight=",{"2":{"82":1}}],["weight=nothing",{"2":{"82":1}}],["weight",{"0":{"54":1},"1":{"55":1,"56":1},"2":{"53":1,"55":1,"56":1}}],["weights",{"0":{"55":1},"2":{"51":3,"55":2,"56":1}}],["weightedmean",{"2":{"82":1}}],["weighted",{"0":{"56":1},"2":{"42":1,"49":1,"51":8,"56":8,"82":3}}],["well",{"2":{"42":1,"46":1,"79":1,"82":1}}],["welcome",{"2":{"6":1,"84":1}}],["were",{"2":{"13":2,"65":1,"83":1,"91":1}}],["we",{"2":{"0":1,"8":2,"9":1,"13":2,"14":1,"16":5,"17":3,"18":1,"19":1,"20":1,"22":5,"23":2,"29":2,"33":1,"35":1,"36":1,"37":1,"38":1,"40":2,"41":2,"42":5,"46":4,"51":1,"52":1,"53":2,"56":1,"58":1,"64":1,"70":1,"79":3,"80":4,"90":2,"91":1,"98":1}}],["oob",{"2":{"82":1}}],["o1",{"2":{"59":2,"61":2,"72":2,"78":1}}],["ocean",{"2":{"59":1,"61":1,"72":1,"78":1}}],["oct",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["occuring",{"2":{"4":1}}],["o",{"2":{"50":4,"56":4,"82":5}}],["ohlcv",{"2":{"46":3}}],["ouput",{"2":{"86":1}}],["our",{"2":{"41":1,"42":1,"92":1}}],["outcube",{"2":{"83":1}}],["outcubes",{"2":{"83":1}}],["outcs",{"2":{"83":1}}],["outsize",{"2":{"83":1}}],["outar",{"2":{"83":2}}],["out",{"2":{"50":1,"82":2,"83":1}}],["outtype",{"2":{"16":2,"82":1,"83":2}}],["outdims=outdims",{"2":{"22":1,"23":1}}],["outdims",{"0":{"17":1,"20":1},"1":{"18":1,"19":1,"20":1},"2":{"16":4,"18":12,"19":2,"20":11,"21":2,"82":6}}],["outputcube",{"2":{"83":3}}],["outputs",{"2":{"16":1,"18":2}}],["output",{"0":{"18":1},"2":{"6":1,"16":3,"17":1,"18":1,"22":1,"23":3,"59":1,"61":1,"72":1,"78":1,"82":11,"83":9,"102":1}}],["optimal",{"2":{"83":1}}],["optifunc",{"2":{"83":1}}],["optionally",{"2":{"82":1}}],["option",{"2":{"37":1,"39":1,"74":1}}],["options",{"2":{"34":1}}],["operates",{"2":{"82":1}}],["operate",{"2":{"21":1}}],["operation",{"2":{"21":1,"83":1}}],["operations",{"0":{"16":1},"2":{"10":1,"51":1,"82":2,"83":3}}],["operating",{"2":{"19":1}}],["openinterval",{"2":{"65":1}}],["open",{"0":{"65":1},"2":{"0":2,"18":1,"20":2,"46":4,"58":2,"59":2,"60":1,"61":2,"65":2,"72":1,"74":1,"78":1,"80":6,"82":3,"98":1}}],["obj",{"2":{"42":2,"91":1,"93":1}}],["objects",{"2":{"82":2}}],["object",{"2":{"11":1,"58":1,"82":5,"83":3}}],["obtain",{"0":{"34":1},"2":{"46":1,"53":1}}],["omit",{"2":{"23":1}}],["otherwise",{"2":{"82":1}}],["others",{"2":{"21":1,"46":1}}],["other",{"0":{"94":1},"1":{"95":1,"96":1,"97":1},"2":{"20":1,"24":1,"94":1,"96":1}}],["overview",{"0":{"95":1},"2":{"94":1,"95":1}}],["overwrite",{"0":{"77":1},"2":{"77":3,"82":4,"83":2}}],["overwrite=true",{"2":{"16":2,"77":2,"79":3}}],["over",{"0":{"16":1,"96":1},"2":{"10":1,"15":1,"21":1,"23":1,"56":1,"82":8,"83":1,"96":1}}],["ormax",{"2":{"82":1}}],["orca2",{"2":{"59":1,"61":1,"72":1,"78":1}}],["orangered",{"2":{"42":1}}],["ordered",{"2":{"68":1,"69":1}}],["ordereddict",{"2":{"22":1}}],["orderedcollections",{"2":{"22":1}}],["order",{"2":{"16":1,"49":1,"80":1}}],["original",{"2":{"59":2,"62":4,"63":6,"64":6,"65":10}}],["originates",{"2":{"9":1}}],["origin",{"2":{"10":2,"12":1,"13":1,"23":1,"29":3,"30":1,"89":2}}],["or",{"0":{"36":1},"1":{"37":1,"38":1,"39":1,"40":1},"2":{"1":2,"6":1,"10":1,"13":2,"15":1,"27":1,"33":1,"38":1,"47":2,"58":1,"61":2,"68":3,"71":2,"74":1,"77":1,"82":21,"83":7,"88":1,"89":2}}],["once",{"2":{"56":1,"70":1,"83":1,"85":1}}],["onlinestat",{"2":{"82":2}}],["onlinestats",{"2":{"42":2}}],["only",{"2":{"6":1,"13":1,"14":1,"16":1,"20":1,"22":1,"24":1,"29":2,"41":1,"79":1,"82":2}}],["on",{"2":{"1":2,"6":1,"7":1,"10":2,"13":2,"16":1,"23":2,"31":1,"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"68":1,"72":1,"74":1,"78":1,"79":1,"82":5,"83":4}}],["ones",{"2":{"17":1,"33":1}}],["oneto",{"2":{"4":4,"5":4,"6":2,"25":2,"29":3,"32":9,"33":6,"44":1,"45":5,"47":4,"79":6,"89":2}}],["one",{"0":{"18":1,"44":1},"2":{"0":1,"7":1,"8":2,"14":2,"18":15,"19":5,"20":6,"21":2,"22":2,"42":1,"46":1,"52":1,"68":2,"69":1,"79":2,"82":8,"83":3,"94":1}}],["own",{"2":{"0":1}}],["offline=true",{"2":{"102":1}}],["offsets",{"2":{"83":1}}],["offset",{"2":{"13":1}}],["often",{"2":{"7":1}}],["of",{"0":{"11":1,"40":1,"49":1,"80":1,"95":2},"2":{"0":2,"1":1,"6":1,"8":3,"9":1,"10":2,"11":1,"12":1,"13":2,"14":1,"15":1,"22":7,"23":3,"24":1,"26":1,"27":1,"31":3,"32":3,"36":1,"37":2,"38":1,"39":1,"40":2,"41":1,"42":1,"49":1,"50":1,"54":1,"59":1,"61":3,"62":1,"64":1,"66":1,"68":7,"69":1,"70":2,"71":2,"72":1,"78":1,"79":1,"80":1,"81":1,"82":50,"83":42,"89":1,"90":2,"92":2,"93":1,"94":1,"95":1}}],["eo",{"2":{"94":1}}],["esdltutorials",{"2":{"94":1}}],["esm1",{"2":{"58":1,"98":2}}],["eltype",{"2":{"89":1}}],["elementtype",{"2":{"83":1}}],["element",{"2":{"8":1,"9":1,"10":2,"13":2,"14":1,"16":3,"22":2,"34":1,"42":1,"51":2,"52":1,"53":1,"54":7,"55":2,"56":3,"63":2,"66":1,"69":1,"70":2,"82":1,"83":1,"92":1}}],["elements",{"0":{"11":1,"63":1},"2":{"8":1,"12":1,"13":2,"23":1,"61":1,"68":1,"82":1,"83":1}}],["empty",{"2":{"83":1}}],["embeds",{"2":{"82":1}}],["either",{"2":{"82":2}}],["error",{"2":{"77":1}}],["epsg",{"2":{"60":5}}],["et",{"2":{"59":1,"61":1,"70":1,"72":1,"78":1}}],["edu",{"2":{"59":1,"61":1,"69":1,"72":1}}],["equivalent",{"2":{"56":1,"66":1}}],["equally",{"2":{"0":1}}],["effectively",{"2":{"41":1}}],["env",{"2":{"86":1}}],["enabling",{"2":{"29":1}}],["enter",{"2":{"88":1}}],["entire",{"2":{"22":1,"24":1,"73":1,"75":1}}],["entries",{"2":{"22":1,"46":1,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5,"80":1,"82":1,"89":1}}],["entry",{"2":{"10":1,"12":1,"13":1,"16":2,"17":1,"18":1,"19":1,"21":1,"29":2,"51":2,"52":1,"54":2,"55":2,"56":3,"82":1,"85":3}}],["enumerate",{"2":{"22":2,"56":2}}],["end",{"2":{"13":1,"16":1,"18":1,"19":2,"21":2,"22":4,"23":2,"41":1,"51":2,"56":2,"92":2,"102":1}}],["exists",{"2":{"77":1,"82":1,"83":1}}],["existing",{"0":{"8":1},"2":{"77":1,"78":1}}],["exportable=true",{"2":{"102":1}}],["expression",{"2":{"82":1}}],["experiment",{"2":{"59":3,"61":3,"72":3,"78":3}}],["explicitly",{"2":{"13":1,"33":1,"36":1,"83":1}}],["executes",{"2":{"82":1}}],["execute",{"2":{"23":1}}],["external",{"2":{"58":1,"98":1}}],["extension",{"2":{"82":2}}],["extent",{"2":{"26":2}}],["extended",{"2":{"16":1,"82":1,"83":2}}],["extracts",{"2":{"83":1}}],["extract",{"0":{"32":1},"1":{"33":1},"2":{"83":1}}],["extracted",{"2":{"21":1}}],["extra",{"2":{"23":1}}],["exactly",{"2":{"5":1,"34":1,"46":1}}],["examples",{"2":{"6":1,"34":2,"48":1,"59":1,"61":1,"72":1,"85":1}}],["example",{"2":{"0":1,"1":1,"5":1,"10":1,"17":1,"21":1,"23":2,"33":1,"39":1,"40":1,"41":1,"42":1,"49":1,"59":1,"61":2,"68":2,"69":1,"70":1,"72":2,"82":3,"83":1,"85":2,"89":2}}],["e",{"2":{"7":1,"8":1,"10":1,"11":1,"13":1,"22":2,"23":1,"26":1,"27":1,"29":1,"37":1,"66":1,"68":1,"71":1,"77":1,"82":6,"83":1,"86":1,"89":1}}],["east",{"2":{"60":1}}],["easier",{"2":{"29":1,"61":1}}],["easily",{"2":{"0":1,"23":1}}],["easy",{"2":{"26":1,"27":1}}],["each",{"2":{"4":1,"5":1,"10":1,"13":1,"20":1,"22":5,"23":2,"41":2,"42":2,"49":1,"53":1,"69":1,"71":1,"82":3,"83":3,"89":1}}],["everywhere",{"2":{"23":2}}],["every",{"2":{"0":1,"10":1,"13":1,"82":1}}],["features",{"2":{"95":1}}],["feel",{"2":{"74":1}}],["feb",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["frame",{"2":{"96":1}}],["frames",{"2":{"68":1}}],["front",{"2":{"83":1}}],["from",{"0":{"32":1,"34":2,"46":1,"49":1},"1":{"33":1},"2":{"0":1,"8":1,"9":1,"24":1,"32":1,"33":1,"34":4,"40":3,"46":2,"65":1,"70":2,"80":1,"82":6,"83":6,"89":1,"92":1}}],["free",{"2":{"74":1}}],["frequently",{"0":{"31":1},"1":{"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1}}],["fr",{"2":{"59":1,"61":1,"72":1,"78":1}}],["fallback",{"2":{"83":1}}],["falls",{"2":{"82":1}}],["false",{"2":{"18":1,"20":1,"47":1,"55":1,"56":1,"77":2,"82":3,"83":1}}],["faq",{"0":{"31":1},"1":{"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1}}],["faster",{"2":{"83":1}}],["fastest",{"2":{"1":1}}],["fast",{"2":{"1":1,"13":1}}],["f2mix",{"2":{"19":3}}],["f2",{"2":{"18":3}}],["f1",{"2":{"18":2,"19":1}}],["fu",{"2":{"83":1}}],["funtion",{"2":{"92":1}}],["fun",{"2":{"82":4}}],["functionality",{"0":{"95":1}}],["functions",{"2":{"10":2,"68":2,"81":1,"82":1,"83":1}}],["function",{"0":{"42":1},"2":{"0":1,"1":1,"13":2,"15":1,"16":6,"17":1,"18":2,"19":2,"21":6,"23":6,"32":2,"35":1,"41":1,"42":1,"46":1,"48":1,"51":1,"53":1,"56":1,"65":1,"79":1,"82":22,"83":13}}],["future",{"2":{"50":1}}],["further",{"2":{"13":1,"94":1}}],["flag",{"2":{"83":3}}],["flat",{"2":{"18":4,"19":2,"20":2}}],["float32",{"2":{"16":6,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5,"79":2,"80":4,"83":1}}],["float64",{"2":{"8":1,"9":1,"10":3,"12":3,"13":3,"14":4,"17":2,"18":2,"19":2,"20":2,"21":3,"22":9,"25":2,"26":2,"27":4,"29":6,"30":2,"32":1,"33":3,"35":4,"41":12,"42":5,"46":2,"51":3,"52":2,"55":3,"56":6,"58":4,"59":4,"60":2,"61":2,"62":4,"63":2,"64":6,"65":10,"66":3,"72":2,"78":2,"82":1,"83":1,"89":7,"92":2,"98":2}}],["flexible",{"2":{"9":1,"15":1}}],["folder",{"2":{"86":1}}],["follow",{"2":{"86":1,"94":1}}],["follows",{"2":{"16":2,"19":1,"21":1,"51":1,"56":1,"80":1}}],["following",{"2":{"2":1,"5":1,"6":1,"16":1,"17":1,"18":1,"21":1,"23":1,"33":1,"48":1,"49":1,"50":1,"82":2,"83":4,"94":1}}],["found",{"2":{"82":1,"83":1}}],["fourth",{"2":{"59":2,"61":2,"72":2,"78":2}}],["fontsize=24",{"2":{"99":1}}],["fontsize=18",{"2":{"56":1}}],["font=",{"2":{"56":1}}],["forwarded",{"2":{"82":1}}],["forwardordered",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":3,"16":9,"17":4,"18":4,"19":3,"20":3,"21":9,"22":9,"25":2,"26":6,"27":4,"29":9,"30":3,"32":9,"33":6,"34":2,"35":4,"37":14,"39":6,"40":10,"41":9,"42":5,"44":1,"45":5,"46":4,"47":4,"51":3,"52":2,"54":2,"55":1,"56":7,"58":6,"59":6,"60":1,"61":3,"62":6,"63":4,"64":9,"65":15,"66":2,"72":3,"78":6,"79":6,"89":5,"92":1,"98":3}}],["force",{"2":{"82":1}}],["forcing",{"2":{"58":1,"98":1}}],["forms",{"2":{"82":1,"83":2}}],["format",{"2":{"74":1,"76":1,"77":1,"82":1,"92":1}}],["formal",{"2":{"70":1}}],["former",{"2":{"32":1}}],["for",{"0":{"6":1,"91":1},"1":{"92":1,"93":1},"2":{"0":2,"1":3,"4":1,"5":1,"6":1,"20":1,"22":4,"23":1,"37":1,"39":2,"40":2,"41":4,"42":6,"46":5,"50":1,"54":1,"56":3,"59":1,"61":1,"65":1,"66":1,"68":4,"69":3,"70":1,"72":1,"77":1,"78":1,"79":2,"82":19,"83":16,"91":1,"92":2,"94":1}}],["f",{"2":{"2":2,"16":3}}],["field",{"2":{"82":1}}],["fields",{"2":{"42":1,"82":1,"83":4}}],["figure=",{"2":{"93":1}}],["figure",{"2":{"56":2,"91":1,"93":1,"99":1,"100":1,"101":1,"102":1}}],["fig",{"2":{"42":3,"56":8,"91":1,"93":1,"99":2,"100":2,"101":2,"102":3}}],["filterig",{"2":{"92":1}}],["filter",{"2":{"82":2}}],["fillarrays",{"2":{"79":3}}],["fill",{"2":{"79":1,"82":1,"83":1}}],["fillvalue=",{"2":{"83":1}}],["fillvalue",{"2":{"50":3,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5}}],["filling",{"2":{"28":1,"29":1}}],["filename",{"2":{"50":2,"82":1}}],["files",{"0":{"97":1},"2":{"7":1,"57":1,"60":1,"83":2,"86":1}}],["file",{"2":{"2":1,"7":1,"8":2,"9":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":2,"18":2,"19":2,"21":6,"22":4,"25":2,"26":2,"27":3,"29":4,"32":2,"33":6,"34":2,"35":2,"37":10,"40":1,"41":6,"42":6,"54":2,"58":2,"59":4,"62":4,"63":6,"64":6,"65":10,"76":3,"77":2,"79":3,"82":2,"85":4,"89":4,"92":2}}],["findaxis",{"2":{"83":1}}],["findall",{"2":{"22":1,"92":1}}],["find",{"2":{"36":1,"83":1,"94":1}}],["finalizer",{"2":{"83":1}}],["finalize",{"2":{"83":1}}],["finally",{"2":{"22":1,"82":1}}],["final",{"2":{"21":1,"22":1}}],["firstly",{"2":{"37":1}}],["first",{"2":{"8":4,"16":3,"18":1,"22":1,"42":1,"45":1,"56":1,"80":1,"82":4,"83":1,"85":1,"89":1,"98":1}}],["fitting",{"2":{"82":1}}],["fittable",{"2":{"82":2}}],["fitcube",{"2":{"42":2}}],["fitsym",{"2":{"82":4}}],["fits",{"2":{"24":1}}],["fit",{"2":{"1":1,"68":1}}],["t=union",{"2":{"83":1}}],["typing",{"2":{"88":1}}],["typically",{"2":{"82":1}}],["type",{"2":{"33":1,"47":1,"68":1,"70":1,"82":8,"83":3,"89":1,"90":1}}],["types",{"0":{"67":1},"1":{"68":1,"69":1,"70":1,"71":1},"2":{"24":2,"26":1,"27":1,"47":1,"63":1,"69":1,"82":2,"90":1}}],["tutorial",{"2":{"94":2,"95":1,"96":1}}],["tutorials",{"0":{"94":1},"1":{"95":1,"96":1,"97":1},"2":{"65":1,"94":3}}],["turn",{"2":{"82":1}}],["tuple",{"2":{"2":3,"4":1,"5":1,"6":1,"18":1,"20":1,"51":2,"52":1,"54":2,"55":3,"56":5,"82":5,"83":3}}],["tbl",{"2":{"42":2}}],["target",{"2":{"83":1}}],["tab",{"2":{"82":4}}],["tables",{"2":{"96":1}}],["tableaggregator",{"2":{"82":1}}],["table",{"0":{"96":1},"2":{"42":2,"58":1,"59":2,"61":2,"72":2,"78":2,"82":4,"83":1,"98":1}}],["tas",{"2":{"58":5,"98":5}}],["tair",{"2":{"56":1,"82":1}}],["ta",{"2":{"46":3}}],["takes",{"2":{"82":4}}],["taken",{"2":{"40":2}}],["take",{"2":{"16":1,"82":1,"83":2,"86":1}}],["treat",{"2":{"82":1}}],["treatment",{"2":{"82":1,"83":1}}],["treated",{"2":{"58":1}}],["tries",{"2":{"82":1}}],["translate",{"2":{"100":1,"101":1}}],["transformed",{"2":{"59":1,"61":1,"72":1,"78":1}}],["transformations",{"2":{"100":1}}],["transformation",{"2":{"22":1}}],["transform",{"2":{"22":2}}],["track",{"2":{"82":1}}],["true",{"2":{"12":1,"47":1,"77":1,"79":1,"82":4,"83":1,"102":1}}],["tip",{"2":{"90":1}}],["tidy",{"2":{"82":1}}],["ticks",{"2":{"68":1}}],["ticks=false",{"2":{"56":1}}],["tick",{"2":{"66":1,"71":1,"89":1}}],["tiff",{"0":{"97":1}}],["tif",{"2":{"60":2}}],["title",{"2":{"56":1,"59":1,"61":1,"72":1,"78":1,"85":1}}],["ti=at",{"2":{"56":3}}],["ti=>cyclicbins",{"2":{"51":2,"52":1,"54":2,"55":2,"56":3}}],["ti",{"2":{"20":1,"26":4,"51":15,"52":2,"53":1,"54":8,"55":3,"56":6,"58":2,"59":2,"61":1,"62":2,"63":2,"64":3,"65":5,"72":1,"78":1,"98":2}}],["time1",{"2":{"63":2}}],["timearray",{"0":{"46":1},"2":{"46":3}}],["time=1",{"2":{"89":1}}],["time=date",{"2":{"37":1}}],["time=at",{"2":{"37":1}}],["time=between",{"2":{"37":1}}],["time",{"0":{"49":1},"2":{"1":1,"7":1,"8":4,"9":3,"10":3,"12":1,"13":1,"14":7,"16":14,"17":2,"18":4,"19":1,"20":4,"21":10,"22":8,"23":5,"26":2,"29":3,"30":1,"35":2,"37":8,"39":4,"40":7,"41":4,"42":3,"46":5,"52":1,"53":1,"56":1,"58":2,"59":1,"62":2,"63":4,"64":3,"65":5,"68":2,"69":1,"82":4,"89":4,"91":1,"92":4,"98":2}}],["timestamp",{"2":{"46":1}}],["timestep",{"2":{"42":1}}],["timeseries",{"2":{"46":3}}],["times",{"2":{"0":1}}],["tesselation",{"2":{"102":1}}],["testrange",{"2":{"83":1}}],["test1",{"2":{"47":1}}],["test2",{"2":{"47":2}}],["test",{"2":{"17":4,"18":1,"19":3,"20":4,"21":4,"47":3,"83":1,"98":1}}],["terminal",{"2":{"86":1}}],["text",{"2":{"85":1}}],["tensors",{"2":{"68":1}}],["tell",{"2":{"36":1}}],["temporary",{"2":{"83":1}}],["temporal",{"2":{"41":1,"48":1,"68":1}}],["tempo",{"2":{"51":6,"54":4,"55":1}}],["temp",{"2":{"9":2}}],["temperature=temperature",{"2":{"40":1}}],["temperature",{"2":{"9":2,"40":4,"56":2,"58":3,"59":2,"62":5,"63":6,"64":6,"65":10,"68":1,"69":1,"70":1,"89":4}}],["tempname",{"2":{"2":1,"4":1,"5":1,"6":1}}],["tspan",{"2":{"16":1}}],["t",{"2":{"16":4,"37":1,"39":2,"40":2,"42":3,"59":1,"62":2,"63":3,"64":3,"65":5,"74":1,"82":1,"83":2,"91":1,"92":1}}],["two",{"2":{"8":1,"9":1,"18":8,"19":4,"20":3,"21":2,"34":2,"35":1,"68":1,"83":1}}],["toghether",{"2":{"83":1}}],["together",{"2":{"46":1,"70":1}}],["touches",{"2":{"65":1}}],["tolerances",{"2":{"64":1}}],["tos",{"2":{"59":4,"61":2,"62":4,"63":4,"64":3,"65":9,"66":2,"72":2,"73":2,"75":2,"78":1}}],["top",{"2":{"56":1}}],["too",{"2":{"40":1,"68":1}}],["todo",{"2":{"21":1,"92":1}}],["toy",{"2":{"21":1,"79":1}}],["to",{"0":{"9":1,"18":1,"19":1,"43":1,"78":1,"84":1,"85":1},"1":{"44":1,"45":1,"85":1,"86":2},"2":{"0":4,"1":4,"3":1,"4":1,"6":2,"7":1,"8":1,"9":1,"10":8,"12":1,"15":1,"16":2,"17":1,"18":2,"19":1,"20":4,"21":3,"22":2,"23":6,"24":3,"25":2,"27":3,"28":1,"31":2,"32":2,"34":3,"35":1,"37":2,"39":2,"40":6,"41":1,"42":1,"45":2,"46":2,"47":1,"48":1,"49":3,"50":2,"52":1,"53":1,"56":1,"57":1,"58":3,"59":1,"61":3,"65":1,"66":1,"67":1,"68":5,"69":3,"70":2,"71":2,"72":1,"73":2,"74":2,"75":2,"76":2,"77":1,"78":2,"79":4,"80":3,"82":47,"83":19,"85":2,"86":3,"90":2,"94":1,"96":3,"98":2,"102":1}}],["though",{"2":{"79":1}}],["those",{"2":{"11":1,"24":1,"26":1,"27":1,"45":1,"69":1,"80":1}}],["through",{"2":{"82":5,"83":5,"88":1}}],["thrown",{"2":{"77":1}}],["three",{"2":{"36":1,"69":1,"91":1}}],["threads",{"2":{"82":2}}],["thread",{"2":{"23":1}}],["than",{"2":{"24":1,"36":1,"41":1,"42":1}}],["that",{"2":{"0":1,"9":2,"10":1,"13":1,"16":5,"20":1,"21":1,"22":2,"23":1,"24":1,"33":1,"35":1,"38":1,"40":2,"42":1,"46":1,"47":1,"49":1,"52":1,"55":1,"66":1,"68":1,"69":2,"71":1,"79":2,"82":13,"83":13,"94":1,"96":1}}],["things",{"2":{"31":1}}],["think",{"2":{"1":1}}],["thinking",{"2":{"1":1}}],["this",{"2":{"0":1,"1":1,"4":1,"7":1,"10":1,"13":2,"16":4,"17":1,"19":2,"22":3,"23":1,"24":1,"28":1,"31":1,"34":1,"39":1,"40":2,"41":2,"42":2,"45":1,"46":1,"49":1,"53":2,"57":1,"58":1,"65":1,"67":1,"70":1,"74":1,"80":2,"81":2,"82":6,"83":10,"85":1,"86":2,"95":1,"96":1}}],["they",{"2":{"46":4}}],["their",{"0":{"39":1,"40":1},"2":{"38":1,"40":1,"47":1,"68":1,"82":3,"83":2}}],["then",{"2":{"21":2,"22":2,"33":1,"41":1,"46":1,"79":1,"80":1,"86":2,"88":1}}],["thereby",{"2":{"82":1}}],["therefore",{"2":{"42":1,"90":1}}],["there",{"2":{"14":2,"21":1,"27":1,"34":1,"46":2,"82":1}}],["theme",{"2":{"56":2}}],["them",{"2":{"7":1,"10":1,"36":1,"80":1,"82":1}}],["these",{"2":{"0":1,"6":1,"34":1,"36":1,"47":1,"66":1,"68":1}}],["the",{"0":{"32":1,"34":1,"42":1,"50":1,"92":1,"95":1},"1":{"33":1},"2":{"0":5,"1":4,"2":3,"4":1,"5":4,"6":4,"8":6,"9":3,"10":1,"11":1,"13":3,"14":2,"15":1,"16":12,"17":3,"18":5,"19":2,"20":3,"21":9,"22":14,"23":7,"24":2,"27":1,"29":3,"31":1,"32":3,"33":5,"34":3,"35":2,"36":2,"37":9,"39":3,"40":10,"41":3,"42":10,"45":1,"46":7,"48":2,"49":5,"50":4,"51":2,"52":1,"53":2,"54":2,"55":2,"56":9,"59":1,"61":1,"62":5,"63":3,"64":5,"65":6,"66":1,"67":1,"68":5,"69":4,"70":4,"76":1,"77":3,"78":1,"79":10,"80":2,"82":116,"83":83,"84":1,"85":1,"86":6,"88":2,"89":6,"90":8,"91":1,"92":4,"94":6,"95":1,"96":5,"98":1}}],["switched",{"2":{"90":1}}],["syntax",{"2":{"90":1,"94":1}}],["system",{"2":{"86":1}}],["symbol",{"2":{"10":1,"12":1,"13":1,"18":1,"20":1,"29":2,"46":5,"51":4,"52":2,"53":2,"54":4,"55":4,"56":6,"82":3,"83":1}}],["src",{"2":{"85":1}}],["sres",{"2":{"59":2,"61":2,"72":2,"78":2}}],["skipped",{"2":{"82":1}}],["skip",{"2":{"82":1}}],["skipmissing",{"2":{"23":1,"41":1}}],["skeleton=a",{"2":{"79":1}}],["skeleton=true",{"2":{"79":2}}],["skeleton=false",{"2":{"77":1,"82":1}}],["skeleton",{"0":{"79":1},"2":{"79":8,"80":4}}],["ssp585",{"2":{"58":1,"98":2}}],["snow3",{"2":{"42":1}}],["snippet",{"2":{"6":1}}],["small",{"2":{"31":1,"46":1}}],["slightly",{"2":{"94":1}}],["slicing",{"2":{"16":1}}],["slices",{"2":{"82":3}}],["slice",{"2":{"16":1,"98":4,"99":1}}],["slow",{"2":{"40":1}}],["slurmmanager",{"2":{"23":1}}],["shinclude",{"2":{"86":1}}],["shdocs>",{"2":{"86":1}}],["shnpm",{"2":{"86":2}}],["should",{"2":{"37":1,"46":1,"50":1,"82":3,"83":1,"85":1,"86":1}}],["shown",{"2":{"82":1}}],["showprog",{"2":{"82":1}}],["shows",{"2":{"56":1}}],["showing",{"2":{"46":1}}],["show",{"2":{"23":1,"80":1,"102":1}}],["shading=false",{"2":{"100":1,"101":1,"102":1}}],["shall",{"2":{"82":5,"83":1}}],["shares",{"2":{"40":1}}],["share",{"0":{"39":1,"40":1},"2":{"38":1,"40":1,"69":1,"82":1}}],["shared",{"2":{"4":1,"5":1,"6":1,"20":1,"30":1,"35":1,"39":2,"40":3,"44":1,"45":1,"46":2,"58":1,"59":1,"60":1,"61":1,"72":1,"78":1,"79":1,"98":1}}],["shape",{"2":{"6":1}}],["scene",{"2":{"102":3}}],["scenariomip",{"2":{"58":1,"98":2}}],["scenarios",{"2":{"17":1,"98":1}}],["scripts",{"2":{"86":1}}],["scope",{"2":{"82":1,"83":1}}],["scalar",{"2":{"58":1}}],["scattered",{"2":{"7":1}}],["sure",{"2":{"102":1}}],["surface",{"2":{"56":2,"58":2,"59":2,"62":5,"63":6,"64":6,"65":10,"100":1,"101":1}}],["such",{"2":{"65":1,"82":1,"90":1}}],["subcubes",{"2":{"82":1}}],["subtype",{"2":{"68":1,"83":1,"90":1}}],["subtables",{"2":{"42":1}}],["subarray",{"2":{"55":1,"56":1}}],["subsetextensions",{"2":{"83":1}}],["subsetcube",{"2":{"82":1}}],["subseting",{"2":{"66":1}}],["subsetting",{"0":{"37":1,"38":1,"39":1,"40":1},"1":{"39":1,"40":1},"2":{"58":1,"59":1,"83":1,"92":1}}],["subset",{"0":{"36":1},"1":{"37":1,"38":1,"39":1,"40":1},"2":{"37":5,"40":4,"61":1,"64":1,"82":1,"83":1,"98":1}}],["subsets",{"2":{"15":1,"71":1}}],["subsequent",{"2":{"17":1}}],["supposed",{"2":{"82":1}}],["support",{"2":{"27":1,"46":1}}],["supertype",{"2":{"26":1,"27":1}}],["summarysize",{"2":{"47":2}}],["sum",{"2":{"18":1,"19":1,"21":1,"22":2,"41":1,"51":4,"54":2,"55":4,"56":2}}],["suggestions",{"2":{"6":1}}],["s",{"2":{"10":1,"16":3,"18":1,"19":1,"21":2,"33":1,"35":1,"37":1,"39":1,"40":2,"56":7,"61":1,"71":1,"79":1,"82":2,"83":1,"92":1}}],["style",{"0":{"96":1}}],["st",{"2":{"90":1}}],["stdzero",{"2":{"82":1}}],["stock3",{"2":{"46":4}}],["stock2",{"2":{"46":4}}],["stock1",{"2":{"46":4}}],["stocks",{"2":{"46":7}}],["storing",{"2":{"69":1}}],["storage",{"2":{"11":1,"58":1}}],["stored",{"2":{"68":3,"83":2}}],["stores",{"2":{"68":1,"82":1}}],["store",{"2":{"0":1,"58":4,"68":1,"69":1,"98":2}}],["struct",{"2":{"82":1,"83":4}}],["structures",{"2":{"67":1}}],["structure",{"2":{"33":2,"46":1,"70":1}}],["strings",{"0":{"47":1}}],["string",{"2":{"8":1,"9":2,"10":1,"12":1,"13":1,"14":2,"16":5,"17":3,"18":4,"19":3,"20":1,"21":4,"22":6,"25":1,"26":2,"27":3,"29":3,"32":1,"33":3,"34":1,"35":2,"37":5,"41":3,"42":3,"47":5,"51":1,"52":1,"54":2,"55":1,"56":1,"58":2,"59":2,"60":1,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"77":1,"78":1,"79":1,"82":6,"83":4,"89":4,"92":1,"98":1}}],["stable",{"2":{"90":1}}],["stat",{"2":{"76":2}}],["statistics",{"2":{"14":1,"23":1,"42":3,"48":1,"91":1}}],["standard",{"2":{"58":1,"59":1,"62":2,"63":3,"64":3,"65":5}}],["standards",{"2":{"58":1,"59":1,"61":1,"72":1,"78":1,"98":1}}],["stack",{"2":{"47":1}}],["started",{"0":{"87":1},"1":{"88":1,"89":1,"90":1}}],["start=12",{"2":{"51":2,"52":1,"54":2,"55":2,"56":3}}],["start=december",{"2":{"51":3,"54":1}}],["start",{"2":{"10":1,"37":1,"74":1,"80":1}}],["still",{"2":{"8":1,"22":1,"69":1,"94":1}}],["step=3",{"2":{"51":2,"52":1,"54":2,"55":2,"56":3}}],["steps",{"2":{"10":1,"14":1,"56":1,"82":1,"86":1}}],["step",{"2":{"7":1,"14":1,"20":1,"41":2,"82":1,"83":2,"98":1}}],["sphere",{"0":{"102":1},"2":{"102":3}}],["spheroid",{"2":{"60":1}}],["split",{"2":{"82":1}}],["splitted",{"2":{"2":1}}],["special",{"2":{"63":1,"82":1,"83":1}}],["specifiers",{"2":{"83":1}}],["specifier",{"2":{"82":1}}],["specifies",{"2":{"82":3}}],["specified",{"2":{"82":7,"83":1}}],["specific",{"2":{"37":1,"82":2}}],["specifying",{"2":{"82":2,"83":1}}],["specify",{"0":{"20":1},"2":{"17":1,"29":1,"82":1}}],["specs",{"2":{"58":1,"98":1}}],["spectral",{"2":{"56":1}}],["sparse",{"2":{"68":1}}],["spatio",{"2":{"41":1}}],["spatial",{"2":{"1":1,"14":1,"22":5,"23":1,"48":1,"68":1}}],["span",{"2":{"37":1,"91":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":3,"18":3,"19":2,"20":3,"21":9,"22":8,"25":2,"26":6,"27":4,"29":9,"30":3,"32":9,"33":6,"34":2,"35":3,"37":14,"39":6,"40":10,"41":9,"42":5,"44":1,"45":5,"46":4,"47":4,"51":3,"52":2,"54":2,"55":1,"56":7,"58":6,"59":6,"60":2,"61":3,"62":6,"63":4,"64":9,"65":15,"66":2,"72":3,"78":6,"79":6,"89":5,"92":1,"98":3}}],["same",{"2":{"0":1,"2":1,"5":1,"6":1,"9":1,"16":1,"20":1,"22":2,"26":1,"27":1,"33":2,"34":2,"35":1,"40":1,"45":1,"46":2,"62":1,"63":1,"64":1,"68":1,"69":3,"70":2,"82":1,"83":1,"86":1}}],["saves",{"2":{"77":1,"82":1}}],["save",{"0":{"79":1},"2":{"12":1,"27":1,"45":1,"47":1,"73":2,"74":1,"75":2,"76":1,"79":1,"82":2}}],["savecube",{"2":{"2":1,"73":1,"75":1,"79":1,"82":2}}],["savedataset",{"2":{"4":1,"5":1,"6":1,"74":1,"76":1,"77":2,"78":1,"79":2,"82":2,"83":1}}],["saved",{"2":{"2":1,"11":1,"20":1,"76":1,"77":1}}],["saving",{"2":{"1":1,"4":1,"5":1,"6":1,"16":1}}],["serve",{"2":{"83":1}}],["series",{"0":{"49":1},"2":{"23":1}}],["sequence",{"2":{"68":1}}],["seaborn",{"2":{"99":1,"100":1,"101":1,"102":1}}],["searching",{"2":{"82":1}}],["search",{"2":{"82":1}}],["sea",{"2":{"59":3,"61":1,"62":5,"63":6,"64":6,"65":10,"72":1,"78":1}}],["season",{"2":{"51":1,"54":2,"55":1}}],["seasons",{"0":{"51":1,"53":1,"56":1},"1":{"52":1,"53":1},"2":{"51":9,"54":1,"56":5}}],["seasonal",{"0":{"49":1,"91":1,"93":1},"1":{"92":1,"93":1},"2":{"49":1,"55":1,"56":1,"91":1,"92":4}}],["sebastien",{"2":{"59":2,"61":2,"72":2,"78":2}}],["separate",{"2":{"82":1,"83":1}}],["separated",{"2":{"69":1}}],["separately",{"2":{"5":1,"22":1,"23":1}}],["sep",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["selected",{"2":{"83":1,"91":1}}],["select",{"0":{"61":1,"62":1,"63":1,"64":1},"1":{"62":1,"63":1,"64":1,"65":1,"66":1},"2":{"40":1,"61":1}}],["selectors",{"2":{"65":1}}],["selector",{"2":{"40":1,"64":1}}],["selection",{"2":{"40":2}}],["selecting",{"2":{"37":1,"39":1,"40":1}}],["seed",{"2":{"17":1,"21":2}}],["see",{"2":{"16":1,"18":1,"65":1,"82":1,"90":1}}],["second",{"2":{"8":3,"18":1,"19":1,"82":1}}],["section",{"2":{"7":1,"10":1,"24":1,"28":1,"31":1,"46":1,"57":1,"67":1,"81":1}}],["setting",{"2":{"77":1,"82":1,"83":1}}],["sets",{"2":{"6":1,"50":1}}],["set",{"0":{"4":1,"5":1,"6":1},"2":{"4":1,"5":1,"19":2,"22":1,"58":1,"77":1,"82":1,"83":2,"86":1}}],["setchunks",{"2":{"1":1,"2":2,"3":1,"4":1,"5":1,"6":1,"82":1,"83":1}}],["several",{"0":{"16":1},"2":{"0":1,"16":1,"35":1,"38":1}}],["sin",{"2":{"91":1}}],["sink",{"2":{"83":1}}],["single",{"0":{"91":1},"1":{"92":1,"93":1},"2":{"0":1,"7":1,"8":1,"70":1,"73":1,"75":1,"82":6,"83":1}}],["significant",{"2":{"74":1}}],["simulate",{"2":{"46":1}}],["simplicity",{"2":{"91":1}}],["simply",{"2":{"23":1,"47":1,"80":1,"86":1}}],["simple",{"2":{"16":1,"31":1,"89":1}}],["situations",{"2":{"1":1}}],["size=",{"2":{"100":1,"101":1,"102":1}}],["sizes",{"2":{"2":1,"82":2,"83":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":2,"18":2,"19":2,"21":6,"22":4,"25":2,"26":2,"27":2,"29":4,"32":2,"33":6,"34":2,"35":2,"37":10,"41":6,"42":6,"47":2,"54":2,"56":1,"58":2,"59":2,"62":4,"63":6,"64":6,"65":10,"76":4,"79":2,"80":1,"82":3,"83":4,"89":5,"91":1,"92":3,"93":1,"99":1}}],["sosstsst",{"2":{"59":1,"62":2,"63":3,"64":3,"65":5}}],["software",{"2":{"59":1,"61":1,"72":1}}],["sort",{"2":{"22":1}}],["so",{"2":{"2":1,"23":1,"36":1,"40":1,"82":1,"83":1}}],["source",{"2":{"0":2,"59":1,"61":1,"72":1,"77":1,"78":1,"82":24,"83":24}}],["sometimes",{"2":{"79":1,"96":1}}],["some",{"0":{"40":1},"2":{"0":1,"11":1,"38":1,"40":1,"41":1,"46":2,"56":1,"82":1,"91":1,"100":1}}],["again",{"2":{"77":1,"80":1}}],["agreement",{"2":{"56":1}}],["aggregation",{"2":{"23":1}}],["aggregate",{"2":{"22":1}}],["air",{"2":{"56":2,"58":3}}],["authority",{"2":{"60":5}}],["auto",{"2":{"18":1,"20":1,"82":1}}],["aug",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["api",{"0":{"81":1,"82":1,"83":1},"1":{"82":1,"83":1}}],["apr",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["appropriate",{"2":{"85":1}}],["approximated",{"2":{"83":1}}],["approx",{"2":{"82":1,"83":1}}],["approach",{"2":{"9":1}}],["append=true",{"2":{"78":2}}],["append",{"0":{"78":1},"2":{"77":1,"82":1}}],["apply",{"0":{"41":1},"2":{"10":2,"13":1,"15":1,"21":1,"23":1,"56":1,"92":1}}],["application",{"2":{"21":1}}],["applications",{"2":{"0":1}}],["applies",{"2":{"13":1}}],["applied",{"2":{"0":1,"3":1,"4":1,"22":1,"82":2,"83":1}}],["a3",{"2":{"30":4}}],["a2",{"2":{"29":1,"30":3,"59":2,"61":2,"72":2,"78":2,"89":1}}],["a1",{"2":{"29":1}}],["able",{"2":{"45":1}}],["abstractdict",{"2":{"82":1,"83":3}}],["abstractdimarray",{"2":{"26":1,"27":1,"68":1}}],["abs",{"2":{"21":1}}],["about",{"2":{"1":2,"36":1,"64":1,"89":1,"95":1}}],["above",{"2":{"0":1,"5":1,"16":1,"79":1,"88":1}}],["atol",{"2":{"64":1}}],["atmosphere",{"2":{"59":1,"61":1,"72":1,"78":1}}],["atmos",{"2":{"58":1,"98":1}}],["attributes",{"2":{"56":1,"82":1,"83":1}}],["at",{"2":{"21":1,"22":4,"27":1,"40":1,"46":3,"56":1,"59":2,"61":1,"62":2,"63":6,"64":7,"65":5,"69":1,"70":2,"72":1,"77":2,"78":1,"82":3,"83":2,"84":1,"85":2,"86":2,"89":1,"94":2}}],["after",{"2":{"14":1,"16":1,"60":1,"82":3}}],["addargs",{"2":{"82":3,"83":1}}],["adds",{"2":{"68":2,"71":1}}],["addprocs",{"2":{"23":2}}],["addition",{"2":{"22":1,"24":1,"68":1}}],["additional",{"2":{"4":3,"5":3,"9":1,"16":1,"21":1,"40":10,"45":4,"46":4,"58":2,"78":3,"82":4,"83":3,"98":2}}],["added",{"2":{"15":1,"78":1,"82":1,"83":1}}],["add",{"2":{"6":1,"10":1,"12":1,"41":1,"85":2,"88":2,"100":1}}],["asaxisarray",{"2":{"82":1}}],["assemble",{"2":{"89":1}}],["assessment",{"2":{"59":2,"61":2,"72":2,"78":2}}],["associated",{"2":{"82":1}}],["assign",{"0":{"43":1},"1":{"44":1,"45":1}}],["aspect=dataaspect",{"2":{"56":1,"99":1}}],["asked",{"0":{"31":1},"1":{"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1}}],["as",{"2":{"5":1,"12":1,"16":5,"18":1,"19":1,"21":1,"22":1,"23":1,"26":1,"27":2,"33":2,"34":1,"40":1,"42":1,"46":2,"51":2,"56":1,"58":1,"59":1,"60":1,"62":1,"65":1,"66":1,"68":1,"71":1,"79":1,"80":1,"82":11,"83":3,"90":1,"96":1,"98":1}}],["axs",{"2":{"50":1,"56":9}}],["ax",{"2":{"42":1,"91":3,"93":3,"99":1,"100":3,"101":3,"102":5}}],["axlist",{"2":{"10":2,"17":2,"19":1,"21":4,"22":2,"23":2,"29":2,"30":1,"35":3,"83":5,"89":3}}],["axessmall",{"2":{"83":2}}],["axes",{"0":{"32":1,"34":1},"1":{"33":1},"2":{"4":4,"5":4,"6":1,"20":1,"29":1,"30":1,"32":2,"33":1,"34":2,"37":2,"39":5,"40":13,"44":1,"45":5,"46":8,"58":3,"59":1,"60":1,"61":2,"68":2,"72":1,"78":4,"79":1,"82":15,"83":11,"89":1,"92":2,"98":3}}],["axislegend",{"2":{"93":1}}],["axis=false",{"2":{"102":1}}],["axis=",{"2":{"91":1}}],["axisdescriptor",{"2":{"83":1}}],["axisdesc",{"2":{"82":3}}],["axis",{"0":{"4":1},"2":{"4":1,"9":2,"16":3,"34":1,"37":1,"39":1,"40":7,"46":1,"56":1,"60":2,"66":1,"71":1,"79":1,"82":16,"83":14,"89":1,"93":1,"98":1,"99":1}}],["always",{"2":{"82":2,"83":1,"84":1,"90":1}}],["already",{"2":{"77":1,"82":1,"83":1}}],["al",{"2":{"59":1,"61":1,"70":1,"72":1,"78":1}}],["alternatives",{"2":{"82":1}}],["alternatively",{"2":{"0":1,"2":1,"82":1,"88":1}}],["altered",{"2":{"58":1,"59":1,"62":2,"63":3,"64":3,"65":5}}],["although",{"2":{"46":1,"47":1,"65":1}}],["algebra",{"0":{"41":1},"2":{"41":1}}],["along",{"0":{"8":1},"2":{"8":1,"16":1,"82":3,"83":2,"94":1}}],["allaxes",{"2":{"83":1}}],["allinaxes",{"2":{"83":1}}],["allmissing",{"2":{"82":1}}],["allocate",{"2":{"79":1}}],["allocation",{"2":{"22":1}}],["allow",{"2":{"83":1}}],["allowed",{"2":{"47":1}}],["allowing",{"2":{"26":1,"27":1,"69":1}}],["allows",{"2":{"23":1}}],["all",{"0":{"6":1,"39":1,"40":1},"2":{"4":1,"6":2,"10":1,"12":1,"13":1,"14":2,"22":1,"23":4,"38":1,"40":2,"46":3,"56":2,"60":1,"65":1,"68":1,"70":2,"77":3,"79":1,"81":1,"82":6,"83":7,"86":1}}],["also",{"2":{"2":1,"3":1,"14":1,"21":1,"23":1,"29":1,"32":1,"40":1,"42":1,"68":2,"69":1,"74":1,"79":2,"82":1,"88":1}}],["analog",{"2":{"69":1}}],["analyzing",{"2":{"1":1}}],["anchor",{"2":{"21":1}}],["another",{"2":{"16":1,"40":1}}],["anynymous",{"2":{"82":1}}],["anyocean",{"2":{"82":1}}],["anymissing",{"2":{"82":1}}],["anymore",{"2":{"21":1}}],["any",{"2":{"8":1,"9":1,"10":1,"11":1,"14":2,"16":5,"18":3,"20":1,"21":2,"22":4,"25":1,"26":2,"27":3,"29":1,"32":1,"33":3,"34":1,"35":1,"37":6,"41":3,"42":3,"47":4,"51":3,"52":2,"54":4,"55":3,"56":3,"58":2,"59":2,"60":1,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1,"79":1,"82":4,"83":9,"89":1,"92":1,"98":1}}],["an",{"0":{"8":1},"2":{"9":1,"10":4,"12":1,"13":1,"15":1,"23":2,"33":1,"34":1,"39":1,"40":1,"42":1,"47":1,"61":3,"64":1,"68":1,"69":1,"71":1,"72":1,"73":1,"74":1,"75":1,"77":1,"78":1,"82":19,"83":8}}],["and",{"0":{"17":1,"28":1,"34":1,"48":1,"57":1,"61":1,"65":1,"72":1},"1":{"18":1,"19":1,"20":1,"29":1,"30":1,"49":1,"50":1,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1,"58":1,"59":1,"60":1,"62":1,"63":1,"64":1,"65":1,"66":1,"73":1,"74":1,"75":1,"76":1,"77":1,"78":1,"79":1,"80":1},"2":{"0":1,"2":1,"5":1,"6":1,"7":1,"8":1,"12":1,"16":4,"17":2,"18":2,"20":2,"21":4,"22":2,"24":1,"28":1,"29":1,"32":1,"35":1,"37":1,"40":6,"41":1,"42":6,"46":5,"48":1,"49":1,"51":1,"56":1,"57":2,"58":1,"59":1,"61":1,"65":1,"68":5,"69":3,"70":2,"72":1,"74":2,"76":1,"77":1,"78":1,"79":3,"80":1,"82":18,"83":6,"84":1,"86":4,"88":1,"89":2,"91":1,"98":1,"100":1}}],["available",{"2":{"65":2,"79":1,"81":1,"82":2,"88":1}}],["avariable",{"2":{"0":1}}],["avoids",{"2":{"22":1}}],["avoided",{"2":{"0":1}}],["averaging",{"2":{"14":1}}],["averages",{"0":{"49":1},"2":{"48":1}}],["average",{"2":{"14":1,"49":2}}],["artype",{"2":{"82":2}}],["archgdaldatasets",{"2":{"60":1}}],["archgdal",{"2":{"60":2}}],["argument",{"2":{"23":1,"79":1,"82":4,"83":2}}],["arguments",{"2":{"21":1,"56":1,"82":11,"83":3}}],["arr2",{"2":{"27":1}}],["arr",{"2":{"22":7,"27":2}}],["arrayinfo",{"2":{"83":1}}],["arrays",{"2":{"6":1,"7":1,"8":2,"9":1,"11":1,"28":1,"30":2,"58":2,"59":2,"67":1,"68":4,"69":3,"70":3,"82":2,"83":1}}],["array",{"0":{"22":1,"25":1},"2":{"0":1,"1":1,"8":2,"9":2,"10":3,"12":2,"13":2,"15":1,"18":1,"20":1,"22":8,"25":2,"34":1,"51":1,"56":1,"61":1,"68":4,"69":1,"70":1,"71":2,"79":5,"80":5,"82":10,"83":4,"89":3}}],["arbitrary",{"2":{"16":1}}],["arithmetics",{"0":{"12":1},"2":{"10":1}}],["areas",{"2":{"82":1}}],["area",{"2":{"58":2,"82":1}}],["areacella",{"2":{"58":2,"98":1}}],["are",{"2":{"0":1,"11":1,"18":1,"19":1,"24":3,"34":1,"36":1,"40":1,"46":3,"56":2,"61":1,"65":1,"66":1,"68":3,"69":2,"70":3,"79":1,"82":11,"83":6,"84":1,"86":1,"94":2,"96":1}}],["according",{"2":{"82":1}}],["access",{"2":{"1":2,"13":1,"29":1,"68":1,"71":1}}],["accessed",{"2":{"0":2,"58":1,"59":1}}],["activate",{"2":{"42":1,"86":2,"91":1,"99":1,"102":1}}],["actually",{"2":{"83":1}}],["actual",{"2":{"13":1,"79":1,"83":1,"89":1}}],["achieves",{"2":{"33":1}}],["achieved",{"2":{"0":1}}],["across",{"2":{"0":1,"7":1,"16":1,"68":3}}],["a",{"0":{"9":1,"11":1,"22":1,"29":1,"30":1,"32":1,"36":1,"37":1,"38":1,"39":1,"40":1,"43":1,"46":2,"47":1,"62":1,"66":1,"77":1,"78":1,"91":1,"97":1},"1":{"33":1,"37":1,"38":1,"39":2,"40":2,"44":1,"45":1,"92":1,"93":1},"2":{"0":4,"2":7,"3":1,"4":1,"7":1,"8":1,"9":2,"10":3,"11":1,"12":4,"13":2,"14":2,"15":1,"16":5,"17":2,"18":1,"19":2,"20":1,"22":75,"23":11,"25":2,"26":5,"27":8,"29":1,"31":1,"32":2,"33":2,"34":1,"36":4,"37":3,"38":1,"40":2,"42":3,"44":2,"45":2,"46":4,"49":1,"54":1,"56":2,"58":6,"59":3,"60":1,"64":2,"65":4,"66":1,"68":12,"69":4,"70":8,"71":1,"73":3,"74":3,"75":3,"76":1,"77":4,"79":5,"82":60,"83":31,"85":2,"86":2,"89":4,"90":1,"95":1,"96":1}}],["iall",{"2":{"83":1}}],["iwindow",{"2":{"83":1}}],["icolon",{"2":{"83":1}}],["icefire",{"2":{"99":1,"100":1,"101":1,"102":1}}],["ice",{"2":{"59":1,"61":1,"72":1,"78":1}}],["ipcc",{"2":{"59":3,"61":3,"72":3,"78":3}}],["ipsl",{"2":{"59":6,"61":6,"72":6,"78":6}}],["idx",{"2":{"92":3}}],["identical",{"2":{"82":1}}],["id",{"2":{"58":2,"59":2,"61":2,"72":2,"78":2,"98":2}}],["irregular",{"2":{"20":1,"40":6,"42":2,"46":4,"51":1,"54":2,"55":1,"56":1,"58":4,"59":2,"61":1,"62":2,"63":2,"64":6,"65":5,"72":1,"78":1,"83":1,"98":2}}],["illustrate",{"2":{"17":1}}],["immutable",{"2":{"11":1}}],["improving",{"2":{"90":1}}],["improvement",{"2":{"74":1}}],["improve",{"2":{"6":1}}],["implementing",{"2":{"82":1}}],["importance",{"2":{"83":1}}],["important",{"2":{"1":1}}],["impossible",{"2":{"11":1}}],["i",{"0":{"35":1,"36":1,"41":1,"42":1,"43":1,"46":1},"1":{"37":1,"38":1,"39":1,"40":1,"44":1,"45":1},"2":{"8":1,"22":3,"26":1,"27":1,"37":1,"56":2,"77":1,"82":7,"83":4,"86":2,"89":1,"92":3}}],["ispar",{"2":{"82":1,"83":1}}],["ismissing",{"2":{"79":1}}],["issue",{"2":{"74":1}}],["issues",{"2":{"50":1}}],["isequal",{"2":{"22":1}}],["is",{"2":{"1":2,"2":1,"6":1,"7":1,"9":1,"13":1,"14":2,"15":1,"16":4,"21":2,"22":2,"23":3,"24":1,"27":1,"31":1,"33":2,"35":1,"36":1,"40":2,"41":1,"42":4,"46":2,"47":2,"49":2,"50":2,"51":1,"55":1,"62":1,"65":2,"66":1,"68":4,"69":1,"70":2,"71":1,"79":4,"80":1,"82":10,"83":10,"85":1,"88":1,"90":1,"94":1,"96":1}}],["if",{"2":{"0":1,"18":1,"19":1,"24":1,"40":3,"74":1,"77":1,"79":2,"82":11,"83":6,"86":1,"94":1}}],["inline",{"2":{"102":2}}],["incubes",{"2":{"83":1}}],["incs",{"2":{"83":1}}],["include",{"2":{"82":2,"83":1}}],["included",{"2":{"65":1}}],["inarbc",{"2":{"83":1}}],["inar",{"2":{"83":2}}],["inplace",{"2":{"82":3,"83":1}}],["inputcube",{"2":{"83":2}}],["inputs",{"2":{"18":1}}],["input",{"2":{"16":1,"17":1,"18":1,"20":1,"23":2,"42":1,"82":12,"83":8}}],["innerchunks",{"2":{"83":1}}],["inner",{"2":{"82":9,"83":3}}],["installed",{"2":{"90":1}}],["installation",{"0":{"88":1}}],["install",{"2":{"86":1,"88":1}}],["instead",{"2":{"8":1,"9":1,"13":1,"32":1,"37":1,"65":1,"68":1}}],["insize",{"2":{"83":1}}],["inside",{"2":{"82":3}}],["initialization",{"2":{"58":1,"98":1}}],["initially",{"2":{"22":1}}],["inds",{"2":{"83":1}}],["indeed",{"2":{"80":1}}],["indexing",{"2":{"63":2,"64":2,"80":1,"90":1}}],["index",{"2":{"58":2,"83":2,"98":2}}],["independently",{"2":{"46":1}}],["indices",{"2":{"83":1,"92":1}}],["indicate",{"2":{"82":1}}],["indicating",{"2":{"9":1,"22":1,"82":1}}],["indims=indims",{"2":{"22":1,"23":1}}],["indims",{"0":{"21":1},"2":{"16":8,"18":4,"20":7,"21":3,"82":7}}],["individually",{"2":{"13":2}}],["individual",{"2":{"0":1,"58":1,"59":1}}],["information",{"2":{"77":1,"83":2}}],["info",{"2":{"16":2,"27":1,"32":1,"48":1,"76":4,"79":1,"90":1}}],["introducing",{"2":{"70":1}}],["int",{"2":{"33":1,"47":1,"92":3}}],["interested",{"2":{"94":1}}],["internal",{"0":{"83":1},"2":{"83":9}}],["internally",{"2":{"69":1}}],["interface",{"2":{"82":2,"96":1}}],["interval",{"2":{"59":1,"62":2,"63":3,"64":4,"65":6}}],["intervalsets",{"2":{"65":1}}],["intervals",{"0":{"65":1},"2":{"37":1}}],["interactive",{"2":{"0":1}}],["integer",{"2":{"29":1,"63":1,"64":1,"68":1}}],["int64",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"16":8,"17":1,"18":1,"19":1,"21":7,"25":2,"26":6,"27":2,"29":3,"32":9,"33":7,"34":4,"37":15,"39":4,"40":7,"42":3,"44":1,"45":5,"47":5,"51":6,"52":6,"54":4,"55":1,"56":19,"78":3,"79":6,"83":1,"89":2}}],["into",{"0":{"97":1},"2":{"0":1,"1":1,"2":1,"7":1,"8":1,"16":1,"22":1,"24":2,"27":1,"40":4,"47":1,"57":1,"70":2,"77":1,"80":1,"82":6,"83":3,"86":1,"102":1}}],["in",{"0":{"20":1,"43":1},"1":{"44":1,"45":1},"2":{"0":5,"1":1,"2":1,"4":2,"5":1,"9":1,"11":1,"13":1,"14":2,"16":2,"18":1,"19":1,"21":1,"22":6,"23":3,"24":2,"26":1,"27":1,"34":1,"38":1,"40":1,"42":2,"46":4,"49":2,"50":2,"53":3,"56":4,"58":2,"59":1,"62":2,"63":3,"64":4,"65":7,"66":1,"67":1,"68":5,"69":1,"70":2,"79":1,"80":1,"82":13,"83":9,"86":2,"88":1,"89":2,"92":1,"94":3,"96":4,"98":1}}],["iter",{"2":{"82":1}}],["iterate",{"2":{"96":1}}],["iteration",{"0":{"96":1}}],["iterator",{"2":{"42":1}}],["iterators",{"2":{"22":1}}],["iterable",{"2":{"42":2,"82":2}}],["itself",{"2":{"82":1,"83":1}}],["its",{"2":{"0":1}}],["it",{"2":{"0":2,"1":3,"12":1,"16":1,"18":1,"20":1,"23":2,"32":1,"34":1,"35":1,"40":2,"42":2,"46":2,"47":1,"52":1,"54":1,"56":1,"61":1,"68":2,"69":1,"71":1,"76":1,"77":1,"79":2,"80":1,"82":10,"83":5,"86":1,"88":1}}],["lscene",{"2":{"102":1}}],["lmdz",{"2":{"59":1,"61":1,"72":1,"78":1}}],["link",{"2":{"85":1}}],["linewidth=0",{"2":{"100":1,"101":1}}],["linewidth=2",{"2":{"93":2}}],["linewidth=1",{"2":{"91":1,"93":1}}],["linestyle=",{"2":{"93":2}}],["lines",{"2":{"91":1,"93":3}}],["line",{"2":{"42":1}}],["lim",{"2":{"59":1,"61":1,"72":1,"78":1}}],["libraries",{"2":{"37":1,"68":1}}],["libray",{"2":{"36":1}}],["little",{"2":{"23":1}}],["list",{"2":{"22":1,"46":5,"82":5,"83":6}}],["like",{"2":{"0":1,"42":1,"46":1,"82":2,"83":1,"85":1}}],["loopinds",{"2":{"83":2}}],["looping",{"2":{"82":1,"83":1}}],["loopcachesize",{"2":{"83":1}}],["loopchunksize",{"2":{"82":1}}],["loopaxes",{"2":{"83":1}}],["loopvars",{"2":{"82":1,"83":1}}],["loops",{"2":{"82":1}}],["loop",{"2":{"82":1,"83":2}}],["looped",{"2":{"82":3,"83":3}}],["look",{"2":{"77":1,"82":1,"83":1,"85":1,"86":1}}],["lookups",{"2":{"51":15,"52":10,"54":5,"55":5,"56":38,"66":3}}],["lookup",{"2":{"51":1,"53":1,"98":3}}],["looks",{"2":{"42":1,"46":1}}],["located",{"2":{"94":1}}],["locate",{"2":{"86":1}}],["location",{"2":{"83":3}}],["locations",{"2":{"69":1,"70":1}}],["localhost",{"2":{"86":1}}],["locally",{"0":{"86":1},"2":{"86":1}}],["local",{"2":{"23":1,"58":1}}],["lowclip",{"2":{"56":4}}],["low",{"2":{"46":4}}],["lost",{"2":{"24":1}}],["lo",{"2":{"16":4}}],["loadorgenerate",{"2":{"83":1}}],["loading",{"2":{"60":1,"80":1}}],["loaded",{"2":{"40":2}}],["load",{"2":{"16":1,"37":1,"40":2,"68":1}}],["long",{"2":{"56":1,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5}}],["longitudes=longitudes",{"2":{"40":1}}],["longitudes",{"2":{"40":12}}],["longitude",{"2":{"21":1,"37":1,"60":1,"89":2}}],["lonlat",{"2":{"39":1}}],["lon=1",{"2":{"37":1,"39":1}}],["lon",{"2":{"10":2,"12":1,"13":1,"14":2,"16":10,"17":2,"18":1,"19":1,"20":1,"21":5,"22":12,"23":1,"26":2,"29":3,"30":1,"35":2,"37":7,"39":3,"41":4,"42":3,"58":2,"59":2,"61":1,"62":2,"63":3,"64":6,"65":10,"66":2,"72":1,"78":1,"98":2,"100":3}}],["lazy",{"2":{"82":1}}],["lazily",{"2":{"13":1}}],["layername",{"2":{"82":2}}],["layername=",{"2":{"79":2,"83":1}}],["layer",{"2":{"79":1,"82":1,"83":1}}],["layout",{"2":{"56":2}}],["labelled",{"2":{"82":1}}],["labels",{"2":{"56":1,"66":1,"70":1,"71":1}}],["label=false",{"2":{"56":1}}],["label=",{"2":{"56":1,"93":3}}],["label=cb",{"2":{"56":1}}],["label",{"2":{"56":3,"58":1,"98":1}}],["last",{"2":{"16":1,"23":1}}],["la",{"2":{"16":4}}],["latest",{"2":{"90":1}}],["later",{"2":{"18":1}}],["lat=5",{"2":{"37":1,"39":1}}],["latitudes=latitudes",{"2":{"40":1}}],["latitudes",{"2":{"40":11}}],["latitude",{"2":{"21":1,"37":1,"60":1,"89":2}}],["lat",{"2":{"10":2,"12":1,"13":1,"14":2,"16":7,"17":2,"18":1,"19":1,"20":1,"21":5,"22":12,"23":1,"26":2,"29":3,"30":1,"35":2,"37":7,"39":3,"41":4,"42":3,"58":2,"59":2,"61":1,"62":2,"63":3,"64":5,"65":5,"66":1,"72":1,"78":1,"82":1,"98":3,"100":1,"101":1}}],["larger",{"2":{"24":1}}],["large",{"2":{"0":2,"24":1,"50":1,"68":1}}],["learn",{"2":{"96":1}}],["learning",{"2":{"68":1,"94":1}}],["leap",{"2":{"91":1}}],["least",{"2":{"40":1,"46":1,"82":1}}],["length",{"2":{"51":2,"52":1,"54":3,"82":1,"83":3}}],["length=20",{"2":{"35":1,"89":1}}],["length=365",{"2":{"91":1}}],["length=3",{"2":{"17":1}}],["length=4",{"2":{"17":1}}],["length=15",{"2":{"10":1,"22":1,"23":1,"29":1,"35":1,"89":1}}],["length=10",{"2":{"10":1,"22":1,"23":1,"29":1,"35":1,"89":1}}],["level",{"2":{"21":1,"46":1,"74":1,"76":1,"85":1,"86":1}}],["left",{"2":{"14":2}}],["let",{"2":{"10":1,"16":2,"18":1,"19":1,"33":1,"35":1,"37":1,"39":1,"40":1,"56":1,"61":1,"92":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/previews/PR446/assets/chunks/@localSearchIndexroot.Buwh5vhl.js b/previews/PR446/assets/chunks/@localSearchIndexroot.Buwh5vhl.js new file mode 100644 index 00000000..68d3eac1 --- /dev/null +++ b/previews/PR446/assets/chunks/@localSearchIndexroot.Buwh5vhl.js @@ -0,0 +1 @@ +const e='{"documentCount":103,"nextId":103,"documentIds":{"0":"/YAXArrays.jl/previews/PR446/UserGuide/cache.html#Caching-YAXArrays","1":"/YAXArrays.jl/previews/PR446/UserGuide/chunk.html#Chunk-YAXArrays","2":"/YAXArrays.jl/previews/PR446/UserGuide/chunk.html#Chunking-YAXArrays","3":"/YAXArrays.jl/previews/PR446/UserGuide/chunk.html#Chunking-Datasets","4":"/YAXArrays.jl/previews/PR446/UserGuide/chunk.html#Set-Chunks-by-Axis","5":"/YAXArrays.jl/previews/PR446/UserGuide/chunk.html#Set-chunking-by-Variable","6":"/YAXArrays.jl/previews/PR446/UserGuide/chunk.html#Set-chunking-for-all-variables","7":"/YAXArrays.jl/previews/PR446/UserGuide/combine.html#Combine-YAXArrays","8":"/YAXArrays.jl/previews/PR446/UserGuide/combine.html#cat-along-an-existing-dimension","9":"/YAXArrays.jl/previews/PR446/UserGuide/combine.html#concatenatecubes-to-a-new-dimension","10":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Compute-YAXArrays","11":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Modify-elements-of-a-YAXArray","12":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#arithmetics","13":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#map","14":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#mapslices","15":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#mapCube","16":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Operations-over-several-YAXArrays","17":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#OutDims-and-YAXArray-Properties","18":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#One-InDims-to-many-OutDims","19":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Many-InDims-to-many-OutDims","20":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Specify-path-in-OutDims","21":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Different-InDims-names","22":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Creating-a-vector-array","23":"/YAXArrays.jl/previews/PR446/UserGuide/compute.html#Distributed-Computation","24":"/YAXArrays.jl/previews/PR446/UserGuide/convert.html#Convert-YAXArrays","25":"/YAXArrays.jl/previews/PR446/UserGuide/convert.html#Convert-Base.Array","26":"/YAXArrays.jl/previews/PR446/UserGuide/convert.html#Convert-Raster","27":"/YAXArrays.jl/previews/PR446/UserGuide/convert.html#Convert-DimArray","28":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Frequently-Asked-Questions-(FAQ)","29":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Extract-the-axes-names-from-a-Cube","30":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#rebuild","31":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Obtain-values-from-axes-and-data-from-the-cube","32":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#How-do-I-concatenate-cubes","33":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#How-do-I-subset-a-YAXArray-(-Cube-)-or-Dataset?","34":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Subsetting-a-YAXArray","35":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Subsetting-a-Dataset","36":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Subsetting-a-Dataset-whose-variables-share-all-their-dimensions","37":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Subsetting-a-Dataset-whose-variables-share-some-but-not-all-of-their-dimensions","38":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#How-do-I-apply-map-algebra?","39":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#How-do-I-use-the-CubeTable-function?","40":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#How-do-I-assign-variable-names-to-YAXArrays-in-a-Dataset","41":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#One-variable-name","42":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Multiple-variable-names","43":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Ho-do-I-construct-a-Dataset-from-a-TimeArray","44":"/YAXArrays.jl/previews/PR446/UserGuide/faq.html#Create-a-YAXArray-with-unions-containing-Strings","45":"/YAXArrays.jl/previews/PR446/UserGuide/create.html#Create-YAXArrays-and-Datasets","46":"/YAXArrays.jl/previews/PR446/UserGuide/create.html#Create-a-YAXArray","47":"/YAXArrays.jl/previews/PR446/UserGuide/create.html#Create-a-Dataset","48":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#Group-YAXArrays-and-Datasets","49":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#Seasonal-Averages-from-Time-Series-of-Monthly-Means","50":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#Download-the-data","51":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#GroupBy:-seasons","52":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#dropdims","53":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#seasons","54":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#GroupBy:-weight","55":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#weights","56":"/YAXArrays.jl/previews/PR446/UserGuide/group.html#weighted-seasons","57":"/YAXArrays.jl/previews/PR446/UserGuide/read.html#Read-YAXArrays-and-Datasets","58":"/YAXArrays.jl/previews/PR446/UserGuide/read.html#Read-Zarr","59":"/YAXArrays.jl/previews/PR446/UserGuide/read.html#Read-NetCDF","60":"/YAXArrays.jl/previews/PR446/UserGuide/read.html#Read-GDAL-(GeoTIFF,-GeoJSON)","61":"/YAXArrays.jl/previews/PR446/UserGuide/select.html#Select-YAXArrays-and-Datasets","62":"/YAXArrays.jl/previews/PR446/UserGuide/select.html#Select-a-YAXArray","63":"/YAXArrays.jl/previews/PR446/UserGuide/select.html#Select-elements","64":"/YAXArrays.jl/previews/PR446/UserGuide/select.html#Select-ranges","65":"/YAXArrays.jl/previews/PR446/UserGuide/select.html#Closed-and-open-intervals","66":"/YAXArrays.jl/previews/PR446/UserGuide/select.html#Get-a-dimension","67":"/YAXArrays.jl/previews/PR446/UserGuide/types.html#types","68":"/YAXArrays.jl/previews/PR446/UserGuide/types.html#yaxarray","69":"/YAXArrays.jl/previews/PR446/UserGuide/types.html#dataset","70":"/YAXArrays.jl/previews/PR446/UserGuide/types.html#(Data)-Cube","71":"/YAXArrays.jl/previews/PR446/UserGuide/types.html#dimension","72":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Write-YAXArrays-and-Datasets","73":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Write-Zarr","74":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#zarr-compression","75":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Write-NetCDF","76":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#netcdf-compression","77":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Overwrite-a-Dataset","78":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Append-to-a-Dataset","79":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Save-Skeleton","80":"/YAXArrays.jl/previews/PR446/UserGuide/write.html#Update-values-of-dataset","81":"/YAXArrays.jl/previews/PR446/development/contribute.html#Contribute-to-YAXArrays.jl","82":"/YAXArrays.jl/previews/PR446/development/contribute.html#Contribute-to-Documentation","83":"/YAXArrays.jl/previews/PR446/development/contribute.html#Build-docs-locally","84":"/YAXArrays.jl/previews/PR446/api.html#API-Reference","85":"/YAXArrays.jl/previews/PR446/api.html#Public-API","86":"/YAXArrays.jl/previews/PR446/api.html#Internal-API","87":"/YAXArrays.jl/previews/PR446/get_started.html#Getting-Started","88":"/YAXArrays.jl/previews/PR446/get_started.html#installation","89":"/YAXArrays.jl/previews/PR446/get_started.html#quickstart","90":"/YAXArrays.jl/previews/PR446/get_started.html#updates","91":"/YAXArrays.jl/previews/PR446/tutorials/mean_seasonal_cycle.html#Mean-Seasonal-Cycle-for-a-single-pixel","92":"/YAXArrays.jl/previews/PR446/tutorials/mean_seasonal_cycle.html#Define-the-cube","93":"/YAXArrays.jl/previews/PR446/tutorials/mean_seasonal_cycle.html#Plot-results:-mean-seasonal-cycle","94":"/YAXArrays.jl/previews/PR446/tutorials/other_tutorials.html#Other-tutorials","95":"/YAXArrays.jl/previews/PR446/tutorials/other_tutorials.html#General-overview-of-the-functionality-of-YAXArrays","96":"/YAXArrays.jl/previews/PR446/tutorials/other_tutorials.html#Table-style-iteration-over-YAXArrays","97":"/YAXArrays.jl/previews/PR446/tutorials/other_tutorials.html#Combining-multiple-tiff-files-into-a-zarr-based-datacube","98":"/YAXArrays.jl/previews/PR446/tutorials/plottingmaps.html#Plotting-maps","99":"/YAXArrays.jl/previews/PR446/tutorials/plottingmaps.html#Heatmap-plot","100":"/YAXArrays.jl/previews/PR446/tutorials/plottingmaps.html#Wintri-Projection","101":"/YAXArrays.jl/previews/PR446/tutorials/plottingmaps.html#Moll-projection","102":"/YAXArrays.jl/previews/PR446/tutorials/plottingmaps.html#3D-sphere-plot"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[2,1,86],"1":[2,1,58],"2":[2,2,57],"3":[2,2,9],"4":[4,4,76],"5":[4,4,76],"6":[5,4,81],"7":[2,1,31],"8":[5,2,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,98],"18":[5,7,126],"19":[5,7,97],"20":[4,7,91],"21":[3,3,150],"22":[4,3,248],"23":[2,2,138],"24":[2,1,52],"25":[3,2,84],"26":[2,2,116],"27":[2,2,120],"28":[5,1,19],"29":[7,5,75],"30":[1,11,90],"31":[8,5,75],"32":[5,5,87],"33":[10,5,33],"34":[3,14,144],"35":[3,14,18],"36":[9,14,69],"37":[13,14,156],"38":[7,5,112],"39":[8,5,169],"40":[11,5,1],"41":[3,15,24],"42":[3,15,59],"43":[8,5,140],"44":[7,5,80],"45":[4,1,14],"46":[3,4,106],"47":[3,4,45],"48":[4,1,30],"49":[8,4,35],"50":[3,4,67],"51":[2,4,136],"52":[1,6,102],"53":[1,6,49],"54":[2,4,107],"55":[1,6,87],"56":[2,6,349],"57":[4,1,14],"58":[2,4,188],"59":[2,4,206],"60":[5,4,90],"61":[4,1,165],"62":[3,4,106],"63":[2,4,117],"64":[2,4,131],"65":[4,4,144],"66":[3,4,73],"67":[1,1,16],"68":[1,1,113],"69":[1,1,78],"70":[3,1,70],"71":[1,1,32],"72":[4,1,146],"73":[2,4,19],"74":[2,5,52],"75":[2,4,20],"76":[2,5,44],"77":[3,4,77],"78":[4,4,157],"79":[2,4,154],"80":[4,4,93],"81":[4,1,15],"82":[3,4,40],"83":[3,5,75],"84":[2,1,10],"85":[2,2,554],"86":[2,2,463],"87":[2,1,1],"88":[1,2,34],"89":[1,2,196],"90":[1,2,49],"91":[7,1,73],"92":[3,7,132],"93":[5,7,48],"94":[2,1,49],"95":[6,2,12],"96":[5,2,38],"97":[9,2,1],"98":[2,1,136],"99":[2,2,21],"100":[2,1,46],"101":[2,2,33],"102":[3,2,57]},"averageFieldLength":[3.504854368932039,3.8349514563106792,92.07766990291262],"storedFields":{"0":{"title":"Caching YAXArrays","titles":[]},"1":{"title":"Chunk YAXArrays","titles":[]},"2":{"title":"Chunking YAXArrays","titles":["Chunk YAXArrays"]},"3":{"title":"Chunking Datasets","titles":["Chunk YAXArrays"]},"4":{"title":"Set Chunks by Axis","titles":["Chunk YAXArrays","Chunking Datasets"]},"5":{"title":"Set chunking by Variable","titles":["Chunk YAXArrays","Chunking Datasets"]},"6":{"title":"Set chunking for all variables","titles":["Chunk YAXArrays","Chunking Datasets"]},"7":{"title":"Combine YAXArrays","titles":[]},"8":{"title":"cat along an existing dimension","titles":["Combine YAXArrays"]},"9":{"title":"concatenatecubes to a new dimension","titles":["Combine YAXArrays"]},"10":{"title":"Compute YAXArrays","titles":[]},"11":{"title":"Modify elements of a YAXArray","titles":["Compute YAXArrays"]},"12":{"title":"Arithmetics","titles":["Compute YAXArrays"]},"13":{"title":"map","titles":["Compute YAXArrays"]},"14":{"title":"mapslices","titles":["Compute YAXArrays"]},"15":{"title":"mapCube","titles":["Compute YAXArrays"]},"16":{"title":"Operations over several YAXArrays","titles":["Compute YAXArrays","mapCube"]},"17":{"title":"OutDims and YAXArray Properties","titles":["Compute YAXArrays","mapCube"]},"18":{"title":"One InDims to many OutDims","titles":["Compute YAXArrays","mapCube","OutDims and YAXArray Properties"]},"19":{"title":"Many InDims to many OutDims","titles":["Compute YAXArrays","mapCube","OutDims and YAXArray Properties"]},"20":{"title":"Specify path in OutDims","titles":["Compute YAXArrays","mapCube","OutDims and YAXArray Properties"]},"21":{"title":"Different InDims names","titles":["Compute YAXArrays","mapCube"]},"22":{"title":"Creating a vector array","titles":["Compute YAXArrays","mapCube"]},"23":{"title":"Distributed Computation","titles":["Compute YAXArrays"]},"24":{"title":"Convert YAXArrays","titles":[]},"25":{"title":"Convert Base.Array","titles":["Convert YAXArrays"]},"26":{"title":"Convert Raster","titles":["Convert YAXArrays"]},"27":{"title":"Convert DimArray","titles":["Convert YAXArrays"]},"28":{"title":"Frequently Asked Questions (FAQ)","titles":[]},"29":{"title":"Extract the axes names from a Cube","titles":["Frequently Asked Questions (FAQ)"]},"30":{"title":"rebuild","titles":["Frequently Asked Questions (FAQ)","Extract the axes names from a Cube"]},"31":{"title":"Obtain values from axes and data from the cube","titles":["Frequently Asked Questions (FAQ)"]},"32":{"title":"How do I concatenate cubes","titles":["Frequently Asked Questions (FAQ)"]},"33":{"title":"How do I subset a YAXArray ( Cube ) or Dataset?","titles":["Frequently Asked Questions (FAQ)"]},"34":{"title":"Subsetting a YAXArray","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?"]},"35":{"title":"Subsetting a Dataset","titles":["Frequently Asked Questions (FAQ)","How do I subset a YAXArray ( Cube ) or Dataset?"]},"36":{"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"]},"37":{"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"]},"38":{"title":"How do I apply map algebra?","titles":["Frequently Asked Questions (FAQ)"]},"39":{"title":"How do I use the CubeTable function?","titles":["Frequently Asked Questions (FAQ)"]},"40":{"title":"How do I assign variable names to YAXArrays in a Dataset","titles":["Frequently Asked Questions (FAQ)"]},"41":{"title":"One variable name","titles":["Frequently Asked Questions (FAQ)","How do I assign variable names to YAXArrays in a Dataset"]},"42":{"title":"Multiple variable names","titles":["Frequently Asked Questions (FAQ)","How do I assign variable names to YAXArrays in a Dataset"]},"43":{"title":"Ho do I construct a Dataset from a TimeArray","titles":["Frequently Asked Questions (FAQ)"]},"44":{"title":"Create a YAXArray with unions containing Strings","titles":["Frequently Asked Questions (FAQ)"]},"45":{"title":"Create YAXArrays and Datasets","titles":[]},"46":{"title":"Create a YAXArray","titles":["Create YAXArrays and Datasets"]},"47":{"title":"Create a Dataset","titles":["Create YAXArrays and Datasets"]},"48":{"title":"Group YAXArrays and Datasets","titles":[]},"49":{"title":"Seasonal Averages from Time Series of Monthly Means","titles":["Group YAXArrays and Datasets"]},"50":{"title":"Download the data","titles":["Group YAXArrays and Datasets"]},"51":{"title":"GroupBy: seasons","titles":["Group YAXArrays and Datasets"]},"52":{"title":"dropdims","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"53":{"title":"seasons","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"54":{"title":"GroupBy: weight","titles":["Group YAXArrays and Datasets"]},"55":{"title":"weights","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"56":{"title":"weighted seasons","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"57":{"title":"Read YAXArrays and Datasets","titles":[]},"58":{"title":"Read Zarr","titles":["Read YAXArrays and Datasets"]},"59":{"title":"Read NetCDF","titles":["Read YAXArrays and Datasets"]},"60":{"title":"Read GDAL (GeoTIFF, GeoJSON)","titles":["Read YAXArrays and Datasets"]},"61":{"title":"Select YAXArrays and Datasets","titles":[]},"62":{"title":"Select a YAXArray","titles":["Select YAXArrays and Datasets"]},"63":{"title":"Select elements","titles":["Select YAXArrays and Datasets"]},"64":{"title":"Select ranges","titles":["Select YAXArrays and Datasets"]},"65":{"title":"Closed and open intervals","titles":["Select YAXArrays and Datasets"]},"66":{"title":"Get a dimension","titles":["Select YAXArrays and Datasets"]},"67":{"title":"Types","titles":[]},"68":{"title":"YAXArray","titles":["Types"]},"69":{"title":"Dataset","titles":["Types"]},"70":{"title":"(Data) Cube","titles":["Types"]},"71":{"title":"Dimension","titles":["Types"]},"72":{"title":"Write YAXArrays and Datasets","titles":[]},"73":{"title":"Write Zarr","titles":["Write YAXArrays and Datasets"]},"74":{"title":"zarr compression","titles":["Write YAXArrays and Datasets","Write Zarr"]},"75":{"title":"Write NetCDF","titles":["Write YAXArrays and Datasets"]},"76":{"title":"netcdf compression","titles":["Write YAXArrays and Datasets","Write NetCDF"]},"77":{"title":"Overwrite a Dataset","titles":["Write YAXArrays and Datasets"]},"78":{"title":"Append to a Dataset","titles":["Write YAXArrays and Datasets"]},"79":{"title":"Save Skeleton","titles":["Write YAXArrays and Datasets"]},"80":{"title":"Update values of dataset","titles":["Write YAXArrays and Datasets"]},"81":{"title":"Contribute to YAXArrays.jl","titles":[]},"82":{"title":"Contribute to Documentation","titles":["Contribute to YAXArrays.jl"]},"83":{"title":"Build docs locally","titles":["Contribute to YAXArrays.jl","Contribute to Documentation"]},"84":{"title":"API Reference","titles":[]},"85":{"title":"Public API","titles":["API Reference"]},"86":{"title":"Internal API","titles":["API Reference"]},"87":{"title":"Getting Started","titles":[]},"88":{"title":"Installation","titles":["Getting Started"]},"89":{"title":"Quickstart","titles":["Getting Started"]},"90":{"title":"Updates","titles":["Getting Started"]},"91":{"title":"Mean Seasonal Cycle for a single pixel","titles":[]},"92":{"title":"Define the cube","titles":["Mean Seasonal Cycle for a single pixel"]},"93":{"title":"Plot results: mean seasonal cycle","titles":["Mean Seasonal Cycle for a single pixel"]},"94":{"title":"Other tutorials","titles":[]},"95":{"title":"General overview of the functionality of YAXArrays","titles":["Other tutorials"]},"96":{"title":"Table-style iteration over YAXArrays","titles":["Other tutorials"]},"97":{"title":"Combining multiple tiff files into a zarr based datacube","titles":["Other tutorials"]},"98":{"title":"Plotting maps","titles":[]},"99":{"title":"Heatmap plot","titles":["Plotting maps"]},"100":{"title":"Wintri Projection","titles":[]},"101":{"title":"Moll projection","titles":["Wintri Projection"]},"102":{"title":"3D sphere plot","titles":["Wintri Projection"]}},"dirtCount":0,"index":[["δlon",{"2":{"100":1}}],["├─────────────────────┴─────────────────────────────────────────",{"2":{"44":1}}],["├─────────────────────────┴──────────────────────────",{"2":{"34":1}}],["├─────────────────────────┴─────────────────────────────────────",{"2":{"89":1}}],["├─────────────────────────┴──────────────────────────────────────",{"2":{"30":1}}],["├─────────────────────────┴──────────────────────────────────────────────",{"2":{"31":1,"39":1}}],["├─────────────────────────┴─────────────────────────────────────────",{"2":{"19":1}}],["├─────────────────────────┴──────────────────────────────────",{"2":{"27":2}}],["├─────────────────────────┴────────────────────────────────",{"2":{"9":1}}],["├──────────────────────────┴────────────────────────────",{"2":{"26":1}}],["├──────────────────────────┴────────────────────────────────────",{"2":{"25":1}}],["├──────────────────────────┴─────────────────────────────────────────────",{"2":{"22":1,"34":1}}],["├────────────────────────────┴───────────────────────────────────────────",{"2":{"34":2}}],["├────────────────────────────┴──────────────────────────",{"2":{"26":1}}],["├─────────────────────────────┴──────────────────────────────────",{"2":{"46":1}}],["├─────────────────────────────┴──────────────────────────────────────────",{"2":{"16":1,"29":1}}],["├───────────────────────────────┴────────────────────────────────────────",{"2":{"55":1}}],["├──────────────────────────────────┴─────────────────────────────────────",{"2":{"92":1}}],["├────────────────────────────────────┴───────────────────────────────────",{"2":{"58":1}}],["├──────────────────────────────────────┴────────────────────────",{"2":{"44":1}}],["├──────────────────────────────────────────┴─────────────────────────────",{"2":{"22":1,"39":1}}],["├─────────────────────────────────────────────┴─────────────────",{"2":{"63":1}}],["├───────────────────────────────────────────────┴────────────────────────",{"2":{"39":1,"64":1,"65":5}}],["├───────────────────────────────────────────────",{"2":{"34":1}}],["├────────────────────────────────────────────────",{"2":{"21":1,"34":1}}],["├──────────────────────────────────────────────────┴─────────────────────",{"2":{"51":1}}],["├──────────────────────────────────────────────────",{"2":{"26":1}}],["├───────────────────────────────────────────────────",{"2":{"26":2}}],["├─────────────────────────────────────────────────────",{"2":{"9":1,"26":1}}],["├───────────────────────────────────────────────────────",{"2":{"27":1}}],["├────────────────────────────────────────────────────────",{"2":{"27":2,"44":2}}],["├──────────────────────────────────────────────────────────",{"2":{"25":1,"89":1}}],["├───────────────────────────────────────────────────────────",{"2":{"25":1,"30":1,"44":2,"46":1,"89":1}}],["├────────────────────────────────────────────────────────────",{"2":{"8":1,"30":1,"46":1}}],["├──────────────────────────────────────────────────────────────",{"2":{"19":1}}],["├──────────────────────────────────────────────────────────────────",{"2":{"51":1,"54":1}}],["├───────────────────────────────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"21":2,"22":2,"29":1,"30":2,"31":1,"32":1,"34":4,"38":3,"39":3,"46":1,"54":1,"58":1,"59":1,"62":2,"63":2,"64":3,"65":5,"79":1,"89":1,"92":1}}],["├─────────────────────────────────────────────────────────────────────",{"2":{"63":1}}],["├─────────────────────────────────────────────────────────────────────┴",{"2":{"63":1}}],["├────────────────────────────────────────────────────────────────────────",{"2":{"51":1,"52":1,"54":1,"55":1,"56":3}}],["├────────────────────────────────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"21":2,"22":3,"29":1,"30":2,"31":1,"32":1,"34":4,"38":3,"39":3,"46":1,"51":2,"52":1,"54":3,"55":2,"56":3,"58":1,"59":1,"62":2,"63":2,"64":3,"65":5,"79":1,"89":1,"92":1}}],["├───────────────────────────────────────────────────────────────",{"2":{"19":1}}],["├─────────────────────────────────────────────────────────────",{"2":{"8":1}}],["├──────────────────────────────────────────────────────",{"2":{"9":1}}],["├─────────────────────────────────────────────────",{"2":{"21":1}}],["├────────────────────────────────────────────────┴───────────────────────",{"2":{"14":1,"54":1,"59":1,"62":2,"63":2}}],["├──────────────────────────────────────────────┴─────────────────────────",{"2":{"16":2,"38":1,"64":2}}],["├───────────────────────────────────────────┴────────────────────────────",{"2":{"14":1,"18":1,"21":1,"79":1}}],["├────────────────────────────────┴───────────────────────────────────────",{"2":{"32":1,"89":1}}],["├────────────────────────────────┴────────────────────────────────",{"2":{"8":1}}],["├──────────────────────────────┴─────────────────────────────────────────",{"2":{"10":1,"12":1,"13":1,"16":2,"22":1,"38":2,"46":1,"54":1}}],["├───────────────────────────┴─────────────────────────",{"2":{"21":1}}],["├───────────────────────────┴────────────────────────────────────────────",{"2":{"17":1,"21":1,"22":1,"30":2,"34":1}}],["╭─────────────────────╮",{"2":{"44":1}}],["╭──────────────────────────╮",{"2":{"22":1,"25":1,"26":1,"34":1}}],["╭────────────────────────────╮",{"2":{"26":1,"34":2}}],["╭─────────────────────────────╮",{"2":{"16":1,"29":1,"46":1}}],["╭───────────────────────────────╮",{"2":{"55":1}}],["╭──────────────────────────────────╮",{"2":{"92":1}}],["╭────────────────────────────────────╮",{"2":{"58":1}}],["╭──────────────────────────────────────╮",{"2":{"44":1}}],["╭──────────────────────────────────────────╮",{"2":{"22":1,"39":1}}],["╭─────────────────────────────────────────────╮",{"2":{"63":1}}],["╭──────────────────────────────────────────────────────────────────────────────╮",{"2":{"51":1,"52":1,"54":1,"55":1,"56":3}}],["╭──────────────────────────────────────────────────╮",{"2":{"51":1}}],["╭────────────────────────────────────────────────╮",{"2":{"14":1,"54":1,"59":1,"62":2,"63":2}}],["╭───────────────────────────────────────────────╮",{"2":{"39":1,"64":1,"65":5}}],["╭──────────────────────────────────────────────╮",{"2":{"16":2,"38":1,"64":2}}],["╭───────────────────────────────────────────╮",{"2":{"14":1,"18":1,"21":1,"79":1}}],["╭────────────────────────────────╮",{"2":{"8":1,"32":1,"89":1}}],["╭──────────────────────────────╮",{"2":{"10":1,"12":1,"13":1,"16":2,"22":1,"38":2,"46":1,"54":1}}],["╭───────────────────────────╮",{"2":{"17":1,"21":2,"22":1,"30":2,"34":1}}],["╭─────────────────────────╮",{"2":{"9":1,"19":1,"27":2,"30":1,"31":1,"34":1,"39":1,"89":1}}],["π",{"2":{"38":2,"91":1,"93":1}}],[">var",{"2":{"92":1}}],[">dates",{"2":{"92":1}}],[">month",{"2":{"85":1}}],[">abs",{"2":{"85":1}}],[">=",{"2":{"37":4}}],[">",{"2":{"37":2,"38":2,"92":1}}],["└──────────────────────────────────────────────────────────┘",{"2":{"34":1}}],["└─────────────────────────────────────────────────────────────┘",{"2":{"26":2}}],["└──────────────────────────────────────────────────────────────────┘",{"2":{"27":2}}],["└──────────────────────────────────────────────────────────────────────┘",{"2":{"30":1,"46":1}}],["└────────────────────────────────────────────────────────────────────────────────┘",{"2":{"63":1}}],["└──────────────────────────────────────────────────────────────────────────────┘",{"2":{"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"21":2,"22":4,"29":1,"30":2,"31":1,"32":1,"34":4,"38":3,"39":3,"46":1,"51":2,"52":1,"54":3,"55":2,"56":3,"58":1,"59":1,"62":2,"63":2,"64":3,"65":5,"79":1,"89":1,"92":1}}],["└─────────────────────────────────────────────────────────────────────────┘",{"2":{"19":1}}],["└───────────────────────────────────────────────────────────────────────┘",{"2":{"8":1}}],["└─────────────────────────────────────────────────────────────────────┘",{"2":{"25":1,"44":2,"89":1}}],["└────────────────────────────────────────────────────────────────┘",{"2":{"9":1}}],["└───────────────────────────────────────────────────────────┘",{"2":{"21":1}}],["`diskarrays",{"2":{"86":1}}],["`ds`",{"2":{"85":1}}],["`ordereddict`",{"2":{"85":1}}],["`fun`",{"2":{"85":1}}],["`a",{"2":{"34":1}}],["`layer`",{"2":{"18":1}}],["quickstart",{"0":{"89":1}}],["query",{"2":{"61":1}}],["questions",{"0":{"28":1},"1":{"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1}}],["quot",{"2":{"16":2,"39":2,"77":2,"79":4,"85":16,"86":12}}],["jj+1",{"2":{"59":1,"61":1,"72":1,"78":1}}],["jj",{"2":{"59":1,"61":1,"72":1,"78":1}}],["joinname",{"2":{"85":1}}],["joinname=",{"2":{"85":1}}],["journal",{"2":{"59":1,"61":1,"72":1,"78":1}}],["joe",{"2":{"49":1,"56":1}}],["j",{"2":{"56":8}}],["jan",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["jl",{"0":{"81":1},"1":{"82":1,"83":1},"2":{"26":1,"27":1,"39":1,"43":2,"50":1,"56":1,"68":1,"71":1,"81":1,"83":2,"88":1,"89":2,"90":3,"96":1}}],["jussieu",{"2":{"59":1,"61":1,"72":1,"78":1}}],["just",{"2":{"22":1,"68":1,"70":1,"85":1,"86":2}}],["jul",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["juliaδlon",{"2":{"100":1}}],["juliaglmakie",{"2":{"99":1}}],["juliagetloopchunks",{"2":{"86":1}}],["juliagetouttype",{"2":{"86":1}}],["juliagetoutaxis",{"2":{"86":1}}],["juliaget",{"2":{"86":1}}],["juliagetaxis",{"2":{"85":1}}],["juliagettarrayaxes",{"2":{"43":1}}],["juliagen",{"2":{"16":1}}],["juliax",{"2":{"91":1}}],["juliapkg>",{"2":{"88":1,"90":1}}],["juliapermuteloopaxes",{"2":{"86":1}}],["juliaproperties",{"2":{"19":1}}],["juliaoptifunc",{"2":{"86":1}}],["juliaoutdims",{"2":{"85":1}}],["juliaoffset",{"2":{"13":1}}],["juliacopydata",{"2":{"86":1}}],["juliacollect",{"2":{"31":1,"66":1}}],["juliaclean",{"2":{"86":1}}],["juliacube",{"2":{"85":1}}],["juliacubefittable",{"2":{"85":1}}],["juliacubetable",{"2":{"85":1}}],["juliacaxes",{"2":{"85":1}}],["julian",{"2":{"74":1,"76":1}}],["juliasavecube",{"2":{"85":1}}],["juliasavedataset",{"2":{"73":1,"75":1,"77":1}}],["juliasetchunks",{"2":{"85":1,"86":1}}],["juliaseasons",{"2":{"53":1}}],["julialon",{"2":{"98":1}}],["julialookup",{"2":{"66":1}}],["julialatitudes",{"2":{"37":1}}],["juliawith",{"2":{"56":1}}],["julia>",{"2":{"56":1,"83":1,"92":1}}],["juliaurl",{"2":{"50":1}}],["juliausing",{"2":{"0":1,"2":1,"4":1,"5":1,"6":1,"8":1,"9":1,"10":1,"16":1,"17":1,"22":1,"23":2,"25":1,"26":1,"27":1,"29":1,"30":1,"32":1,"34":1,"36":1,"37":1,"39":2,"43":1,"46":2,"48":1,"56":1,"58":1,"59":1,"60":1,"61":1,"63":1,"65":1,"72":1,"73":1,"75":1,"79":1,"89":2,"91":1,"98":1,"102":1}}],["juliakeylist",{"2":{"42":1}}],["juliaylonlat",{"2":{"34":1}}],["juliaytime3",{"2":{"34":1}}],["juliaytime2",{"2":{"34":1}}],["juliaytime",{"2":{"34":1}}],["juliay",{"2":{"34":1}}],["juliayaxcolumn",{"2":{"86":1}}],["juliayaxarray",{"2":{"85":1}}],["juliayax",{"2":{"0":1,"43":2}}],["juliatos",{"2":{"62":2,"63":2,"64":3,"65":1,"66":1}}],["juliatempo",{"2":{"54":1}}],["juliatest",{"2":{"44":2}}],["juliat",{"2":{"34":1,"39":1,"91":1}}],["juliatspan",{"2":{"16":1}}],["juliamutable",{"2":{"86":1}}],["juliamatch",{"2":{"86":1}}],["juliamapcube",{"2":{"85":2}}],["juliamapslices",{"2":{"14":1,"23":1}}],["juliamovingwindow",{"2":{"85":1}}],["juliamean",{"2":{"56":1}}],["juliam2",{"2":{"25":1}}],["julia",{"2":{"24":1,"83":1,"86":1,"88":2,"90":2}}],["juliavector",{"2":{"22":1}}],["juliadataset",{"2":{"85":1}}],["juliadata3",{"2":{"47":1}}],["juliadim",{"2":{"27":1}}],["juliadimarray",{"2":{"22":1}}],["juliads2",{"2":{"78":1}}],["juliads",{"2":{"18":2,"20":2,"21":1,"36":1,"37":1,"58":1,"59":1,"76":1,"79":2,"80":3}}],["juliareadcubedata",{"2":{"85":1}}],["juliaregions",{"2":{"22":2}}],["juliar",{"2":{"79":1}}],["juliaras2",{"2":{"26":1}}],["juliarandom",{"2":{"21":2}}],["juliaindims",{"2":{"18":1,"20":1,"85":1}}],["juliaimport",{"2":{"14":1,"88":1}}],["juliajulia>",{"2":{"16":5,"29":3,"30":2,"31":1,"32":1,"38":3,"39":3,"41":1,"42":1,"43":2,"51":2,"52":1,"54":2,"55":2,"56":3,"65":4,"78":1,"79":1,"92":2,"98":3}}],["juliaall",{"2":{"79":1}}],["juliaaxs",{"2":{"50":1}}],["juliaaxes",{"2":{"34":1}}],["juliaa2",{"2":{"12":2,"46":2,"89":1}}],["juliaa",{"2":{"2":1,"11":3}}],["juliafig",{"2":{"91":1,"93":1,"100":1,"101":1}}],["juliafindaxis",{"2":{"86":1}}],["juliafittable",{"2":{"85":2}}],["juliafunction",{"2":{"16":1,"18":1,"19":1,"21":1,"51":1,"85":1,"92":1}}],["juliaf",{"2":{"2":1,"4":1,"5":1,"6":1,"16":1}}],["jun",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["∘",{"2":{"23":1}}],["|>",{"2":{"22":2}}],["⋱",{"2":{"22":1}}],["⋮",{"2":{"22":2,"66":1,"92":1}}],["^2",{"2":{"21":1}}],["⬔",{"2":{"17":1,"18":1,"32":1,"89":1}}],["92491",{"2":{"89":1}}],["928614",{"2":{"89":1}}],["926096",{"2":{"26":1}}],["986",{"2":{"56":1}}],["984803",{"2":{"22":1}}],["976187",{"2":{"89":1}}],["97649",{"2":{"56":1}}],["97047",{"2":{"56":1}}],["973332",{"2":{"26":1}}],["94534",{"2":{"56":1}}],["9404",{"2":{"51":1,"52":1}}],["9432",{"2":{"51":1,"52":1}}],["949935",{"2":{"25":1}}],["959899",{"2":{"80":2}}],["959",{"2":{"56":1}}],["95",{"2":{"37":6,"56":1}}],["902991",{"2":{"89":1}}],["902979",{"2":{"89":1}}],["90712",{"2":{"56":1}}],["90365",{"2":{"56":1}}],["90",{"2":{"37":2,"60":1,"65":5}}],["9122",{"2":{"60":1}}],["9192",{"2":{"56":1}}],["91",{"2":{"29":1,"65":5}}],["917969",{"2":{"27":1}}],["916686",{"2":{"26":1}}],["918555",{"2":{"25":1}}],["935959",{"2":{"89":1}}],["935631",{"2":{"25":1}}],["937012",{"2":{"89":1}}],["9375",{"2":{"58":2,"98":1}}],["93743",{"2":{"56":1}}],["9362",{"2":{"56":1}}],["938094",{"2":{"26":1}}],["93986",{"2":{"22":1}}],["9",{"2":{"16":14,"22":2,"31":1,"34":1,"37":6,"54":4,"64":4,"74":2,"76":1,"86":1}}],["96x71x19",{"2":{"59":1,"61":1,"72":1,"78":1}}],["96f0",{"2":{"59":1,"61":1,"72":1}}],["9682",{"2":{"51":1,"52":1}}],["960",{"2":{"17":1,"18":1,"22":1}}],["96",{"2":{"8":1,"9":1,"63":2,"78":1}}],["898926",{"2":{"80":2}}],["8984",{"2":{"56":1}}],["8901",{"2":{"60":1}}],["89",{"2":{"58":4,"59":2,"60":1,"61":1,"62":2,"63":1,"64":1,"65":5,"66":1,"72":1,"78":1,"98":2}}],["89237",{"2":{"56":1}}],["864937",{"2":{"89":1}}],["86457",{"2":{"56":1}}],["86",{"2":{"66":1}}],["862644",{"2":{"26":1}}],["81705",{"2":{"89":1}}],["812577",{"2":{"89":1}}],["811959",{"2":{"89":1}}],["81",{"2":{"46":1,"66":1}}],["81362",{"2":{"26":1}}],["884949",{"2":{"89":1}}],["882929",{"2":{"80":2}}],["88",{"2":{"32":1,"58":4,"66":1,"89":1,"98":2}}],["889583",{"2":{"22":1}}],["853962",{"2":{"89":1}}],["858795",{"2":{"80":2}}],["858065",{"2":{"27":1}}],["85",{"2":{"66":1,"100":1,"101":1}}],["850",{"2":{"56":1}}],["85ºn",{"2":{"37":1}}],["85714",{"2":{"22":1}}],["839919",{"2":{"80":2}}],["83",{"2":{"66":1}}],["830391",{"2":{"25":1}}],["83556",{"2":{"25":1}}],["874428",{"2":{"89":1}}],["875981",{"2":{"89":1}}],["875658",{"2":{"22":1}}],["87",{"2":{"66":1}}],["87705",{"2":{"56":1}}],["872575",{"2":{"26":1}}],["870888",{"2":{"26":1}}],["870826",{"2":{"25":1}}],["841123",{"2":{"80":2}}],["84",{"2":{"60":2,"66":1}}],["845983",{"2":{"25":1}}],["840389",{"2":{"22":1}}],["825766",{"2":{"89":1}}],["828299",{"2":{"89":1}}],["820737",{"2":{"80":2}}],["82",{"2":{"66":1}}],["82421875",{"2":{"60":2}}],["824354",{"2":{"22":1}}],["829062",{"2":{"22":1}}],["8",{"2":{"16":12,"22":2,"31":1,"34":1,"59":2,"61":1,"62":2,"72":1,"78":1,"92":1}}],["807171",{"2":{"89":1}}],["80759",{"2":{"56":1}}],["800",{"2":{"30":3,"31":1,"34":1}}],["80",{"2":{"16":1,"37":2}}],["v",{"2":{"59":1,"61":1,"72":1,"78":1}}],["v1",{"2":{"59":2,"61":2,"72":2,"78":2,"88":1}}],["v20190710",{"2":{"58":1,"98":2}}],["vol",{"2":{"59":1,"61":1,"72":1,"78":1}}],["volume",{"2":{"43":4}}],["voilà",{"2":{"43":1}}],["video",{"2":{"94":1}}],["videos",{"2":{"94":1}}],["visualization",{"2":{"39":1}}],["vice",{"2":{"24":1}}],["view",{"2":{"22":1,"89":1}}],["version",{"2":{"58":1,"59":1,"61":1,"72":1,"78":1,"90":2,"98":1}}],["versa",{"2":{"24":1}}],["verify",{"2":{"55":1,"80":1}}],["very",{"2":{"13":1,"39":1,"68":1}}],["vector",{"0":{"22":1},"2":{"22":4,"31":1,"44":1,"51":1,"53":1,"54":2,"55":3,"56":2,"66":1,"68":1,"85":2,"86":3}}],["val",{"2":{"31":2,"66":1}}],["vals",{"2":{"22":1}}],["value",{"2":{"12":1,"14":3,"16":2,"38":1,"59":1,"62":2,"63":3,"64":3,"65":5,"85":4,"86":1}}],["values=ds1",{"2":{"39":1}}],["values",{"0":{"31":1,"80":1},"2":{"9":1,"20":1,"21":1,"22":2,"29":2,"30":1,"31":1,"37":3,"39":4,"42":1,"43":2,"45":1,"46":2,"64":1,"66":2,"68":1,"69":1,"79":1,"80":3,"85":9,"89":1,"98":1}}],["vararg",{"2":{"86":2}}],["varoables",{"2":{"85":1}}],["variant",{"2":{"58":1,"98":1}}],["variable=at",{"2":{"89":1}}],["variable",{"0":{"5":1,"40":1,"41":1,"42":1},"1":{"41":1,"42":1},"2":{"5":1,"9":3,"37":3,"43":5,"58":1,"79":2,"85":4,"86":7,"89":3,"91":1,"92":1,"93":1,"98":1}}],["variables=at",{"2":{"38":2}}],["variables",{"0":{"6":1,"36":1,"37":1},"2":{"4":5,"5":4,"6":2,"9":2,"17":2,"18":1,"19":1,"20":1,"21":1,"24":1,"32":2,"35":1,"36":2,"37":11,"41":1,"42":4,"43":6,"47":1,"58":4,"59":1,"60":1,"61":1,"69":1,"70":1,"72":1,"78":4,"79":1,"85":2,"98":4}}],["varlist",{"2":{"42":2}}],["var2=var2",{"2":{"36":1}}],["var2",{"2":{"32":2,"36":3,"38":1}}],["var1=var1",{"2":{"36":1}}],["var1",{"2":{"32":2,"36":3,"38":1}}],["var",{"2":{"9":2,"91":2,"92":2,"93":2}}],["uv",{"2":{"102":1}}],["u",{"2":{"92":1}}],["up",{"2":{"85":1}}],["updates",{"0":{"90":1}}],["updated",{"2":{"80":1}}],["update",{"0":{"80":1},"2":{"80":2,"85":1}}],["updating",{"2":{"48":1,"80":1}}],["ucar",{"2":{"59":1,"61":1,"69":1,"72":1}}],["urls",{"2":{"57":1}}],["url",{"2":{"50":1,"58":1}}],["unpermuted",{"2":{"86":2}}],["unpractical",{"2":{"50":1}}],["underlying",{"2":{"85":1,"86":1,"90":1}}],["unlike",{"2":{"70":1}}],["unique",{"2":{"92":1}}],["unidata",{"2":{"59":1,"61":1,"69":1,"72":1}}],["unit",{"2":{"60":1}}],["units",{"2":{"58":1,"59":2,"62":4,"63":6,"64":6,"65":10}}],["unitrange",{"2":{"51":2,"52":2,"56":6}}],["unions",{"0":{"44":1}}],["union",{"2":{"14":2,"16":4,"18":2,"20":1,"21":1,"22":1,"38":1,"39":2,"44":2,"59":1,"62":2,"63":3,"64":3,"65":5,"79":2,"80":1}}],["unweighted",{"2":{"51":1,"56":1}}],["unordered",{"2":{"43":4,"51":2,"52":1,"53":1,"54":2,"55":2,"56":3}}],["unnecessary",{"2":{"22":1}}],["unchanged",{"2":{"13":1}}],["usually",{"2":{"58":1,"68":2,"69":2}}],["usual",{"2":{"51":1}}],["us",{"2":{"22":1}}],["useable",{"2":{"85":1}}],["used",{"2":{"22":1,"23":1,"34":1,"61":1,"66":1,"67":1,"68":1,"71":1,"85":4,"86":3}}],["uses",{"2":{"20":1,"39":1}}],["users",{"2":{"86":1}}],["userguide",{"2":{"82":2}}],["user",{"2":{"10":2,"12":1,"13":1,"23":1,"46":3,"47":1,"86":1}}],["use",{"0":{"39":1},"2":{"0":1,"8":1,"9":1,"10":4,"13":1,"23":2,"29":2,"34":1,"36":1,"37":1,"38":1,"39":2,"43":2,"48":1,"50":1,"52":1,"65":2,"70":1,"74":1,"79":1,"85":3,"86":1,"94":1,"96":1,"98":2}}],["useful",{"2":{"0":1,"70":1}}],["using",{"2":{"0":1,"8":1,"9":1,"10":1,"16":2,"17":2,"22":2,"23":7,"27":1,"29":1,"30":2,"32":1,"34":2,"36":2,"37":2,"38":1,"39":1,"43":1,"48":4,"58":2,"59":3,"60":2,"61":2,"63":3,"64":2,"72":2,"78":1,"79":3,"90":1,"91":2,"92":1,"98":3}}],["+proj=moll",{"2":{"101":1}}],["+",{"2":{"12":2,"13":1,"16":2,"18":2,"21":1,"91":1,"100":1}}],["kwargs",{"2":{"85":4,"86":2}}],["k",{"2":{"43":5,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5}}],["keyword",{"2":{"78":1,"85":6,"86":2}}],["key",{"2":{"48":1,"85":1}}],["keyset",{"2":{"43":1}}],["keys",{"2":{"43":7,"85":1}}],["keylist",{"2":{"42":1}}],["keeps",{"2":{"13":1}}],["keep",{"2":{"0":1,"86":1}}],["kb",{"2":{"10":1,"12":1,"13":1,"14":1,"16":2,"22":1,"26":1,"29":1,"32":1,"34":4,"38":3,"39":1,"46":2,"63":1,"64":3,"65":5,"89":1,"92":1}}],["↗",{"2":{"10":1,"12":1,"13":1,"16":2,"17":1,"18":1,"19":1,"20":1,"21":3,"22":1,"26":2,"29":3,"32":1,"34":5,"36":2,"38":3,"46":3,"47":1,"51":1,"58":2,"59":2,"61":1,"62":2,"64":3,"65":5,"72":1,"78":2,"79":2,"89":1,"98":1}}],["047283",{"2":{"89":1}}],["0474875",{"2":{"89":1}}],["0465",{"2":{"56":1}}],["0e8",{"2":{"85":1}}],["02627341416046051",{"2":{"92":1}}],["028497582895211832",{"2":{"92":1}}],["02",{"2":{"58":1}}],["0210077",{"2":{"25":1}}],["0214057",{"2":{"25":1}}],["0f20",{"2":{"58":1,"59":2,"62":4,"63":6,"64":6,"65":10}}],["0f32",{"2":{"16":2}}],["06183225090497175",{"2":{"92":1}}],["060422",{"2":{"89":1}}],["0693719",{"2":{"89":1}}],["0625",{"2":{"58":2,"98":1}}],["0620649",{"2":{"26":1}}],["06755",{"2":{"56":1}}],["08964458904045909",{"2":{"92":1}}],["08383207080301504",{"2":{"92":1}}],["08",{"2":{"54":1}}],["0881736",{"2":{"27":1}}],["09470732715757708",{"2":{"92":1}}],["09317591352691727",{"2":{"92":1}}],["0916764",{"2":{"89":1}}],["0972941",{"2":{"89":1}}],["09",{"2":{"54":1}}],["096862",{"2":{"27":1}}],["0ºe",{"2":{"37":1}}],["07400365941169999",{"2":{"92":1}}],["0743642",{"2":{"89":1}}],["07111923498269067",{"2":{"92":1}}],["0776029",{"2":{"89":1}}],["07",{"2":{"58":2,"98":1}}],["0702532",{"2":{"26":1}}],["0723492",{"2":{"22":1}}],["03856393968274492",{"2":{"92":1}}],["0353507",{"2":{"89":1}}],["0358348",{"2":{"25":1}}],["0302534",{"2":{"89":1}}],["03361",{"2":{"56":1}}],["03",{"2":{"26":1}}],["00997173",{"2":{"89":1}}],["00990356",{"2":{"56":1}}],["00722034",{"2":{"56":1}}],["00709111",{"2":{"56":1}}],["0063020041736240135",{"2":{"92":1}}],["00684233",{"2":{"56":1}}],["00693713",{"2":{"56":1}}],["0057",{"2":{"56":1}}],["00388",{"2":{"56":1}}],["00",{"2":{"20":4,"43":16,"54":4,"58":9,"59":8,"61":4,"62":8,"63":8,"64":12,"65":20,"72":4,"78":4,"98":5}}],["05116592548280876",{"2":{"92":1}}],["0512364",{"2":{"89":1}}],["05345455485976908",{"2":{"92":1}}],["05344184427965779",{"2":{"92":1}}],["0537",{"2":{"51":1,"52":1}}],["05846",{"2":{"56":1}}],["0593761",{"2":{"26":1}}],["0566881",{"2":{"26":1}}],["05t00",{"2":{"20":1}}],["05",{"2":{"17":2,"18":1,"21":3,"34":3}}],["013646215450068194",{"2":{"92":1}}],["0174532925199433",{"2":{"60":1}}],["0178074",{"2":{"56":1}}],["01t03",{"2":{"58":2,"98":1}}],["01t00",{"2":{"20":1,"43":4,"58":2,"98":1}}],["0117519",{"2":{"56":1}}],["0115514",{"2":{"56":1}}],["0127077",{"2":{"56":1}}],["0123091",{"2":{"56":1}}],["0121037",{"2":{"56":1}}],["019016",{"2":{"56":1}}],["0188721",{"2":{"80":2}}],["018571",{"2":{"56":1}}],["0182373",{"2":{"56":1}}],["0180572",{"2":{"56":1}}],["0183003",{"2":{"56":1}}],["018",{"2":{"51":1,"52":1}}],["01",{"2":{"10":6,"12":3,"13":3,"14":3,"16":12,"17":6,"18":3,"20":2,"21":9,"22":9,"23":3,"34":22,"36":8,"37":11,"43":8,"46":9,"47":3,"58":5,"59":4,"61":2,"62":4,"63":6,"64":6,"65":10,"72":2,"78":2,"91":2,"92":4,"98":5}}],["0",{"2":{"8":1,"9":1,"10":6,"11":2,"12":6,"13":6,"14":7,"16":303,"17":7,"18":7,"19":7,"20":6,"21":10,"22":75,"25":36,"26":36,"27":45,"30":3,"31":1,"32":9,"34":1,"37":4,"38":27,"39":11,"44":2,"46":12,"47":6,"54":2,"55":40,"56":19,"58":7,"59":10,"60":6,"61":6,"62":8,"63":6,"64":14,"65":20,"66":6,"72":6,"74":1,"76":1,"77":1,"78":6,"79":1,"80":40,"85":2,"86":1,"89":80,"90":1,"91":2,"92":19,"93":1,"98":4,"100":2,"101":2,"102":2}}],["┤",{"2":{"8":2,"9":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":2,"18":2,"19":2,"21":6,"22":5,"25":2,"26":4,"27":3,"29":2,"30":6,"31":2,"32":2,"34":10,"38":6,"39":6,"44":4,"46":4,"51":4,"52":2,"54":6,"55":3,"56":6,"58":2,"59":2,"62":4,"63":5,"64":6,"65":10,"79":2,"89":4,"92":2}}],["┐",{"2":{"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"21":3,"22":4,"25":1,"26":2,"27":2,"29":1,"30":3,"31":1,"32":1,"34":5,"38":3,"39":3,"44":2,"46":2,"51":1,"54":2,"55":1,"58":1,"59":1,"62":2,"63":4,"64":3,"65":5,"79":1,"89":2,"92":1}}],["│",{"2":{"8":2,"9":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":2,"18":2,"19":2,"21":6,"22":8,"25":2,"26":4,"27":4,"29":2,"30":6,"31":2,"32":2,"34":10,"38":6,"39":6,"44":4,"46":4,"51":4,"52":2,"54":6,"55":4,"56":6,"58":2,"59":2,"62":4,"63":6,"64":6,"65":10,"79":2,"89":4,"92":2}}],["720352",{"2":{"89":1}}],["720635",{"2":{"80":2}}],["72",{"2":{"66":1}}],["725765",{"2":{"27":1}}],["768363",{"2":{"89":1}}],["761553",{"2":{"80":2}}],["76",{"2":{"66":1}}],["762559",{"2":{"26":1}}],["705063",{"2":{"89":1}}],["70",{"2":{"64":3,"66":1}}],["7030",{"2":{"60":1}}],["701332",{"2":{"22":1}}],["730",{"2":{"93":1}}],["732556",{"2":{"89":1}}],["7341",{"2":{"56":1}}],["73",{"2":{"56":1,"66":1}}],["731779",{"2":{"26":1}}],["755932",{"2":{"89":1}}],["75",{"2":{"66":1}}],["7593",{"2":{"56":1}}],["75891",{"2":{"56":1}}],["75269",{"2":{"25":1}}],["752417",{"2":{"22":1}}],["77",{"2":{"66":1}}],["77687",{"2":{"56":1}}],["77587",{"2":{"56":1}}],["770949",{"2":{"26":1}}],["79",{"2":{"59":2,"61":1,"62":2,"63":2,"64":4,"65":5,"66":1,"72":1,"78":1}}],["79502",{"2":{"56":1}}],["793913",{"2":{"27":1}}],["791138",{"2":{"27":1}}],["796375",{"2":{"26":1}}],["746804",{"2":{"89":1}}],["74",{"2":{"66":1}}],["744521",{"2":{"26":1}}],["74732",{"2":{"25":1}}],["717",{"2":{"65":5}}],["71",{"2":{"64":1,"66":1}}],["7158",{"2":{"51":1,"52":1}}],["7119",{"2":{"51":1,"52":1}}],["71314",{"2":{"26":1}}],["718667",{"2":{"26":1}}],["71429",{"2":{"22":2}}],["78",{"2":{"64":1,"66":1}}],["780824",{"2":{"27":1}}],["78467",{"2":{"25":1}}],["789891",{"2":{"25":1}}],["781773",{"2":{"22":1}}],["7",{"2":{"8":1,"16":10,"21":3,"22":1,"26":1,"31":1,"46":1,"58":1,"76":1,"98":1}}],["→",{"2":{"4":1,"5":1,"6":1,"9":1,"10":1,"12":1,"13":1,"14":1,"16":2,"17":1,"18":1,"19":1,"20":1,"21":3,"22":6,"25":1,"26":3,"27":3,"29":3,"30":3,"31":1,"32":1,"34":6,"36":2,"37":2,"38":3,"39":2,"42":2,"43":4,"44":2,"46":3,"47":1,"51":1,"58":2,"59":2,"60":1,"61":1,"62":2,"63":1,"64":3,"65":5,"72":1,"78":2,"79":2,"89":2,"98":1}}],["↓",{"2":{"4":3,"5":3,"6":1,"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"20":1,"21":3,"22":6,"25":1,"26":3,"27":3,"29":3,"30":3,"31":1,"32":1,"34":6,"36":2,"37":8,"38":3,"39":3,"41":1,"42":3,"43":4,"44":2,"46":3,"47":1,"51":3,"52":1,"54":4,"55":2,"56":3,"58":2,"59":2,"60":1,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":2,"79":2,"89":2,"92":2,"98":1}}],["438885",{"2":{"89":1}}],["4326",{"2":{"60":1}}],["43254",{"2":{"56":1}}],["4325",{"2":{"51":1,"52":1}}],["432286",{"2":{"22":1}}],["457984",{"2":{"80":2}}],["459041",{"2":{"80":2}}],["45×170×24",{"2":{"65":5}}],["456765",{"2":{"25":1}}],["48",{"2":{"89":1}}],["48367",{"2":{"56":1}}],["480",{"2":{"21":2,"39":1}}],["414041",{"2":{"80":2}}],["4198",{"2":{"56":1}}],["41241",{"2":{"56":1}}],["41049",{"2":{"56":1}}],["41634",{"2":{"56":1}}],["417937",{"2":{"22":1}}],["404819",{"2":{"89":1}}],["40",{"2":{"37":2}}],["400",{"2":{"25":1,"79":1,"91":1,"93":1}}],["44",{"2":{"34":1,"38":3}}],["471857",{"2":{"80":2}}],["47951",{"2":{"27":1}}],["475725",{"2":{"26":1}}],["472308",{"2":{"22":1}}],["497881",{"2":{"80":2}}],["497189",{"2":{"22":1}}],["49909",{"2":{"56":1}}],["4947",{"2":{"56":1}}],["492817",{"2":{"26":1}}],["4×30",{"2":{"22":1}}],["4×3×7",{"2":{"21":1}}],["4×3×2",{"2":{"19":1}}],["461652",{"2":{"89":1}}],["46506",{"2":{"56":1}}],["465103",{"2":{"22":1}}],["46",{"2":{"32":1,"89":1}}],["463503",{"2":{"22":1}}],["425153",{"2":{"27":1}}],["426519",{"2":{"25":1}}],["42857",{"2":{"22":2}}],["42",{"2":{"11":3}}],["4",{"2":{"4":4,"5":4,"16":4,"17":4,"18":2,"19":2,"20":1,"21":8,"22":9,"27":1,"31":1,"32":1,"51":2,"52":1,"53":1,"54":2,"55":2,"56":4,"79":3,"80":2,"89":3,"91":1,"93":1}}],["3d",{"0":{"102":1}}],["3hr",{"2":{"58":2,"98":3}}],["339529",{"2":{"89":1}}],["33565",{"2":{"56":1}}],["337926",{"2":{"25":1}}],["325997",{"2":{"89":1}}],["32555",{"2":{"56":1}}],["3252",{"2":{"51":1,"52":1}}],["32149",{"2":{"56":1}}],["327439",{"2":{"27":1}}],["3×3",{"2":{"44":1}}],["3×20",{"2":{"39":1}}],["384×192×251288",{"2":{"58":1}}],["3866",{"2":{"56":1}}],["38364",{"2":{"56":1}}],["3835",{"2":{"51":1,"52":1}}],["38",{"2":{"34":1,"64":3}}],["312",{"2":{"56":1}}],["31753",{"2":{"56":1}}],["3169",{"2":{"56":1}}],["3188",{"2":{"56":1}}],["31",{"2":{"34":2,"36":1,"37":1,"91":1,"92":2}}],["366",{"2":{"93":1}}],["365×1",{"2":{"92":1}}],["365",{"2":{"92":1,"93":4}}],["365971",{"2":{"27":1}}],["367809",{"2":{"80":2}}],["36126",{"2":{"56":1}}],["36142",{"2":{"56":1}}],["36836",{"2":{"56":1}}],["369",{"2":{"37":1}}],["36",{"2":{"34":1,"36":2,"37":1,"54":1}}],["3600",{"2":{"34":1,"36":2}}],["364288",{"2":{"25":1}}],["34818",{"2":{"56":1}}],["34832",{"2":{"56":1}}],["348362",{"2":{"25":1}}],["34549",{"2":{"56":1}}],["34218",{"2":{"56":1}}],["340769",{"2":{"27":1}}],["3785",{"2":{"89":1}}],["37878",{"2":{"56":1}}],["37",{"2":{"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1}}],["372",{"2":{"56":1}}],["372761",{"2":{"22":1}}],["376409",{"2":{"26":1}}],["376135",{"2":{"22":1}}],["35700351866494",{"2":{"58":4,"98":2}}],["35432",{"2":{"56":1}}],["35483",{"2":{"56":1}}],["359",{"2":{"37":1,"58":2,"59":2,"61":1,"62":2,"63":1,"66":2,"72":1,"78":1,"98":1}}],["35",{"2":{"10":1,"12":1,"13":1,"22":1,"46":1}}],["307f8f0e584a39a050c042849004e6a2bd674f99",{"2":{"60":1}}],["3069",{"2":{"56":1}}],["30018",{"2":{"56":1}}],["30142",{"2":{"56":1}}],["30113",{"2":{"56":1}}],["30×15×10",{"2":{"16":1}}],["30×10×15",{"2":{"10":1,"12":1,"13":1,"22":1,"46":1}}],["30",{"2":{"10":3,"12":1,"13":1,"14":2,"16":5,"22":5,"23":2,"26":10,"46":4,"47":2,"56":2,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5,"98":1}}],["393083",{"2":{"89":1}}],["395234",{"2":{"26":1}}],["39",{"2":{"10":1,"16":3,"18":1,"19":1,"30":1,"32":1,"34":1,"36":1,"37":1,"38":2,"56":1,"61":1,"71":1,"74":1,"82":4,"85":2,"92":3}}],["3",{"2":{"4":8,"5":8,"6":10,"10":1,"11":3,"12":3,"13":2,"16":4,"17":3,"18":1,"19":3,"20":1,"21":14,"22":6,"26":2,"27":1,"29":5,"31":1,"34":4,"38":4,"39":5,"43":1,"44":2,"46":3,"51":2,"56":31,"58":1,"59":1,"62":2,"64":4,"65":5,"78":1,"79":3,"85":1,"89":3,"91":2}}],["zoom",{"2":{"102":1}}],["zopen",{"2":{"58":1,"80":1,"98":1}}],["zeros",{"2":{"79":3,"92":1}}],["z",{"2":{"4":2,"5":3,"6":2,"78":2}}],["zarray",{"2":{"80":1}}],["zarr",{"0":{"58":1,"73":1,"74":1,"97":1},"1":{"74":1},"2":{"0":1,"2":2,"4":2,"5":2,"6":2,"16":5,"17":1,"20":2,"23":1,"27":1,"44":1,"58":3,"73":5,"74":5,"77":3,"78":4,"79":6,"80":2,"85":2,"86":2,"98":1}}],["xticklabelalign",{"2":{"91":1,"93":1}}],["xticklabelrotation",{"2":{"91":1,"93":1}}],["xlabel=",{"2":{"91":1,"93":1}}],["xx",{"2":{"59":1,"61":1,"72":1,"78":1}}],["xarray",{"2":{"49":1,"50":1}}],["x26",{"2":{"22":12,"37":12}}],["x3c",{"2":{"22":12,"37":4}}],["xyz",{"2":{"21":2}}],["xy",{"2":{"19":2}}],["xyt",{"2":{"19":2,"21":2}}],["xin",{"2":{"18":8,"19":11,"21":8,"22":3,"38":3}}],["xout",{"2":{"16":2,"18":6,"19":6,"21":2,"22":3}}],["x",{"2":{"4":2,"5":3,"6":2,"13":2,"26":4,"27":3,"38":4,"44":2,"51":2,"52":1,"56":3,"60":1,"68":1,"80":2,"86":1,"89":5,"91":1,"92":6}}],["ndata",{"2":{"100":2,"101":1,"102":1}}],["ndays",{"2":{"92":4}}],["nlon",{"2":{"100":2,"101":1}}],["npy",{"2":{"91":2,"92":2}}],["ntuple",{"2":{"86":2}}],["ntr",{"2":{"86":1}}],["nthreads",{"2":{"85":2}}],["nin",{"2":{"86":2}}],["nvalid",{"2":{"85":1}}],["n",{"2":{"67":1,"85":3}}],["n256",{"2":{"56":1}}],["nan",{"2":{"50":1,"51":48,"52":48,"56":384}}],["name=cube",{"2":{"85":1}}],["named",{"2":{"61":1,"63":1,"64":1,"68":1,"85":2,"90":1}}],["namedtuple",{"2":{"18":1,"20":1,"85":1,"86":3}}],["names",{"0":{"21":1,"29":1,"40":1,"42":1},"1":{"30":1,"41":1,"42":1},"2":{"43":1,"46":2,"53":1,"68":2,"85":2,"86":1}}],["namely",{"2":{"16":1,"17":1}}],["name",{"0":{"41":1},"2":{"2":1,"18":4,"20":1,"42":1,"56":1,"58":3,"59":4,"62":8,"63":12,"64":12,"65":20,"71":1,"79":2,"85":6,"86":5,"89":1}}],["nc",{"2":{"50":2,"59":2,"61":2,"72":2,"75":2,"76":3}}],["number",{"2":{"49":1,"54":1,"74":1,"76":1,"85":2,"86":1,"92":1}}],["numbers",{"2":{"10":1,"89":1}}],["nout",{"2":{"86":2}}],["normal",{"2":{"85":1,"102":1}}],["north",{"2":{"60":1}}],["nometadata",{"2":{"51":3,"52":2,"54":1,"55":1,"56":10}}],["november",{"2":{"59":1,"61":1,"72":1,"78":1}}],["nov",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["nonmissingtype",{"2":{"86":1}}],["none",{"2":{"37":2,"42":1,"43":1,"58":1,"78":1,"98":1}}],["non",{"2":{"23":1,"85":1,"86":1,"91":1}}],["now",{"2":{"16":3,"18":1,"22":1,"30":1,"32":1,"34":1,"39":1,"43":1,"51":1,"52":1,"54":1,"56":1,"79":2,"80":1,"83":1}}],["no",{"2":{"14":1,"21":1,"27":1,"33":1,"74":1,"76":1,"79":1,"85":1,"86":1}}],["notice",{"2":{"74":1}}],["notation",{"2":{"34":1,"65":1}}],["nothing",{"2":{"18":1,"19":1,"21":1,"56":3,"77":1,"85":1,"86":1}}],["note",{"2":{"9":1,"13":1,"16":4,"18":1,"21":1,"22":1,"30":1,"37":1,"44":1,"52":1,"79":1,"85":1,"86":1}}],["not",{"0":{"37":1},"2":{"0":1,"1":1,"13":1,"33":1,"37":3,"42":1,"43":2,"44":1,"50":1,"79":2,"85":2,"86":3}}],["neighbour",{"2":{"85":1}}],["neighboring",{"2":{"13":1}}],["near",{"2":{"58":2,"65":1,"98":1}}],["needed",{"2":{"85":1}}],["need",{"2":{"42":1,"80":1,"82":1,"85":1,"86":1}}],["next",{"2":{"38":1,"39":1,"53":1,"83":2}}],["netcdf",{"0":{"59":1,"75":1,"76":1},"1":{"76":1},"2":{"27":1,"44":1,"48":2,"59":4,"61":2,"69":3,"72":2,"75":3,"76":2,"77":1,"85":1}}],["necessary",{"2":{"16":1,"49":1,"50":1,"80":1,"86":4}}],["new",{"0":{"9":1},"2":{"10":1,"12":1,"16":1,"29":1,"30":3,"46":1,"48":1,"50":1,"53":1,"70":1,"77":1,"78":1,"79":1,"82":6,"85":5,"86":4,"92":1}}],["bits",{"2":{"85":2}}],["big",{"2":{"68":1}}],["black",{"2":{"93":1}}],["blocks",{"2":{"85":1}}],["blosccompressor",{"2":{"74":1}}],["blue",{"2":{"60":1,"69":1}}],["bonito",{"2":{"102":1}}],["boundaries",{"2":{"86":1}}],["bounds",{"2":{"85":1}}],["bold",{"2":{"56":1}}],["bool=true",{"2":{"86":1}}],["bool=false",{"2":{"85":1,"86":1}}],["boolean",{"2":{"85":3}}],["bool",{"2":{"44":3,"86":6}}],["bwr",{"2":{"56":1}}],["b`",{"2":{"34":1}}],["broad",{"2":{"95":1}}],["broadcasts",{"2":{"86":1}}],["broadcast",{"2":{"51":1,"56":1}}],["broadcasted",{"2":{"16":2,"85":1,"86":1}}],["brown",{"2":{"93":1}}],["browser",{"2":{"83":1}}],["brightness",{"2":{"68":1,"69":1}}],["brings",{"2":{"86":1}}],["bring",{"2":{"31":1}}],["branch",{"2":{"58":1,"98":1}}],["bug",{"2":{"81":1}}],["bundle",{"2":{"69":1}}],["build",{"0":{"83":1},"2":{"29":1,"83":1}}],["but",{"0":{"37":1},"2":{"8":1,"16":2,"29":1,"30":2,"37":2,"42":1,"43":2,"63":1,"64":1,"85":2}}],["b",{"2":{"17":2,"18":1,"19":1,"20":1,"22":13,"42":2,"65":2}}],["backgroundcolor=",{"2":{"102":1}}],["back",{"2":{"85":1}}],["backend",{"2":{"77":2,"85":8}}],["backendlist",{"2":{"48":1,"85":1}}],["backend=",{"2":{"2":1,"16":2,"78":1}}],["based",{"0":{"97":1},"2":{"86":1}}],["base",{"0":{"25":1},"2":{"4":4,"5":4,"6":2,"18":1,"20":1,"25":4,"29":9,"30":6,"41":1,"42":5,"44":4,"46":3,"79":6,"86":1,"89":2}}],["by=",{"2":{"39":2,"85":2}}],["bytes",{"2":{"8":1,"9":1,"14":1,"16":3,"17":1,"18":1,"19":1,"21":3,"22":1,"25":1,"27":1,"30":3,"31":1,"34":1,"39":2,"44":2,"54":1,"63":2,"76":4,"79":1,"89":1}}],["by",{"0":{"4":1,"5":1},"2":{"2":1,"10":2,"14":1,"16":1,"22":1,"30":1,"33":1,"34":6,"37":2,"39":1,"45":1,"46":1,"49":1,"53":1,"54":1,"55":1,"56":1,"58":1,"68":3,"70":1,"71":1,"77":1,"80":2,"82":1,"83":1,"85":12,"86":6,"88":1,"92":1}}],["beware",{"2":{"94":1}}],["best",{"2":{"86":1,"96":1}}],["become",{"2":{"85":1}}],["because",{"2":{"1":1,"13":1,"14":1,"16":1}}],["before",{"2":{"79":1,"83":1,"85":1}}],["belonging",{"2":{"69":1}}],["belongs",{"2":{"22":1}}],["being",{"2":{"43":1}}],["been",{"2":{"37":1,"80":1}}],["between",{"2":{"26":1,"27":1,"34":1,"36":1,"37":2,"65":1,"74":1,"76":1,"85":1}}],["begin",{"2":{"23":1}}],["be",{"2":{"0":5,"2":1,"3":1,"4":1,"13":1,"15":1,"16":2,"22":1,"24":1,"34":1,"37":1,"38":1,"39":2,"42":1,"43":1,"50":1,"58":2,"59":1,"60":1,"66":1,"68":1,"70":2,"77":1,"78":1,"79":1,"82":1,"85":22,"86":9,"90":1,"94":1,"98":1}}],["628915",{"2":{"89":1}}],["626919",{"2":{"89":1}}],["624506",{"2":{"89":1}}],["625389",{"2":{"27":1}}],["696114",{"2":{"89":1}}],["69",{"2":{"58":1}}],["69085",{"2":{"56":1}}],["600",{"2":{"91":1,"93":1,"99":1,"100":1,"101":1}}],["607478",{"2":{"89":1}}],["606561",{"2":{"89":1}}],["60265",{"2":{"58":1,"98":1}}],["60918",{"2":{"56":1}}],["60175",{"2":{"56":1}}],["665833",{"2":{"89":1}}],["665723",{"2":{"25":1}}],["662295",{"2":{"27":1}}],["634856",{"2":{"89":1}}],["6326",{"2":{"60":1}}],["6378137",{"2":{"60":1}}],["63006",{"2":{"56":1}}],["630469",{"2":{"27":1}}],["63593",{"2":{"27":1}}],["655204",{"2":{"89":1}}],["65105",{"2":{"56":1}}],["658321",{"2":{"27":1}}],["652339",{"2":{"25":1}}],["6122",{"2":{"56":1}}],["61197",{"2":{"56":1}}],["611084",{"2":{"25":1}}],["619",{"2":{"51":1,"52":1}}],["617023",{"2":{"26":1}}],["6×6×25",{"2":{"26":2}}],["6×2",{"2":{"9":1}}],["647957",{"2":{"80":2}}],["64976",{"2":{"56":1}}],["642",{"2":{"50":1}}],["645758",{"2":{"25":1}}],["6449679240642969",{"2":{"11":1}}],["673373",{"2":{"25":1}}],["671662",{"2":{"22":1}}],["672",{"2":{"21":1}}],["686278",{"2":{"27":1}}],["687891",{"2":{"26":1}}],["684389",{"2":{"22":1}}],["685454",{"2":{"22":1}}],["6",{"2":{"2":6,"4":6,"5":6,"6":6,"8":4,"9":5,"16":8,"22":1,"31":1,"34":1,"58":1,"98":1}}],["1e8",{"2":{"86":1}}],["1f2",{"2":{"44":1}}],["1984",{"2":{"60":1}}],["1983",{"2":{"54":1}}],["1980",{"2":{"54":1}}],["193109",{"2":{"26":1}}],["197238",{"2":{"25":1}}],["1921",{"2":{"80":2}}],["19241",{"2":{"56":1}}],["192",{"2":{"19":1,"100":1}}],["19",{"2":{"16":16,"64":3,"65":5}}],["18554488323324722",{"2":{"92":1}}],["18583",{"2":{"56":1}}],["183083",{"2":{"89":1}}],["18892",{"2":{"56":1}}],["18434",{"2":{"56":1}}],["180×170",{"2":{"63":1}}],["180×170×24",{"2":{"59":1,"62":2}}],["180",{"2":{"37":2,"60":1,"65":5,"100":1}}],["180ºe",{"2":{"37":1}}],["181798",{"2":{"27":1}}],["18",{"2":{"16":18}}],["142733",{"2":{"89":1}}],["14286",{"2":{"22":1}}],["1437",{"2":{"56":1}}],["145747",{"2":{"22":1}}],["14",{"2":{"16":20,"27":1}}],["13853500608021024",{"2":{"92":1}}],["136",{"2":{"59":1,"61":1,"72":1,"78":1}}],["1363",{"2":{"51":1,"52":1}}],["13z",{"2":{"58":2,"98":1}}],["1372",{"2":{"51":1,"52":1}}],["13",{"2":{"16":20,"27":1,"37":6,"59":1,"61":1,"72":1,"78":1}}],["170",{"2":{"66":1}}],["179",{"2":{"60":1,"65":5}}],["17578125",{"2":{"60":2}}],["17593",{"2":{"22":1}}],["17434",{"2":{"56":1}}],["174934",{"2":{"25":1}}],["17852",{"2":{"56":1}}],["17863",{"2":{"56":1}}],["178603",{"2":{"22":1}}],["17647",{"2":{"56":1}}],["1762",{"2":{"51":1,"52":1}}],["17t00",{"2":{"54":1}}],["17",{"2":{"14":1,"16":22,"39":1,"64":1}}],["16t00",{"2":{"59":4,"61":2,"62":4,"63":4,"64":6,"65":10,"72":2,"78":2}}],["16t12",{"2":{"54":1}}],["16824",{"2":{"56":1}}],["16581",{"2":{"56":1}}],["165853",{"2":{"27":1}}],["16631",{"2":{"56":1}}],["166212",{"2":{"25":1}}],["16713",{"2":{"56":1}}],["167676",{"2":{"22":1}}],["16258",{"2":{"56":1}}],["162134",{"2":{"27":1}}],["1644",{"2":{"56":1}}],["164",{"2":{"44":1}}],["169284",{"2":{"25":1}}],["16",{"2":{"10":1,"12":1,"13":1,"16":20,"22":1,"46":1,"59":2,"61":1,"62":2,"63":4,"64":3,"65":5,"72":1,"78":1}}],["157268",{"2":{"89":1}}],["159",{"2":{"64":1}}],["15644",{"2":{"56":1}}],["15532",{"2":{"56":1}}],["151146",{"2":{"25":1}}],["152534",{"2":{"25":1}}],["15394",{"2":{"22":1}}],["15×10×30",{"2":{"16":1}}],["15×10",{"2":{"16":2}}],["15",{"2":{"10":1,"16":25,"22":6,"23":1,"27":4,"32":2,"39":1,"46":1,"47":1,"89":1}}],["128",{"2":{"102":1}}],["128204",{"2":{"25":1}}],["1242",{"2":{"56":1}}],["12575",{"2":{"56":1}}],["12568",{"2":{"26":1}}],["121947",{"2":{"22":1}}],["12320189493957617",{"2":{"92":1}}],["123",{"2":{"17":1,"21":2}}],["1200",{"2":{"99":1,"100":1,"101":1}}],["120997",{"2":{"22":1}}],["120",{"2":{"16":1}}],["12",{"2":{"8":4,"16":20,"27":1,"34":10,"36":3,"37":4,"59":2,"61":1,"62":2,"63":2,"64":3,"65":5,"72":1,"78":1,"91":1,"92":2}}],["1=5",{"2":{"2":1}}],["1159914",{"2":{"76":1}}],["119",{"2":{"63":1}}],["1181",{"2":{"56":1}}],["112319",{"2":{"55":12}}],["114815",{"2":{"55":6}}],["113553",{"2":{"55":3}}],["113",{"2":{"44":1}}],["11",{"2":{"2":6,"4":6,"5":6,"6":6,"8":1,"16":18,"27":1,"51":4,"52":4,"56":4,"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1}}],["1",{"2":{"2":12,"4":19,"5":20,"6":22,"8":5,"9":3,"10":8,"11":3,"12":7,"13":5,"14":6,"16":24,"17":10,"18":9,"19":8,"20":5,"21":17,"22":34,"23":3,"25":1,"26":7,"27":6,"29":3,"30":3,"31":8,"32":8,"34":23,"36":10,"37":8,"38":15,"39":14,"41":1,"42":3,"43":1,"44":5,"46":15,"47":4,"51":4,"52":2,"54":6,"55":11,"56":55,"58":4,"59":8,"61":4,"62":8,"63":13,"64":18,"65":15,"66":2,"72":4,"78":11,"79":2,"80":2,"86":1,"89":11,"91":2,"92":5,"93":5,"98":3,"100":4,"101":2,"102":5}}],["1095",{"2":{"92":1}}],["10989",{"2":{"55":6}}],["10mb",{"2":{"85":2}}],["1083",{"2":{"56":1}}],["108696",{"2":{"55":6}}],["103704",{"2":{"55":3}}],["10×20×5",{"2":{"46":1}}],["10×170×24",{"2":{"64":1}}],["10×10×24",{"2":{"64":2}}],["10×10×8",{"2":{"34":1}}],["10×10×12",{"2":{"34":1}}],["10×10×36",{"2":{"34":1}}],["10×10×5",{"2":{"29":1}}],["10×10",{"2":{"30":3,"31":1,"34":1}}],["10×15×20",{"2":{"38":1}}],["10×15",{"2":{"14":1,"22":2,"39":1,"89":1}}],["100",{"2":{"37":13}}],["1000",{"2":{"0":1,"100":1,"101":1}}],["10x15",{"2":{"22":1}}],["101524",{"2":{"22":1}}],["10",{"2":{"2":14,"4":16,"5":18,"6":17,"10":3,"12":1,"13":1,"14":1,"16":21,"22":15,"23":3,"25":2,"27":4,"29":8,"30":12,"31":5,"32":4,"34":16,"36":10,"38":3,"39":2,"41":2,"42":4,"46":6,"47":2,"58":1,"59":1,"62":2,"63":3,"64":6,"65":5,"78":2,"88":1,"89":3}}],["garbage",{"2":{"86":1}}],["gc",{"2":{"86":2}}],["gt",{"2":{"83":1,"85":1,"86":3}}],["gdalworkshop",{"2":{"60":1}}],["gdal",{"0":{"60":1},"2":{"60":1}}],["gb",{"2":{"58":1}}],["gn",{"2":{"58":1,"98":2}}],["gs",{"2":{"58":1,"98":2}}],["ggplot2",{"2":{"56":1}}],["github",{"2":{"50":2,"60":1,"81":1}}],["gives",{"2":{"22":1}}],["given",{"2":{"2":1,"22":2,"68":1,"70":1,"77":1,"85":6,"86":3,"89":1}}],["globalproperties=dict",{"2":{"86":1}}],["global",{"2":{"85":1,"86":1}}],["glmakie",{"2":{"39":2,"98":2}}],["glue",{"2":{"8":1}}],["gradient",{"2":{"99":1,"100":1,"101":1,"102":1}}],["gradually",{"2":{"79":1}}],["grey25",{"2":{"102":1}}],["grey15",{"2":{"39":1,"56":1}}],["greenwich",{"2":{"60":1}}],["green",{"2":{"60":1,"69":1}}],["grouped",{"2":{"85":1}}],["groups",{"2":{"55":1}}],["groupby",{"0":{"51":1,"54":1},"1":{"52":1,"53":1,"55":1,"56":1},"2":{"48":1,"50":1,"51":6,"52":1,"53":1,"54":3,"55":3,"56":3,"85":1,"92":1}}],["group",{"0":{"48":1},"1":{"49":1,"50":1,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1},"2":{"51":1,"53":1,"54":2,"69":1,"85":3}}],["grouping",{"2":{"39":2,"53":2}}],["grid=false",{"2":{"56":1}}],["grid",{"2":{"23":1,"68":1,"85":1}}],["gridchunks",{"2":{"2":3,"4":1,"5":1,"6":1,"85":1,"86":1}}],["going",{"2":{"86":1}}],["go",{"2":{"83":2}}],["good",{"2":{"56":1}}],["goal",{"2":{"21":1,"30":1,"49":1}}],["goes",{"2":{"16":2,"85":1,"86":1}}],["guide",{"2":{"10":2,"12":1,"13":1,"23":1,"46":3,"47":1}}],["gen",{"2":{"16":6}}],["general",{"0":{"95":1},"2":{"85":1}}],["generated",{"2":{"59":1,"61":1,"72":1,"78":1,"86":1}}],["generate",{"2":{"16":2,"34":1,"36":1,"37":1,"83":1,"85":1}}],["generic",{"2":{"16":2,"18":1,"19":1,"21":1,"46":1}}],["getting",{"0":{"87":1},"1":{"88":1,"89":1,"90":1}}],["gettarrayaxes",{"2":{"43":1}}],["getarrayinfo",{"2":{"86":1}}],["getaxis",{"2":{"31":1,"39":2,"85":1}}],["getloopchunks",{"2":{"86":1}}],["getloopcachesize",{"2":{"86":1}}],["getouttype",{"2":{"86":1}}],["getoutaxis",{"2":{"86":1}}],["getfrontperm",{"2":{"86":1}}],["gets",{"2":{"85":1,"86":1}}],["get",{"0":{"66":1},"2":{"10":1,"18":1,"29":1,"50":1,"54":1,"62":1,"64":1,"66":1,"86":3,"89":1,"92":1,"98":1}}],["geoaxis",{"2":{"100":1,"101":1}}],["geometrybasics",{"2":{"98":1}}],["geomakie",{"2":{"98":1,"100":2,"101":1}}],["geogcs",{"2":{"60":1}}],["geojson",{"0":{"60":1}}],["geotiff",{"0":{"60":1}}],["geo",{"2":{"1":1}}],["g",{"2":{"7":1,"10":1,"11":1,"13":1,"16":4,"23":1,"46":1,"51":26,"52":2,"53":2,"54":2,"55":1,"56":18,"66":1,"68":1,"71":1,"85":5,"98":2}}],["2π",{"2":{"91":1}}],["2×3",{"2":{"89":1}}],["2×2×3",{"2":{"4":1,"5":1,"6":1}}],["2×2",{"2":{"2":3,"44":1}}],["2x2l31",{"2":{"59":1,"61":1,"72":1,"78":1}}],["2f0",{"2":{"44":1}}],["2963858",{"2":{"76":1}}],["298",{"2":{"60":1}}],["29816",{"2":{"56":1}}],["29473",{"2":{"56":1}}],["29564",{"2":{"56":1}}],["299637",{"2":{"26":1}}],["29",{"2":{"26":2}}],["283788",{"2":{"89":1}}],["28422753251364",{"2":{"58":4,"98":2}}],["28008",{"2":{"56":1}}],["2894",{"2":{"56":1}}],["288",{"2":{"54":1}}],["2818",{"2":{"51":1,"52":1}}],["28",{"2":{"26":2,"34":1,"51":3,"52":3,"56":3}}],["28571",{"2":{"22":2}}],["2857142857142857",{"2":{"10":1,"12":1,"13":1,"14":1,"22":3,"32":1,"38":3,"39":1,"46":2,"47":1,"89":1}}],["2747",{"2":{"56":1}}],["273",{"2":{"54":1}}],["276",{"2":{"54":2}}],["270",{"2":{"54":1}}],["275×205×9",{"2":{"51":4}}],["271209",{"2":{"27":1}}],["27",{"2":{"26":2,"51":1,"52":1,"56":1}}],["2d",{"2":{"19":5,"20":3,"21":2}}],["265107",{"2":{"89":1}}],["265797",{"2":{"25":1}}],["26274",{"2":{"56":1}}],["268675",{"2":{"26":1}}],["26",{"2":{"16":2,"26":2,"58":2,"98":1}}],["25526503219661817",{"2":{"92":1}}],["258509",{"2":{"89":1}}],["257223563",{"2":{"60":1}}],["25153",{"2":{"56":1}}],["25",{"2":{"16":4,"26":10,"34":1,"91":1}}],["245867",{"2":{"89":1}}],["24375",{"2":{"56":1}}],["2434",{"2":{"56":1}}],["241882",{"2":{"25":1}}],["24",{"2":{"16":6,"39":1,"63":2}}],["240588",{"2":{"89":1}}],["240",{"2":{"14":1,"16":1,"27":1}}],["235899",{"2":{"89":1}}],["235707",{"2":{"89":1}}],["234116",{"2":{"89":1}}],["237824",{"2":{"27":1}}],["23",{"2":{"16":8,"38":3,"56":1,"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1}}],["223574",{"2":{"80":2}}],["22211",{"2":{"56":1}}],["229281",{"2":{"27":1}}],["225542",{"2":{"26":1}}],["22",{"2":{"16":10}}],["21t06",{"2":{"58":2,"98":1}}],["21t19",{"2":{"43":4}}],["2101",{"2":{"58":2,"98":1}}],["21056",{"2":{"26":1}}],["21699",{"2":{"56":1}}],["21209",{"2":{"56":1}}],["215988",{"2":{"27":1}}],["215973",{"2":{"26":1}}],["21",{"2":{"16":12,"51":8,"52":8,"56":8}}],["2=10",{"2":{"2":1}}],["2",{"2":{"2":3,"4":8,"5":9,"6":10,"8":1,"9":1,"11":3,"12":2,"13":1,"14":1,"17":1,"18":2,"19":2,"20":1,"22":9,"23":1,"25":2,"27":3,"29":3,"30":6,"31":3,"34":1,"39":6,"42":4,"43":1,"44":8,"46":1,"51":1,"52":1,"56":40,"58":3,"59":3,"61":1,"62":4,"63":2,"64":2,"65":5,"66":2,"72":1,"78":2,"79":2,"85":2,"89":5,"98":3,"100":2,"102":1}}],["2003",{"2":{"59":1,"61":1,"72":1,"78":1}}],["2004",{"2":{"59":1,"61":1,"72":1,"78":1}}],["2005",{"2":{"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1}}],["2002",{"2":{"59":3,"61":2,"62":2,"63":2,"64":3,"65":5,"72":2,"78":1}}],["2001",{"2":{"59":3,"61":2,"62":2,"63":3,"64":3,"65":5,"72":2,"78":1}}],["2000",{"2":{"26":4}}],["2019",{"2":{"58":2,"98":1}}],["2015",{"2":{"58":2,"59":1,"61":1,"72":1,"78":1,"98":2}}],["20×10×15",{"2":{"38":2}}],["20×10×15×2",{"2":{"32":1,"89":1}}],["20ºn",{"2":{"37":1}}],["203714",{"2":{"26":1}}],["2023",{"2":{"91":1,"92":2}}],["2021",{"2":{"34":9,"91":1,"92":2,"93":1}}],["2020",{"2":{"34":5,"36":3,"37":4,"43":8,"70":1}}],["2024",{"2":{"26":4}}],["2022",{"2":{"10":4,"12":2,"13":2,"14":2,"16":8,"17":4,"18":2,"20":2,"21":6,"22":6,"23":2,"34":5,"36":3,"37":4,"46":6,"47":2,"93":1}}],["20",{"2":{"2":7,"4":10,"5":10,"6":10,"16":14,"32":4,"37":2,"38":3,"39":1,"46":2,"56":1,"78":2,"89":3}}],["542309",{"2":{"89":1}}],["540514",{"2":{"26":1}}],["55",{"2":{"92":1}}],["552072",{"2":{"89":1}}],["551732",{"2":{"22":1}}],["515079",{"2":{"89":1}}],["5173",{"2":{"83":1}}],["514979",{"2":{"22":1}}],["5e8",{"2":{"77":1,"85":1}}],["5743",{"2":{"56":1}}],["57873",{"2":{"56":1}}],["57695",{"2":{"56":1}}],["57143",{"2":{"22":2}}],["56632",{"2":{"56":1}}],["561549",{"2":{"26":1}}],["52908",{"2":{"89":1}}],["520406",{"2":{"80":2}}],["520744",{"2":{"27":1}}],["52419",{"2":{"56":1}}],["521769",{"2":{"27":1}}],["521991",{"2":{"26":1}}],["522262",{"2":{"27":1}}],["59212",{"2":{"56":1}}],["59085",{"2":{"56":1}}],["594514",{"2":{"25":1}}],["595405",{"2":{"22":1}}],["5×4",{"2":{"80":2}}],["5×4×5",{"2":{"79":1}}],["5×4×3",{"2":{"21":2}}],["5×4×3×2",{"2":{"17":1,"18":1}}],["5×6×36",{"2":{"34":1}}],["5×6",{"2":{"27":2}}],["5×10",{"2":{"25":2}}],["507176",{"2":{"89":1}}],["508557",{"2":{"22":1}}],["50089",{"2":{"56":1}}],["500",{"2":{"0":1,"56":1,"102":2}}],["500mb",{"2":{"0":2}}],["531092",{"2":{"89":1}}],["53",{"2":{"63":1}}],["536273",{"2":{"27":1}}],["536399",{"2":{"22":1}}],["538981",{"2":{"22":1}}],["587477",{"2":{"89":1}}],["5843",{"2":{"51":1,"52":1}}],["581312",{"2":{"25":1}}],["58",{"2":{"16":2}}],["5",{"2":{"2":7,"4":16,"5":18,"6":7,"10":2,"12":3,"13":2,"14":1,"16":6,"17":2,"21":4,"22":10,"23":1,"25":2,"27":4,"29":4,"31":1,"32":2,"34":3,"36":4,"38":3,"39":2,"42":4,"46":5,"47":1,"56":5,"59":4,"61":2,"62":4,"63":3,"64":10,"65":10,"66":19,"72":2,"78":4,"79":6,"80":3,"89":2,"90":1,"93":2,"102":2}}],["rotate",{"2":{"102":1}}],["row",{"2":{"71":1,"85":1}}],["rowgap",{"2":{"56":1}}],["right",{"2":{"91":1,"93":1}}],["rights",{"2":{"80":1}}],["r",{"2":{"79":1}}],["r1i1p1f1",{"2":{"58":2,"98":3}}],["running",{"2":{"83":1}}],["run",{"2":{"23":1,"83":3}}],["runs",{"2":{"13":1,"86":1}}],["rafaqz",{"2":{"50":1}}],["raw",{"2":{"50":1,"60":1}}],["rasm",{"2":{"50":2}}],["ras",{"2":{"26":3}}],["rasters",{"2":{"26":2}}],["raster",{"0":{"26":1},"2":{"22":11,"26":5}}],["ranges",{"0":{"64":1},"2":{"31":1,"61":1}}],["range",{"2":{"10":2,"16":2,"17":2,"22":2,"23":2,"32":3,"34":1,"46":2,"86":1,"89":3,"91":1}}],["randn",{"2":{"91":1}}],["random",{"2":{"17":2,"37":2,"43":3,"89":1}}],["rand",{"2":{"2":1,"4":3,"5":3,"6":3,"8":2,"9":2,"10":1,"17":1,"19":1,"21":3,"22":1,"23":1,"25":1,"26":1,"27":1,"29":1,"30":2,"32":2,"37":3,"39":1,"41":1,"42":3,"46":2,"47":1,"78":1,"80":1,"89":2}}],["relational",{"2":{"68":1}}],["related",{"2":{"50":1}}],["recommend",{"2":{"90":1}}],["recommended",{"2":{"65":1}}],["rechunking",{"2":{"86":1}}],["recalculate",{"2":{"86":1}}],["recal",{"2":{"86":1}}],["recently",{"2":{"0":1}}],["rewrote",{"2":{"58":1,"59":1,"61":1,"72":1,"78":1,"98":1}}],["realization",{"2":{"59":1,"61":1,"72":1,"78":1}}],["realm",{"2":{"58":1,"98":1}}],["readcubedata",{"2":{"37":2,"85":1}}],["read",{"0":{"57":1,"58":1,"59":1,"60":1},"1":{"58":1,"59":1,"60":1},"2":{"1":1,"37":1,"50":1,"57":1,"60":1,"64":1,"85":1}}],["red",{"2":{"56":1,"60":1,"69":1}}],["reduce",{"2":{"10":1,"14":1,"19":1}}],["reverse",{"2":{"56":1}}],["reverseordered",{"2":{"9":1,"60":1,"89":1}}],["rename",{"2":{"42":1}}],["resets",{"2":{"85":1,"86":1}}],["respectively",{"2":{"69":1}}],["reshape",{"2":{"34":1,"36":2}}],["result",{"2":{"31":1,"39":1}}],["resulting",{"2":{"8":1,"9":1,"14":1,"85":1,"86":1}}],["results",{"0":{"93":1},"2":{"2":1,"5":1,"56":2,"85":1,"86":1}}],["references",{"2":{"59":1,"61":1,"72":1,"78":1}}],["reference",{"0":{"84":1},"1":{"85":1,"86":1},"2":{"43":1}}],["ref",{"2":{"32":1,"85":1,"86":1}}],["rebuild",{"0":{"30":1},"2":{"29":1,"30":2,"43":2,"50":1}}],["repeat",{"2":{"91":1}}],["repl",{"2":{"88":1}}],["replace",{"2":{"23":1,"50":1,"102":1}}],["repository",{"2":{"81":1,"94":1}}],["reports",{"2":{"81":1}}],["reproduces",{"2":{"49":1}}],["represented",{"2":{"85":1,"96":1}}],["represents",{"2":{"69":1}}],["representing",{"2":{"22":2,"86":1}}],["representation",{"2":{"1":1,"85":2,"86":3}}],["re",{"2":{"22":1}}],["registration",{"2":{"86":2}}],["registered",{"2":{"86":1}}],["regions",{"2":{"22":8}}],["region",{"2":{"22":12}}],["regular",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":3,"16":9,"17":3,"18":3,"19":2,"20":2,"21":9,"22":8,"25":2,"26":6,"27":4,"29":9,"30":6,"31":2,"32":3,"34":14,"36":6,"37":4,"38":9,"39":3,"41":1,"42":5,"44":4,"46":9,"47":3,"51":2,"52":2,"56":6,"58":2,"59":4,"60":2,"61":2,"62":4,"63":2,"64":3,"65":10,"66":2,"72":2,"78":5,"79":6,"89":5,"92":1,"98":1}}],["regularchunks",{"2":{"2":6,"4":3,"5":3,"6":3}}],["returned",{"2":{"85":1}}],["returns",{"2":{"85":5,"86":2}}],["return",{"2":{"18":1,"19":1,"21":2,"22":4,"51":1,"85":1,"86":1,"92":1}}],["requests",{"2":{"81":1}}],["requested",{"2":{"13":1}}],["requirements",{"2":{"59":1,"61":1,"72":1,"78":1}}],["required",{"2":{"34":1}}],["requires",{"2":{"16":1}}],["removes",{"2":{"86":1}}],["remove",{"2":{"52":1}}],["removed",{"2":{"15":1,"86":1}}],["remote",{"2":{"0":1}}],["http",{"2":{"83":1}}],["https",{"2":{"50":2,"59":1,"60":1,"61":1,"69":1,"72":1}}],["html",{"2":{"69":1}}],["hr",{"2":{"58":1,"98":2}}],["history",{"2":{"58":2,"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1,"98":1}}],["hidedecorations",{"2":{"56":1}}],["highclip",{"2":{"56":4}}],["high",{"2":{"43":4}}],["hm",{"2":{"56":8}}],["hold",{"2":{"85":1}}],["holds",{"2":{"85":1,"86":1}}],["ho",{"0":{"43":1}}],["however",{"2":{"24":1,"34":1}}],["how",{"0":{"32":1,"33":1,"38":1,"39":1,"40":1},"1":{"34":1,"35":1,"36":1,"37":1,"41":1,"42":1},"2":{"6":1,"7":1,"10":1,"17":2,"18":1,"24":1,"28":1,"39":1,"45":1,"57":1,"80":1,"85":1,"94":1,"96":1}}],["happens",{"2":{"86":1}}],["had",{"2":{"80":1,"85":1,"86":1}}],["hamman",{"2":{"49":1,"56":1}}],["handled",{"2":{"86":1}}],["handle",{"2":{"68":1,"86":1}}],["handling",{"2":{"9":1,"85":1}}],["handy",{"2":{"39":1}}],["has",{"2":{"8":1,"9":1,"22":1,"26":1,"27":1,"37":1,"49":1,"52":1,"86":1}}],["half",{"2":{"8":5}}],["have",{"2":{"6":1,"9":1,"22":1,"35":1,"37":2,"46":1,"70":1,"85":3}}],["having",{"2":{"1":1,"22":1}}],["help",{"2":{"85":1,"86":2}}],["height",{"2":{"58":2,"98":1}}],["heatmap",{"0":{"99":1},"2":{"39":1,"56":3,"99":1}}],["hereby",{"2":{"22":1}}],["here",{"2":{"8":1,"9":1,"13":1,"16":2,"17":1,"21":1,"22":1,"33":1,"39":1,"64":1,"79":1,"82":2}}],["hence",{"2":{"1":1}}],["yeesian",{"2":{"60":1}}],["years",{"2":{"34":1,"91":1,"92":1}}],["year",{"2":{"8":4,"93":1}}],["yyyy",{"2":{"59":2,"61":2,"72":2,"78":2}}],["ylabel=",{"2":{"91":1,"93":1}}],["ylabel",{"2":{"56":3}}],["yasxa",{"2":{"37":6}}],["yaxcolumn",{"2":{"86":1}}],["yaxconvert",{"2":{"27":2}}],["yaxdefaults",{"2":{"86":1}}],["yaxarraybase",{"2":{"27":1,"85":1,"86":1}}],["yaxarray",{"0":{"11":1,"17":1,"33":1,"34":1,"44":1,"46":1,"62":1,"68":1},"1":{"18":1,"19":1,"20":1,"34":1,"35":1,"36":1,"37":1},"2":{"2":1,"4":4,"5":4,"6":4,"7":1,"8":3,"9":3,"10":2,"12":1,"13":1,"14":2,"16":8,"17":2,"18":1,"19":2,"20":1,"21":6,"22":3,"23":1,"25":4,"26":3,"27":5,"29":3,"30":5,"31":1,"32":3,"33":1,"34":15,"36":4,"37":6,"38":3,"39":4,"41":2,"42":4,"43":4,"44":4,"46":5,"47":2,"50":2,"51":7,"52":1,"54":9,"55":1,"56":3,"58":2,"59":2,"60":1,"61":2,"62":2,"63":3,"64":3,"65":5,"68":1,"70":1,"72":1,"73":1,"75":1,"78":2,"79":4,"85":10,"86":3,"89":5,"92":2,"96":1,"98":1}}],["yaxarrays",{"0":{"0":1,"1":1,"2":1,"7":1,"10":1,"16":1,"24":1,"40":1,"45":1,"48":1,"57":1,"61":1,"72":1,"81":1,"95":1,"96":1},"1":{"2":1,"3":1,"4":1,"5":1,"6":1,"8":1,"9":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"25":1,"26":1,"27":1,"41":1,"42":1,"46":1,"47":1,"49":1,"50":1,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1,"58":1,"59":1,"60":1,"62":1,"63":1,"64":1,"65":1,"66":1,"73":1,"74":1,"75":1,"76":1,"77":1,"78":1,"79":1,"80":1,"82":1,"83":1},"2":{"0":3,"2":1,"4":1,"5":1,"6":1,"8":1,"9":1,"10":2,"16":4,"17":1,"22":1,"23":2,"24":2,"25":1,"29":1,"30":1,"32":1,"33":1,"34":1,"35":1,"36":2,"37":4,"41":1,"42":1,"43":2,"46":1,"48":1,"57":1,"58":1,"59":1,"60":2,"61":1,"67":1,"69":1,"72":1,"77":1,"79":1,"81":1,"83":1,"85":27,"86":28,"88":3,"89":3,"90":2,"92":1,"94":1,"95":1,"98":1}}],["yax",{"2":{"0":1,"17":1,"18":1,"19":1,"20":3,"21":4,"30":1,"43":3,"44":2}}],["y",{"2":{"4":2,"5":3,"6":2,"26":4,"27":3,"34":4,"38":4,"51":2,"52":1,"56":3,"60":1,"68":1,"89":5}}],["you",{"2":{"1":1,"23":1,"33":1,"37":3,"42":2,"74":1,"82":1,"83":2,"85":1,"86":2,"88":2,"90":1,"94":3,"96":2}}],["yourself",{"2":{"83":1}}],["your",{"2":{"1":2,"37":2,"77":2,"79":1,"82":4,"83":4,"85":1}}],["circshift",{"2":{"100":1}}],["ct1",{"2":{"98":4,"99":1}}],["cycle",{"0":{"91":1,"93":1},"1":{"92":1,"93":1},"2":{"92":4}}],["cycle=12",{"2":{"51":2,"52":1,"54":2,"55":2,"56":3}}],["cdata",{"2":{"86":1}}],["center",{"2":{"85":1,"91":1,"93":1}}],["certain",{"2":{"61":2,"86":1}}],["cell",{"2":{"58":2,"59":1,"62":2,"63":3,"64":3,"65":5,"85":1}}],["cf",{"2":{"58":2,"59":2,"61":2,"72":2,"78":2,"98":2}}],["cftime",{"2":{"51":4,"54":7,"55":5,"56":5,"59":6,"61":3,"62":6,"63":7,"64":9,"65":15,"72":3,"78":3}}],["cmpcachmisses",{"2":{"86":1}}],["cm4",{"2":{"59":4,"61":4,"72":4,"78":4}}],["cmip",{"2":{"58":1,"98":1}}],["cmip6",{"2":{"58":3,"98":6}}],["cmor",{"2":{"58":2,"59":3,"61":2,"62":2,"63":3,"64":3,"65":5,"72":2,"78":2,"98":1}}],["c54",{"2":{"56":1}}],["cb",{"2":{"56":1}}],["cbar",{"2":{"39":1}}],["cgrad",{"2":{"39":1}}],["cl",{"2":{"100":1,"101":1}}],["cl=lines",{"2":{"100":1,"101":1}}],["clean",{"2":{"86":1}}],["cleanme",{"2":{"86":4}}],["cleaner",{"2":{"85":2}}],["clevel=n",{"2":{"74":1}}],["climate",{"2":{"59":1,"61":1,"72":1,"78":1}}],["closedinterval",{"2":{"65":1}}],["closed",{"0":{"65":1},"2":{"65":3}}],["close",{"2":{"43":4}}],["cloud",{"2":{"11":1,"58":1}}],["classes=classes",{"2":{"39":1}}],["classes",{"2":{"39":8}}],["classification",{"2":{"39":2}}],["class",{"2":{"39":3}}],["clustermanagers",{"2":{"23":2}}],["cluster",{"2":{"23":1}}],["cpus",{"2":{"23":1}}],["cpu",{"2":{"23":1}}],["c",{"2":{"22":11,"29":5,"30":7,"31":3,"39":2,"42":2,"69":1,"74":1,"76":4,"85":3,"86":3,"92":4,"98":2}}],["custom",{"2":{"46":1,"85":1}}],["current",{"2":{"22":2,"69":1,"85":1,"93":1}}],["currently",{"2":{"16":1,"43":1,"50":1,"94":1}}],["cubeaxis",{"2":{"86":1}}],["cubeaxes",{"2":{"85":1}}],["cubedir",{"2":{"86":1}}],["cube2",{"2":{"85":1}}],["cube1",{"2":{"85":1}}],["cubelist",{"2":{"85":1}}],["cubefittable",{"2":{"39":2,"85":1}}],["cubetable",{"0":{"39":1},"2":{"39":3,"85":3}}],["cubes",{"0":{"32":1},"2":{"9":2,"17":1,"21":1,"32":2,"37":1,"38":2,"39":1,"62":1,"70":1,"85":18,"86":9}}],["cube",{"0":{"29":1,"31":1,"33":1,"70":1,"92":1},"1":{"30":1,"34":1,"35":1,"36":1,"37":1},"2":{"2":1,"4":1,"5":1,"6":1,"16":11,"17":2,"19":2,"21":2,"29":1,"31":1,"33":2,"37":1,"38":1,"39":2,"50":1,"70":3,"79":1,"85":34,"86":19,"96":1}}],["chose",{"2":{"69":1}}],["child",{"2":{"58":1,"98":1}}],["check",{"2":{"16":1,"79":1,"90":1}}],["changed",{"2":{"90":1,"94":1}}],["change",{"2":{"10":1,"85":1,"86":1}}],["chunkoffset",{"2":{"86":1}}],["chunksize`",{"2":{"86":1}}],["chunksizes",{"2":{"85":2}}],["chunksize",{"2":{"85":1,"86":3}}],["chunks",{"0":{"4":1},"2":{"2":5,"4":1,"5":1,"6":2,"85":4,"86":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,"85":4,"86":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,"85":4,"86":4}}],["criteria",{"2":{"39":1}}],["creation",{"2":{"44":1}}],["creating",{"0":{"22":1},"2":{"10":1,"30":1,"34":1,"79":1,"82":1}}],["createdataset",{"2":{"86":2}}],["created",{"2":{"86":2}}],["creates",{"2":{"39":1,"85":2,"86":1}}],["create",{"0":{"44":1,"45":1,"46":1,"47":1},"1":{"46":1,"47":1},"2":{"10":1,"16":1,"22":2,"30":1,"32":1,"34":2,"39":1,"43":1,"45":1,"46":1,"50":1,"54":1,"72":1,"77":1,"79":3,"85":1,"86":1,"89":1,"91":1}}],["crucial",{"2":{"1":1}}],["coastlines",{"2":{"100":3,"101":1}}],["cosd",{"2":{"85":1}}],["country",{"2":{"85":4}}],["country=cube2",{"2":{"85":1}}],["could",{"2":{"30":1,"43":1}}],["copies",{"2":{"86":1}}],["copied",{"2":{"79":1}}],["copybuf",{"2":{"86":2}}],["copydata",{"2":{"86":1}}],["copy",{"2":{"29":1,"83":1,"85":1}}],["coordinates",{"2":{"58":1}}],["college",{"2":{"94":1}}],["collected",{"2":{"86":1}}],["collectfromhandle",{"2":{"86":1}}],["collection",{"2":{"28":1,"68":1}}],["collect",{"2":{"25":1,"31":3,"92":1}}],["colonperm",{"2":{"86":1}}],["color=",{"2":{"93":3}}],["color",{"2":{"91":1,"100":1,"101":1,"102":1}}],["colormap=",{"2":{"56":1}}],["colormap=makie",{"2":{"39":1}}],["colormap",{"2":{"56":3,"99":1,"100":1,"101":1,"102":1}}],["colorrange=",{"2":{"56":1}}],["colorrange",{"2":{"56":3}}],["colorbar",{"2":{"39":1,"56":2}}],["column",{"2":{"71":1,"86":1}}],["colgap",{"2":{"56":1}}],["colnames",{"2":{"43":1}}],["configuration",{"2":{"86":2}}],["concatenating",{"2":{"85":1}}],["concatenates",{"2":{"85":1}}],["concatenate",{"0":{"32":1},"2":{"32":2}}],["concatenatecubes",{"0":{"9":1},"2":{"9":2,"32":2,"85":2}}],["concrete",{"2":{"85":2}}],["contrast",{"2":{"85":1}}],["contributing",{"2":{"82":1}}],["contribute",{"0":{"81":1,"82":1},"1":{"82":1,"83":2}}],["content",{"2":{"85":1}}],["contact",{"2":{"59":1,"61":1,"72":1,"78":1}}],["contains",{"2":{"65":1,"85":1,"86":1}}],["contain",{"2":{"58":1,"59":1,"86":1}}],["containing",{"0":{"44":1},"2":{"8":1,"39":1,"69":1,"70":1,"85":1}}],["continue",{"2":{"51":1}}],["consolidated=true",{"2":{"58":1,"98":1}}],["constructor",{"2":{"85":1}}],["constructs",{"2":{"85":1}}],["construct",{"0":{"43":1},"2":{"85":2}}],["consistent",{"2":{"58":1,"98":1}}],["consisting",{"2":{"8":1}}],["considering",{"2":{"49":1}}],["considered",{"2":{"39":1}}],["consider",{"2":{"17":1,"19":1,"21":1,"30":1}}],["convinient",{"2":{"28":1}}],["conventions",{"2":{"59":1,"61":1,"72":1,"78":1}}],["convenient",{"2":{"23":1}}],["conversion",{"2":{"24":1,"26":1,"27":1}}],["conversions",{"2":{"24":1}}],["converted",{"2":{"70":1}}],["convert",{"0":{"24":1,"25":1,"26":1,"27":1},"1":{"25":1,"26":1,"27":1},"2":{"24":1,"25":2,"27":2,"85":1,"86":1}}],["corresponding",{"2":{"7":1,"21":2,"22":2,"70":1,"85":1}}],["combining",{"0":{"97":1}}],["combined",{"2":{"9":2,"70":2}}],["combine",{"0":{"7":1},"1":{"8":1,"9":1},"2":{"7":1,"8":1,"9":1,"96":1}}],["comment",{"2":{"58":1}}],["common",{"2":{"37":5,"85":1}}],["com",{"2":{"50":2,"60":1}}],["compiler",{"2":{"90":1}}],["compuation",{"2":{"85":1}}],["computing",{"2":{"39":1}}],["computations",{"2":{"13":1,"38":1}}],["computation",{"0":{"23":1},"2":{"13":1,"68":1,"85":3,"86":3}}],["computed",{"2":{"86":1}}],["compute",{"0":{"10":1},"1":{"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1},"2":{"92":1}}],["compares",{"2":{"86":1}}],["comparing",{"2":{"76":1}}],["compatible",{"2":{"60":1}}],["compress",{"2":{"76":2}}],["compress=n",{"2":{"76":1}}],["compressors",{"2":{"74":1}}],["compressor=compression",{"2":{"74":1}}],["compression",{"0":{"74":1,"76":1},"2":{"74":5,"76":4}}],["comply",{"2":{"59":1,"61":1,"72":1,"78":1}}],["complexity",{"2":{"38":1}}],["complex",{"2":{"10":2,"89":1}}],["comes",{"2":{"1":1}}],["code",{"2":{"6":1,"13":1,"23":2,"28":1,"43":1}}],["captialisation",{"2":{"86":1}}],["cameracontrols",{"2":{"102":1}}],["came",{"2":{"70":1}}],["cairomakie",{"2":{"56":1,"91":2}}],["caxes",{"2":{"29":2,"85":2}}],["car",{"2":{"22":1}}],["cartesianindex",{"2":{"22":11}}],["caluclate",{"2":{"85":1}}],["calculations",{"2":{"56":1,"86":1}}],["calculating",{"2":{"14":1,"85":1}}],["calculates",{"2":{"85":1}}],["calculated",{"2":{"39":2,"51":1}}],["calculate",{"2":{"14":1,"22":1,"39":2,"48":1,"49":2,"51":1,"56":1,"86":2,"92":1}}],["calling",{"2":{"56":1}}],["called",{"2":{"16":1,"68":3,"86":1}}],["call",{"2":{"1":1,"23":1}}],["case",{"2":{"13":1,"19":1,"37":1,"53":1,"58":1}}],["cases",{"2":{"0":1,"65":1,"94":1}}],["cataxis",{"2":{"85":2}}],["categoricalaxis",{"2":{"85":1}}],["categorical",{"2":{"9":1,"17":1,"18":1,"19":1,"22":1,"32":1,"39":1,"43":4,"51":2,"52":1,"53":1,"54":2,"55":2,"56":3,"85":1,"86":1,"89":1}}],["cat",{"0":{"8":1},"2":{"8":2}}],["cache=1gb```",{"2":{"85":1}}],["cache=1e9",{"2":{"16":2}}],["cache=",{"2":{"85":1}}],["cache=5",{"2":{"85":1}}],["cache=yaxdefaults",{"2":{"85":1}}],["caches",{"2":{"0":1}}],["cachesize",{"2":{"0":2,"86":1}}],["cache",{"2":{"0":6,"77":1,"85":4,"86":7}}],["caching",{"0":{"0":1}}],["can",{"2":{"0":5,"2":1,"3":1,"13":2,"14":1,"16":3,"20":1,"22":1,"23":3,"32":1,"33":1,"35":1,"37":1,"38":1,"39":2,"43":1,"46":2,"52":1,"56":1,"58":2,"59":1,"60":1,"66":1,"68":3,"69":2,"70":1,"78":1,"79":1,"80":1,"82":1,"85":11,"86":6,"88":2,"94":2}}],["msc",{"2":{"92":3,"93":2}}],["mscarray",{"2":{"92":2}}],["md",{"2":{"82":2}}],["mpi",{"2":{"58":1,"98":2}}],["m",{"2":{"25":2}}],["miss",{"2":{"86":1}}],["missing",{"2":{"14":2,"16":6,"18":1,"21":1,"22":2,"38":1,"39":2,"59":2,"62":4,"63":6,"64":6,"65":10,"79":3,"80":1,"85":2,"86":2,"102":1}}],["minimized",{"2":{"86":1}}],["minutes",{"2":{"59":1,"62":2,"63":3,"64":3,"65":5}}],["might",{"2":{"24":1,"94":1}}],["mix",{"2":{"21":2}}],["mm",{"2":{"20":3,"59":2,"61":2,"72":2,"78":2}}],["mymean",{"2":{"23":4}}],["my",{"2":{"16":2}}],["manager",{"2":{"88":1}}],["many",{"0":{"18":1,"19":2},"2":{"18":2,"19":2,"20":4,"68":1,"86":1}}],["mahecha",{"2":{"70":1}}],["mar",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["marketdata",{"2":{"43":2}}],["master",{"2":{"50":1}}],["mask",{"2":{"39":2}}],["makie",{"2":{"56":1,"102":1}}],["making",{"2":{"11":1,"61":1}}],["make",{"2":{"36":1,"37":2,"79":1,"83":1,"85":1,"86":2,"102":1}}],["main",{"2":{"33":1,"86":1}}],["machine",{"2":{"23":1,"68":1}}],["matching",{"2":{"89":1}}],["match",{"2":{"86":2}}],["matched",{"2":{"85":1}}],["matches",{"2":{"20":1}}],["mat",{"2":{"22":4}}],["matrix",{"2":{"16":2,"22":1,"25":1,"43":1,"52":1,"56":2,"68":1,"80":2,"92":1}}],["maximal",{"2":{"86":1}}],["maximum",{"2":{"38":1,"85":1,"86":1}}],["maxbuf",{"2":{"86":1}}],["max",{"2":{"16":2,"74":1,"76":1,"77":1,"85":7,"86":2}}],["maxsize",{"2":{"0":2}}],["may",{"2":{"10":1,"15":1,"51":4,"52":2,"53":1,"54":4,"55":4,"56":6,"58":1,"59":1,"90":1}}],["maps",{"0":{"98":1},"1":{"99":1}}],["mapslice",{"2":{"23":1}}],["mapslices",{"0":{"14":1},"2":{"10":1,"13":1,"14":1,"23":1,"38":1,"92":1}}],["mapped",{"2":{"85":1}}],["mapping",{"2":{"85":1,"86":3}}],["mapcube",{"0":{"15":1},"1":{"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1},"2":{"10":1,"13":1,"15":1,"16":4,"18":1,"20":1,"21":2,"22":2,"23":3,"85":5,"86":2}}],["map",{"0":{"13":1,"38":1},"2":{"10":1,"13":2,"21":1,"22":3,"23":3,"38":4,"39":1,"51":2,"55":1,"56":1,"85":2,"89":1,"92":2}}],["moll",{"0":{"101":1}}],["mowingwindow",{"2":{"85":1}}],["module",{"2":{"85":1}}],["model",{"2":{"59":1,"61":1,"69":2,"72":1,"78":1}}],["modification",{"2":{"11":1,"23":1}}],["modify",{"0":{"11":1}}],["monthday",{"2":{"92":4}}],["monthly",{"0":{"49":1}}],["month",{"2":{"34":7,"36":3,"37":4,"49":1,"51":4,"52":1,"53":1,"54":5,"55":2,"56":3,"85":1,"92":2}}],["moment",{"2":{"27":1}}],["movingwindow",{"2":{"21":1,"85":4}}],["more",{"2":{"9":1,"10":1,"33":1,"38":1,"39":1,"64":1,"65":1,"70":1,"74":1,"77":1,"85":3,"86":1,"89":1}}],["most",{"2":{"1":1,"15":1,"24":1}}],["mesh",{"2":{"102":2}}],["merely",{"2":{"79":1}}],["measured",{"2":{"69":1,"70":1}}],["measure",{"2":{"68":1}}],["measures",{"2":{"58":1}}],["means",{"0":{"49":1},"2":{"14":1,"85":1}}],["mean",{"0":{"91":1,"93":1},"1":{"92":1,"93":1},"2":{"10":1,"14":3,"23":4,"39":4,"51":10,"52":2,"53":1,"56":2,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5,"85":1,"92":5}}],["meter",{"2":{"58":1}}],["method",{"2":{"16":2,"18":1,"19":1,"21":1}}],["methods",{"2":{"7":1,"23":1,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5}}],["metadata",{"2":{"8":1,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"21":3,"22":3,"24":1,"25":1,"26":2,"27":3,"29":1,"30":3,"31":1,"32":1,"34":5,"38":3,"39":3,"44":2,"46":2,"51":2,"52":1,"54":3,"55":2,"56":3,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5,"79":2,"85":1,"89":3,"92":1}}],["members",{"2":{"86":1}}],["member",{"2":{"6":1}}],["memory",{"2":{"1":1,"22":1,"24":3,"37":4,"44":2,"50":1,"68":1,"79":1,"85":2,"86":1}}],["multi",{"2":{"17":2,"21":2}}],["multiplying",{"2":{"38":1}}],["multiply",{"2":{"10":1,"38":1}}],["multiple",{"0":{"42":1,"97":1},"2":{"7":1,"21":1,"23":1,"58":1,"59":1,"68":1,"85":1}}],["must",{"2":{"0":1,"70":1,"85":1,"86":1}}],["mb",{"2":{"0":1,"59":1,"62":2}}],["pkg",{"2":{"88":2}}],["pkg>",{"2":{"83":1}}],["purple",{"2":{"91":1}}],["purpose",{"2":{"28":1,"38":1}}],["public",{"0":{"85":1}}],["published",{"2":{"56":1}}],["pull",{"2":{"81":1}}],["pydata",{"2":{"50":1}}],["p",{"2":{"37":10,"59":1,"61":1,"72":1,"78":1}}],["picture",{"2":{"68":1,"69":1}}],["pieces",{"2":{"28":1}}],["pixel",{"0":{"91":1},"1":{"92":1,"93":1},"2":{"21":1,"23":2}}],["post=getpostfunction",{"2":{"85":1}}],["positions",{"2":{"86":2}}],["position",{"2":{"68":1}}],["positional",{"2":{"63":1,"64":1}}],["possible",{"2":{"23":2,"24":1,"32":1,"44":1,"79":1,"85":3,"86":1}}],["pos",{"2":{"22":2}}],["point3f",{"2":{"102":1}}],["point",{"2":{"22":3,"58":1,"89":1}}],["points",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":4,"16":9,"17":3,"18":3,"19":2,"20":3,"21":9,"22":16,"23":1,"25":2,"26":6,"27":4,"29":9,"30":6,"31":2,"32":3,"34":14,"36":6,"37":21,"38":9,"39":5,"41":1,"42":5,"43":4,"44":4,"46":9,"47":3,"51":3,"52":2,"54":2,"55":1,"56":7,"58":6,"59":6,"60":2,"61":3,"62":6,"63":4,"64":9,"65":16,"66":2,"68":2,"69":1,"72":3,"78":6,"79":6,"89":5,"92":1,"98":3}}],["plt",{"2":{"99":1}}],["place",{"2":{"86":1}}],["please",{"2":{"74":1}}],["plots",{"2":{"102":1}}],["plot",{"0":{"93":1,"99":1,"102":1},"2":{"56":2}}],["plotting",{"0":{"98":1},"1":{"99":1},"2":{"0":1}}],["plus",{"2":{"18":3,"50":1,"85":1}}],["page",{"2":{"102":1}}],["pair",{"2":{"86":1}}],["pairs",{"2":{"18":1,"20":1}}],["pass",{"2":{"85":1}}],["passed",{"2":{"85":4}}],["passing",{"2":{"21":1,"85":3}}],["paste",{"2":{"83":1}}],["partitioned",{"2":{"86":1}}],["participate",{"2":{"85":1}}],["particular",{"2":{"71":1}}],["parts",{"2":{"85":1}}],["parent",{"2":{"58":1,"98":1}}],["parallelized",{"2":{"86":1}}],["parallelisation",{"2":{"85":1}}],["parallel",{"2":{"23":1,"68":1}}],["package",{"2":{"23":1,"64":1,"66":1,"84":1,"88":1}}],["packages",{"2":{"16":1,"24":1}}],["paths",{"2":{"86":2}}],["path=",{"2":{"16":2,"58":1,"73":1,"74":1,"75":1,"76":1,"77":1,"78":1,"79":1,"86":1}}],["path=f",{"2":{"4":1,"5":1,"6":1}}],["path",{"0":{"20":1},"2":{"0":1,"20":1,"50":2,"58":3,"59":2,"60":2,"61":2,"72":2,"77":3,"83":1,"85":4}}],["pr",{"2":{"83":1}}],["println",{"2":{"76":1}}],["printed",{"2":{"43":2}}],["primem",{"2":{"60":1}}],["prior",{"2":{"1":1}}],["props",{"2":{"89":2}}],["properly",{"2":{"49":1}}],["properties=dict",{"2":{"86":1}}],["properties=properties",{"2":{"18":2}}],["properties",{"0":{"17":1},"1":{"18":1,"19":1,"20":1},"2":{"10":2,"17":2,"18":2,"19":1,"20":2,"21":2,"23":2,"46":3,"47":3,"50":1,"56":1,"58":1,"59":1,"60":1,"61":1,"72":1,"78":1,"85":5,"86":1,"98":1}}],["probably",{"2":{"86":1}}],["provide",{"2":{"85":1}}],["provides",{"2":{"68":1,"95":1}}],["provided",{"2":{"33":1,"79":1,"85":1}}],["process",{"2":{"68":1,"86":2}}],["processed",{"2":{"13":1}}],["projection",{"0":{"100":1,"101":1},"1":{"101":1,"102":1},"2":{"60":1}}],["progressmeter",{"2":{"85":1}}],["progress",{"2":{"50":1,"94":1,"96":1}}],["product",{"2":{"22":1}}],["pressing",{"2":{"88":1}}],["pre",{"2":{"85":2}}],["previous",{"2":{"56":1,"77":1,"79":1,"85":1}}],["previously",{"2":{"39":1}}],["prepared",{"2":{"59":1,"61":1,"72":1,"78":1}}],["prep",{"2":{"9":2}}],["precipitation",{"2":{"9":2,"69":1,"70":1,"89":2}}],["permute",{"2":{"86":1}}],["permuteloopaxes",{"2":{"86":1}}],["permutation",{"2":{"86":1}}],["persistend",{"2":{"86":1}}],["persistency",{"2":{"86":1}}],["persistent",{"2":{"85":1,"86":2}}],["persist",{"2":{"77":1,"85":1,"86":1}}],["perform",{"2":{"86":1}}],["performed",{"2":{"13":2}}],["performing",{"2":{"10":1}}],["per",{"2":{"7":1,"14":1,"51":1,"54":1,"55":1}}],["=interval",{"2":{"65":2}}],["===",{"2":{"43":1}}],["==",{"2":{"12":1,"43":1,"92":1}}],["=>nan",{"2":{"102":1}}],["=>",{"2":{"10":2,"12":1,"13":1,"16":2,"17":2,"18":3,"19":2,"20":1,"21":2,"22":5,"23":1,"41":1,"42":1,"43":5,"46":3,"47":3,"50":1,"51":5,"52":1,"54":3,"55":2,"56":3,"58":20,"59":20,"60":1,"61":10,"62":20,"63":30,"64":30,"65":50,"72":10,"78":10,"89":6,"98":10}}],["=>2",{"2":{"4":1}}],["=>10",{"2":{"4":1}}],["=>5",{"2":{"4":1,"5":1}}],["=",{"2":{"0":5,"2":4,"4":9,"5":15,"6":9,"8":5,"9":5,"10":4,"11":1,"12":1,"13":1,"16":14,"17":4,"18":14,"19":7,"20":11,"21":12,"22":16,"23":5,"25":3,"26":8,"27":4,"29":1,"30":3,"32":6,"34":7,"36":6,"37":17,"39":7,"41":1,"42":3,"43":7,"44":4,"46":5,"47":4,"50":8,"51":16,"52":1,"53":1,"54":4,"55":1,"56":22,"58":2,"59":2,"60":2,"61":2,"62":2,"63":6,"64":6,"65":3,"72":2,"74":2,"76":3,"77":8,"78":2,"79":4,"80":5,"85":11,"86":7,"89":5,"91":10,"92":11,"93":5,"98":8,"99":5,"100":7,"101":5,"102":6}}],["dc",{"2":{"86":2}}],["dkrz",{"2":{"58":1,"98":2}}],["dufresne",{"2":{"59":1,"61":1,"72":1,"78":1}}],["due",{"2":{"53":1}}],["dummy",{"2":{"32":1,"34":1,"91":1,"92":1}}],["during",{"2":{"22":1,"23":1,"24":1}}],["dd",{"2":{"29":1,"92":1}}],["d",{"2":{"22":5,"43":5,"56":3,"92":1}}],["drop",{"2":{"56":1}}],["dropdims",{"0":{"52":1},"2":{"51":2,"52":2,"56":1}}],["drivers",{"2":{"85":1}}],["driver",{"2":{"48":1,"77":2,"85":6}}],["driver=",{"2":{"4":1,"5":1,"6":1,"73":2,"74":1,"75":2,"76":1,"77":3,"78":1,"79":2,"85":3}}],["drei",{"2":{"19":2}}],["dash",{"2":{"93":1}}],["danger",{"2":{"77":1}}],["daysinmonth",{"2":{"51":1,"54":1}}],["days",{"2":{"49":1,"51":2,"53":1,"54":2,"55":2}}],["dayofyear",{"2":{"16":1}}],["day",{"2":{"10":2,"12":1,"13":1,"14":1,"16":4,"17":2,"18":1,"21":3,"22":3,"23":1,"46":3,"47":1,"91":1,"92":4,"93":1}}],["datconfig",{"2":{"86":2}}],["datset",{"2":{"85":1}}],["dat",{"2":{"85":8,"86":16}}],["datum",{"2":{"60":1}}],["datetime360day",{"2":{"59":6,"61":3,"62":6,"63":7,"64":9,"65":15,"72":3,"78":3}}],["datetimenoleap",{"2":{"51":4,"54":7,"55":5,"56":5}}],["datetime",{"2":{"20":1,"43":5,"58":2,"98":1}}],["date",{"2":{"10":5,"12":3,"13":3,"14":3,"16":12,"17":5,"18":3,"21":8,"22":11,"23":3,"34":24,"36":8,"37":11,"46":8,"47":3,"68":1,"91":2,"92":5,"98":1}}],["datesid",{"2":{"92":2}}],["dates",{"2":{"10":2,"12":1,"13":1,"14":1,"16":5,"17":2,"18":1,"21":2,"22":3,"23":1,"34":8,"36":4,"37":5,"46":3,"47":1,"48":1,"70":1,"91":1,"92":2,"98":1}}],["data=cube1",{"2":{"85":1}}],["databases",{"2":{"68":1}}],["data3",{"2":{"47":1}}],["dataframe",{"2":{"39":1,"85":1}}],["dataframes",{"2":{"39":1}}],["datacubes",{"2":{"85":1}}],["datacube",{"0":{"97":1},"2":{"39":2,"79":1,"85":1}}],["datatypes",{"2":{"33":1}}],["data2",{"2":{"32":2,"46":2}}],["data1",{"2":{"32":2}}],["datasetaxis",{"2":{"85":2,"86":1}}],["datasetaxis=",{"2":{"85":1,"86":1}}],["dataset",{"0":{"33":1,"35":1,"36":1,"37":1,"40":1,"43":1,"47":1,"69":1,"77":1,"78":1,"80":1},"1":{"34":1,"35":1,"36":2,"37":2,"41":1,"42":1},"2":{"0":3,"3":1,"4":4,"5":2,"6":3,"9":1,"10":1,"18":1,"20":2,"24":1,"35":1,"36":3,"37":5,"41":2,"42":3,"43":5,"47":2,"58":3,"59":3,"60":3,"61":3,"62":1,"69":3,"70":2,"72":3,"73":1,"74":1,"75":1,"76":1,"77":3,"78":4,"79":2,"80":2,"85":18,"86":9,"98":2}}],["datasets",{"0":{"3":1,"45":1,"48":1,"57":1,"61":1,"72":1},"1":{"4":1,"5":1,"6":1,"46":1,"47":1,"49":1,"50":1,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1,"58":1,"59":1,"60":1,"62":1,"63":1,"64":1,"65":1,"66":1,"73":1,"74":1,"75":1,"76":1,"77":1,"78":1,"79":1,"80":1},"2":{"0":2,"24":1,"37":1,"45":1,"57":1,"77":1,"85":8,"86":4,"96":1}}],["data",{"0":{"31":1,"50":1,"70":1},"2":{"0":3,"1":2,"7":1,"8":1,"10":2,"11":1,"16":4,"17":2,"21":3,"22":2,"23":2,"25":1,"26":1,"31":1,"34":1,"36":1,"37":2,"39":2,"50":8,"58":2,"59":4,"61":3,"62":2,"63":3,"64":3,"65":5,"67":1,"68":3,"69":2,"70":3,"72":3,"77":2,"78":3,"79":3,"80":1,"85":20,"86":12,"89":4,"90":1,"91":2,"92":1,"96":4,"98":5,"100":1}}],["detect",{"2":{"85":1,"86":1}}],["determined",{"2":{"86":1}}],["determines",{"2":{"85":1}}],["determine",{"2":{"1":1,"85":1}}],["dev",{"2":{"83":1}}],["dependencies",{"2":{"83":1}}],["depth",{"2":{"21":8}}],["deletes",{"2":{"77":1,"85":1}}],["delete",{"2":{"77":2,"79":1}}],["denoting",{"2":{"85":1}}],["dense",{"2":{"68":1}}],["denvil",{"2":{"59":2,"61":2,"72":2,"78":2}}],["degree",{"2":{"60":1}}],["degc",{"2":{"59":1,"62":2,"63":3,"64":3,"65":5}}],["dec",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["defaultfillval",{"2":{"86":1}}],["defaults",{"2":{"85":7}}],["default",{"2":{"18":1,"76":3,"79":1,"85":1,"86":4}}],["definition",{"2":{"70":1}}],["definitions",{"2":{"17":1,"19":1}}],["defining",{"2":{"23":1}}],["defines",{"2":{"85":1}}],["defined",{"2":{"18":1,"26":1,"27":1,"39":1,"56":1,"66":1,"68":1,"71":1,"79":1,"89":1}}],["define",{"0":{"92":1},"2":{"16":2,"18":1,"34":1,"39":1,"56":1,"85":2,"91":1}}],["deal",{"2":{"17":1}}],["dest",{"2":{"101":1}}],["desc",{"2":{"85":3,"86":3}}],["descriptor",{"2":{"86":4}}],["descriptors",{"2":{"85":2}}],["descriptions",{"2":{"85":1}}],["description",{"2":{"17":2,"19":2,"21":2,"33":1,"85":4,"86":11}}],["described",{"2":{"96":1}}],["describe",{"2":{"85":2}}],["describes",{"2":{"7":1,"10":1,"24":1,"45":1,"57":1,"65":1,"67":1,"84":1,"86":1}}],["describing",{"2":{"85":1}}],["designed",{"2":{"24":2,"68":1}}],["desired",{"2":{"16":1,"86":4}}],["demand",{"2":{"13":1}}],["diverging",{"2":{"56":1}}],["divided",{"2":{"38":1}}],["differing",{"2":{"85":1}}],["difference",{"2":{"56":1}}],["differences",{"2":{"43":1,"51":1,"56":1,"86":1}}],["different",{"0":{"21":1},"2":{"9":2,"16":1,"17":2,"23":1,"29":1,"30":1,"42":1,"49":1,"69":1,"85":3,"86":2,"94":1}}],["diff",{"2":{"51":2,"56":3}}],["directory",{"2":{"58":1,"73":2,"75":2}}],["directories",{"2":{"57":1,"86":1}}],["direct",{"2":{"43":1}}],["directly",{"2":{"16":1,"20":1,"27":1,"45":1,"46":1,"80":2}}],["dictionary",{"2":{"69":1,"85":3}}],["dict",{"2":{"4":1,"5":1,"8":1,"9":1,"10":2,"12":1,"13":1,"14":2,"16":5,"17":2,"18":3,"19":2,"20":1,"21":4,"22":4,"23":1,"25":1,"26":2,"27":3,"29":1,"30":3,"31":1,"32":1,"34":5,"38":3,"39":3,"43":2,"44":2,"46":4,"47":2,"51":3,"52":2,"54":4,"55":3,"56":3,"58":2,"59":2,"60":1,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1,"79":1,"85":3,"89":3,"92":1,"98":1}}],["dime",{"2":{"58":1}}],["dimensionaldata",{"2":{"22":1,"27":2,"29":1,"30":1,"34":1,"36":1,"37":1,"43":1,"48":1,"50":1,"51":16,"52":10,"54":6,"55":6,"56":39,"64":1,"65":2,"66":3,"68":1,"71":1,"89":1,"90":3,"92":1,"98":1}}],["dimensional",{"2":{"17":2,"19":2,"21":2,"67":1,"68":2,"85":1}}],["dimensions",{"0":{"36":1,"37":1},"2":{"9":1,"10":1,"13":1,"15":1,"16":2,"20":1,"21":1,"22":2,"23":1,"30":1,"32":1,"35":1,"37":3,"38":2,"42":1,"46":2,"50":1,"51":16,"52":10,"54":6,"55":6,"56":39,"61":1,"66":2,"68":3,"69":1,"85":8,"86":3,"89":3,"90":1}}],["dimension",{"0":{"8":1,"9":1,"66":1,"71":1},"2":{"2":1,"8":2,"9":1,"10":1,"14":2,"16":3,"18":1,"19":1,"22":3,"34":1,"37":1,"52":1,"53":1,"56":1,"64":1,"66":1,"68":1,"70":1,"71":1,"85":3,"86":3,"89":1}}],["dimgroupbyarray",{"2":{"51":1,"54":1}}],["dimarray",{"0":{"27":1},"2":{"22":3,"27":6,"51":1,"52":1,"54":1,"55":2,"56":3,"68":1}}],["dims=2",{"2":{"92":1}}],["dims=",{"2":{"14":2,"23":1,"38":1,"51":5,"52":1,"54":1,"56":1}}],["dims",{"2":{"8":3,"9":1,"10":1,"12":1,"13":1,"14":2,"16":5,"17":1,"18":1,"19":1,"21":3,"22":4,"25":1,"26":3,"27":2,"29":3,"30":4,"31":1,"32":1,"34":5,"38":3,"39":3,"43":1,"44":2,"46":2,"50":1,"51":6,"52":1,"54":5,"55":2,"56":5,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5,"79":1,"89":2,"92":1}}],["dim",{"2":{"2":2,"4":7,"5":8,"6":2,"8":2,"9":3,"10":3,"16":3,"17":4,"21":6,"22":4,"23":3,"25":2,"27":2,"29":9,"30":6,"31":3,"32":4,"34":3,"36":3,"37":2,"41":1,"42":5,"43":2,"44":4,"46":7,"51":2,"52":2,"56":6,"78":3,"79":6,"89":4,"92":1}}],["disregard",{"2":{"86":1}}],["dispatch",{"2":{"86":1}}],["discribe",{"2":{"85":2}}],["discussion",{"2":{"74":1}}],["distribute",{"2":{"23":1}}],["distributed",{"0":{"23":1},"2":{"0":1,"23":2}}],["diskarray",{"2":{"85":1}}],["diskarrays",{"2":{"2":9,"4":4,"5":4,"6":4,"85":2,"86":1}}],["disk",{"2":{"1":1,"16":1,"20":1,"27":1,"68":1,"79":3,"80":2,"85":1,"86":2}}],["dodgerblue",{"2":{"93":1}}],["documenter",{"2":{"102":1}}],["documentation",{"0":{"82":1},"1":{"83":1}}],["doc",{"2":{"77":1}}],["docstring",{"2":{"85":1}}],["docs",{"0":{"83":1},"2":{"69":1,"82":2,"83":6,"90":1}}],["don",{"2":{"74":1}}],["done",{"2":{"30":1,"38":1,"56":1,"82":2}}],["download",{"0":{"50":1},"2":{"50":1,"59":2,"60":2,"61":2,"72":2}}],["downloads",{"2":{"48":1,"50":1,"59":1,"60":1,"61":1,"72":1}}],["doing",{"2":{"23":1,"29":1,"31":1,"83":1}}],["does",{"2":{"23":1,"79":1,"85":1,"86":1}}],["dot",{"2":{"21":1,"93":1}}],["do",{"0":{"32":1,"33":1,"38":1,"39":1,"40":1,"43":1},"1":{"34":1,"35":1,"36":1,"37":1,"41":1,"42":1},"2":{"1":1,"13":1,"16":1,"22":3,"23":1,"28":2,"38":1,"49":1,"56":1,"79":1,"80":1,"83":1,"86":1,"88":1}}],["dsw",{"2":{"51":2,"56":2}}],["dsfinal",{"2":{"32":1,"38":2,"39":2}}],["ds2",{"2":{"32":3,"38":1,"78":1}}],["ds1",{"2":{"32":3,"38":3,"39":1}}],["dschunked",{"2":{"4":3,"5":3,"6":3}}],["ds",{"2":{"0":3,"4":2,"5":2,"6":2,"36":2,"37":12,"41":1,"42":1,"43":2,"47":1,"50":5,"51":10,"54":1,"56":3,"58":1,"59":1,"60":1,"61":1,"62":2,"72":1,"73":3,"74":2,"75":3,"76":7,"77":3,"78":2,"79":1,"80":5,"85":3,"86":1,"102":2}}],["wglmakie",{"2":{"102":2}}],["wgs",{"2":{"60":3}}],["would",{"2":{"85":2}}],["world",{"2":{"60":2}}],["workdir",{"2":{"86":1}}],["worker",{"2":{"85":1}}],["workers",{"2":{"85":1}}],["work",{"2":{"24":2,"50":1,"67":1,"85":1,"94":2,"96":1}}],["workload",{"2":{"23":1}}],["working",{"2":{"16":1,"80":1}}],["works",{"2":{"6":1,"31":1,"36":1,"37":1,"79":1}}],["workflows",{"2":{"1":1}}],["written",{"2":{"85":1,"86":1}}],["writing",{"2":{"80":1}}],["writefac",{"2":{"86":1}}],["writefac=4",{"2":{"77":1,"85":1}}],["writes",{"2":{"85":1}}],["write",{"0":{"72":1,"73":1,"75":1},"1":{"73":1,"74":2,"75":1,"76":2,"77":1,"78":1,"79":1,"80":1},"2":{"79":1,"85":2}}],["wrapping",{"2":{"53":1,"66":2}}],["wrapped",{"2":{"16":1}}],["wrap",{"2":{"0":1,"85":1}}],["www",{"2":{"59":1,"61":1,"72":1}}],["w",{"2":{"56":2,"80":2}}],["was",{"2":{"20":1,"22":1,"23":1,"86":1}}],["way",{"2":{"15":1,"24":1,"29":1}}],["warning",{"2":{"11":1,"24":1,"29":1,"37":1,"42":1,"44":1,"50":1,"77":1,"79":1,"85":1}}],["wanted",{"2":{"86":1}}],["wants",{"2":{"79":1}}],["want",{"2":{"0":1,"1":1,"70":1,"83":1,"86":1,"96":1}}],["white",{"2":{"100":1,"101":1}}],["while",{"2":{"79":1}}],["which",{"2":{"9":1,"16":1,"22":2,"30":1,"37":2,"56":1,"62":1,"65":1,"66":1,"70":3,"85":5,"86":4,"96":1}}],["whose",{"0":{"36":1,"37":1}}],["whole",{"2":{"8":3}}],["whether",{"2":{"86":2}}],["when",{"2":{"1":1,"6":1,"13":1,"70":1,"85":2,"86":1}}],["whereas",{"2":{"68":1}}],["where",{"2":{"0":1,"23":1,"37":4,"49":1,"65":1,"80":1,"85":1,"86":4}}],["wintri",{"0":{"100":1},"1":{"101":1,"102":1}}],["windowloopinds",{"2":{"86":1}}],["window",{"2":{"85":1,"86":1}}],["without",{"2":{"86":1}}],["within",{"2":{"64":1}}],["with",{"0":{"44":1},"2":{"4":1,"5":1,"8":1,"10":1,"12":1,"13":1,"16":7,"17":3,"18":2,"19":2,"21":3,"22":4,"23":2,"24":1,"29":1,"30":1,"37":6,"38":2,"39":3,"42":2,"43":3,"44":1,"46":3,"51":3,"52":1,"54":2,"55":2,"56":5,"58":3,"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"67":1,"69":1,"72":1,"74":1,"76":1,"77":1,"78":2,"79":2,"80":1,"82":1,"85":11,"86":1,"89":4,"90":3,"94":1,"96":1,"98":2,"100":1}}],["will",{"2":{"0":1,"1":1,"4":1,"5":1,"13":1,"16":3,"17":2,"18":1,"19":1,"22":1,"33":1,"37":1,"38":2,"39":2,"42":2,"43":1,"48":1,"53":2,"77":3,"79":3,"80":1,"85":12,"86":3,"96":1}}],["wether",{"2":{"85":1}}],["weight=",{"2":{"85":1}}],["weight=nothing",{"2":{"85":1}}],["weight",{"0":{"54":1},"1":{"55":1,"56":1},"2":{"53":1,"55":1,"56":1}}],["weights",{"0":{"55":1},"2":{"51":3,"55":2,"56":1}}],["weightedmean",{"2":{"85":1}}],["weighted",{"0":{"56":1},"2":{"39":1,"49":1,"51":8,"56":8,"85":3}}],["well",{"2":{"39":1,"43":1,"79":1,"85":1}}],["welcome",{"2":{"6":1,"81":1}}],["were",{"2":{"13":2,"65":1,"86":1,"91":1}}],["we",{"2":{"0":1,"8":2,"9":1,"13":2,"14":1,"16":5,"17":3,"18":1,"19":1,"20":1,"22":5,"23":2,"30":1,"32":1,"33":1,"34":1,"35":1,"37":2,"38":2,"39":5,"43":4,"46":2,"51":1,"52":1,"53":2,"56":1,"58":1,"64":1,"70":1,"79":3,"80":4,"90":2,"91":1,"98":1}}],["oob",{"2":{"85":1}}],["o1",{"2":{"59":2,"61":2,"72":2,"78":1}}],["ocean",{"2":{"59":1,"61":1,"72":1,"78":1}}],["oct",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["occuring",{"2":{"4":1}}],["o",{"2":{"50":4,"56":4,"85":5}}],["ohlcv",{"2":{"43":3}}],["ouput",{"2":{"83":1}}],["our",{"2":{"38":1,"39":1,"92":1}}],["outcube",{"2":{"86":1}}],["outcubes",{"2":{"86":1}}],["outcs",{"2":{"86":1}}],["outsize",{"2":{"86":1}}],["outar",{"2":{"86":2}}],["out",{"2":{"50":1,"85":2,"86":1}}],["outtype",{"2":{"16":2,"85":1,"86":2}}],["outdims=outdims",{"2":{"22":1,"23":1}}],["outdims",{"0":{"17":1,"18":1,"19":1,"20":1},"1":{"18":1,"19":1,"20":1},"2":{"16":4,"18":12,"19":2,"20":11,"21":3,"85":6}}],["outputcube",{"2":{"86":3}}],["outputs",{"2":{"16":1,"18":2,"21":1}}],["output",{"2":{"6":1,"16":3,"17":1,"18":1,"22":1,"23":3,"59":1,"61":1,"72":1,"78":1,"85":11,"86":9,"102":1}}],["optimal",{"2":{"86":1}}],["optifunc",{"2":{"86":1}}],["optionally",{"2":{"85":1}}],["option",{"2":{"34":1,"36":1,"74":1}}],["options",{"2":{"31":1}}],["operates",{"2":{"85":1}}],["operate",{"2":{"21":1}}],["operation",{"2":{"21":1,"86":1}}],["operations",{"0":{"16":1},"2":{"10":1,"51":1,"85":2,"86":3}}],["operating",{"2":{"19":1}}],["openinterval",{"2":{"65":1}}],["open",{"0":{"65":1},"2":{"0":2,"18":1,"20":2,"43":4,"58":2,"59":2,"60":1,"61":2,"65":2,"72":1,"74":1,"78":1,"80":6,"85":3,"98":1}}],["obj",{"2":{"39":2,"91":1,"93":1}}],["objects",{"2":{"85":2}}],["object",{"2":{"11":1,"58":1,"85":5,"86":3}}],["obtain",{"0":{"31":1},"2":{"43":1,"53":1}}],["omit",{"2":{"23":1}}],["otherwise",{"2":{"85":1}}],["others",{"2":{"21":1,"43":1}}],["other",{"0":{"94":1},"1":{"95":1,"96":1,"97":1},"2":{"20":1,"24":1,"94":1,"96":1}}],["overview",{"0":{"95":1},"2":{"94":1,"95":1}}],["overwrite",{"0":{"77":1},"2":{"77":3,"85":4,"86":2}}],["overwrite=true",{"2":{"16":2,"77":2,"79":3}}],["over",{"0":{"16":1,"96":1},"2":{"10":1,"15":1,"21":1,"23":1,"56":1,"85":8,"86":1,"96":1}}],["ormax",{"2":{"85":1}}],["orca2",{"2":{"59":1,"61":1,"72":1,"78":1}}],["orangered",{"2":{"39":1}}],["ordered",{"2":{"68":1,"69":1}}],["ordereddict",{"2":{"22":1}}],["orderedcollections",{"2":{"22":1}}],["order",{"2":{"16":1,"49":1,"80":1}}],["original",{"2":{"59":2,"62":4,"63":6,"64":6,"65":10}}],["originates",{"2":{"9":1}}],["origin",{"2":{"10":2,"12":1,"13":1,"23":1,"46":3,"47":1,"89":2}}],["or",{"0":{"33":1},"1":{"34":1,"35":1,"36":1,"37":1},"2":{"1":2,"6":1,"10":1,"13":2,"15":1,"27":1,"30":1,"35":1,"44":2,"58":1,"61":2,"68":3,"71":2,"74":1,"77":1,"85":21,"86":7,"88":1,"89":2}}],["once",{"2":{"56":1,"70":1,"82":1,"86":1}}],["onlinestat",{"2":{"85":2}}],["onlinestats",{"2":{"39":2}}],["only",{"2":{"6":1,"13":1,"14":1,"16":1,"20":1,"22":1,"24":1,"38":1,"46":2,"79":1,"85":2}}],["on",{"2":{"1":2,"6":1,"7":1,"10":2,"13":2,"16":1,"23":2,"28":1,"59":2,"61":1,"62":2,"63":3,"64":3,"65":5,"68":1,"72":1,"74":1,"78":1,"79":1,"85":5,"86":4}}],["ones",{"2":{"17":1,"30":1}}],["oneto",{"2":{"4":4,"5":4,"6":2,"25":2,"29":9,"30":6,"41":1,"42":5,"44":4,"46":3,"79":6,"89":2}}],["one",{"0":{"18":1,"41":1},"2":{"0":1,"7":1,"8":2,"14":2,"18":15,"19":5,"20":6,"21":2,"22":2,"39":1,"43":1,"52":1,"68":2,"69":1,"79":2,"85":8,"86":3,"94":1}}],["own",{"2":{"0":1}}],["offline=true",{"2":{"102":1}}],["offsets",{"2":{"86":1}}],["offset",{"2":{"13":1}}],["often",{"2":{"7":1}}],["of",{"0":{"11":1,"37":1,"49":1,"80":1,"95":2},"2":{"0":2,"1":1,"6":1,"8":3,"9":1,"10":2,"11":1,"12":1,"13":2,"14":1,"15":1,"22":7,"23":3,"24":1,"26":1,"27":1,"28":3,"29":3,"33":1,"34":2,"35":1,"36":1,"37":2,"38":1,"39":1,"49":1,"50":1,"54":1,"59":1,"61":3,"62":1,"64":1,"66":1,"68":7,"69":1,"70":2,"71":2,"72":1,"78":1,"79":1,"80":1,"84":1,"85":50,"86":42,"89":1,"90":2,"92":2,"93":1,"94":1,"95":1}}],["eo",{"2":{"94":1}}],["esdltutorials",{"2":{"94":1}}],["esm1",{"2":{"58":1,"98":2}}],["eltype",{"2":{"89":1}}],["elementtype",{"2":{"86":1}}],["element",{"2":{"8":1,"9":1,"10":2,"13":2,"14":1,"16":3,"22":2,"31":1,"39":1,"51":2,"52":1,"53":1,"54":7,"55":2,"56":3,"63":2,"66":1,"69":1,"70":2,"85":1,"86":1,"92":1}}],["elements",{"0":{"11":1,"63":1},"2":{"8":1,"12":1,"13":2,"23":1,"61":1,"68":1,"85":1,"86":1}}],["empty",{"2":{"86":1}}],["embeds",{"2":{"85":1}}],["either",{"2":{"85":2}}],["error",{"2":{"77":1}}],["epsg",{"2":{"60":5}}],["et",{"2":{"59":1,"61":1,"70":1,"72":1,"78":1}}],["edu",{"2":{"59":1,"61":1,"69":1,"72":1}}],["equivalent",{"2":{"56":1,"66":1}}],["equally",{"2":{"0":1}}],["effectively",{"2":{"38":1}}],["env",{"2":{"83":1}}],["enabling",{"2":{"46":1}}],["enter",{"2":{"88":1}}],["entire",{"2":{"22":1,"24":1,"73":1,"75":1}}],["entries",{"2":{"22":1,"43":1,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5,"80":1,"85":1,"89":1}}],["entry",{"2":{"10":1,"12":1,"13":1,"16":2,"17":1,"18":1,"19":1,"21":1,"46":2,"51":2,"52":1,"54":2,"55":2,"56":3,"82":3,"85":1}}],["enumerate",{"2":{"22":2,"56":2}}],["end",{"2":{"13":1,"16":1,"18":1,"19":2,"21":2,"22":4,"23":2,"38":1,"51":2,"56":2,"92":2,"102":1}}],["exists",{"2":{"77":1,"85":1,"86":1}}],["existing",{"0":{"8":1},"2":{"77":1,"78":1}}],["exportable=true",{"2":{"102":1}}],["expression",{"2":{"85":1}}],["experiment",{"2":{"59":3,"61":3,"72":3,"78":3}}],["explicitly",{"2":{"13":1,"30":1,"33":1,"86":1}}],["executes",{"2":{"85":1}}],["execute",{"2":{"23":1}}],["external",{"2":{"58":1,"98":1}}],["extension",{"2":{"85":2}}],["extent",{"2":{"26":2}}],["extended",{"2":{"16":1,"85":1,"86":2}}],["extracts",{"2":{"86":1}}],["extract",{"0":{"29":1},"1":{"30":1},"2":{"86":1}}],["extracted",{"2":{"21":1}}],["extra",{"2":{"23":1}}],["exactly",{"2":{"5":1,"31":1,"43":1}}],["examples",{"2":{"6":1,"31":2,"48":1,"59":1,"61":1,"72":1,"82":1}}],["example",{"2":{"0":1,"1":1,"5":1,"10":1,"17":1,"21":1,"23":2,"30":1,"36":1,"37":1,"38":1,"39":1,"49":1,"59":1,"61":2,"68":2,"69":1,"70":1,"72":2,"82":2,"85":3,"86":1,"89":2}}],["e",{"2":{"7":1,"8":1,"10":1,"11":1,"13":1,"22":2,"23":1,"26":1,"27":1,"34":1,"46":1,"66":1,"68":1,"71":1,"77":1,"83":1,"85":6,"86":1,"89":1}}],["east",{"2":{"60":1}}],["easier",{"2":{"46":1,"61":1}}],["easily",{"2":{"0":1,"23":1}}],["easy",{"2":{"26":1,"27":1}}],["each",{"2":{"4":1,"5":1,"10":1,"13":1,"20":1,"22":5,"23":2,"38":2,"39":2,"49":1,"53":1,"69":1,"71":1,"85":3,"86":3,"89":1}}],["everywhere",{"2":{"23":2}}],["every",{"2":{"0":1,"10":1,"13":1,"85":1}}],["features",{"2":{"95":1}}],["feel",{"2":{"74":1}}],["feb",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["frame",{"2":{"96":1}}],["frames",{"2":{"68":1}}],["front",{"2":{"86":1}}],["from",{"0":{"29":1,"31":2,"43":1,"49":1},"1":{"30":1},"2":{"0":1,"8":1,"9":1,"24":1,"29":1,"30":1,"31":4,"37":3,"43":2,"65":1,"70":2,"80":1,"85":6,"86":6,"89":1,"92":1}}],["free",{"2":{"74":1}}],["frequently",{"0":{"28":1},"1":{"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1}}],["fr",{"2":{"59":1,"61":1,"72":1,"78":1}}],["fallback",{"2":{"86":1}}],["falls",{"2":{"85":1}}],["false",{"2":{"18":1,"20":1,"44":1,"55":1,"56":1,"77":2,"85":3,"86":1}}],["faq",{"0":{"28":1},"1":{"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1}}],["faster",{"2":{"86":1}}],["fastest",{"2":{"1":1}}],["fast",{"2":{"1":1,"13":1}}],["f2mix",{"2":{"19":3}}],["f2",{"2":{"18":3}}],["f1",{"2":{"18":2,"19":1}}],["fu",{"2":{"86":1}}],["funtion",{"2":{"92":1}}],["fun",{"2":{"85":4}}],["functionality",{"0":{"95":1}}],["functions",{"2":{"10":2,"21":1,"68":2,"84":1,"85":1,"86":1}}],["function",{"0":{"39":1},"2":{"0":1,"1":1,"13":2,"15":1,"16":6,"17":1,"18":2,"19":2,"21":5,"23":6,"29":2,"32":1,"38":1,"39":1,"43":1,"48":1,"51":1,"53":1,"56":1,"65":1,"79":1,"85":22,"86":13}}],["future",{"2":{"50":1}}],["further",{"2":{"13":1,"94":1}}],["flag",{"2":{"86":3}}],["flat",{"2":{"18":4,"19":2,"20":2}}],["float32",{"2":{"16":6,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5,"79":2,"80":4,"86":1}}],["float64",{"2":{"8":1,"9":1,"10":3,"12":3,"13":3,"14":4,"17":2,"18":2,"19":2,"20":2,"21":3,"22":9,"25":2,"26":2,"27":4,"29":1,"30":3,"32":4,"38":12,"39":5,"43":2,"46":6,"47":2,"51":3,"52":2,"55":3,"56":6,"58":4,"59":4,"60":2,"61":2,"62":4,"63":2,"64":6,"65":10,"66":3,"72":2,"78":2,"85":1,"86":1,"89":7,"92":2,"98":2}}],["flexible",{"2":{"9":1,"15":1}}],["found",{"2":{"85":1,"86":1}}],["fourth",{"2":{"59":2,"61":2,"72":2,"78":2}}],["folder",{"2":{"83":1}}],["follow",{"2":{"83":1,"94":1}}],["follows",{"2":{"16":2,"19":1,"21":1,"51":1,"56":1,"80":1}}],["following",{"2":{"2":1,"5":1,"6":1,"16":1,"17":1,"18":1,"21":1,"23":1,"30":1,"48":1,"49":1,"50":1,"85":2,"86":4,"94":1}}],["fontsize=24",{"2":{"99":1}}],["fontsize=18",{"2":{"56":1}}],["font=",{"2":{"56":1}}],["forwarded",{"2":{"85":1}}],["forwardordered",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"10":3,"12":3,"13":3,"14":3,"16":9,"17":4,"18":4,"19":3,"20":3,"21":9,"22":9,"25":2,"26":6,"27":4,"29":9,"30":6,"31":2,"32":4,"34":14,"36":6,"37":10,"38":9,"39":5,"41":1,"42":5,"43":4,"44":4,"46":9,"47":3,"51":3,"52":2,"54":2,"55":1,"56":7,"58":6,"59":6,"60":1,"61":3,"62":6,"63":4,"64":9,"65":15,"66":2,"72":3,"78":6,"79":6,"89":5,"92":1,"98":3}}],["force",{"2":{"85":1}}],["forcing",{"2":{"58":1,"98":1}}],["forms",{"2":{"85":1,"86":2}}],["format",{"2":{"74":1,"76":1,"77":1,"85":1,"92":1}}],["formal",{"2":{"70":1}}],["former",{"2":{"29":1}}],["for",{"0":{"6":1,"91":1},"1":{"92":1,"93":1},"2":{"0":2,"1":3,"4":1,"5":1,"6":1,"20":1,"22":4,"23":1,"34":1,"36":2,"37":2,"38":4,"39":6,"43":5,"50":1,"54":1,"56":3,"59":1,"61":1,"65":1,"66":1,"68":4,"69":3,"70":1,"72":1,"77":1,"78":1,"79":2,"85":19,"86":16,"91":1,"92":2,"94":1}}],["f",{"2":{"2":2,"16":3}}],["field",{"2":{"85":1}}],["fields",{"2":{"39":1,"85":1,"86":4}}],["filterig",{"2":{"92":1}}],["filter",{"2":{"85":2}}],["fillarrays",{"2":{"79":3}}],["fill",{"2":{"79":1,"85":1,"86":1}}],["fillvalue=",{"2":{"86":1}}],["fillvalue",{"2":{"50":3,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5}}],["filling",{"2":{"45":1,"46":1}}],["filename",{"2":{"50":2,"85":1}}],["files",{"0":{"97":1},"2":{"7":1,"57":1,"60":1,"83":1,"86":2}}],["file",{"2":{"2":1,"7":1,"8":2,"9":2,"10":2,"12":2,"13":2,"14":4,"16":10,"17":2,"18":2,"19":2,"21":6,"22":4,"25":2,"26":2,"27":3,"29":2,"30":6,"31":2,"32":2,"34":10,"37":1,"38":6,"39":6,"46":4,"54":2,"58":2,"59":4,"62":4,"63":6,"64":6,"65":10,"76":3,"77":2,"79":3,"82":4,"85":2,"89":4,"92":2}}],["figure=",{"2":{"93":1}}],["figure",{"2":{"56":2,"91":1,"93":1,"99":1,"100":1,"101":1,"102":1}}],["fig",{"2":{"39":3,"56":8,"91":1,"93":1,"99":2,"100":2,"101":2,"102":3}}],["findaxis",{"2":{"86":1}}],["findall",{"2":{"22":1,"92":1}}],["find",{"2":{"33":1,"86":1,"94":1}}],["finalizer",{"2":{"86":1}}],["finalize",{"2":{"86":1}}],["finally",{"2":{"22":1,"85":1}}],["final",{"2":{"21":1,"22":1}}],["firstly",{"2":{"34":1}}],["first",{"2":{"8":4,"16":3,"18":1,"22":1,"39":1,"42":1,"56":1,"80":1,"82":1,"85":4,"86":1,"89":1,"98":1}}],["fitting",{"2":{"85":1}}],["fittable",{"2":{"85":2}}],["fitcube",{"2":{"39":2}}],["fitsym",{"2":{"85":4}}],["fits",{"2":{"24":1}}],["fit",{"2":{"1":1,"68":1}}],["t=union",{"2":{"86":1}}],["typing",{"2":{"88":1}}],["typically",{"2":{"85":1}}],["type",{"2":{"30":1,"44":1,"68":1,"70":1,"85":8,"86":3,"89":1,"90":1}}],["types",{"0":{"67":1},"1":{"68":1,"69":1,"70":1,"71":1},"2":{"24":2,"26":1,"27":1,"44":1,"63":1,"69":1,"85":2,"90":1}}],["tutorial",{"2":{"94":2,"95":1,"96":1}}],["tutorials",{"0":{"94":1},"1":{"95":1,"96":1,"97":1},"2":{"65":1,"94":3}}],["turn",{"2":{"85":1}}],["tuple",{"2":{"2":3,"4":1,"5":1,"6":1,"18":1,"20":1,"51":2,"52":1,"54":2,"55":3,"56":5,"85":5,"86":3}}],["tbl",{"2":{"39":2}}],["target",{"2":{"86":1}}],["tab",{"2":{"85":4}}],["tables",{"2":{"96":1}}],["tableaggregator",{"2":{"85":1}}],["table",{"0":{"96":1},"2":{"39":2,"58":1,"59":2,"61":2,"72":2,"78":2,"85":4,"86":1,"98":1}}],["tas",{"2":{"58":5,"98":5}}],["tair",{"2":{"56":1,"85":1}}],["ta",{"2":{"43":3}}],["takes",{"2":{"85":4}}],["taken",{"2":{"37":2}}],["take",{"2":{"16":1,"83":1,"85":1,"86":2}}],["treat",{"2":{"85":1}}],["treatment",{"2":{"85":1,"86":1}}],["treated",{"2":{"58":1}}],["tries",{"2":{"85":1}}],["translate",{"2":{"100":1,"101":1}}],["transformed",{"2":{"59":1,"61":1,"72":1,"78":1}}],["transformations",{"2":{"100":1}}],["transformation",{"2":{"22":1}}],["transform",{"2":{"22":2}}],["track",{"2":{"85":1}}],["true",{"2":{"12":1,"44":1,"77":1,"79":1,"85":4,"86":1,"102":1}}],["tip",{"2":{"90":1}}],["tidy",{"2":{"85":1}}],["ticks",{"2":{"68":1}}],["ticks=false",{"2":{"56":1}}],["tick",{"2":{"66":1,"71":1,"89":1}}],["tiff",{"0":{"97":1}}],["tif",{"2":{"60":2}}],["title",{"2":{"56":1,"59":1,"61":1,"72":1,"78":1,"82":1}}],["ti=at",{"2":{"56":3}}],["ti=>cyclicbins",{"2":{"51":2,"52":1,"54":2,"55":2,"56":3}}],["ti",{"2":{"20":1,"26":4,"51":15,"52":2,"53":1,"54":8,"55":3,"56":6,"58":2,"59":2,"61":1,"62":2,"63":2,"64":3,"65":5,"72":1,"78":1,"98":2}}],["time1",{"2":{"63":2}}],["timearray",{"0":{"43":1},"2":{"43":3}}],["time=1",{"2":{"89":1}}],["time=date",{"2":{"34":1}}],["time=at",{"2":{"34":1}}],["time=between",{"2":{"34":1}}],["time",{"0":{"49":1},"2":{"1":1,"7":1,"8":4,"9":3,"10":3,"12":1,"13":1,"14":7,"16":14,"17":2,"18":4,"19":1,"20":4,"21":10,"22":8,"23":5,"26":2,"32":2,"34":8,"36":4,"37":7,"38":4,"39":3,"43":5,"46":3,"47":1,"52":1,"53":1,"56":1,"58":2,"59":1,"62":2,"63":4,"64":3,"65":5,"68":2,"69":1,"85":4,"89":4,"91":1,"92":4,"98":2}}],["timestamp",{"2":{"43":1}}],["timestep",{"2":{"39":1}}],["timeseries",{"2":{"43":3}}],["times",{"2":{"0":1}}],["tesselation",{"2":{"102":1}}],["testrange",{"2":{"86":1}}],["test1",{"2":{"44":1}}],["test2",{"2":{"44":2}}],["test",{"2":{"17":4,"18":1,"19":3,"20":4,"21":4,"44":3,"86":1,"98":1}}],["terminal",{"2":{"83":1}}],["text",{"2":{"82":1}}],["tensors",{"2":{"68":1}}],["tell",{"2":{"33":1}}],["temporary",{"2":{"86":1}}],["temporal",{"2":{"38":1,"48":1,"68":1}}],["tempo",{"2":{"51":6,"54":4,"55":1}}],["temp",{"2":{"9":2}}],["temperature=temperature",{"2":{"37":1}}],["temperature",{"2":{"9":2,"37":4,"56":2,"58":3,"59":2,"62":5,"63":6,"64":6,"65":10,"68":1,"69":1,"70":1,"89":4}}],["tempname",{"2":{"2":1,"4":1,"5":1,"6":1}}],["tspan",{"2":{"16":1}}],["t",{"2":{"16":4,"34":1,"36":2,"37":2,"39":3,"59":1,"62":2,"63":3,"64":3,"65":5,"74":1,"85":1,"86":2,"91":1,"92":1}}],["two",{"2":{"8":1,"9":1,"18":8,"19":4,"20":3,"21":2,"31":2,"32":1,"68":1,"86":1}}],["toghether",{"2":{"86":1}}],["together",{"2":{"43":1,"70":1}}],["touches",{"2":{"65":1}}],["tolerances",{"2":{"64":1}}],["tos",{"2":{"59":4,"61":2,"62":4,"63":4,"64":3,"65":9,"66":2,"72":2,"73":2,"75":2,"78":1}}],["top",{"2":{"56":1}}],["too",{"2":{"37":1,"68":1}}],["todo",{"2":{"21":1,"92":1}}],["toy",{"2":{"21":1,"79":1}}],["to",{"0":{"9":1,"18":1,"19":1,"40":1,"78":1,"81":1,"82":1},"1":{"41":1,"42":1,"82":1,"83":2},"2":{"0":4,"1":4,"3":1,"4":1,"6":2,"7":1,"8":1,"9":1,"10":8,"12":1,"15":1,"16":2,"17":1,"18":2,"19":1,"20":4,"21":3,"22":2,"23":6,"24":3,"25":2,"27":3,"28":2,"29":2,"31":3,"32":1,"34":2,"36":2,"37":6,"38":1,"39":1,"42":2,"43":2,"44":1,"45":1,"48":1,"49":3,"50":2,"52":1,"53":1,"56":1,"57":1,"58":3,"59":1,"61":3,"65":1,"66":1,"67":1,"68":5,"69":3,"70":2,"71":2,"72":1,"73":2,"74":2,"75":2,"76":2,"77":1,"78":2,"79":4,"80":3,"82":2,"83":3,"85":47,"86":19,"90":2,"94":1,"96":3,"98":2,"102":1}}],["though",{"2":{"79":1}}],["those",{"2":{"11":1,"24":1,"26":1,"27":1,"42":1,"69":1,"80":1}}],["through",{"2":{"85":5,"86":5,"88":1}}],["thrown",{"2":{"77":1}}],["three",{"2":{"33":1,"69":1,"91":1}}],["threads",{"2":{"85":2}}],["thread",{"2":{"23":1}}],["than",{"2":{"24":1,"33":1,"38":1,"39":1}}],["that",{"2":{"0":1,"9":2,"10":1,"13":1,"16":5,"20":1,"21":1,"22":2,"23":1,"24":1,"30":1,"32":1,"35":1,"37":2,"39":1,"43":1,"44":1,"49":1,"52":1,"55":1,"66":1,"68":1,"69":2,"71":1,"79":2,"85":13,"86":13,"94":1,"96":1}}],["things",{"2":{"28":1}}],["think",{"2":{"1":1}}],["thinking",{"2":{"1":1}}],["this",{"2":{"0":1,"1":1,"4":1,"7":1,"10":1,"13":2,"16":4,"17":1,"19":2,"22":3,"23":1,"24":1,"28":1,"31":1,"36":1,"37":2,"38":2,"39":2,"42":1,"43":1,"45":1,"49":1,"53":2,"57":1,"58":1,"65":1,"67":1,"70":1,"74":1,"80":2,"82":1,"83":2,"84":2,"85":6,"86":10,"95":1,"96":1}}],["they",{"2":{"43":4}}],["their",{"0":{"36":1,"37":1},"2":{"35":1,"37":1,"44":1,"68":1,"85":3,"86":2}}],["then",{"2":{"21":2,"22":2,"30":1,"38":1,"43":1,"79":1,"80":1,"83":2,"88":1}}],["thereby",{"2":{"85":1}}],["therefore",{"2":{"39":1,"90":1}}],["there",{"2":{"14":2,"21":1,"27":1,"31":1,"43":2,"85":1}}],["theme",{"2":{"56":2}}],["them",{"2":{"7":1,"10":1,"33":1,"80":1,"85":1}}],["these",{"2":{"0":1,"6":1,"31":1,"33":1,"44":1,"66":1,"68":1}}],["the",{"0":{"29":1,"31":1,"39":1,"50":1,"92":1,"95":1},"1":{"30":1},"2":{"0":5,"1":4,"2":3,"4":1,"5":4,"6":4,"8":6,"9":3,"10":1,"11":1,"13":3,"14":2,"15":1,"16":12,"17":3,"18":5,"19":2,"20":3,"21":10,"22":14,"23":7,"24":2,"27":1,"28":1,"29":3,"30":5,"31":3,"32":2,"33":2,"34":9,"36":3,"37":10,"38":3,"39":10,"42":1,"43":7,"46":3,"48":2,"49":5,"50":4,"51":2,"52":1,"53":2,"54":2,"55":2,"56":9,"59":1,"61":1,"62":5,"63":3,"64":5,"65":6,"66":1,"67":1,"68":5,"69":4,"70":4,"76":1,"77":3,"78":1,"79":10,"80":2,"81":1,"82":1,"83":6,"85":116,"86":83,"88":2,"89":6,"90":8,"91":1,"92":4,"94":6,"95":1,"96":5,"98":1}}],["switched",{"2":{"90":1}}],["syntax",{"2":{"90":1,"94":1}}],["system",{"2":{"83":1}}],["symbol",{"2":{"10":1,"12":1,"13":1,"18":1,"20":1,"43":5,"46":2,"51":4,"52":2,"53":2,"54":4,"55":4,"56":6,"85":3,"86":1}}],["src",{"2":{"82":1}}],["sres",{"2":{"59":2,"61":2,"72":2,"78":2}}],["skipped",{"2":{"85":1}}],["skip",{"2":{"85":1}}],["skipmissing",{"2":{"23":1,"38":1}}],["skeleton=a",{"2":{"79":1}}],["skeleton=true",{"2":{"79":2}}],["skeleton=false",{"2":{"77":1,"85":1}}],["skeleton",{"0":{"79":1},"2":{"79":8,"80":4}}],["ssp585",{"2":{"58":1,"98":2}}],["snow3",{"2":{"39":1}}],["snippet",{"2":{"6":1}}],["small",{"2":{"28":1,"43":1}}],["slightly",{"2":{"94":1}}],["slicing",{"2":{"16":1}}],["slices",{"2":{"85":3}}],["slice",{"2":{"16":1,"98":4,"99":1}}],["slow",{"2":{"37":1}}],["slurmmanager",{"2":{"23":1}}],["shinclude",{"2":{"83":1}}],["shdocs>",{"2":{"83":1}}],["shnpm",{"2":{"83":2}}],["should",{"2":{"34":1,"43":1,"50":1,"82":1,"83":1,"85":3,"86":1}}],["shown",{"2":{"85":1}}],["showprog",{"2":{"85":1}}],["shows",{"2":{"56":1}}],["showing",{"2":{"43":1}}],["show",{"2":{"23":1,"80":1,"102":1}}],["shading=false",{"2":{"100":1,"101":1,"102":1}}],["shall",{"2":{"85":5,"86":1}}],["shares",{"2":{"37":1}}],["share",{"0":{"36":1,"37":1},"2":{"35":1,"37":1,"69":1,"85":1}}],["shared",{"2":{"4":1,"5":1,"6":1,"20":1,"32":1,"36":2,"37":3,"41":1,"42":1,"43":2,"47":1,"58":1,"59":1,"60":1,"61":1,"72":1,"78":1,"79":1,"98":1}}],["shape",{"2":{"6":1}}],["scene",{"2":{"102":3}}],["scenariomip",{"2":{"58":1,"98":2}}],["scenarios",{"2":{"17":1,"98":1}}],["scope",{"2":{"85":1,"86":1}}],["scripts",{"2":{"83":1}}],["scalar",{"2":{"58":1}}],["scattered",{"2":{"7":1}}],["sure",{"2":{"102":1}}],["surface",{"2":{"56":2,"58":2,"59":2,"62":5,"63":6,"64":6,"65":10,"100":1,"101":1}}],["such",{"2":{"65":1,"85":1,"90":1}}],["subcubes",{"2":{"85":1}}],["subtype",{"2":{"68":1,"86":1,"90":1}}],["subtables",{"2":{"39":1}}],["subarray",{"2":{"55":1,"56":1}}],["subsetextensions",{"2":{"86":1}}],["subsetcube",{"2":{"85":1}}],["subseting",{"2":{"66":1}}],["subsetting",{"0":{"34":1,"35":1,"36":1,"37":1},"1":{"36":1,"37":1},"2":{"58":1,"59":1,"86":1,"92":1}}],["subset",{"0":{"33":1},"1":{"34":1,"35":1,"36":1,"37":1},"2":{"34":5,"37":4,"61":1,"64":1,"85":1,"86":1,"98":1}}],["subsets",{"2":{"15":1,"71":1}}],["subsequent",{"2":{"17":1}}],["supposed",{"2":{"85":1}}],["support",{"2":{"27":1,"43":1}}],["supertype",{"2":{"26":1,"27":1}}],["summarysize",{"2":{"44":2}}],["sum",{"2":{"18":1,"19":1,"21":1,"22":2,"38":1,"51":4,"54":2,"55":4,"56":2}}],["suggestions",{"2":{"6":1}}],["s",{"2":{"10":1,"16":3,"18":1,"19":1,"21":2,"30":1,"32":1,"34":1,"36":1,"37":2,"56":7,"61":1,"71":1,"79":1,"85":2,"86":1,"92":1}}],["style",{"0":{"96":1}}],["st",{"2":{"90":1}}],["stdzero",{"2":{"85":1}}],["stock3",{"2":{"43":4}}],["stock2",{"2":{"43":4}}],["stock1",{"2":{"43":4}}],["stocks",{"2":{"43":7}}],["storing",{"2":{"69":1}}],["storage",{"2":{"11":1,"58":1}}],["stored",{"2":{"68":3,"86":2}}],["stores",{"2":{"68":1,"85":1}}],["store",{"2":{"0":1,"58":4,"68":1,"69":1,"98":2}}],["struct",{"2":{"85":1,"86":4}}],["structures",{"2":{"67":1}}],["structure",{"2":{"30":2,"43":1,"70":1}}],["strings",{"0":{"44":1}}],["string",{"2":{"8":1,"9":2,"10":1,"12":1,"13":1,"14":2,"16":5,"17":3,"18":4,"19":3,"20":1,"21":4,"22":6,"25":1,"26":2,"27":3,"29":1,"30":3,"31":1,"32":2,"34":5,"38":3,"39":3,"44":5,"46":3,"51":1,"52":1,"54":2,"55":1,"56":1,"58":2,"59":2,"60":1,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"77":1,"78":1,"79":1,"85":6,"86":4,"89":4,"92":1,"98":1}}],["stable",{"2":{"90":1}}],["stat",{"2":{"76":2}}],["statistics",{"2":{"14":1,"23":1,"39":3,"48":1,"91":1}}],["standard",{"2":{"58":1,"59":1,"62":2,"63":3,"64":3,"65":5}}],["standards",{"2":{"58":1,"59":1,"61":1,"72":1,"78":1,"98":1}}],["stack",{"2":{"44":1}}],["started",{"0":{"87":1},"1":{"88":1,"89":1,"90":1}}],["start=12",{"2":{"51":2,"52":1,"54":2,"55":2,"56":3}}],["start=december",{"2":{"51":3,"54":1}}],["start",{"2":{"10":1,"34":1,"74":1,"80":1}}],["still",{"2":{"8":1,"22":1,"69":1,"94":1}}],["step=3",{"2":{"51":2,"52":1,"54":2,"55":2,"56":3}}],["steps",{"2":{"10":1,"14":1,"56":1,"83":1,"85":1}}],["step",{"2":{"7":1,"14":1,"20":1,"38":2,"85":1,"86":2,"98":1}}],["sphere",{"0":{"102":1},"2":{"102":3}}],["spheroid",{"2":{"60":1}}],["split",{"2":{"85":1}}],["splitted",{"2":{"2":1}}],["special",{"2":{"63":1,"85":1,"86":1}}],["specifiers",{"2":{"86":1}}],["specifier",{"2":{"85":1}}],["specifies",{"2":{"85":3}}],["specified",{"2":{"85":7,"86":1}}],["specific",{"2":{"34":1,"85":2}}],["specifying",{"2":{"85":2,"86":1}}],["specify",{"0":{"20":1},"2":{"17":1,"46":1,"85":1}}],["specs",{"2":{"58":1,"98":1}}],["spectral",{"2":{"56":1}}],["sparse",{"2":{"68":1}}],["spatio",{"2":{"38":1}}],["spatial",{"2":{"1":1,"14":1,"22":5,"23":1,"48":1,"68":1}}],["span",{"2":{"34":1,"91":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":3,"18":3,"19":2,"20":3,"21":9,"22":8,"25":2,"26":6,"27":4,"29":9,"30":6,"31":2,"32":3,"34":14,"36":6,"37":10,"38":9,"39":5,"41":1,"42":5,"43":4,"44":4,"46":9,"47":3,"51":3,"52":2,"54":2,"55":1,"56":7,"58":6,"59":6,"60":2,"61":3,"62":6,"63":4,"64":9,"65":15,"66":2,"72":3,"78":6,"79":6,"89":5,"92":1,"98":3}}],["same",{"2":{"0":1,"2":1,"5":1,"6":1,"9":1,"16":1,"20":1,"21":1,"22":2,"26":1,"27":1,"30":2,"31":2,"32":1,"37":1,"42":1,"43":2,"62":1,"63":1,"64":1,"68":1,"69":3,"70":2,"83":1,"85":1,"86":1}}],["saves",{"2":{"77":1,"85":1}}],["save",{"0":{"79":1},"2":{"12":1,"27":1,"42":1,"44":1,"73":2,"74":1,"75":2,"76":1,"79":1,"85":2}}],["savecube",{"2":{"2":1,"73":1,"75":1,"79":1,"85":2}}],["savedataset",{"2":{"4":1,"5":1,"6":1,"74":1,"76":1,"77":2,"78":1,"79":2,"85":2,"86":1}}],["saved",{"2":{"2":1,"11":1,"20":1,"76":1,"77":1}}],["saving",{"2":{"1":1,"4":1,"5":1,"6":1,"16":1}}],["serve",{"2":{"86":1}}],["series",{"0":{"49":1},"2":{"23":1}}],["sequence",{"2":{"68":1}}],["seaborn",{"2":{"99":1,"100":1,"101":1,"102":1}}],["searching",{"2":{"85":1}}],["search",{"2":{"85":1}}],["sea",{"2":{"59":3,"61":1,"62":5,"63":6,"64":6,"65":10,"72":1,"78":1}}],["season",{"2":{"51":1,"54":2,"55":1}}],["seasons",{"0":{"51":1,"53":1,"56":1},"1":{"52":1,"53":1},"2":{"51":9,"54":1,"56":5}}],["seasonal",{"0":{"49":1,"91":1,"93":1},"1":{"92":1,"93":1},"2":{"49":1,"55":1,"56":1,"91":1,"92":4}}],["sebastien",{"2":{"59":2,"61":2,"72":2,"78":2}}],["separate",{"2":{"85":1,"86":1}}],["separated",{"2":{"69":1}}],["separately",{"2":{"5":1,"22":1,"23":1}}],["sep",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["selected",{"2":{"86":1,"91":1}}],["select",{"0":{"61":1,"62":1,"63":1,"64":1},"1":{"62":1,"63":1,"64":1,"65":1,"66":1},"2":{"37":1,"61":1}}],["selectors",{"2":{"65":1}}],["selector",{"2":{"37":1,"64":1}}],["selection",{"2":{"37":2}}],["selecting",{"2":{"34":1,"36":1,"37":1}}],["seed",{"2":{"17":1,"21":2}}],["see",{"2":{"16":1,"18":1,"65":1,"85":1,"90":1}}],["second",{"2":{"8":3,"18":1,"19":1,"85":1}}],["section",{"2":{"7":1,"10":1,"24":1,"28":1,"43":1,"45":1,"57":1,"67":1,"84":1}}],["setting",{"2":{"77":1,"85":1,"86":1}}],["sets",{"2":{"6":1,"50":1}}],["set",{"0":{"4":1,"5":1,"6":1},"2":{"4":1,"5":1,"19":2,"22":1,"58":1,"77":1,"83":1,"85":1,"86":2}}],["setchunks",{"2":{"1":1,"2":2,"3":1,"4":1,"5":1,"6":1,"85":1,"86":1}}],["several",{"0":{"16":1},"2":{"0":1,"16":1,"32":1,"35":1}}],["sin",{"2":{"91":1}}],["sink",{"2":{"86":1}}],["single",{"0":{"91":1},"1":{"92":1,"93":1},"2":{"0":1,"7":1,"8":1,"70":1,"73":1,"75":1,"85":6,"86":1}}],["significant",{"2":{"74":1}}],["simulate",{"2":{"43":1}}],["simplicity",{"2":{"91":1}}],["simply",{"2":{"23":1,"44":1,"80":1,"83":1}}],["simple",{"2":{"16":1,"28":1,"89":1}}],["situations",{"2":{"1":1}}],["size=",{"2":{"100":1,"101":1,"102":1}}],["sizes",{"2":{"2":1,"85":2,"86":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":2,"18":2,"19":2,"21":6,"22":4,"25":2,"26":2,"27":2,"29":2,"30":6,"31":2,"32":2,"34":10,"38":6,"39":6,"44":2,"46":4,"54":2,"56":1,"58":2,"59":2,"62":4,"63":6,"64":6,"65":10,"76":4,"79":2,"80":1,"85":3,"86":4,"89":5,"91":1,"92":3,"93":1,"99":1}}],["sosstsst",{"2":{"59":1,"62":2,"63":3,"64":3,"65":5}}],["software",{"2":{"59":1,"61":1,"72":1}}],["sort",{"2":{"22":1}}],["so",{"2":{"2":1,"23":1,"33":1,"37":1,"85":1,"86":1}}],["source",{"2":{"0":2,"59":1,"61":1,"72":1,"77":1,"78":1,"85":24,"86":24}}],["sometimes",{"2":{"79":1,"96":1}}],["some",{"0":{"37":1},"2":{"0":1,"11":1,"35":1,"37":1,"38":1,"43":2,"56":1,"85":1,"91":1,"100":1}}],["again",{"2":{"77":1,"80":1}}],["agreement",{"2":{"56":1}}],["aggregation",{"2":{"23":1}}],["aggregate",{"2":{"22":1}}],["air",{"2":{"56":2,"58":3}}],["authority",{"2":{"60":5}}],["auto",{"2":{"18":1,"20":1,"85":1}}],["aug",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["api",{"0":{"84":1,"85":1,"86":1},"1":{"85":1,"86":1}}],["apr",{"2":{"51":4,"52":2,"53":1,"54":4,"55":4,"56":6}}],["approximated",{"2":{"86":1}}],["approx",{"2":{"85":1,"86":1}}],["appropriate",{"2":{"82":1}}],["approach",{"2":{"9":1}}],["append=true",{"2":{"78":2}}],["append",{"0":{"78":1},"2":{"77":1,"85":1}}],["apply",{"0":{"38":1},"2":{"10":2,"13":1,"15":1,"21":1,"23":1,"56":1,"92":1}}],["application",{"2":{"21":1}}],["applications",{"2":{"0":1}}],["applies",{"2":{"13":1}}],["applied",{"2":{"0":1,"3":1,"4":1,"22":1,"85":2,"86":1}}],["a3",{"2":{"47":4}}],["a2",{"2":{"46":1,"47":3,"59":2,"61":2,"72":2,"78":2,"89":1}}],["a1",{"2":{"46":1}}],["able",{"2":{"42":1}}],["abstractdict",{"2":{"85":1,"86":3}}],["abstractdimarray",{"2":{"26":1,"27":1,"68":1}}],["abs",{"2":{"21":1}}],["about",{"2":{"1":2,"33":1,"64":1,"89":1,"95":1}}],["above",{"2":{"0":1,"5":1,"16":1,"79":1,"88":1}}],["atol",{"2":{"64":1}}],["atmosphere",{"2":{"59":1,"61":1,"72":1,"78":1}}],["atmos",{"2":{"58":1,"98":1}}],["attributes",{"2":{"56":1,"85":1,"86":1}}],["at",{"2":{"21":1,"22":4,"27":1,"37":1,"43":3,"56":1,"59":2,"61":1,"62":2,"63":6,"64":7,"65":5,"69":1,"70":2,"72":1,"77":2,"78":1,"81":1,"82":2,"83":2,"85":3,"86":2,"89":1,"94":2}}],["after",{"2":{"14":1,"16":1,"60":1,"85":3}}],["addargs",{"2":{"85":3,"86":1}}],["adds",{"2":{"68":2,"71":1}}],["addprocs",{"2":{"23":2}}],["addition",{"2":{"22":1,"24":1,"68":1}}],["additional",{"2":{"4":3,"5":3,"9":1,"16":1,"21":1,"37":10,"42":4,"43":4,"58":2,"78":3,"85":4,"86":3,"98":2}}],["added",{"2":{"15":1,"78":1,"85":1,"86":1}}],["add",{"2":{"6":1,"10":1,"12":1,"38":1,"82":2,"88":2,"100":1}}],["asaxisarray",{"2":{"85":1}}],["assemble",{"2":{"89":1}}],["assessment",{"2":{"59":2,"61":2,"72":2,"78":2}}],["associated",{"2":{"85":1}}],["assign",{"0":{"40":1},"1":{"41":1,"42":1}}],["aspect=dataaspect",{"2":{"56":1,"99":1}}],["asked",{"0":{"28":1},"1":{"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"42":1,"43":1,"44":1}}],["as",{"2":{"5":1,"12":1,"16":5,"18":1,"19":1,"21":1,"22":1,"23":1,"26":1,"27":2,"30":2,"31":1,"37":1,"39":1,"43":2,"51":2,"56":1,"58":1,"59":1,"60":1,"62":1,"65":1,"66":1,"68":1,"71":1,"79":1,"80":1,"85":11,"86":3,"90":1,"96":1,"98":1}}],["axs",{"2":{"50":1,"56":9}}],["ax",{"2":{"39":1,"91":3,"93":3,"99":1,"100":3,"101":3,"102":5}}],["axlist",{"2":{"10":2,"17":2,"19":1,"21":4,"22":2,"23":2,"32":3,"46":2,"47":1,"86":5,"89":3}}],["axessmall",{"2":{"86":2}}],["axes",{"0":{"29":1,"31":1},"1":{"30":1},"2":{"4":4,"5":4,"6":1,"20":1,"29":2,"30":1,"31":2,"34":2,"36":5,"37":13,"41":1,"42":5,"43":8,"46":1,"47":1,"58":3,"59":1,"60":1,"61":2,"68":2,"72":1,"78":4,"79":1,"85":15,"86":11,"89":1,"92":2,"98":3}}],["axislegend",{"2":{"93":1}}],["axis=false",{"2":{"102":1}}],["axis=",{"2":{"91":1}}],["axisdescriptor",{"2":{"86":1}}],["axisdesc",{"2":{"85":3}}],["axis",{"0":{"4":1},"2":{"4":1,"9":2,"16":3,"31":1,"34":1,"36":1,"37":7,"43":1,"56":1,"60":2,"66":1,"71":1,"79":1,"85":16,"86":14,"89":1,"93":1,"98":1,"99":1}}],["always",{"2":{"81":1,"85":2,"86":1,"90":1}}],["already",{"2":{"77":1,"85":1,"86":1}}],["al",{"2":{"59":1,"61":1,"70":1,"72":1,"78":1}}],["alternatives",{"2":{"85":1}}],["alternatively",{"2":{"0":1,"2":1,"85":1,"88":1}}],["altered",{"2":{"58":1,"59":1,"62":2,"63":3,"64":3,"65":5}}],["although",{"2":{"43":1,"44":1,"65":1}}],["algebra",{"0":{"38":1},"2":{"38":1}}],["along",{"0":{"8":1},"2":{"8":1,"16":1,"85":3,"86":2,"94":1}}],["allaxes",{"2":{"86":1}}],["allinaxes",{"2":{"86":1}}],["allmissing",{"2":{"85":1}}],["allocate",{"2":{"79":1}}],["allocation",{"2":{"22":1}}],["allow",{"2":{"86":1}}],["allowed",{"2":{"44":1}}],["allowing",{"2":{"26":1,"27":1,"69":1}}],["allows",{"2":{"23":1}}],["all",{"0":{"6":1,"36":1,"37":1},"2":{"4":1,"6":2,"10":1,"12":1,"13":1,"14":2,"22":1,"23":4,"35":1,"37":2,"43":3,"56":2,"60":1,"65":1,"68":1,"70":2,"77":3,"79":1,"83":1,"84":1,"85":6,"86":7}}],["also",{"2":{"2":1,"3":1,"14":1,"21":1,"23":1,"29":1,"37":1,"39":1,"46":1,"68":2,"69":1,"74":1,"79":2,"85":1,"88":1}}],["analog",{"2":{"69":1}}],["analyzing",{"2":{"1":1}}],["anchor",{"2":{"21":1}}],["another",{"2":{"16":1,"37":1}}],["anynymous",{"2":{"85":1}}],["anyocean",{"2":{"85":1}}],["anymissing",{"2":{"85":1}}],["anymore",{"2":{"21":1}}],["any",{"2":{"8":1,"9":1,"10":1,"11":1,"14":2,"16":5,"18":3,"20":1,"21":2,"22":4,"25":1,"26":2,"27":3,"29":1,"30":3,"31":1,"32":1,"34":6,"38":3,"39":3,"44":4,"46":1,"51":3,"52":2,"54":4,"55":3,"56":3,"58":2,"59":2,"60":1,"61":1,"62":2,"63":3,"64":3,"65":5,"72":1,"78":1,"79":1,"85":4,"86":9,"89":1,"92":1,"98":1}}],["an",{"0":{"8":1},"2":{"9":1,"10":4,"12":1,"13":1,"15":1,"23":2,"30":1,"31":1,"36":1,"37":1,"39":1,"44":1,"61":3,"64":1,"68":1,"69":1,"71":1,"72":1,"73":1,"74":1,"75":1,"77":1,"78":1,"85":19,"86":8}}],["and",{"0":{"17":1,"31":1,"45":1,"48":1,"57":1,"61":1,"65":1,"72":1},"1":{"18":1,"19":1,"20":1,"46":1,"47":1,"49":1,"50":1,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1,"58":1,"59":1,"60":1,"62":1,"63":1,"64":1,"65":1,"66":1,"73":1,"74":1,"75":1,"76":1,"77":1,"78":1,"79":1,"80":1},"2":{"0":1,"2":1,"5":1,"6":1,"7":1,"8":1,"12":1,"16":4,"17":2,"18":2,"20":2,"21":4,"22":2,"24":1,"29":1,"32":1,"34":1,"37":6,"38":1,"39":6,"43":5,"45":1,"46":1,"48":1,"49":1,"51":1,"56":1,"57":2,"58":1,"59":1,"61":1,"65":1,"68":5,"69":3,"70":2,"72":1,"74":2,"76":1,"77":1,"78":1,"79":3,"80":1,"81":1,"83":4,"85":18,"86":6,"88":1,"89":2,"91":1,"98":1,"100":1}}],["available",{"2":{"65":2,"79":1,"84":1,"85":2,"88":1}}],["avariable",{"2":{"0":1}}],["avoids",{"2":{"22":1}}],["avoided",{"2":{"0":1}}],["averaging",{"2":{"14":1}}],["averages",{"0":{"49":1},"2":{"48":1}}],["average",{"2":{"14":1,"49":2}}],["artype",{"2":{"85":2}}],["archgdaldatasets",{"2":{"60":1}}],["archgdal",{"2":{"60":2}}],["argument",{"2":{"23":1,"79":1,"85":4,"86":2}}],["arguments",{"2":{"21":1,"56":1,"85":11,"86":3}}],["arr2",{"2":{"27":1}}],["arr",{"2":{"22":7,"27":2}}],["arrayinfo",{"2":{"86":1}}],["arrays",{"2":{"6":1,"7":1,"8":2,"9":1,"11":1,"45":1,"47":2,"58":2,"59":2,"67":1,"68":4,"69":3,"70":3,"85":2,"86":1}}],["array",{"0":{"22":1,"25":1},"2":{"0":1,"1":1,"8":2,"9":2,"10":3,"12":2,"13":2,"15":1,"18":1,"20":1,"22":8,"25":2,"31":1,"51":1,"56":1,"61":1,"68":4,"69":1,"70":1,"71":2,"79":5,"80":5,"85":10,"86":4,"89":3}}],["arbitrary",{"2":{"16":1}}],["arithmetics",{"0":{"12":1},"2":{"10":1}}],["areas",{"2":{"85":1}}],["area",{"2":{"58":2,"85":1}}],["areacella",{"2":{"58":2,"98":1}}],["are",{"2":{"0":1,"11":1,"18":1,"19":1,"24":3,"31":1,"33":1,"37":1,"43":3,"56":2,"61":1,"65":1,"66":1,"68":3,"69":2,"70":3,"79":1,"81":1,"83":1,"85":11,"86":6,"94":2,"96":1}}],["according",{"2":{"85":1}}],["access",{"2":{"1":2,"13":1,"46":1,"68":1,"71":1}}],["accessed",{"2":{"0":2,"58":1,"59":1}}],["activate",{"2":{"39":1,"83":2,"91":1,"99":1,"102":1}}],["actually",{"2":{"86":1}}],["actual",{"2":{"13":1,"79":1,"86":1,"89":1}}],["achieves",{"2":{"30":1}}],["achieved",{"2":{"0":1}}],["across",{"2":{"0":1,"7":1,"16":1,"68":3}}],["a",{"0":{"9":1,"11":1,"22":1,"29":1,"33":1,"34":1,"35":1,"36":1,"37":1,"40":1,"43":2,"44":1,"46":1,"47":1,"62":1,"66":1,"77":1,"78":1,"91":1,"97":1},"1":{"30":1,"34":1,"35":1,"36":2,"37":2,"41":1,"42":1,"92":1,"93":1},"2":{"0":4,"2":7,"3":1,"4":1,"7":1,"8":1,"9":2,"10":3,"11":1,"12":4,"13":2,"14":2,"15":1,"16":5,"17":2,"18":1,"19":2,"20":1,"22":75,"23":11,"25":2,"26":5,"27":8,"28":1,"29":2,"30":2,"31":1,"33":4,"34":3,"35":1,"37":2,"39":3,"41":2,"42":2,"43":4,"46":1,"49":1,"54":1,"56":2,"58":6,"59":3,"60":1,"64":2,"65":4,"66":1,"68":12,"69":4,"70":8,"71":1,"73":3,"74":3,"75":3,"76":1,"77":4,"79":5,"82":2,"83":2,"85":60,"86":31,"89":4,"90":1,"95":1,"96":1}}],["iall",{"2":{"86":1}}],["iwindow",{"2":{"86":1}}],["icolon",{"2":{"86":1}}],["icefire",{"2":{"99":1,"100":1,"101":1,"102":1}}],["ice",{"2":{"59":1,"61":1,"72":1,"78":1}}],["ipcc",{"2":{"59":3,"61":3,"72":3,"78":3}}],["ipsl",{"2":{"59":6,"61":6,"72":6,"78":6}}],["idx",{"2":{"92":3}}],["identical",{"2":{"85":1}}],["id",{"2":{"58":2,"59":2,"61":2,"72":2,"78":2,"98":2}}],["irregular",{"2":{"20":1,"37":6,"39":2,"43":4,"51":1,"54":2,"55":1,"56":1,"58":4,"59":2,"61":1,"62":2,"63":2,"64":6,"65":5,"72":1,"78":1,"86":1,"98":2}}],["illustrate",{"2":{"17":1}}],["immutable",{"2":{"11":1}}],["improving",{"2":{"90":1}}],["improvement",{"2":{"74":1}}],["improve",{"2":{"6":1}}],["implementing",{"2":{"85":1}}],["importance",{"2":{"86":1}}],["important",{"2":{"1":1}}],["impossible",{"2":{"11":1}}],["i",{"0":{"32":1,"33":1,"38":1,"39":1,"40":1,"43":1},"1":{"34":1,"35":1,"36":1,"37":1,"41":1,"42":1},"2":{"8":1,"22":3,"26":1,"27":1,"34":1,"56":2,"77":1,"83":2,"85":7,"86":4,"89":1,"92":3}}],["ispar",{"2":{"85":1,"86":1}}],["ismissing",{"2":{"79":1}}],["issue",{"2":{"74":1}}],["issues",{"2":{"50":1}}],["isequal",{"2":{"22":1}}],["is",{"2":{"1":2,"2":1,"6":1,"7":1,"9":1,"13":1,"14":2,"15":1,"16":4,"21":2,"22":2,"23":3,"24":1,"27":1,"28":1,"30":2,"32":1,"33":1,"37":2,"38":1,"39":4,"43":2,"44":2,"49":2,"50":2,"51":1,"55":1,"62":1,"65":2,"66":1,"68":4,"69":1,"70":2,"71":1,"79":4,"80":1,"82":1,"85":10,"86":10,"88":1,"90":1,"94":1,"96":1}}],["if",{"2":{"0":1,"18":1,"19":1,"24":1,"37":3,"74":1,"77":1,"79":2,"83":1,"85":11,"86":6,"94":1}}],["inline",{"2":{"102":2}}],["incubes",{"2":{"86":1}}],["incs",{"2":{"86":1}}],["include",{"2":{"85":2,"86":1}}],["included",{"2":{"65":1}}],["inarbc",{"2":{"86":1}}],["inar",{"2":{"86":2}}],["inplace",{"2":{"85":3,"86":1}}],["inputcube",{"2":{"86":2}}],["inputs",{"2":{"18":1}}],["input",{"2":{"16":1,"17":1,"18":1,"20":1,"23":2,"39":1,"85":12,"86":8}}],["innerchunks",{"2":{"86":1}}],["inner",{"2":{"85":9,"86":3}}],["insize",{"2":{"86":1}}],["inside",{"2":{"85":3}}],["installed",{"2":{"90":1}}],["installation",{"0":{"88":1}}],["install",{"2":{"83":1,"88":1}}],["instead",{"2":{"8":1,"9":1,"13":1,"29":1,"34":1,"65":1,"68":1}}],["initialization",{"2":{"58":1,"98":1}}],["initially",{"2":{"22":1}}],["inds",{"2":{"86":1}}],["indeed",{"2":{"80":1}}],["indexing",{"2":{"63":2,"64":2,"80":1,"90":1}}],["index",{"2":{"58":2,"86":2,"98":2}}],["independently",{"2":{"43":1}}],["indices",{"2":{"86":1,"92":1}}],["indicate",{"2":{"85":1}}],["indicating",{"2":{"9":1,"22":1,"85":1}}],["indims=indims",{"2":{"22":1,"23":1}}],["indims",{"0":{"18":1,"19":1,"21":1},"2":{"16":8,"18":4,"20":7,"21":3,"85":7}}],["individually",{"2":{"13":2}}],["individual",{"2":{"0":1,"58":1,"59":1}}],["information",{"2":{"77":1,"86":2}}],["info",{"2":{"16":2,"27":1,"29":1,"48":1,"76":4,"79":1,"90":1}}],["introducing",{"2":{"70":1}}],["integer",{"2":{"46":1,"63":1,"64":1,"68":1}}],["interested",{"2":{"94":1}}],["internal",{"0":{"86":1},"2":{"86":9}}],["internally",{"2":{"69":1}}],["interface",{"2":{"85":2,"96":1}}],["interval",{"2":{"59":1,"62":2,"63":3,"64":4,"65":6}}],["intervalsets",{"2":{"65":1}}],["intervals",{"0":{"65":1},"2":{"34":1}}],["interactive",{"2":{"0":1}}],["int",{"2":{"30":1,"44":1,"92":3}}],["int64",{"2":{"4":4,"5":4,"6":2,"8":1,"9":1,"16":8,"17":1,"18":1,"19":1,"21":7,"25":2,"26":6,"27":2,"29":9,"30":7,"31":4,"34":15,"36":4,"37":7,"39":3,"41":1,"42":5,"44":5,"46":3,"51":6,"52":6,"54":4,"55":1,"56":19,"78":3,"79":6,"86":1,"89":2}}],["into",{"0":{"97":1},"2":{"0":1,"1":1,"2":1,"7":1,"8":1,"16":1,"22":1,"24":2,"27":1,"37":4,"44":1,"57":1,"70":2,"77":1,"80":1,"83":1,"85":6,"86":3,"102":1}}],["in",{"0":{"20":1,"40":1},"1":{"41":1,"42":1},"2":{"0":5,"1":1,"2":1,"4":2,"5":1,"9":1,"11":1,"13":1,"14":2,"16":2,"18":1,"19":1,"21":2,"22":6,"23":3,"24":2,"26":1,"27":1,"31":1,"35":1,"37":1,"39":2,"43":4,"49":2,"50":2,"53":3,"56":4,"58":2,"59":1,"62":2,"63":3,"64":4,"65":7,"66":1,"67":1,"68":5,"69":1,"70":2,"79":1,"80":1,"83":2,"85":13,"86":9,"88":1,"89":2,"92":1,"94":3,"96":4,"98":1}}],["iter",{"2":{"85":1}}],["iterate",{"2":{"96":1}}],["iteration",{"0":{"96":1}}],["iterator",{"2":{"39":1}}],["iterators",{"2":{"22":1}}],["iterable",{"2":{"39":2,"85":2}}],["itself",{"2":{"85":1,"86":1}}],["its",{"2":{"0":1}}],["it",{"2":{"0":2,"1":3,"12":1,"16":1,"18":1,"20":1,"23":2,"29":1,"31":1,"32":1,"37":2,"39":2,"43":2,"44":1,"52":1,"54":1,"56":1,"61":1,"68":2,"69":1,"71":1,"76":1,"77":1,"79":2,"80":1,"83":1,"85":10,"86":5,"88":1}}],["lscene",{"2":{"102":1}}],["lmdz",{"2":{"59":1,"61":1,"72":1,"78":1}}],["link",{"2":{"82":1}}],["linewidth=0",{"2":{"100":1,"101":1}}],["linewidth=2",{"2":{"93":2}}],["linewidth=1",{"2":{"91":1,"93":1}}],["linestyle=",{"2":{"93":2}}],["lines",{"2":{"91":1,"93":3}}],["line",{"2":{"39":1}}],["lim",{"2":{"59":1,"61":1,"72":1,"78":1}}],["libraries",{"2":{"34":1,"68":1}}],["libray",{"2":{"33":1}}],["little",{"2":{"23":1}}],["list",{"2":{"22":1,"43":5,"85":5,"86":6}}],["like",{"2":{"0":1,"39":1,"43":1,"82":1,"85":2,"86":1}}],["loopinds",{"2":{"86":2}}],["looping",{"2":{"85":1,"86":1}}],["loopcachesize",{"2":{"86":1}}],["loopchunksize",{"2":{"85":1}}],["loopaxes",{"2":{"86":1}}],["loopvars",{"2":{"85":1,"86":1}}],["loops",{"2":{"85":1}}],["loop",{"2":{"85":1,"86":2}}],["looped",{"2":{"85":3,"86":3}}],["look",{"2":{"77":1,"82":1,"83":1,"85":1,"86":1}}],["lookups",{"2":{"51":15,"52":10,"54":5,"55":5,"56":38,"66":3}}],["lookup",{"2":{"51":1,"53":1,"98":3}}],["looks",{"2":{"39":1,"43":1}}],["location",{"2":{"86":3}}],["locations",{"2":{"69":1,"70":1}}],["located",{"2":{"94":1}}],["locate",{"2":{"83":1}}],["localhost",{"2":{"83":1}}],["locally",{"0":{"83":1},"2":{"83":1}}],["local",{"2":{"23":1,"58":1}}],["lowclip",{"2":{"56":4}}],["low",{"2":{"43":4}}],["lost",{"2":{"24":1}}],["lo",{"2":{"16":4}}],["loadorgenerate",{"2":{"86":1}}],["loading",{"2":{"60":1,"80":1}}],["loaded",{"2":{"37":2}}],["load",{"2":{"16":1,"34":1,"37":2,"68":1}}],["long",{"2":{"56":1,"58":1,"59":1,"62":2,"63":3,"64":3,"65":5}}],["longitudes=longitudes",{"2":{"37":1}}],["longitudes",{"2":{"37":12}}],["longitude",{"2":{"21":1,"34":1,"60":1,"89":2}}],["lonlat",{"2":{"36":1}}],["lon=1",{"2":{"34":1,"36":1}}],["lon",{"2":{"10":2,"12":1,"13":1,"14":2,"16":10,"17":2,"18":1,"19":1,"20":1,"21":5,"22":12,"23":1,"26":2,"32":2,"34":7,"36":3,"38":4,"39":3,"46":3,"47":1,"58":2,"59":2,"61":1,"62":2,"63":3,"64":6,"65":10,"66":2,"72":1,"78":1,"98":2,"100":3}}],["lazy",{"2":{"85":1}}],["lazily",{"2":{"13":1}}],["layername",{"2":{"85":2}}],["layername=",{"2":{"79":2,"86":1}}],["layer",{"2":{"79":1,"85":1,"86":1}}],["layout",{"2":{"56":2}}],["labelled",{"2":{"85":1}}],["labels",{"2":{"56":1,"66":1,"70":1,"71":1}}],["label=false",{"2":{"56":1}}],["label=",{"2":{"56":1,"93":3}}],["label=cb",{"2":{"56":1}}],["label",{"2":{"56":3,"58":1,"98":1}}],["last",{"2":{"16":1,"23":1}}],["la",{"2":{"16":4}}],["latest",{"2":{"90":1}}],["later",{"2":{"18":1}}],["lat=5",{"2":{"34":1,"36":1}}],["latitudes=latitudes",{"2":{"37":1}}],["latitudes",{"2":{"37":11}}],["latitude",{"2":{"21":1,"34":1,"60":1,"89":2}}],["lat",{"2":{"10":2,"12":1,"13":1,"14":2,"16":7,"17":2,"18":1,"19":1,"20":1,"21":5,"22":12,"23":1,"26":2,"32":2,"34":7,"36":3,"38":4,"39":3,"46":3,"47":1,"58":2,"59":2,"61":1,"62":2,"63":3,"64":5,"65":5,"66":1,"72":1,"78":1,"85":1,"98":3,"100":1,"101":1}}],["larger",{"2":{"24":1}}],["large",{"2":{"0":2,"24":1,"50":1,"68":1}}],["learn",{"2":{"96":1}}],["learning",{"2":{"68":1,"94":1}}],["leap",{"2":{"91":1}}],["least",{"2":{"37":1,"43":1,"85":1}}],["length",{"2":{"51":2,"52":1,"54":3,"85":1,"86":3}}],["length=20",{"2":{"32":1,"89":1}}],["length=365",{"2":{"91":1}}],["length=3",{"2":{"17":1}}],["length=4",{"2":{"17":1}}],["length=15",{"2":{"10":1,"22":1,"23":1,"32":1,"46":1,"89":1}}],["length=10",{"2":{"10":1,"22":1,"23":1,"32":1,"46":1,"89":1}}],["level",{"2":{"21":1,"43":1,"74":1,"76":1,"82":1,"83":1}}],["left",{"2":{"14":2}}],["let",{"2":{"10":1,"16":2,"18":1,"19":1,"30":1,"32":1,"34":1,"36":1,"37":1,"56":1,"61":1,"92":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/previews/PR446/assets/chunks/VPLocalSearchBox.CEgQwoLi.js b/previews/PR446/assets/chunks/VPLocalSearchBox.DDjKhbek.js similarity index 99% rename from previews/PR446/assets/chunks/VPLocalSearchBox.CEgQwoLi.js rename to previews/PR446/assets/chunks/VPLocalSearchBox.DDjKhbek.js index 5cd7f576..1d404260 100644 --- a/previews/PR446/assets/chunks/VPLocalSearchBox.CEgQwoLi.js +++ b/previews/PR446/assets/chunks/VPLocalSearchBox.DDjKhbek.js @@ -1,4 +1,4 @@ -var Nt=Object.defineProperty;var Ft=(a,e,t)=>e in a?Nt(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 je,am as Mt,d as At,D as ye,an as et,ao as Lt,ap as Dt,s as zt,aq as Pt,v as Ce,P as ue,O as we,ar as jt,as as Vt,W as $t,R as Bt,$ as Wt,o as q,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 xe,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.dNXAuqoR.js";import{u as ts,d as ss}from"./theme.CcT_h3C1.js";const ns={root:()=>Ot(()=>import("./@localSearchIndexroot.BEHTyAxJ.js"),[])};/*! +var Nt=Object.defineProperty;var Ft=(a,e,t)=>e in a?Nt(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 je,am as Mt,d as At,D as ye,an as et,ao as Lt,ap as Dt,s as zt,aq as Pt,v as Ce,P as ue,O as we,ar as jt,as as Vt,W as $t,R as Bt,$ as Wt,o as q,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 xe,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.dNXAuqoR.js";import{u as ts,d as ss}from"./theme.lol215Rp.js";const ns={root:()=>Ot(()=>import("./@localSearchIndexroot.Buwh5vhl.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])"],Ie=vt.join(","),mt=typeof Element>"u",ie=mt?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,ke=!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(Ie));return t&&ie.call(e,Ie)&&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,Ie);h&&s.filter(i)&&(t||!e.includes(i))&&n.push(i);var v=i.shadowRoot||typeof s.getShadowRoot=="function"&&s.getShadowRoot(i),p=!Ne(v,!1)&&(!s.shadowRootFilter||s.shadowRootFilter(i));if(v&&p){var b=a(v===!0?i.children:v.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=ke(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:Ve.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:ms}):s=gt(e,t.includeContainer,Ve.bind(null,t)),gs(s)},ys=function(e,t){t=t||{};var s;return t.getShadowRoot?s=bt([e],t.includeContainer,{filter:Fe.bind(null,t),flatten:!0,getShadowRoot:t.getShadowRoot}):s=gt(e,t.includeContainer,Fe.bind(null,t)),s},re=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return ie.call(e,Ie)===!1?!1:Ve(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:Fe(t,e)};/*! diff --git a/previews/PR446/assets/chunks/theme.CcT_h3C1.js b/previews/PR446/assets/chunks/theme.lol215Rp.js similarity index 99% rename from previews/PR446/assets/chunks/theme.CcT_h3C1.js rename to previews/PR446/assets/chunks/theme.lol215Rp.js index a791868f..9c764b26 100644 --- a/previews/PR446/assets/chunks/theme.CcT_h3C1.js +++ b/previews/PR446/assets/chunks/theme.lol215Rp.js @@ -1,2 +1,2 @@ -const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/VPLocalSearchBox.CEgQwoLi.js","assets/chunks/framework.dNXAuqoR.js"])))=>i.map(i=>d[i]); -import{d as b,o,c as l,r as d,n as T,a as F,t as I,b as $,w as f,e as m,T as pe,_ as k,u as Se,i as Je,f as Ke,g as ve,h as y,j as p,k as i,l as J,m as ie,p as L,q as W,s as q,v as O,x as fe,y as me,z as je,A as ze,B as G,F as C,C as B,D as Le,E as x,G as g,H,I as Ie,J as ee,K as R,L as j,M as Ze,N as Ne,O as le,P as Te,Q as Ce,R as te,S as Ye,U as Xe,V as qe,W as we,X as he,Y as xe,Z as et,$ as tt,a0 as st,a1 as Me,a2 as nt,a3 as at,a4 as ot,a5 as ye}from"./framework.dNXAuqoR.js";const rt=b({__name:"VPBadge",props:{text:{},type:{default:"tip"}},setup(a){return(e,t)=>(o(),l("span",{class:T(["VPBadge",e.type])},[d(e.$slots,"default",{},()=>[F(I(e.text),1)])],2))}}),it={key:0,class:"VPBackdrop"},lt=b({__name:"VPBackdrop",props:{show:{type:Boolean}},setup(a){return(e,t)=>(o(),$(pe,{name:"fade"},{default:f(()=>[e.show?(o(),l("div",it)):m("",!0)]),_:1}))}}),ct=k(lt,[["__scopeId","data-v-b06cdb19"]]),S=Se;function ut(a,e){let t,n=!1;return()=>{t&&clearTimeout(t),n?t=setTimeout(a,e):(a(),(n=!0)&&setTimeout(()=>n=!1,e))}}function ce(a){return/^\//.test(a)?a:`/${a}`}function _e(a){const{pathname:e,search:t,hash:n,protocol:s}=new URL(a,"http://a.com");if(Je(a)||a.startsWith("#")||!s.startsWith("http")||!Ke(e))return a;const{site:r}=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 u,h;return{label:(u=e.value.locales[t.value])==null?void 0:u.label,link:((h=e.value.locales[t.value])==null?void 0:h.link)||(t.value==="root"?"/":`/${t.value}/`)}});return{localeLinks:y(()=>Object.entries(e.value.locales).flatMap(([u,h])=>c.value.label===h.label?[]:{text:h.label,link:dt(h.link||(u==="root"?"/":`/${u}/`),s.value.i18nRouting!==!1&&a,n.value.relativePath.slice(c.value.link.length-1),!e.value.cleanUrls)+r.value})),currentLang:c}}function dt(a,e,t,n){return e?a.replace(/\/$/,"")+ce(t.replace(/(^|\/)index\.md$/,"$1").replace(/\.md$/,n?".html":"")):a}const pt={class:"NotFound"},vt={class:"code"},ft={class:"title"},mt={class:"quote"},ht={class:"action"},_t=["href","aria-label"],bt=b({__name:"NotFound",setup(a){const{theme:e}=S(),{currentLang:t}=Z();return(n,s)=>{var r,c,v,u,h;return o(),l("div",pt,[p("p",vt,I(((r=i(e).notFound)==null?void 0:r.code)??"404"),1),p("h1",ft,I(((c=i(e).notFound)==null?void 0:c.title)??"PAGE NOT FOUND"),1),s[0]||(s[0]=p("div",{class:"divider"},null,-1)),p("blockquote",mt,I(((v=i(e).notFound)==null?void 0:v.quote)??"But if you don't change your direction, and if you keep looking, you may end up where you are heading."),1),p("div",ht,[p("a",{class:"link",href:i(ve)(i(t).link),"aria-label":((u=i(e).notFound)==null?void 0:u.linkLabel)??"go to home"},I(((h=i(e).notFound)==null?void 0:h.linkText)??"Take me home"),9,_t)])])}}}),gt=k(bt,[["__scopeId","data-v-951cab6c"]]);function Be(a,e){if(Array.isArray(a))return Y(a);if(a==null)return[];e=ce(e);const t=Object.keys(a).sort((s,r)=>r.split("/").length-s.split("/").length).find(s=>e.startsWith(ce(s))),n=t?a[t]:[];return Array.isArray(n)?Y(n):Y(n.items,n.base)}function kt(a){const e=[];let t=0;for(const n in a){const s=a[n];if(s.items){t=e.push(s);continue}e[t]||e.push({items:[]}),e[t].items.push(s)}return e}function $t(a){const e=[];function t(n){for(const s of n)s.text&&s.link&&e.push({text:s.text,link:s.link,docFooterText:s.docFooterText}),s.items&&t(s.items)}return t(a),e}function ue(a,e){return Array.isArray(e)?e.some(t=>ue(a,t)):J(a,e.link)?!0:e.items?ue(a,e.items):!1}function Y(a,e){return[...a].map(t=>{const n={...t},s=n.base||e;return s&&n.link&&(n.link=s+n.link),n.items&&(n.items=Y(n.items,s)),n})}function D(){const{frontmatter:a,page:e,theme:t}=S(),n=ie("(min-width: 960px)"),s=L(!1),r=y(()=>{const M=t.value.sidebar,N=e.value.relativePath;return M?Be(M,N):[]}),c=L(r.value);W(r,(M,N)=>{JSON.stringify(M)!==JSON.stringify(N)&&(c.value=r.value)});const v=y(()=>a.value.sidebar!==!1&&c.value.length>0&&a.value.layout!=="home"),u=y(()=>h?a.value.aside==null?t.value.aside==="left":a.value.aside==="left":!1),h=y(()=>a.value.layout==="home"?!1:a.value.aside!=null?!!a.value.aside:t.value.aside!==!1),A=y(()=>v.value&&n.value),_=y(()=>v.value?kt(c.value):[]);function P(){s.value=!0}function V(){s.value=!1}function w(){s.value?V():P()}return{isOpen:s,sidebar:c,sidebarGroups:_,hasSidebar:v,hasAside:h,leftAside:u,isSidebarEnabled:A,open:P,close:V,toggle:w}}function yt(a,e){let t;q(()=>{t=a.value?document.activeElement:void 0}),O(()=>{window.addEventListener("keyup",n)}),fe(()=>{window.removeEventListener("keyup",n)});function n(s){s.key==="Escape"&&a.value&&(e(),t==null||t.focus())}}function At(a){const{page:e,hash:t}=S(),n=L(!1),s=y(()=>a.value.collapsed!=null),r=y(()=>!!a.value.link),c=L(!1),v=()=>{c.value=J(e.value.relativePath,a.value.link)};W([e,a,t],v),O(v);const u=y(()=>c.value?!0:a.value.items?ue(e.value.relativePath,a.value.items):!1),h=y(()=>!!(a.value.items&&a.value.items.length));q(()=>{n.value=!!(s.value&&a.value.collapsed)}),me(()=>{(c.value||u.value)&&(n.value=!1)});function A(){s.value&&(n.value=!n.value)}return{collapsed:n,collapsible:s,isLink:r,isActiveLink:c,hasActiveLink:u,hasChildren:h,toggle:A}}function Pt(){const{hasSidebar:a}=D(),e=ie("(min-width: 960px)"),t=ie("(min-width: 1280px)");return{isAsideEnabled:y(()=>!t.value&&!e.value?!1:a.value?t.value:e.value)}}const de=[];function Ee(a){return typeof a.outline=="object"&&!Array.isArray(a.outline)&&a.outline.label||a.outlineTitle||"On this page"}function 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:Vt(t),link:"#"+t.id,level:n}});return St(e,a)}function Vt(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 St(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;u--){const h=a[u];if(h.level{requestAnimationFrame(r),window.addEventListener("scroll",n)}),je(()=>{c(location.hash)}),fe(()=>{window.removeEventListener("scroll",n)});function r(){if(!t.value)return;const v=window.scrollY,u=window.innerHeight,h=document.body.offsetHeight,A=Math.abs(v+u-h)<1,_=de.map(({element:V,link:w})=>({link:w,top:It(V)})).filter(({top:V})=>!Number.isNaN(V)).sort((V,w)=>V.top-w.top);if(!_.length){c(null);return}if(v<1){c(null);return}if(A){c(_[_.length-1].link);return}let P=null;for(const{link:V,top:w}of _){if(w>v+ze()+4)break;P=V}c(P)}function c(v){s&&s.classList.remove("active"),v==null?s=null:s=a.value.querySelector(`a[href="${decodeURIComponent(v)}"]`);const u=s;u?(u.classList.add("active"),e.value.style.top=u.offsetTop+39+"px",e.value.style.opacity="1"):(e.value.style.top="33px",e.value.style.opacity="0")}}function It(a){let e=0;for(;a!==document.body;){if(a===null)return NaN;e+=a.offsetTop,a=a.offsetParent}return e}const Nt=["href","title"],Tt=b({__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=G("VPDocOutlineItem",!0);return o(),l("ul",{class:T(["VPDocOutlineItem",t.root?"root":"nested"])},[(o(!0),l(C,null,B(t.headers,({children:r,link:c,title:v})=>(o(),l("li",null,[p("a",{class:"outline-link",href:c,onClick:e,title:v},I(v),9,Nt),r!=null&&r.length?(o(),$(s,{key:0,headers:r},null,8,["headers"])):m("",!0)]))),256))],2)}}}),Qe=k(Tt,[["__scopeId","data-v-3f927ebe"]]),Ct={class:"content"},wt={"aria-level":"2",class:"outline-title",id:"doc-outline-aria-label",role:"heading"},Mt=b({__name:"VPDocAsideOutline",setup(a){const{frontmatter:e,theme:t}=S(),n=Le([]);x(()=>{n.value=be(e.value.outline??t.value.outline)});const s=L(),r=L();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},[p("div",Ct,[p("div",{class:"outline-marker",ref_key:"marker",ref:r},null,512),p("div",wt,I(i(Ee)(i(t))),1),g(Qe,{headers:n.value,root:!0},null,8,["headers"])])],2))}}),Bt=k(Mt,[["__scopeId","data-v-b38bf2ff"]]),Et={class:"VPDocAsideCarbonAds"},Qt=b({__name:"VPDocAsideCarbonAds",props:{carbonAds:{}},setup(a){const e=()=>null;return(t,n)=>(o(),l("div",Et,[g(i(e),{"carbon-ads":t.carbonAds},null,8,["carbon-ads"])]))}}),Ft={class:"VPDocAside"},Ht=b({__name:"VPDocAside",setup(a){const{theme:e}=S();return(t,n)=>(o(),l("div",Ft,[d(t.$slots,"aside-top",{},void 0,!0),d(t.$slots,"aside-outline-before",{},void 0,!0),g(Bt),d(t.$slots,"aside-outline-after",{},void 0,!0),n[0]||(n[0]=p("div",{class:"spacer"},null,-1)),d(t.$slots,"aside-ads-before",{},void 0,!0),i(e).carbonAds?(o(),$(Qt,{key:0,"carbon-ads":i(e).carbonAds},null,8,["carbon-ads"])):m("",!0),d(t.$slots,"aside-ads-after",{},void 0,!0),d(t.$slots,"aside-bottom",{},void 0,!0)]))}}),Wt=k(Ht,[["__scopeId","data-v-6d7b3c46"]]);function Ot(){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 Dt(){const{page:a,theme:e,frontmatter:t}=S();return y(()=>{var h,A,_,P,V,w,M,N;const n=Be(e.value.sidebar,a.value.relativePath),s=$t(n),r=Ut(s,E=>E.link.replace(/[?#].*$/,"")),c=r.findIndex(E=>J(a.value.relativePath,E.link)),v=((h=e.value.docFooter)==null?void 0:h.prev)===!1&&!t.value.prev||t.value.prev===!1,u=((A=e.value.docFooter)==null?void 0:A.next)===!1&&!t.value.next||t.value.next===!1;return{prev:v?void 0:{text:(typeof t.value.prev=="string"?t.value.prev:typeof t.value.prev=="object"?t.value.prev.text:void 0)??((_=r[c-1])==null?void 0:_.docFooterText)??((P=r[c-1])==null?void 0:P.text),link:(typeof t.value.prev=="object"?t.value.prev.link:void 0)??((V=r[c-1])==null?void 0:V.link)},next:u?void 0:{text:(typeof t.value.next=="string"?t.value.next:typeof t.value.next=="object"?t.value.next.text:void 0)??((w=r[c+1])==null?void 0:w.docFooterText)??((M=r[c+1])==null?void 0:M.text),link:(typeof t.value.next=="object"?t.value.next.link:void 0)??((N=r[c+1])==null?void 0:N.link)}}})}function Ut(a,e){const t=new Set;return a.filter(n=>{const s=e(n);return t.has(s)?!1:t.add(s)})}const Q=b({__name:"VPLink",props:{tag:{},href:{},noIcon:{type:Boolean},target:{},rel:{}},setup(a){const e=a,t=y(()=>e.tag??(e.href?"a":"span")),n=y(()=>e.href&&Ie.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(()=>[d(s.$slots,"default")]),_:3},8,["class","href","target","rel"]))}}),Rt={class:"VPLastUpdated"},Gt=["datetime"],Jt=b({__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=L("");return O(()=>{q(()=>{var v,u,h;c.value=new Intl.DateTimeFormat((u=(v=e.value.lastUpdated)==null?void 0:v.formatOptions)!=null&&u.forceLocale?n.value:void 0,((h=e.value.lastUpdated)==null?void 0:h.formatOptions)??{dateStyle:"short",timeStyle:"short"}).format(s.value)})}),(v,u)=>{var h;return o(),l("p",Rt,[F(I(((h=i(e).lastUpdated)==null?void 0:h.text)||i(e).lastUpdatedText||"Last updated")+": ",1),p("time",{datetime:r.value},I(c.value),9,Gt)])}}}),Kt=k(Jt,[["__scopeId","data-v-475f71b8"]]),jt={key:0,class:"VPDocFooter"},zt={key:0,class:"edit-info"},Zt={key:0,class:"edit-link"},Yt={key:1,class:"last-updated"},Xt={key:1,class:"prev-next","aria-labelledby":"doc-footer-aria-label"},qt={class:"pager"},xt=["innerHTML"],es=["innerHTML"],ts={class:"pager"},ss=["innerHTML"],ns=["innerHTML"],as=b({__name:"VPDocFooter",setup(a){const{theme:e,page:t,frontmatter:n}=S(),s=Ot(),r=Dt(),c=y(()=>e.value.editLink&&n.value.editLink!==!1),v=y(()=>t.value.lastUpdated),u=y(()=>c.value||v.value||r.value.prev||r.value.next);return(h,A)=>{var _,P,V,w;return u.value?(o(),l("footer",jt,[d(h.$slots,"doc-footer-before",{},void 0,!0),c.value||v.value?(o(),l("div",zt,[c.value?(o(),l("div",Zt,[g(Q,{class:"edit-link-button",href:i(s).url,"no-icon":!0},{default:f(()=>[A[0]||(A[0]=p("span",{class:"vpi-square-pen edit-link-icon"},null,-1)),F(" "+I(i(s).text),1)]),_:1},8,["href"])])):m("",!0),v.value?(o(),l("div",Yt,[g(Kt)])):m("",!0)])):m("",!0),(_=i(r).prev)!=null&&_.link||(P=i(r).next)!=null&&P.link?(o(),l("nav",Xt,[A[1]||(A[1]=p("span",{class:"visually-hidden",id:"doc-footer-aria-label"},"Pager",-1)),p("div",qt,[(V=i(r).prev)!=null&&V.link?(o(),$(Q,{key:0,class:"pager-link prev",href:i(r).prev.link},{default:f(()=>{var M;return[p("span",{class:"desc",innerHTML:((M=i(e).docFooter)==null?void 0:M.prev)||"Previous page"},null,8,xt),p("span",{class:"title",innerHTML:i(r).prev.text},null,8,es)]}),_:1},8,["href"])):m("",!0)]),p("div",ts,[(w=i(r).next)!=null&&w.link?(o(),$(Q,{key:0,class:"pager-link next",href:i(r).next.link},{default:f(()=>{var M;return[p("span",{class:"desc",innerHTML:((M=i(e).docFooter)==null?void 0:M.next)||"Next page"},null,8,ss),p("span",{class:"title",innerHTML:i(r).next.text},null,8,ns)]}),_:1},8,["href"])):m("",!0)])])):m("",!0)])):m("",!0)}}}),os=k(as,[["__scopeId","data-v-4f9813fa"]]),rs={class:"container"},is={class:"aside-container"},ls={class:"aside-content"},cs={class:"content"},us={class:"content-container"},ds={class:"main"},ps=b({__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,u)=>{const h=G("Content");return o(),l("div",{class:T(["VPDoc",{"has-sidebar":i(n),"has-aside":i(s)}])},[d(v.$slots,"doc-top",{},void 0,!0),p("div",rs,[i(s)?(o(),l("div",{key:0,class:T(["aside",{"left-aside":i(r)}])},[u[0]||(u[0]=p("div",{class:"aside-curtain"},null,-1)),p("div",is,[p("div",ls,[g(Wt,null,{"aside-top":f(()=>[d(v.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[d(v.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[d(v.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[d(v.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[d(v.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[d(v.$slots,"aside-ads-after",{},void 0,!0)]),_:3})])])],2)):m("",!0),p("div",cs,[p("div",us,[d(v.$slots,"doc-before",{},void 0,!0),p("main",ds,[g(h,{class:T(["vp-doc",[c.value,i(e).externalLinkIcon&&"external-link-icon-enabled"]])},null,8,["class"])]),g(os,null,{"doc-footer-before":f(()=>[d(v.$slots,"doc-footer-before",{},void 0,!0)]),_:3}),d(v.$slots,"doc-after",{},void 0,!0)])])]),d(v.$slots,"doc-bottom",{},void 0,!0)],2)}}}),vs=k(ps,[["__scopeId","data-v-83890dd9"]]),fs=b({__name:"VPButton",props:{tag:{},size:{default:"medium"},theme:{default:"brand"},text:{},href:{},target:{},rel:{}},setup(a){const e=a,t=y(()=>e.href&&Ie.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(I(s.text),1)]),_:1},8,["class","href","target","rel"]))}}),ms=k(fs,[["__scopeId","data-v-14206e74"]]),hs=["src","alt"],_s=b({inheritAttrs:!1,__name:"VPImage",props:{image:{},alt:{}},setup(a){return(e,t)=>{const n=G("VPImage",!0);return e.image?(o(),l(C,{key:0},[typeof e.image=="string"||"src"in e.image?(o(),l("img",R({key:0,class:"VPImage"},typeof e.image=="string"?e.$attrs:{...e.image,...e.$attrs},{src:i(ve)(typeof e.image=="string"?e.image:e.image.src),alt:e.alt??(typeof e.image=="string"?"":e.image.alt||"")}),null,16,hs)):(o(),l(C,{key:1},[g(n,R({class:"dark",image:e.image.dark,alt:e.image.alt},e.$attrs),null,16,["image","alt"]),g(n,R({class:"light",image:e.image.light,alt:e.image.alt},e.$attrs),null,16,["image","alt"])],64))],64)):m("",!0)}}}),X=k(_s,[["__scopeId","data-v-35a7d0b8"]]),bs={class:"container"},gs={class:"main"},ks={key:0,class:"name"},$s=["innerHTML"],ys=["innerHTML"],As=["innerHTML"],Ps={key:0,class:"actions"},Vs={key:0,class:"image"},Ss={class:"image-container"},Ls=b({__name:"VPHero",props:{name:{},text:{},tagline:{},image:{},actions:{}},setup(a){const e=j("hero-image-slot-exists");return(t,n)=>(o(),l("div",{class:T(["VPHero",{"has-image":t.image||i(e)}])},[p("div",bs,[p("div",gs,[d(t.$slots,"home-hero-info-before",{},void 0,!0),d(t.$slots,"home-hero-info",{},()=>[t.name?(o(),l("h1",ks,[p("span",{innerHTML:t.name,class:"clip"},null,8,$s)])):m("",!0),t.text?(o(),l("p",{key:1,innerHTML:t.text,class:"text"},null,8,ys)):m("",!0),t.tagline?(o(),l("p",{key:2,innerHTML:t.tagline,class:"tagline"},null,8,As)):m("",!0)],!0),d(t.$slots,"home-hero-info-after",{},void 0,!0),t.actions?(o(),l("div",Ps,[(o(!0),l(C,null,B(t.actions,s=>(o(),l("div",{key:s.link,class:"action"},[g(ms,{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),d(t.$slots,"home-hero-actions-after",{},void 0,!0)]),t.image||i(e)?(o(),l("div",Vs,[p("div",Ss,[n[0]||(n[0]=p("div",{class:"image-bg"},null,-1)),d(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))}}),Is=k(Ls,[["__scopeId","data-v-955009fc"]]),Ns=b({__name:"VPHomeHero",setup(a){const{frontmatter:e}=S();return(t,n)=>i(e).hero?(o(),$(Is,{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(()=>[d(t.$slots,"home-hero-info-before")]),"home-hero-info":f(()=>[d(t.$slots,"home-hero-info")]),"home-hero-info-after":f(()=>[d(t.$slots,"home-hero-info-after")]),"home-hero-actions-after":f(()=>[d(t.$slots,"home-hero-actions-after")]),"home-hero-image":f(()=>[d(t.$slots,"home-hero-image")]),_:3},8,["name","text","tagline","image","actions"])):m("",!0)}}),Ts={class:"box"},Cs={key:0,class:"icon"},ws=["innerHTML"],Ms=["innerHTML"],Bs=["innerHTML"],Es={key:4,class:"link-text"},Qs={class:"link-text-value"},Fs=b({__name:"VPFeature",props:{icon:{},title:{},details:{},link:{},linkText:{},rel:{},target:{}},setup(a){return(e,t)=>(o(),$(Q,{class:"VPFeature",href:e.link,rel:e.rel,target:e.target,"no-icon":!0,tag:e.link?"a":"div"},{default:f(()=>[p("article",Ts,[typeof e.icon=="object"&&e.icon.wrap?(o(),l("div",Cs,[g(X,{image:e.icon,alt:e.icon.alt,height:e.icon.height||48,width:e.icon.width||48},null,8,["image","alt","height","width"])])):typeof e.icon=="object"?(o(),$(X,{key:1,image:e.icon,alt:e.icon.alt,height:e.icon.height||48,width:e.icon.width||48},null,8,["image","alt","height","width"])):e.icon?(o(),l("div",{key:2,class:"icon",innerHTML:e.icon},null,8,ws)):m("",!0),p("h2",{class:"title",innerHTML:e.title},null,8,Ms),e.details?(o(),l("p",{key:3,class:"details",innerHTML:e.details},null,8,Bs)):m("",!0),e.linkText?(o(),l("div",Es,[p("p",Qs,[F(I(e.linkText)+" ",1),t[0]||(t[0]=p("span",{class:"vpi-arrow-right link-text-icon"},null,-1))])])):m("",!0)])]),_:1},8,["href","rel","target","tag"]))}}),Hs=k(Fs,[["__scopeId","data-v-f5e9645b"]]),Ws={key:0,class:"VPFeatures"},Os={class:"container"},Ds={class:"items"},Us=b({__name:"VPFeatures",props:{features:{}},setup(a){const e=a,t=y(()=>{const n=e.features.length;if(n){if(n===2)return"grid-2";if(n===3)return"grid-3";if(n%3===0)return"grid-6";if(n>3)return"grid-4"}else return});return(n,s)=>n.features?(o(),l("div",Ws,[p("div",Os,[p("div",Ds,[(o(!0),l(C,null,B(n.features,r=>(o(),l("div",{key:r.title,class:T(["item",[t.value]])},[g(Hs,{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)}}),Rs=k(Us,[["__scopeId","data-v-d0a190d7"]]),Gs=b({__name:"VPHomeFeatures",setup(a){const{frontmatter:e}=S();return(t,n)=>i(e).features?(o(),$(Rs,{key:0,class:"VPHomeFeatures",features:i(e).features},null,8,["features"])):m("",!0)}}),Js=b({__name:"VPHomeContent",setup(a){const{width:e}=Ze({initialWidth:0,includeScrollbar:!1});return(t,n)=>(o(),l("div",{class:"vp-doc container",style:Ne(i(e)?{"--vp-offset":`calc(50% - ${i(e)/2}px)`}:{})},[d(t.$slots,"default",{},void 0,!0)],4))}}),Ks=k(Js,[["__scopeId","data-v-7a48a447"]]),js={class:"VPHome"},zs=b({__name:"VPHome",setup(a){const{frontmatter:e}=S();return(t,n)=>{const s=G("Content");return o(),l("div",js,[d(t.$slots,"home-hero-before",{},void 0,!0),g(Ns,null,{"home-hero-info-before":f(()=>[d(t.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[d(t.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[d(t.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[d(t.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[d(t.$slots,"home-hero-image",{},void 0,!0)]),_:3}),d(t.$slots,"home-hero-after",{},void 0,!0),d(t.$slots,"home-features-before",{},void 0,!0),g(Gs),d(t.$slots,"home-features-after",{},void 0,!0),i(e).markdownStyles!==!1?(o(),$(Ks,{key:0},{default:f(()=>[g(s)]),_:1})):(o(),$(s,{key:1}))])}}}),Zs=k(zs,[["__scopeId","data-v-cbb6ec48"]]),Ys={},Xs={class:"VPPage"};function qs(a,e){const t=G("Content");return o(),l("div",Xs,[d(a.$slots,"page-top"),g(t),d(a.$slots,"page-bottom")])}const xs=k(Ys,[["render",qs]]),en=b({__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?d(s.$slots,"not-found",{key:0},()=>[g(gt)],!0):i(t).layout==="page"?(o(),$(xs,{key:1},{"page-top":f(()=>[d(s.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[d(s.$slots,"page-bottom",{},void 0,!0)]),_:3})):i(t).layout==="home"?(o(),$(Zs,{key:2},{"home-hero-before":f(()=>[d(s.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[d(s.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[d(s.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[d(s.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[d(s.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[d(s.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[d(s.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[d(s.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[d(s.$slots,"home-features-after",{},void 0,!0)]),_:3})):i(t).layout&&i(t).layout!=="doc"?(o(),$(H(i(t).layout),{key:3})):(o(),$(vs,{key:4},{"doc-top":f(()=>[d(s.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[d(s.$slots,"doc-bottom",{},void 0,!0)]),"doc-footer-before":f(()=>[d(s.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[d(s.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[d(s.$slots,"doc-after",{},void 0,!0)]),"aside-top":f(()=>[d(s.$slots,"aside-top",{},void 0,!0)]),"aside-outline-before":f(()=>[d(s.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[d(s.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[d(s.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[d(s.$slots,"aside-ads-after",{},void 0,!0)]),"aside-bottom":f(()=>[d(s.$slots,"aside-bottom",{},void 0,!0)]),_:3}))],2))}}),tn=k(en,[["__scopeId","data-v-91765379"]]),sn={class:"container"},nn=["innerHTML"],an=["innerHTML"],on=b({__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)}])},[p("div",sn,[i(e).footer.message?(o(),l("p",{key:0,class:"message",innerHTML:i(e).footer.message},null,8,nn)):m("",!0),i(e).footer.copyright?(o(),l("p",{key:1,class:"copyright",innerHTML:i(e).footer.copyright},null,8,an)):m("",!0)])],2)):m("",!0)}}),rn=k(on,[["__scopeId","data-v-c970a860"]]);function ln(){const{theme:a,frontmatter:e}=S(),t=Le([]),n=y(()=>t.value.length>0);return x(()=>{t.value=be(e.value.outline??a.value.outline)}),{headers:t,hasLocalNav:n}}const cn={class:"menu-text"},un={class:"header"},dn={class:"outline"},pn=b({__name:"VPLocalNavOutlineDropdown",props:{headers:{},navHeight:{}},setup(a){const e=a,{theme:t}=S(),n=L(!1),s=L(0),r=L(),c=L();function v(_){var P;(P=r.value)!=null&&P.contains(_.target)||(n.value=!1)}W(n,_=>{if(_){document.addEventListener("click",v);return}document.removeEventListener("click",v)}),le("Escape",()=>{n.value=!1}),x(()=>{n.value=!1});function u(){n.value=!n.value,s.value=window.innerHeight+Math.min(window.scrollY-e.navHeight,0)}function h(_){_.target.classList.contains("outline-link")&&(c.value&&(c.value.style.transition="none"),Te(()=>{n.value=!1}))}function A(){n.value=!1,window.scrollTo({top:0,left:0,behavior:"smooth"})}return(_,P)=>(o(),l("div",{class:"VPLocalNavOutlineDropdown",style:Ne({"--vp-vh":s.value+"px"}),ref_key:"main",ref:r},[_.headers.length>0?(o(),l("button",{key:0,onClick:u,class:T({open:n.value})},[p("span",cn,I(i(Ee)(i(t))),1),P[0]||(P[0]=p("span",{class:"vpi-chevron-right icon"},null,-1))],2)):(o(),l("button",{key:1,onClick:A},I(i(t).returnToTopLabel||"Return to top"),1)),g(pe,{name:"flyout"},{default:f(()=>[n.value?(o(),l("div",{key:0,ref_key:"items",ref:c,class:"items",onClick:h},[p("div",un,[p("a",{class:"top-link",href:"#",onClick:A},I(i(t).returnToTopLabel||"Return to top"),1)]),p("div",dn,[g(Qe,{headers:_.headers},null,8,["headers"])])],512)):m("",!0)]),_:1})],4))}}),vn=k(pn,[["__scopeId","data-v-bc9dc845"]]),fn={class:"container"},mn=["aria-expanded"],hn={class:"menu-text"},_n=b({__name:"VPLocalNav",props:{open:{type:Boolean}},emits:["open-menu"],setup(a){const{theme:e,frontmatter:t}=S(),{hasSidebar:n}=D(),{headers:s}=ln(),{y:r}=Ce(),c=L(0);O(()=>{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),u=y(()=>v.value&&!n.value),h=y(()=>({VPLocalNav:!0,"has-sidebar":n.value,empty:v.value,fixed:u.value}));return(A,_)=>i(t).layout!=="home"&&(!u.value||i(r)>=c.value)?(o(),l("div",{key:0,class:T(h.value)},[p("div",fn,[i(n)?(o(),l("button",{key:0,class:"menu","aria-expanded":A.open,"aria-controls":"VPSidebarNav",onClick:_[0]||(_[0]=P=>A.$emit("open-menu"))},[_[1]||(_[1]=p("span",{class:"vpi-align-left menu-icon"},null,-1)),p("span",hn,I(i(e).sidebarMenuLabel||"Menu"),1)],8,mn)):m("",!0),g(vn,{headers:i(s),navHeight:c.value},null,8,["headers","navHeight"])])],2)):m("",!0)}}),bn=k(_n,[["__scopeId","data-v-070ab83d"]]);function gn(){const a=L(!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 kn={},$n={class:"VPSwitch",type:"button",role:"switch"},yn={class:"check"},An={key:0,class:"icon"};function Pn(a,e){return o(),l("button",$n,[p("span",yn,[a.$slots.default?(o(),l("span",An,[d(a.$slots,"default",{},void 0,!0)])):m("",!0)])])}const Vn=k(kn,[["render",Pn],["__scopeId","data-v-4a1c76db"]]),Sn=b({__name:"VPSwitchAppearance",setup(a){const{isDark:e,theme:t}=S(),n=j("toggle-appearance",()=>{e.value=!e.value}),s=L("");return me(()=>{s.value=e.value?t.value.lightModeSwitchTitle||"Switch to light theme":t.value.darkModeSwitchTitle||"Switch to dark theme"}),(r,c)=>(o(),$(Vn,{title:s.value,class:"VPSwitchAppearance","aria-checked":i(e),onClick:i(n)},{default:f(()=>c[0]||(c[0]=[p("span",{class:"vpi-sun sun"},null,-1),p("span",{class:"vpi-moon moon"},null,-1)])),_:1},8,["title","aria-checked","onClick"]))}}),ge=k(Sn,[["__scopeId","data-v-e40a8bb6"]]),Ln={key:0,class:"VPNavBarAppearance"},In=b({__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,[g(ge)])):m("",!0)}}),Nn=k(In,[["__scopeId","data-v-af096f4a"]]),ke=L();let Fe=!1,re=0;function Tn(a){const e=L(!1);if(te){!Fe&&Cn(),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||wn()})}return Ye(e)}function Cn(){document.addEventListener("focusin",He),Fe=!0,ke.value=document.activeElement}function wn(){document.removeEventListener("focusin",He)}function He(){ke.value=document.activeElement}const Mn={class:"VPMenuLink"},Bn=b({__name:"VPMenuLink",props:{item:{}},setup(a){const{page:e}=S();return(t,n)=>(o(),l("div",Mn,[g(Q,{class:T({active:i(J)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,target:t.item.target,rel:t.item.rel},{default:f(()=>[F(I(t.item.text),1)]),_:1},8,["class","href","target","rel"])]))}}),se=k(Bn,[["__scopeId","data-v-8b74d055"]]),En={class:"VPMenuGroup"},Qn={key:0,class:"title"},Fn=b({__name:"VPMenuGroup",props:{text:{},items:{}},setup(a){return(e,t)=>(o(),l("div",En,[e.text?(o(),l("p",Qn,I(e.text),1)):m("",!0),(o(!0),l(C,null,B(e.items,n=>(o(),l(C,null,["link"in n?(o(),$(se,{key:0,item:n},null,8,["item"])):m("",!0)],64))),256))]))}}),Hn=k(Fn,[["__scopeId","data-v-48c802d0"]]),Wn={class:"VPMenu"},On={key:0,class:"items"},Dn=b({__name:"VPMenu",props:{items:{}},setup(a){return(e,t)=>(o(),l("div",Wn,[e.items?(o(),l("div",On,[(o(!0),l(C,null,B(e.items,n=>(o(),l(C,{key:JSON.stringify(n)},["link"in n?(o(),$(se,{key:0,item:n},null,8,["item"])):"component"in n?(o(),$(H(n.component),R({key:1,ref_for:!0},n.props),null,16)):(o(),$(Hn,{key:2,text:n.text,items:n.items},null,8,["text","items"]))],64))),128))])):m("",!0),d(e.$slots,"default",{},void 0,!0)]))}}),Un=k(Dn,[["__scopeId","data-v-7dd3104a"]]),Rn=["aria-expanded","aria-label"],Gn={key:0,class:"text"},Jn=["innerHTML"],Kn={key:1,class:"vpi-more-horizontal icon"},jn={class:"menu"},zn=b({__name:"VPFlyout",props:{icon:{},button:{},label:{},items:{}},setup(a){const e=L(!1),t=L();Tn({el:t,onBlur:n});function n(){e.value=!1}return(s,r)=>(o(),l("div",{class:"VPFlyout",ref_key:"el",ref:t,onMouseenter:r[1]||(r[1]=c=>e.value=!0),onMouseleave:r[2]||(r[2]=c=>e.value=!1)},[p("button",{type:"button",class:"button","aria-haspopup":"true","aria-expanded":e.value,"aria-label":s.label,onClick:r[0]||(r[0]=c=>e.value=!e.value)},[s.button||s.icon?(o(),l("span",Gn,[s.icon?(o(),l("span",{key:0,class:T([s.icon,"option-icon"])},null,2)):m("",!0),s.button?(o(),l("span",{key:1,innerHTML:s.button},null,8,Jn)):m("",!0),r[3]||(r[3]=p("span",{class:"vpi-chevron-down text-icon"},null,-1))])):(o(),l("span",Kn))],8,Rn),p("div",jn,[g(Un,{items:s.items},{default:f(()=>[d(s.$slots,"default",{},void 0,!0)]),_:3},8,["items"])])],544))}}),$e=k(zn,[["__scopeId","data-v-e5380155"]]),Zn=["href","aria-label","innerHTML"],Yn=b({__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))}}),Xn=k(Yn,[["__scopeId","data-v-717b8b75"]]),qn={class:"VPSocialLinks"},xn=b({__name:"VPSocialLinks",props:{links:{}},setup(a){return(e,t)=>(o(),l("div",qn,[(o(!0),l(C,null,B(e.links,({link:n,icon:s,ariaLabel:r})=>(o(),$(Xn,{key:n,icon:s,link:n,ariaLabel:r},null,8,["icon","link","ariaLabel"]))),128))]))}}),ne=k(xn,[["__scopeId","data-v-ee7a9424"]]),ea={key:0,class:"group translations"},ta={class:"trans-title"},sa={key:1,class:"group"},na={class:"item appearance"},aa={class:"label"},oa={class:"appearance-action"},ra={key:2,class:"group"},ia={class:"item social-links"},la=b({__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",ea,[p("p",ta,I(i(s).label),1),(o(!0),l(C,null,B(i(n),u=>(o(),$(se,{key:u.link,item:u},null,8,["item"]))),128))])):m("",!0),i(e).appearance&&i(e).appearance!=="force-dark"&&i(e).appearance!=="force-auto"?(o(),l("div",sa,[p("div",na,[p("p",aa,I(i(t).darkModeSwitchLabel||"Appearance"),1),p("div",oa,[g(ge)])])])):m("",!0),i(t).socialLinks?(o(),l("div",ra,[p("div",ia,[g(ne,{class:"social-links-list",links:i(t).socialLinks},null,8,["links"])])])):m("",!0)]),_:1})):m("",!0)}}),ca=k(la,[["__scopeId","data-v-925effce"]]),ua=["aria-expanded"],da=b({__name:"VPNavBarHamburger",props:{active:{type:Boolean}},emits:["click"],setup(a){return(e,t)=>(o(),l("button",{type:"button",class:T(["VPNavBarHamburger",{active:e.active}]),"aria-label":"mobile navigation","aria-expanded":e.active,"aria-controls":"VPNavScreen",onClick:t[0]||(t[0]=n=>e.$emit("click"))},t[1]||(t[1]=[p("span",{class:"container"},[p("span",{class:"top"}),p("span",{class:"middle"}),p("span",{class:"bottom"})],-1)]),10,ua))}}),pa=k(da,[["__scopeId","data-v-5dea55bf"]]),va=["innerHTML"],fa=b({__name:"VPNavBarMenuLink",props:{item:{}},setup(a){const{page:e}=S();return(t,n)=>(o(),$(Q,{class:T({VPNavBarMenuLink:!0,active:i(J)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,noIcon:t.item.noIcon,target:t.item.target,rel:t.item.rel,tabindex:"0"},{default:f(()=>[p("span",{innerHTML:t.item.text},null,8,va)]),_:1},8,["class","href","noIcon","target","rel"]))}}),ma=k(fa,[["__scopeId","data-v-ed5ac1f6"]]),We=b({__name:"VPNavBarMenuGroup",props:{item:{}},setup(a){const e=a,{page:t}=S(),n=r=>"component"in r?!1:"link"in r?J(t.value.relativePath,r.link,!!e.item.activeMatch):r.items.some(n),s=y(()=>n(e.item));return(r,c)=>(o(),$($e,{class:T({VPNavBarMenuGroup:!0,active:i(J)(i(t).relativePath,r.item.activeMatch,!!r.item.activeMatch)||s.value}),button:r.item.text,items:r.item.items},null,8,["class","button","items"]))}}),ha={key:0,"aria-labelledby":"main-nav-aria-label",class:"VPNavBarMenu"},_a=b({__name:"VPNavBarMenu",setup(a){const{theme:e}=S();return(t,n)=>i(e).nav?(o(),l("nav",ha,[n[0]||(n[0]=p("span",{id:"main-nav-aria-label",class:"visually-hidden"}," Main Navigation ",-1)),(o(!0),l(C,null,B(i(e).nav,s=>(o(),l(C,{key:JSON.stringify(s)},["link"in s?(o(),$(ma,{key:0,item:s},null,8,["item"])):"component"in s?(o(),$(H(s.component),R({key:1,ref_for:!0},s.props),null,16)):(o(),$(We,{key:2,item:s},null,8,["item"]))],64))),128))])):m("",!0)}}),ba=k(_a,[["__scopeId","data-v-e6d46098"]]);function ga(a){const{localeIndex:e,theme:t}=S();function n(s){var w,M,N;const r=s.split("."),c=(w=t.value.search)==null?void 0:w.options,v=c&&typeof c=="object",u=v&&((N=(M=c.locales)==null?void 0:M[e.value])==null?void 0:N.translations)||null,h=v&&c.translations||null;let A=u,_=h,P=a;const V=r.pop();for(const E of r){let U=null;const K=P==null?void 0:P[E];K&&(U=P=K);const ae=_==null?void 0:_[E];ae&&(U=_=ae);const oe=A==null?void 0:A[E];oe&&(U=A=oe),K||(P=U),ae||(_=U),oe||(A=U)}return(A==null?void 0:A[V])??(_==null?void 0:_[V])??(P==null?void 0:P[V])??""}return n}const ka=["aria-label"],$a={class:"DocSearch-Button-Container"},ya={class:"DocSearch-Button-Placeholder"},Ae=b({__name:"VPNavBarSearchButton",setup(a){const t=ga({button:{buttonText:"Search",buttonAriaLabel:"Search"}});return(n,s)=>(o(),l("button",{type:"button",class:"DocSearch DocSearch-Button","aria-label":i(t)("button.buttonAriaLabel")},[p("span",$a,[s[0]||(s[0]=p("span",{class:"vp-icon DocSearch-Search-Icon"},null,-1)),p("span",ya,I(i(t)("button.buttonText")),1)]),s[1]||(s[1]=p("span",{class:"DocSearch-Button-Keys"},[p("kbd",{class:"DocSearch-Button-Key"}),p("kbd",{class:"DocSearch-Button-Key"},"K")],-1))],8,ka))}}),Aa={class:"VPNavBarSearch"},Pa={id:"local-search"},Va={key:1,id:"docsearch"},Sa=b({__name:"VPNavBarSearch",setup(a){const e=Xe(()=>qe(()=>import("./VPLocalSearchBox.CEgQwoLi.js"),__vite__mapDeps([0,1]))),t=()=>null,{theme:n}=S(),s=L(!1),r=L(!1);O(()=>{});function c(){s.value||(s.value=!0,setTimeout(v,16))}function v(){const _=new Event("keydown");_.key="k",_.metaKey=!0,window.dispatchEvent(_),setTimeout(()=>{document.querySelector(".DocSearch-Modal")||v()},16)}function u(_){const P=_.target,V=P.tagName;return P.isContentEditable||V==="INPUT"||V==="SELECT"||V==="TEXTAREA"}const h=L(!1);le("k",_=>{(_.ctrlKey||_.metaKey)&&(_.preventDefault(),h.value=!0)}),le("/",_=>{u(_)||(_.preventDefault(),h.value=!0)});const A="local";return(_,P)=>{var V;return o(),l("div",Aa,[i(A)==="local"?(o(),l(C,{key:0},[h.value?(o(),$(i(e),{key:0,onClose:P[0]||(P[0]=w=>h.value=!1)})):m("",!0),p("div",Pa,[g(Ae,{onClick:P[1]||(P[1]=w=>h.value=!0)})])],64)):i(A)==="algolia"?(o(),l(C,{key:1},[s.value?(o(),$(i(t),{key:0,algolia:((V=i(n).search)==null?void 0:V.options)??i(n).algolia,onVnodeBeforeMount:P[2]||(P[2]=w=>r.value=!0)},null,8,["algolia"])):m("",!0),r.value?m("",!0):(o(),l("div",Va,[g(Ae,{onClick:c})]))],64)):m("",!0)])}}}),La=b({__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)}}),Ia=k(La,[["__scopeId","data-v-164c457f"]]),Na=["href","rel","target"],Ta={key:1},Ca={key:2},wa=b({__name:"VPNavBarTitle",setup(a){const{site:e,theme:t}=S(),{hasSidebar:n}=D(),{currentLang:s}=Z(),r=y(()=>{var u;return typeof t.value.logoLink=="string"?t.value.logoLink:(u=t.value.logoLink)==null?void 0:u.link}),c=y(()=>{var u;return typeof t.value.logoLink=="string"||(u=t.value.logoLink)==null?void 0:u.rel}),v=y(()=>{var u;return typeof t.value.logoLink=="string"||(u=t.value.logoLink)==null?void 0:u.target});return(u,h)=>(o(),l("div",{class:T(["VPNavBarTitle",{"has-sidebar":i(n)}])},[p("a",{class:"title",href:r.value??i(_e)(i(s).link),rel:c.value,target:v.value},[d(u.$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",Ta,I(i(t).siteTitle),1)):i(t).siteTitle===void 0?(o(),l("span",Ca,I(i(e).title),1)):m("",!0),d(u.$slots,"nav-bar-title-after",{},void 0,!0)],8,Na)],2))}}),Ma=k(wa,[["__scopeId","data-v-28a961f9"]]),Ba={class:"items"},Ea={class:"title"},Qa=b({__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(()=>[p("div",Ba,[p("p",Ea,I(i(n).label),1),(o(!0),l(C,null,B(i(t),c=>(o(),$(se,{key:c.link,item:c},null,8,["item"]))),128))])]),_:1},8,["label"])):m("",!0)}}),Fa=k(Qa,[["__scopeId","data-v-c80d9ad0"]]),Ha={class:"wrapper"},Wa={class:"container"},Oa={class:"title"},Da={class:"content"},Ua={class:"content-body"},Ra=b({__name:"VPNavBar",props:{isScreenOpen:{type:Boolean}},emits:["toggle-screen"],setup(a){const e=a,{y:t}=Ce(),{hasSidebar:n}=D(),{frontmatter:s}=S(),r=L({});return me(()=>{r.value={"has-sidebar":n.value,home:s.value.layout==="home",top:t.value===0,"screen-open":e.isScreenOpen}}),(c,v)=>(o(),l("div",{class:T(["VPNavBar",r.value])},[p("div",Ha,[p("div",Wa,[p("div",Oa,[g(Ma,null,{"nav-bar-title-before":f(()=>[d(c.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[d(c.$slots,"nav-bar-title-after",{},void 0,!0)]),_:3})]),p("div",Da,[p("div",Ua,[d(c.$slots,"nav-bar-content-before",{},void 0,!0),g(Sa,{class:"search"}),g(ba,{class:"menu"}),g(Fa,{class:"translations"}),g(Nn,{class:"appearance"}),g(Ia,{class:"social-links"}),g(ca,{class:"extra"}),d(c.$slots,"nav-bar-content-after",{},void 0,!0),g(pa,{class:"hamburger",active:c.isScreenOpen,onClick:v[0]||(v[0]=u=>c.$emit("toggle-screen"))},null,8,["active"])])])])]),v[1]||(v[1]=p("div",{class:"divider"},[p("div",{class:"divider-line"})],-1))],2))}}),Ga=k(Ra,[["__scopeId","data-v-822684d1"]]),Ja={key:0,class:"VPNavScreenAppearance"},Ka={class:"text"},ja=b({__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,[p("p",Ka,I(i(t).darkModeSwitchLabel||"Appearance"),1),g(ge)])):m("",!0)}}),za=k(ja,[["__scopeId","data-v-ffb44008"]]),Za=b({__name:"VPNavScreenMenuLink",props:{item:{}},setup(a){const e=j("close-screen");return(t,n)=>(o(),$(Q,{class:"VPNavScreenMenuLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:i(e),innerHTML:t.item.text},null,8,["href","target","rel","onClick","innerHTML"]))}}),Ya=k(Za,[["__scopeId","data-v-27d04aeb"]]),Xa=b({__name:"VPNavScreenMenuGroupLink",props:{item:{}},setup(a){const e=j("close-screen");return(t,n)=>(o(),$(Q,{class:"VPNavScreenMenuGroupLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:i(e)},{default:f(()=>[F(I(t.item.text),1)]),_:1},8,["href","target","rel","onClick"]))}}),Oe=k(Xa,[["__scopeId","data-v-7179dbb7"]]),qa={class:"VPNavScreenMenuGroupSection"},xa={key:0,class:"title"},eo=b({__name:"VPNavScreenMenuGroupSection",props:{text:{},items:{}},setup(a){return(e,t)=>(o(),l("div",qa,[e.text?(o(),l("p",xa,I(e.text),1)):m("",!0),(o(!0),l(C,null,B(e.items,n=>(o(),$(Oe,{key:n.text,item:n},null,8,["item"]))),128))]))}}),to=k(eo,[["__scopeId","data-v-4b8941ac"]]),so=["aria-controls","aria-expanded"],no=["innerHTML"],ao=["id"],oo={key:0,class:"item"},ro={key:1,class:"item"},io={key:2,class:"group"},lo=b({__name:"VPNavScreenMenuGroup",props:{text:{},items:{}},setup(a){const e=a,t=L(!1),n=y(()=>`NavScreenGroup-${e.text.replace(" ","-").toLowerCase()}`);function s(){t.value=!t.value}return(r,c)=>(o(),l("div",{class:T(["VPNavScreenMenuGroup",{open:t.value}])},[p("button",{class:"button","aria-controls":n.value,"aria-expanded":t.value,onClick:s},[p("span",{class:"button-text",innerHTML:r.text},null,8,no),c[0]||(c[0]=p("span",{class:"vpi-plus button-icon"},null,-1))],8,so),p("div",{id:n.value,class:"items"},[(o(!0),l(C,null,B(r.items,v=>(o(),l(C,{key:JSON.stringify(v)},["link"in v?(o(),l("div",oo,[g(Oe,{item:v},null,8,["item"])])):"component"in v?(o(),l("div",ro,[(o(),$(H(v.component),R({ref_for:!0},v.props,{"screen-menu":""}),null,16))])):(o(),l("div",io,[g(to,{text:v.text,items:v.items},null,8,["text","items"])]))],64))),128))],8,ao)],2))}}),De=k(lo,[["__scopeId","data-v-875057a5"]]),co={key:0,class:"VPNavScreenMenu"},uo=b({__name:"VPNavScreenMenu",setup(a){const{theme:e}=S();return(t,n)=>i(e).nav?(o(),l("nav",co,[(o(!0),l(C,null,B(i(e).nav,s=>(o(),l(C,{key:JSON.stringify(s)},["link"in s?(o(),$(Ya,{key:0,item:s},null,8,["item"])):"component"in s?(o(),$(H(s.component),R({key:1,ref_for:!0},s.props,{"screen-menu":""}),null,16)):(o(),$(De,{key:2,text:s.text||"",items:s.items},null,8,["text","items"]))],64))),128))])):m("",!0)}}),po=b({__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=b({__name:"VPNavScreenTranslations",setup(a){const{localeLinks:e,currentLang:t}=Z({correspondingLink:!0}),n=L(!1);function s(){n.value=!n.value}return(r,c)=>i(e).length&&i(t).label?(o(),l("div",{key:0,class:T(["VPNavScreenTranslations",{open:n.value}])},[p("button",{class:"title",onClick:s},[c[0]||(c[0]=p("span",{class:"vpi-languages icon lang"},null,-1)),F(" "+I(i(t).label)+" ",1),c[1]||(c[1]=p("span",{class:"vpi-chevron-down icon chevron"},null,-1))]),p("ul",vo,[(o(!0),l(C,null,B(i(e),v=>(o(),l("li",{key:v.link,class:"item"},[g(Q,{class:"link",href:v.link},{default:f(()=>[F(I(v.text),1)]),_:2},1032,["href"])]))),128))])],2)):m("",!0)}}),mo=k(fo,[["__scopeId","data-v-362991c2"]]),ho={class:"container"},_o=b({__name:"VPNavScreen",props:{open:{type:Boolean}},setup(a){const e=L(null),t=we(te?document.body:null);return(n,s)=>(o(),$(pe,{name:"fade",onEnter:s[0]||(s[0]=r=>t.value=!0),onAfterLeave:s[1]||(s[1]=r=>t.value=!1)},{default:f(()=>[n.open?(o(),l("div",{key:0,class:"VPNavScreen",ref_key:"screen",ref:e,id:"VPNavScreen"},[p("div",ho,[d(n.$slots,"nav-screen-content-before",{},void 0,!0),g(uo,{class:"menu"}),g(mo,{class:"translations"}),g(za,{class:"appearance"}),g(po,{class:"social-links"}),d(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=b({__name:"VPNav",setup(a){const{isScreenOpen:e,closeScreen:t,toggleScreen:n}=gn(),{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,[g(Ga,{"is-screen-open":i(e),onToggleScreen:i(n)},{"nav-bar-title-before":f(()=>[d(c.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[d(c.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[d(c.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[d(c.$slots,"nav-bar-content-after",{},void 0,!0)]),_:3},8,["is-screen-open","onToggleScreen"]),g(bo,{open:i(e)},{"nav-screen-content-before":f(()=>[d(c.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[d(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=b({__name:"VPSidebarItem",props:{item:{},depth:{}},setup(a){const e=a,{collapsed:t,collapsible:n,isLink:s,isActiveLink:r,hasActiveLink:c,hasChildren:v,toggle:u}=At(y(()=>e.item)),h=y(()=>v.value?"section":"div"),A=y(()=>s.value?"a":"div"),_=y(()=>v.value?e.depth+2===7?"p":`h${e.depth+2}`:"p"),P=y(()=>s.value?void 0:"button"),V=y(()=>[[`level-${e.depth}`],{collapsible:n.value},{collapsed:t.value},{"is-link":s.value},{"is-active":r.value},{"has-active":c.value}]);function w(N){"key"in N&&N.key!=="Enter"||!e.item.link&&u()}function M(){e.item.link&&u()}return(N,E)=>{const U=G("VPSidebarItem",!0);return o(),$(H(h.value),{class:T(["VPSidebarItem",V.value])},{default:f(()=>[N.item.text?(o(),l("div",R({key:0,class:"item",role:P.value},xe(N.item.items?{click:w,keydown:w}:{},!0),{tabindex:N.item.items&&0}),[E[1]||(E[1]=p("div",{class:"indicator"},null,-1)),N.item.link?(o(),$(Q,{key:0,tag:A.value,class:"link",href:N.item.link,rel:N.item.rel,target:N.item.target},{default:f(()=>[(o(),$(H(_.value),{class:"text",innerHTML:N.item.text},null,8,["innerHTML"]))]),_:1},8,["tag","href","rel","target"])):(o(),$(H(_.value),{key:1,class:"text",innerHTML:N.item.text},null,8,["innerHTML"])),N.item.collapsed!=null&&N.item.items&&N.item.items.length?(o(),l("div",{key:2,class:"caret",role:"button","aria-label":"toggle section",onClick:M,onKeydown:et(M,["enter"]),tabindex:"0"},E[0]||(E[0]=[p("span",{class:"vpi-chevron-right caret-icon"},null,-1)]),32)):m("",!0)],16,yo)):m("",!0),N.item.items&&N.item.items.length?(o(),l("div",Ao,[N.depth<5?(o(!0),l(C,{key:0},B(N.item.items,K=>(o(),$(U,{key:K.text,item:K,depth:N.depth+1},null,8,["item","depth"]))),128)):m("",!0)])):m("",!0)]),_:1},8,["class"])}}}),Vo=k(Po,[["__scopeId","data-v-196b2e5f"]]),So=b({__name:"VPSidebarGroup",props:{items:{}},setup(a){const e=L(!0);let t=null;return O(()=>{t=setTimeout(()=>{t=null,e.value=!1},300)}),tt(()=>{t!=null&&(clearTimeout(t),t=null)}),(n,s)=>(o(!0),l(C,null,B(n.items,r=>(o(),l("div",{key:r.text,class:T(["group",{"no-transition":e.value}])},[g(Vo,{item:r,depth:0},null,8,["item"])],2))),128))}}),Lo=k(So,[["__scopeId","data-v-9e426adc"]]),Io={class:"nav",id:"VPSidebarNav","aria-labelledby":"sidebar-aria-label",tabindex:"-1"},No=b({__name:"VPSidebar",props:{open:{type:Boolean}},setup(a){const{sidebarGroups:e,hasSidebar:t}=D(),n=a,s=L(null),r=we(te?document.body:null);W([n,s],()=>{var v;n.open?(r.value=!0,(v=s.value)==null||v.focus()):r.value=!1},{immediate:!0,flush:"post"});const c=L(0);return W(e,()=>{c.value+=1},{deep:!0}),(v,u)=>i(t)?(o(),l("aside",{key:0,class:T(["VPSidebar",{open:v.open}]),ref_key:"navEl",ref:s,onClick:u[0]||(u[0]=st(()=>{},["stop"]))},[u[2]||(u[2]=p("div",{class:"curtain"},null,-1)),p("nav",Io,[u[1]||(u[1]=p("span",{class:"visually-hidden",id:"sidebar-aria-label"}," Sidebar Navigation ",-1)),d(v.$slots,"sidebar-nav-before",{},void 0,!0),(o(),$(Lo,{items:i(e),key:c.value},null,8,["items"])),d(v.$slots,"sidebar-nav-after",{},void 0,!0)])],2)):m("",!0)}}),To=k(No,[["__scopeId","data-v-18756405"]]),Co=b({__name:"VPSkipLink",setup(a){const e=ee(),t=L();W(()=>e.path,()=>t.value.focus());function n({target:s}){const r=document.getElementById(decodeURIComponent(s.hash).slice(1));if(r){const c=()=>{r.removeAttribute("tabindex"),r.removeEventListener("blur",c)};r.setAttribute("tabindex","-1"),r.addEventListener("blur",c),r.focus(),window.scrollTo(0,0)}}return(s,r)=>(o(),l(C,null,[p("span",{ref_key:"backToTop",ref:t,tabindex:"-1"},null,512),p("a",{href:"#VPContent",class:"VPSkipLink visually-hidden",onClick:n}," Skip to content ")],64))}}),wo=k(Co,[["__scopeId","data-v-c3508ec8"]]),Mo=b({__name:"Layout",setup(a){const{isOpen:e,open:t,close:n}=D(),s=ee();W(()=>s.path,n),yt(e,n);const{frontmatter:r}=S(),c=Me(),v=y(()=>!!c["home-hero-image"]);return he("hero-image-slot-exists",v),(u,h)=>{const A=G("Content");return i(r).layout!==!1?(o(),l("div",{key:0,class:T(["Layout",i(r).pageClass])},[d(u.$slots,"layout-top",{},void 0,!0),g(wo),g(ct,{class:"backdrop",show:i(e),onClick:i(n)},null,8,["show","onClick"]),g($o,null,{"nav-bar-title-before":f(()=>[d(u.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":f(()=>[d(u.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":f(()=>[d(u.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":f(()=>[d(u.$slots,"nav-bar-content-after",{},void 0,!0)]),"nav-screen-content-before":f(()=>[d(u.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":f(()=>[d(u.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3}),g(bn,{open:i(e),onOpenMenu:i(t)},null,8,["open","onOpenMenu"]),g(To,{open:i(e)},{"sidebar-nav-before":f(()=>[d(u.$slots,"sidebar-nav-before",{},void 0,!0)]),"sidebar-nav-after":f(()=>[d(u.$slots,"sidebar-nav-after",{},void 0,!0)]),_:3},8,["open"]),g(tn,null,{"page-top":f(()=>[d(u.$slots,"page-top",{},void 0,!0)]),"page-bottom":f(()=>[d(u.$slots,"page-bottom",{},void 0,!0)]),"not-found":f(()=>[d(u.$slots,"not-found",{},void 0,!0)]),"home-hero-before":f(()=>[d(u.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":f(()=>[d(u.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":f(()=>[d(u.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":f(()=>[d(u.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":f(()=>[d(u.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":f(()=>[d(u.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":f(()=>[d(u.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":f(()=>[d(u.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":f(()=>[d(u.$slots,"home-features-after",{},void 0,!0)]),"doc-footer-before":f(()=>[d(u.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":f(()=>[d(u.$slots,"doc-before",{},void 0,!0)]),"doc-after":f(()=>[d(u.$slots,"doc-after",{},void 0,!0)]),"doc-top":f(()=>[d(u.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":f(()=>[d(u.$slots,"doc-bottom",{},void 0,!0)]),"aside-top":f(()=>[d(u.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":f(()=>[d(u.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":f(()=>[d(u.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":f(()=>[d(u.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":f(()=>[d(u.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":f(()=>[d(u.$slots,"aside-ads-after",{},void 0,!0)]),_:3}),g(rn),d(u.$slots,"layout-bottom",{},void 0,!0)],2)):(o(),$(A,{key:1}))}}}),Bo=k(Mo,[["__scopeId","data-v-a9a9e638"]]),Eo={},Qo={class:"VPTeamPage"};function Fo(a,e){return o(),l("div",Qo,[d(a.$slots,"default")])}const Br=k(Eo,[["render",Fo],["__scopeId","data-v-c2f8e101"]]),Ho={},Wo={class:"VPTeamPageTitle"},Oo={key:0,class:"title"},Do={key:1,class:"lead"};function Uo(a,e){return o(),l("div",Wo,[a.$slots.title?(o(),l("h1",Oo,[d(a.$slots,"title",{},void 0,!0)])):m("",!0),a.$slots.lead?(o(),l("p",Do,[d(a.$slots,"lead",{},void 0,!0)])):m("",!0)])}const Er=k(Ho,[["render",Uo],["__scopeId","data-v-e277e15c"]]),Ro={},Go={class:"VPTeamPageSection"},Jo={class:"title"},Ko={key:0,class:"title-text"},jo={key:0,class:"lead"},zo={key:1,class:"members"};function Zo(a,e){return o(),l("section",Go,[p("div",Jo,[e[0]||(e[0]=p("div",{class:"title-line"},null,-1)),a.$slots.title?(o(),l("h2",Ko,[d(a.$slots,"title",{},void 0,!0)])):m("",!0)]),a.$slots.lead?(o(),l("p",jo,[d(a.$slots,"lead",{},void 0,!0)])):m("",!0),a.$slots.members?(o(),l("div",zo,[d(a.$slots,"members",{},void 0,!0)])):m("",!0)])}const Qr=k(Ro,[["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=b({__name:"VPTeamMembersItem",props:{size:{default:"medium"},member:{}},setup(a){return(e,t)=>(o(),l("article",{class:T(["VPTeamMembersItem",[e.size]])},[p("div",Yo,[p("figure",Xo,[p("img",{class:"avatar-img",src:e.member.avatar,alt:e.member.name},null,8,qo)]),p("div",xo,[p("h1",er,I(e.member.name),1),e.member.title||e.member.org?(o(),l("p",tr,[e.member.title?(o(),l("span",sr,I(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(I(e.member.org),1)]),_:1},8,["class","href"])):m("",!0)])):m("",!0),e.member.desc?(o(),l("p",{key:1,class:"desc",innerHTML:e.member.desc},null,8,ar)):m("",!0),e.member.links?(o(),l("div",or,[g(ne,{links:e.member.links},null,8,["links"])])):m("",!0)])]),e.member.sponsor?(o(),l("div",rr,[g(Q,{class:"sp-link",href:e.member.sponsor,"no-icon":""},{default:f(()=>[t[0]||(t[0]=p("span",{class:"vpi-heart sp-icon"},null,-1)),F(" "+I(e.member.actionText||"Sponsor"),1)]),_:1},8,["href"])])):m("",!0)],2))}}),lr=k(ir,[["__scopeId","data-v-f9987cb6"]]),cr={class:"container"},ur=b({__name:"VPTeamMembers",props:{size:{default:"medium"},members:{}},setup(a){const e=a,t=y(()=>[e.size,`count-${e.members.length}`]);return(n,s)=>(o(),l("div",{class:T(["VPTeamMembers",t.value])},[p("div",cr,[(o(!0),l(C,null,B(n.members,r=>(o(),l("div",{key:r.name,class:"item"},[g(lr,{size:n.size,member:r},null,8,["size","member"])]))),128))])],2))}}),Fr=k(ur,[["__scopeId","data-v-fba19bad"]]),Pe={Layout:Bo,enhanceApp:({app:a})=>{a.component("Badge",rt)}},dr={},pr={style:{"text-align":"center"}};function vr(a,e){const t=G("font");return o(),l(C,null,[e[1]||(e[1]=p("br",null,null,-1)),p("h1",pr,[p("strong",null,[g(t,{color:"orange"},{default:f(()=>e[0]||(e[0]=[F(" Package Ecosystem")])),_:1})])]),e[2]||(e[2]=nt('

Read n-d array like-data

DiskArrays.jl

Get your chunks!

Named Dimensions

DimensionalData.jl

Select & Index!

Out of memory data

Zarr.jl

Chunkerd, compressed !

Rasterized spatial data

Rasters.jl

Read and manipulate !

Array-oriented data

NetCDF.jl

Scientific binary data.

Raster and vector data

ArchGDAL.jl

GDAL in Julia.

An interface for

GeoInterface.jl

geospatial data in Julia.

A higher level interface

GRIBDatasets.jl

for reading GRIB files.

Array-oriented data

NCDatasets.jl

Scientific binary data.

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

Read n-d array like-data

DiskArrays.jl

Get your chunks!

Named Dimensions

DimensionalData.jl

Select & Index!

Out of memory data

Zarr.jl

Chunkerd, compressed !

Rasterized spatial data

Rasters.jl

Read and manipulate !

Array-oriented data

NetCDF.jl

Scientific binary data.

Raster and vector data

ArchGDAL.jl

GDAL in Julia.

An interface for

GeoInterface.jl

geospatial data in Julia.

A higher level interface

GRIBDatasets.jl

for reading GRIB files.

Array-oriented data

NCDatasets.jl

Scientific binary data.

',9))],64)}const fr=k(dr,[["render",vr]]),mr=b({__name:"VersionPicker",props:{screenMenu:{type:Boolean}},setup(a){const e=L([]),t=L("Versions"),n=L(!1);Se();const s=()=>typeof window<"u"&&(window.location.hostname==="localhost"||window.location.hostname==="127.0.0.1"),r=()=>{if(typeof window>"u")return"";const{origin:u,pathname:h}=window.location;if(u.includes("github.io")){const A=h.split("/").filter(Boolean),_=A.length>0?`/${A[0]}/`:"/";return`${u}${_}`}else return u},c=()=>new Promise(u=>{if(s()){u(!1);return}const h=setInterval(()=>{window.DOC_VERSIONS&&window.DOCUMENTER_CURRENT_VERSION&&(clearInterval(h),u(!0))},100);setTimeout(()=>{clearInterval(h),u(!1)},5e3)});return O(async()=>{if(!(typeof window>"u")){try{if(s()){const u=["dev"];e.value=u.map(h=>({text:h,link:"/"})),t.value="dev"}else{const u=await c(),h=y(()=>r());if(u&&window.DOC_VERSIONS&&window.DOCUMENTER_CURRENT_VERSION)e.value=window.DOC_VERSIONS.map(A=>({text:A,link:`${h.value}/${A}/`})),t.value=window.DOCUMENTER_CURRENT_VERSION;else{const A=["dev"];e.value=A.map(_=>({text:_,link:`${h.value}/${_}/`})),t.value="dev"}}}catch(u){console.warn("Error loading versions:",u);const h=["dev"],A=y(()=>r());e.value=h.map(_=>({text:_,link:`${A.value}/${_}/`})),t.value="dev"}n.value=!0}}),(u,h)=>n.value?(o(),l(C,{key:0},[!u.screenMenu&&e.value.length>0?(o(),$(We,{key:0,item:{text:t.value,items:e.value},class:"VPVersionPicker"},null,8,["item"])):u.screenMenu&&e.value.length>0?(o(),$(De,{key:1,text:t.value,items:e.value,class:"VPVersionPicker"},null,8,["text","items"])):m("",!0)],64)):m("",!0)}}),hr=k(mr,[["__scopeId","data-v-f465cb49"]]),_r=a=>{if(typeof document>"u")return{stabilizeScrollPosition:s=>async(...r)=>s(...r)};const e=document.documentElement;return{stabilizeScrollPosition:n=>async(...s)=>{const r=n(...s),c=a.value;if(!c)return r;const v=c.offsetTop-e.scrollTop;return await Te(),e.scrollTop=c.offsetTop-v,r}}},Ue="vitepress:tabSharedState",z=typeof localStorage<"u"?localStorage:null,Re="vitepress:tabsSharedState",br=()=>{const a=z==null?void 0:z.getItem(Re);if(a)try{return JSON.parse(a)}catch{}return{}},gr=a=>{z&&z.setItem(Re,JSON.stringify(a))},kr=a=>{const e=at({});W(()=>e.content,(t,n)=>{t&&n&&gr(t)},{deep:!0}),a.provide(Ue,e)},$r=(a,e)=>{const t=j(Ue);if(!t)throw new Error("[vitepress-plugin-tabs] TabsSharedState should be injected");O(()=>{t.content||(t.content=br())});const n=L(),s=y({get(){var u;const c=e.value,v=a.value;if(c){const h=(u=t.content)==null?void 0:u[c];if(h&&v.includes(h))return h}else{const h=n.value;if(h)return h}return v[0]},set(c){const v=e.value;v?t.content&&(t.content[v]=c):n.value=c}});return{selected:s,select:c=>{s.value=c}}};let Ve=0;const yr=()=>(Ve++,""+Ve);function Ar(){const a=Me();return y(()=>{var n;const t=(n=a.default)==null?void 0:n.call(a);return t?t.filter(s=>typeof s.type=="object"&&"__name"in s.type&&s.type.__name==="PluginTabsTab"&&s.props).map(s=>{var r;return(r=s.props)==null?void 0:r.label}):[]})}const Ge="vitepress:tabSingleState",Pr=a=>{he(Ge,a)},Vr=()=>{const a=j(Ge);if(!a)throw new Error("[vitepress-plugin-tabs] TabsSingleState should be injected");return a},Sr={class:"plugin-tabs"},Lr=["id","aria-selected","aria-controls","tabindex","onClick"],Ir=b({__name:"PluginTabs",props:{sharedStateKey:{}},setup(a){const e=a,t=Ar(),{selected:n,select:s}=$r(t,ot(e,"sharedStateKey")),r=L(),{stabilizeScrollPosition:c}=_r(r),v=c(s),u=L([]),h=_=>{var w;const P=t.value.indexOf(n.value);let V;_.key==="ArrowLeft"?V=P>=1?P-1:t.value.length-1:_.key==="ArrowRight"&&(V=P(o(),l("div",Sr,[p("div",{ref_key:"tablist",ref:r,class:"plugin-tabs--tab-list",role:"tablist",onKeydown:h},[(o(!0),l(C,null,B(i(t),V=>(o(),l("button",{id:`tab-${V}-${i(A)}`,ref_for:!0,ref_key:"buttonRefs",ref:u,key:V,role:"tab",class:"plugin-tabs--tab","aria-selected":V===i(n),"aria-controls":`panel-${V}-${i(A)}`,tabindex:V===i(n)?0:-1,onClick:()=>i(v)(V)},I(V),9,Lr))),128))],544),d(_.$slots,"default")]))}}),Nr=["id","aria-labelledby"],Tr=b({__name:"PluginTabsTab",props:{label:{}},setup(a){const{uid:e,selected:t}=Vr();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)}`},[d(n.$slots,"default",{},void 0,!0)],8,Nr)):m("",!0)}}),Cr=k(Tr,[["__scopeId","data-v-9b0d03d2"]]),wr=a=>{kr(a),a.component("PluginTabs",Ir),a.component("PluginTabsTab",Cr)},Hr={extends:Pe,Layout(){return ye(Pe.Layout,null,{"aside-ads-before":()=>ye(fr)})},enhanceApp({app:a,router:e,siteData:t}){wr(a),a.component("VersionPicker",hr)}};export{Hr as R,Er as V,Fr as a,Qr as b,Br as c,ga as d,S as u}; diff --git a/previews/PR446/assets/development_contributors.md.DMCLwn2a.js b/previews/PR446/assets/development_contributors.md.DbSRx23D.js similarity index 98% rename from previews/PR446/assets/development_contributors.md.DMCLwn2a.js rename to previews/PR446/assets/development_contributors.md.DbSRx23D.js index 179cf3ff..44b7a806 100644 --- a/previews/PR446/assets/development_contributors.md.DMCLwn2a.js +++ b/previews/PR446/assets/development_contributors.md.DbSRx23D.js @@ -1 +1 @@ -import{V as u,a as l,b as m,c as g}from"./chunks/theme.CcT_h3C1.js";import{c as h,G as r,w as s,k as n,B as c,o as b,a as e,j as t}from"./chunks/framework.dNXAuqoR.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://github.com/avatars/u/17124431?v=4",name:"Felix Cremer",title:"PhD Candidate in Remote Sensing",links:[{icon:"github",link:"https://github.com/felixcremer"}]},{avatar:"https://github.com/avatars/u/2534009?v=4",name:"Rafael Schouten",title:"Spatial/ecological modelling",links:[{icon:"github",link:"https://github.com/rafaqz"}]},{avatar:"https://github.com/avatars/u/19525261?v=4",name:"Lazaro Alonso",title:"Scientist. Data Visualization",links:[{icon:"github",link:"https://github.com/lazarusA"},{icon:"x",link:"https://twitter.com/LazarusAlon"},{icon:"linkedin",link:"https://www.linkedin.com/in/lazaro-alonso/"},{icon:"mastodon",link:"https://julialang.social/@LazaroAlonso"}]}];return(d,a)=>{const i=c("font");return b(),h("div",null,[r(n(g),null,{default:s(()=>[r(n(u),null,{title:s(()=>a[0]||(a[0]=[e("Contributors")])),lead:s(()=>[a[8]||(a[8]=t("strong",null,"Current core contributors ",-1)),a[9]||(a[9]=e()),a[10]||(a[10]=t("br",null,null,-1)),t("div",p,[a[4]||(a[4]=e(" They have taking the lead for the ongoing organizational maintenance and technical direction of ")),r(i,{color:"orange"},{default:s(()=>a[1]||(a[1]=[e("YAXArrays.jl")])),_:1}),a[5]||(a[5]=e(", ")),r(i,{color:"orange"},{default:s(()=>a[2]||(a[2]=[e("DiskArrays.jl")])),_:1}),a[6]||(a[6]=e(" and ")),r(i,{color:"orange"},{default:s(()=>a[3]||(a[3]=[e("DimensionalData.jl")])),_:1}),a[7]||(a[7]=e(". "))])]),_:1}),r(n(l),{size:"small",members:o}),r(n(m),null,{title:s(()=>a[11]||(a[11]=[e("Our valuable contributors")])),lead:s(()=>a[12]||(a[12]=[e(" We appreciate all contributions from the Julia community so that this ecosystem can thrive."),t("br",null,null,-1)])),members:s(()=>a[13]||(a[13]=[t("div",{class:"row"},[t("a",{href:"https://github.com/meggart",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/2539563?v=4"})]),t("a",{href:"https://github.com/felixcremer",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/17124431?v=4"})]),t("a",{href:"https://github.com/lazarusA",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/19525261?v=4"})]),t("a",{href:"https://github.com/gdkrmr",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/12512930?v=4"})]),t("a",{href:"https://github.com/apps/github-actions",target:"_blank"},[t("img",{src:"https://github.com/avatars/in/15368?v=4"})]),t("a",{href:"https://github.com/pdimens",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/19176506?v=4"})]),t("a",{href:"https://github.com/twinGu",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/29449917?v=4"})]),t("a",{href:"https://github.com/dpabon",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/13040959?v=4"})]),t("a",{href:"https://github.com/Qfl3x",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/20775896?v=4"})]),t("a",{href:"https://github.com/kongdd",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/9815742?v=4"})]),t("a",{href:"https://github.com/MartinuzziFrancesco",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/10376688?v=4"})]),t("a",{href:"https://github.com/Sonicious",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/16307399?v=4"})]),t("a",{href:"https://github.com/rafaqz",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/2534009?v=4"})]),t("a",{href:"https://github.com/danlooo",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/5780565?v=4"})]),t("a",{href:"https://github.com/MarkusZehner",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/56972144?v=4"})]),t("a",{href:"https://github.com/Balinus",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/3630311?v=4"})]),t("a",{href:"https://github.com/singularitti",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/25192197?v=4"})]),t("a",{href:"https://github.com/ckrich",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/28727495?v=4"})]),t("a",{href:"https://github.com/apps/femtocleaner",target:"_blank"},[t("img",{src:"https://github.com/avatars/in/4123?v=4"})]),t("a",{href:"https://github.com/ikselven",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/10441332?v=4"})]),t("a",{href:"https://github.com/linamaes",target:"_blank"},[t("img",{src:"https://github.com/avatars/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.lol215Rp.js";import{c as h,G as r,w as s,k as n,B as c,o as b,a as e,j as t}from"./chunks/framework.dNXAuqoR.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://github.com/avatars/u/17124431?v=4",name:"Felix Cremer",title:"PhD Candidate in Remote Sensing",links:[{icon:"github",link:"https://github.com/felixcremer"}]},{avatar:"https://github.com/avatars/u/2534009?v=4",name:"Rafael Schouten",title:"Spatial/ecological modelling",links:[{icon:"github",link:"https://github.com/rafaqz"}]},{avatar:"https://github.com/avatars/u/19525261?v=4",name:"Lazaro Alonso",title:"Scientist. Data Visualization",links:[{icon:"github",link:"https://github.com/lazarusA"},{icon:"x",link:"https://twitter.com/LazarusAlon"},{icon:"linkedin",link:"https://www.linkedin.com/in/lazaro-alonso/"},{icon:"mastodon",link:"https://julialang.social/@LazaroAlonso"}]}];return(d,a)=>{const i=c("font");return b(),h("div",null,[r(n(g),null,{default:s(()=>[r(n(u),null,{title:s(()=>a[0]||(a[0]=[e("Contributors")])),lead:s(()=>[a[8]||(a[8]=t("strong",null,"Current core contributors ",-1)),a[9]||(a[9]=e()),a[10]||(a[10]=t("br",null,null,-1)),t("div",p,[a[4]||(a[4]=e(" They have taking the lead for the ongoing organizational maintenance and technical direction of ")),r(i,{color:"orange"},{default:s(()=>a[1]||(a[1]=[e("YAXArrays.jl")])),_:1}),a[5]||(a[5]=e(", ")),r(i,{color:"orange"},{default:s(()=>a[2]||(a[2]=[e("DiskArrays.jl")])),_:1}),a[6]||(a[6]=e(" and ")),r(i,{color:"orange"},{default:s(()=>a[3]||(a[3]=[e("DimensionalData.jl")])),_:1}),a[7]||(a[7]=e(". "))])]),_:1}),r(n(l),{size:"small",members:o}),r(n(m),null,{title:s(()=>a[11]||(a[11]=[e("Our valuable contributors")])),lead:s(()=>a[12]||(a[12]=[e(" We appreciate all contributions from the Julia community so that this ecosystem can thrive."),t("br",null,null,-1)])),members:s(()=>a[13]||(a[13]=[t("div",{class:"row"},[t("a",{href:"https://github.com/meggart",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/2539563?v=4"})]),t("a",{href:"https://github.com/felixcremer",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/17124431?v=4"})]),t("a",{href:"https://github.com/lazarusA",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/19525261?v=4"})]),t("a",{href:"https://github.com/gdkrmr",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/12512930?v=4"})]),t("a",{href:"https://github.com/apps/github-actions",target:"_blank"},[t("img",{src:"https://github.com/avatars/in/15368?v=4"})]),t("a",{href:"https://github.com/pdimens",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/19176506?v=4"})]),t("a",{href:"https://github.com/twinGu",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/29449917?v=4"})]),t("a",{href:"https://github.com/dpabon",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/13040959?v=4"})]),t("a",{href:"https://github.com/Qfl3x",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/20775896?v=4"})]),t("a",{href:"https://github.com/kongdd",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/9815742?v=4"})]),t("a",{href:"https://github.com/MartinuzziFrancesco",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/10376688?v=4"})]),t("a",{href:"https://github.com/Sonicious",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/16307399?v=4"})]),t("a",{href:"https://github.com/rafaqz",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/2534009?v=4"})]),t("a",{href:"https://github.com/danlooo",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/5780565?v=4"})]),t("a",{href:"https://github.com/MarkusZehner",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/56972144?v=4"})]),t("a",{href:"https://github.com/Balinus",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/3630311?v=4"})]),t("a",{href:"https://github.com/singularitti",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/25192197?v=4"})]),t("a",{href:"https://github.com/ckrich",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/28727495?v=4"})]),t("a",{href:"https://github.com/apps/femtocleaner",target:"_blank"},[t("img",{src:"https://github.com/avatars/in/4123?v=4"})]),t("a",{href:"https://github.com/ikselven",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/10441332?v=4"})]),t("a",{href:"https://github.com/linamaes",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/7131773?v=4"})])],-1)])),_:1})]),_:1})])}}});export{z as __pageData,j as default}; diff --git a/previews/PR446/assets/development_contributors.md.DMCLwn2a.lean.js b/previews/PR446/assets/development_contributors.md.DbSRx23D.lean.js similarity index 98% rename from previews/PR446/assets/development_contributors.md.DMCLwn2a.lean.js rename to previews/PR446/assets/development_contributors.md.DbSRx23D.lean.js index 179cf3ff..44b7a806 100644 --- a/previews/PR446/assets/development_contributors.md.DMCLwn2a.lean.js +++ b/previews/PR446/assets/development_contributors.md.DbSRx23D.lean.js @@ -1 +1 @@ -import{V as u,a as l,b as m,c as g}from"./chunks/theme.CcT_h3C1.js";import{c as h,G as r,w as s,k as n,B as c,o as b,a as e,j as t}from"./chunks/framework.dNXAuqoR.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://github.com/avatars/u/17124431?v=4",name:"Felix Cremer",title:"PhD Candidate in Remote Sensing",links:[{icon:"github",link:"https://github.com/felixcremer"}]},{avatar:"https://github.com/avatars/u/2534009?v=4",name:"Rafael Schouten",title:"Spatial/ecological modelling",links:[{icon:"github",link:"https://github.com/rafaqz"}]},{avatar:"https://github.com/avatars/u/19525261?v=4",name:"Lazaro Alonso",title:"Scientist. Data Visualization",links:[{icon:"github",link:"https://github.com/lazarusA"},{icon:"x",link:"https://twitter.com/LazarusAlon"},{icon:"linkedin",link:"https://www.linkedin.com/in/lazaro-alonso/"},{icon:"mastodon",link:"https://julialang.social/@LazaroAlonso"}]}];return(d,a)=>{const i=c("font");return b(),h("div",null,[r(n(g),null,{default:s(()=>[r(n(u),null,{title:s(()=>a[0]||(a[0]=[e("Contributors")])),lead:s(()=>[a[8]||(a[8]=t("strong",null,"Current core contributors ",-1)),a[9]||(a[9]=e()),a[10]||(a[10]=t("br",null,null,-1)),t("div",p,[a[4]||(a[4]=e(" They have taking the lead for the ongoing organizational maintenance and technical direction of ")),r(i,{color:"orange"},{default:s(()=>a[1]||(a[1]=[e("YAXArrays.jl")])),_:1}),a[5]||(a[5]=e(", ")),r(i,{color:"orange"},{default:s(()=>a[2]||(a[2]=[e("DiskArrays.jl")])),_:1}),a[6]||(a[6]=e(" and ")),r(i,{color:"orange"},{default:s(()=>a[3]||(a[3]=[e("DimensionalData.jl")])),_:1}),a[7]||(a[7]=e(". "))])]),_:1}),r(n(l),{size:"small",members:o}),r(n(m),null,{title:s(()=>a[11]||(a[11]=[e("Our valuable contributors")])),lead:s(()=>a[12]||(a[12]=[e(" We appreciate all contributions from the Julia community so that this ecosystem can thrive."),t("br",null,null,-1)])),members:s(()=>a[13]||(a[13]=[t("div",{class:"row"},[t("a",{href:"https://github.com/meggart",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/2539563?v=4"})]),t("a",{href:"https://github.com/felixcremer",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/17124431?v=4"})]),t("a",{href:"https://github.com/lazarusA",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/19525261?v=4"})]),t("a",{href:"https://github.com/gdkrmr",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/12512930?v=4"})]),t("a",{href:"https://github.com/apps/github-actions",target:"_blank"},[t("img",{src:"https://github.com/avatars/in/15368?v=4"})]),t("a",{href:"https://github.com/pdimens",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/19176506?v=4"})]),t("a",{href:"https://github.com/twinGu",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/29449917?v=4"})]),t("a",{href:"https://github.com/dpabon",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/13040959?v=4"})]),t("a",{href:"https://github.com/Qfl3x",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/20775896?v=4"})]),t("a",{href:"https://github.com/kongdd",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/9815742?v=4"})]),t("a",{href:"https://github.com/MartinuzziFrancesco",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/10376688?v=4"})]),t("a",{href:"https://github.com/Sonicious",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/16307399?v=4"})]),t("a",{href:"https://github.com/rafaqz",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/2534009?v=4"})]),t("a",{href:"https://github.com/danlooo",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/5780565?v=4"})]),t("a",{href:"https://github.com/MarkusZehner",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/56972144?v=4"})]),t("a",{href:"https://github.com/Balinus",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/3630311?v=4"})]),t("a",{href:"https://github.com/singularitti",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/25192197?v=4"})]),t("a",{href:"https://github.com/ckrich",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/28727495?v=4"})]),t("a",{href:"https://github.com/apps/femtocleaner",target:"_blank"},[t("img",{src:"https://github.com/avatars/in/4123?v=4"})]),t("a",{href:"https://github.com/ikselven",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/10441332?v=4"})]),t("a",{href:"https://github.com/linamaes",target:"_blank"},[t("img",{src:"https://github.com/avatars/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.lol215Rp.js";import{c as h,G as r,w as s,k as n,B as c,o as b,a as e,j as t}from"./chunks/framework.dNXAuqoR.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://github.com/avatars/u/17124431?v=4",name:"Felix Cremer",title:"PhD Candidate in Remote Sensing",links:[{icon:"github",link:"https://github.com/felixcremer"}]},{avatar:"https://github.com/avatars/u/2534009?v=4",name:"Rafael Schouten",title:"Spatial/ecological modelling",links:[{icon:"github",link:"https://github.com/rafaqz"}]},{avatar:"https://github.com/avatars/u/19525261?v=4",name:"Lazaro Alonso",title:"Scientist. Data Visualization",links:[{icon:"github",link:"https://github.com/lazarusA"},{icon:"x",link:"https://twitter.com/LazarusAlon"},{icon:"linkedin",link:"https://www.linkedin.com/in/lazaro-alonso/"},{icon:"mastodon",link:"https://julialang.social/@LazaroAlonso"}]}];return(d,a)=>{const i=c("font");return b(),h("div",null,[r(n(g),null,{default:s(()=>[r(n(u),null,{title:s(()=>a[0]||(a[0]=[e("Contributors")])),lead:s(()=>[a[8]||(a[8]=t("strong",null,"Current core contributors ",-1)),a[9]||(a[9]=e()),a[10]||(a[10]=t("br",null,null,-1)),t("div",p,[a[4]||(a[4]=e(" They have taking the lead for the ongoing organizational maintenance and technical direction of ")),r(i,{color:"orange"},{default:s(()=>a[1]||(a[1]=[e("YAXArrays.jl")])),_:1}),a[5]||(a[5]=e(", ")),r(i,{color:"orange"},{default:s(()=>a[2]||(a[2]=[e("DiskArrays.jl")])),_:1}),a[6]||(a[6]=e(" and ")),r(i,{color:"orange"},{default:s(()=>a[3]||(a[3]=[e("DimensionalData.jl")])),_:1}),a[7]||(a[7]=e(". "))])]),_:1}),r(n(l),{size:"small",members:o}),r(n(m),null,{title:s(()=>a[11]||(a[11]=[e("Our valuable contributors")])),lead:s(()=>a[12]||(a[12]=[e(" We appreciate all contributions from the Julia community so that this ecosystem can thrive."),t("br",null,null,-1)])),members:s(()=>a[13]||(a[13]=[t("div",{class:"row"},[t("a",{href:"https://github.com/meggart",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/2539563?v=4"})]),t("a",{href:"https://github.com/felixcremer",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/17124431?v=4"})]),t("a",{href:"https://github.com/lazarusA",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/19525261?v=4"})]),t("a",{href:"https://github.com/gdkrmr",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/12512930?v=4"})]),t("a",{href:"https://github.com/apps/github-actions",target:"_blank"},[t("img",{src:"https://github.com/avatars/in/15368?v=4"})]),t("a",{href:"https://github.com/pdimens",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/19176506?v=4"})]),t("a",{href:"https://github.com/twinGu",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/29449917?v=4"})]),t("a",{href:"https://github.com/dpabon",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/13040959?v=4"})]),t("a",{href:"https://github.com/Qfl3x",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/20775896?v=4"})]),t("a",{href:"https://github.com/kongdd",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/9815742?v=4"})]),t("a",{href:"https://github.com/MartinuzziFrancesco",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/10376688?v=4"})]),t("a",{href:"https://github.com/Sonicious",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/16307399?v=4"})]),t("a",{href:"https://github.com/rafaqz",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/2534009?v=4"})]),t("a",{href:"https://github.com/danlooo",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/5780565?v=4"})]),t("a",{href:"https://github.com/MarkusZehner",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/56972144?v=4"})]),t("a",{href:"https://github.com/Balinus",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/3630311?v=4"})]),t("a",{href:"https://github.com/singularitti",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/25192197?v=4"})]),t("a",{href:"https://github.com/ckrich",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/28727495?v=4"})]),t("a",{href:"https://github.com/apps/femtocleaner",target:"_blank"},[t("img",{src:"https://github.com/avatars/in/4123?v=4"})]),t("a",{href:"https://github.com/ikselven",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/10441332?v=4"})]),t("a",{href:"https://github.com/linamaes",target:"_blank"},[t("img",{src:"https://github.com/avatars/u/7131773?v=4"})])],-1)])),_:1})]),_:1})])}}});export{z as __pageData,j as default}; diff --git a/previews/PR446/development/contribute.html b/previews/PR446/development/contribute.html index 57dac8de..e2731bc2 100644 --- a/previews/PR446/development/contribute.html +++ b/previews/PR446/development/contribute.html @@ -8,9 +8,9 @@ - + - + @@ -23,7 +23,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/PR446/development/contributors.html b/previews/PR446/development/contributors.html index 557fc8d4..26851873 100644 --- a/previews/PR446/development/contributors.html +++ b/previews/PR446/development/contributors.html @@ -8,11 +8,11 @@ - + - + - + @@ -21,7 +21,7 @@
Skip to content

Contributors

Current core contributors

They have taking the lead for the ongoing organizational maintenance and technical direction of , and .

Fabian Gans

Fabian Gans

Geoscientific Programmer

Felix Cremer

Felix Cremer

PhD Candidate in Remote Sensing

Rafael Schouten

Rafael Schouten

Spatial/ecological modelling

Lazaro Alonso

Lazaro Alonso

Scientist. Data Visualization

Our valuable contributors

We appreciate all contributions from the Julia community so that this ecosystem can thrive.

- + \ No newline at end of file diff --git a/previews/PR446/get_started.html b/previews/PR446/get_started.html index dfe29eb5..52ca6b2f 100644 --- a/previews/PR446/get_started.html +++ b/previews/PR446/get_started.html @@ -8,9 +8,9 @@ - + - + @@ -76,7 +76,7 @@ 0.853962 0.461652 0.438885 0.665833 0.0743642 0.81705 0.00997173 0.515079 0.283788 0.258509 0.807171 0.234116 0.404819 0.3785 0.864937 0.0916764 0.235899 0.047283 0.768363 0.937012 0.732556

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/PR446/hashmap.json b/previews/PR446/hashmap.json index d64ac82a..ba849f97 100644 --- a/previews/PR446/hashmap.json +++ b/previews/PR446/hashmap.json @@ -1 +1 @@ -{"api.md":"B5Zjm_UF","development_contribute.md":"wHMZYk-r","development_contributors.md":"DMCLwn2a","get_started.md":"SLPpH3cT","index.md":"V-ikwBL1","tutorials_mean_seasonal_cycle.md":"CW949Zpy","tutorials_other_tutorials.md":"B7ra4t1s","tutorials_plottingmaps.md":"DoMI9JkI","userguide_cache.md":"B2VYwzLk","userguide_chunk.md":"C1K4jyJp","userguide_combine.md":"TltL0b99","userguide_compute.md":"DdcbgHEr","userguide_convert.md":"B3fIBU3O","userguide_create.md":"DYd05BTu","userguide_faq.md":"Ci6WXaZL","userguide_group.md":"mr-pes1A","userguide_read.md":"CiGyiOky","userguide_select.md":"D9uT5bHv","userguide_types.md":"TxWXEmsN","userguide_write.md":"C6z1uU6M"} +{"api.md":"CJNj27NI","development_contribute.md":"wHMZYk-r","development_contributors.md":"DbSRx23D","get_started.md":"SLPpH3cT","index.md":"V-ikwBL1","tutorials_mean_seasonal_cycle.md":"CW949Zpy","tutorials_other_tutorials.md":"B7ra4t1s","tutorials_plottingmaps.md":"DoMI9JkI","userguide_cache.md":"B2VYwzLk","userguide_chunk.md":"C1K4jyJp","userguide_combine.md":"TltL0b99","userguide_compute.md":"C9pwzXHx","userguide_convert.md":"B3fIBU3O","userguide_create.md":"DYd05BTu","userguide_faq.md":"BGc9k2Bj","userguide_group.md":"mr-pes1A","userguide_read.md":"CiGyiOky","userguide_select.md":"D9uT5bHv","userguide_types.md":"TxWXEmsN","userguide_write.md":"Bu7kKZO8"} diff --git a/previews/PR446/index.html b/previews/PR446/index.html index 9f1032b9..32cd4880 100644 --- a/previews/PR446/index.html +++ b/previews/PR446/index.html @@ -8,9 +8,9 @@ - + - + @@ -21,7 +21,7 @@
Skip to content
- + \ No newline at end of file diff --git a/previews/PR446/tutorials/mean_seasonal_cycle.html b/previews/PR446/tutorials/mean_seasonal_cycle.html index 1d91f640..72b0c18c 100644 --- a/previews/PR446/tutorials/mean_seasonal_cycle.html +++ b/previews/PR446/tutorials/mean_seasonal_cycle.html @@ -8,9 +8,9 @@ - + - + @@ -92,7 +92,7 @@ ax.xticklabelalign = (:right, :center) fig current_figure()

- + \ No newline at end of file diff --git a/previews/PR446/tutorials/other_tutorials.html b/previews/PR446/tutorials/other_tutorials.html index 332379a4..efaa1763 100644 --- a/previews/PR446/tutorials/other_tutorials.html +++ b/previews/PR446/tutorials/other_tutorials.html @@ -8,9 +8,9 @@ - + - + @@ -21,7 +21,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/PR446/tutorials/plottingmaps.html b/previews/PR446/tutorials/plottingmaps.html index 991d432b..ff83c861 100644 --- a/previews/PR446/tutorials/plottingmaps.html +++ b/previews/PR446/tutorials/plottingmaps.html @@ -8,9 +8,9 @@ - + - + @@ -74,7 +74,7 @@ zoom!(ax.scene, cameracontrols(ax.scene), 0.5) rotate!(ax.scene, 2.5) fig - + \ No newline at end of file