diff --git a/dev/404.html b/dev/404.html index ed74b0be..1ecdfd4c 100644 --- a/dev/404.html +++ b/dev/404.html @@ -8,14 +8,14 @@ - +
- + \ No newline at end of file diff --git a/dev/UserGuide/chunk.html b/dev/UserGuide/chunk.html index 27bb65fe..50883b27 100644 --- a/dev/UserGuide/chunk.html +++ b/dev/UserGuide/chunk.html @@ -8,10 +8,10 @@ - + - + @@ -98,7 +98,7 @@ → Dim_2 Sampled{Int64} Base.OneTo(20) ForwardOrdered Regular Points 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/dev/UserGuide/combine.html b/dev/UserGuide/combine.html index a630967f..2d8899e4 100644 --- a/dev/UserGuide/combine.html +++ b/dev/UserGuide/combine.html @@ -8,10 +8,10 @@ - + - + @@ -45,7 +45,7 @@ ├───────────────────────────────────────────────────── file size ┤ file size: 96.0 bytes └────────────────────────────────────────────────────────────────┘ - + \ No newline at end of file diff --git a/dev/UserGuide/compute.html b/dev/UserGuide/compute.html index 17291fb7..4f1f0763 100644 --- a/dev/UserGuide/compute.html +++ b/dev/UserGuide/compute.html @@ -8,11 +8,11 @@ - + - - + + @@ -38,7 +38,7 @@ :origin => "user guide" ├─────────────────────────────────────────────────────────────────── file size ┤ file size: 35.16 KB -└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.9834433505013818
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.7870153406281395
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,
@@ -131,14 +131,14 @@
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 └──────────────────────────────────────────────────────────────────────────────┘
-  ↓ →  1.0        1.28571   1.57143    …  4.42857   4.71429    5.0
-  1.0  0.318039   0.692256  0.28974       0.317792  0.0182202  0.390315
-  2.0  0.136076   0.449317  0.340401      0.937007  0.127343   0.406874
-  3.0  0.977188   0.136718  0.642726      0.101499  0.92248    0.987994
-  ⋮                                    ⋱                       ⋮
-  8.0  0.347368   0.206873  0.215695      0.761502  0.972913   0.0674906
-  9.0  0.0461837  0.817787  0.365603      0.773245  0.613749   0.0822654
- 10.0  0.585923   0.25238   0.0913507  …  0.761125  0.190139   0.584065

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

julia
regions = ["A", "B", "C", "D"]
+  ↓ →  1.0       1.28571   1.57143   …  4.42857   4.71429   5.0
+  1.0  0.445729  0.193177  0.205039     0.469779  0.685585  0.268218
+  2.0  0.548087  0.151078  0.169472     0.352339  0.461642  0.252348
+  3.0  0.16588   0.841752  0.184589     0.983521  0.642404  0.354223
+  ⋮                                  ⋱                      ⋮
+  8.0  0.916085  0.320579  0.211217     0.359397  0.57312   0.528733
+  9.0  0.584464  0.868467  0.12203      0.572336  0.280057  0.492411
+ 10.0  0.992488  0.203837  0.581175  …  0.762323  0.188519  0.784243

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

julia
regions = ["A", "B", "C", "D"]
 points_of_regions = map(enumerate(regions)) do (i,region)
     region => findall(isequal(region), regions_mat)
 end |> Dict |> sort
OrderedCollections.OrderedDict{String, Vector{CartesianIndex{2}}} with 4 entries:
@@ -192,7 +192,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/dev/UserGuide/convert.html b/dev/UserGuide/convert.html index df9741de..b7ffa425 100644 --- a/dev/UserGuide/convert.html +++ b/dev/UserGuide/convert.html @@ -8,11 +8,11 @@ - + - - + + @@ -30,11 +30,11 @@ ├────────────────────────────────────────────────────────── file size ┤ file size: 400.0 bytes └─────────────────────────────────────────────────────────────────────┘

Convert YAXArray to Base.Array:

julia
m2 = collect(a.data)
5×10 Matrix{Float64}:
- 0.250748   0.606155  0.685321   0.683486  …  0.853183   0.602267   0.756506
- 0.394941   0.865179  0.0884358  0.072622     0.0751232  0.543502   0.86815
- 0.740692   0.174079  0.832396   0.987598     0.83732    0.342369   0.876059
- 0.972404   0.192129  0.421407   0.736639     0.353257   0.0570881  0.564018
- 0.0873387  0.859362  0.66181    0.560379     0.186338   0.72339    0.684705

Convert Raster

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

julia
using Rasters
+ 0.46355   0.0140149  0.0717486  0.184858   …  0.262421  0.188793  0.355802
+ 0.82791   0.221616   0.478795   0.0393255     0.808129  0.538712  0.00951025
+ 0.201955  0.455047   0.593137   0.101167      0.35517   0.195559  0.573784
+ 0.568233  0.89601    0.551051   0.970684      0.9236    0.434748  0.403694
+ 0.492505  0.088705   0.154983   0.763945      0.680141  0.974903  0.956224

Convert Raster

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

julia
using Rasters
 
 lon, lat = X(25:1:30), Y(25:1:30)
 time = Ti(2000:2024)
@@ -62,13 +62,13 @@
 
 └─────────────────────────────────────────────────────────────┘
 [:, :, 1]
-  ↓ →  25          26         27         28          29          30
- 25     0.665024    0.763095   0.141595   0.809514    0.0668261   0.286677
- 26     0.49657     0.820772   0.675138   0.0934071   0.827419    0.53963
- 27     0.0885343   0.751802   0.493651   0.98674     0.490318    0.488797
- 28     0.184555    0.547323   0.335812   0.484735    0.996668    0.427747
- 29     0.623178    0.211379   0.762215   0.742236    0.621469    0.0371825
- 30     0.189827    0.454855   0.728284   0.871052    0.601579    0.973524

Convert DimArray

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

Convert DimArray to YAXArray:

julia
using DimensionalData
+  ↓ →  25         26         27          28          29         30
+ 25     0.291321   0.824445   0.653268    0.132326    0.865994   0.641973
+ 26     0.527791   0.169676   0.0206258   0.786535    0.402122   0.315526
+ 27     0.580583   0.429587   0.636742    0.538022    0.267019   0.992423
+ 28     0.352519   0.189652   0.258517    0.199195    0.11943    0.437138
+ 29     0.868084   0.36842    0.4424      0.0242338   0.305508   0.191514
+ 30     0.118944   0.45301    0.142095    0.71611     0.933612   0.941105

Convert DimArray

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

Convert DimArray to YAXArray:

julia
using DimensionalData
 using YAXArrayBase
 
 dim_arr = rand(X(1:5), Y(10.0:15.0), metadata = Dict{String, Any}())
@@ -89,13 +89,13 @@
 ├──────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 └──────────────────────────────────────────────────────────────────┘
- ↓ →  10.0        11.0       12.0        13.0        14.0        15.0
- 1     0.0356227   0.307849   0.546663    0.420426    0.0096067   0.98121
- 2     0.385317    0.405208   0.254633    0.662609    0.690995    0.126389
- 3     0.280651    0.122665   0.73653     0.0574339   0.55694     0.99227
- 4     0.216638    0.772677   0.501288    0.726186    0.355128    0.833617
- 5     0.401606    0.37699    0.0709768   0.290475    0.777094    0.23261

INFO

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

- + ↓ → 10.0 11.0 12.0 13.0 14.0 15.0 + 1 0.860322 0.722586 0.986293 0.853058 0.550851 0.805387 + 2 0.875727 0.729319 0.544755 0.396487 0.15801 0.061297 + 3 0.585497 0.306032 0.759697 0.623339 0.0746812 0.325956 + 4 0.240089 0.165311 0.216921 0.137499 0.741617 0.0677662 + 5 0.631004 0.197966 0.450627 0.732335 0.580733 0.195108

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/dev/UserGuide/create.html b/dev/UserGuide/create.html index f9439a1f..a5fd7a9b 100644 --- a/dev/UserGuide/create.html +++ b/dev/UserGuide/create.html @@ -8,10 +8,10 @@ - + - + @@ -63,7 +63,7 @@ Variables: a2, a3, Properties: Dict(:origin => "user guide") - + \ No newline at end of file diff --git a/dev/UserGuide/faq.html b/dev/UserGuide/faq.html index 7a23e661..439dd284 100644 --- a/dev/UserGuide/faq.html +++ b/dev/UserGuide/faq.html @@ -8,11 +8,11 @@ - + - - + + @@ -174,7 +174,7 @@ fig, ax, obj = heatmap(classes; colormap=Makie.Categorical(cgrad([:grey15, :orangered, :snow3]))) cbar = Colorbar(fig[1,2], obj) -fig

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

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

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

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

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

- +end

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

+ \ No newline at end of file diff --git a/dev/UserGuide/read.html b/dev/UserGuide/read.html index 94e0c0b2..40ba6004 100644 --- a/dev/UserGuide/read.html +++ b/dev/UserGuide/read.html @@ -8,11 +8,11 @@ - + - - + + @@ -82,13 +82,19 @@ "original_name" => "sosstsst" ├─────────────────────────────────────────────────────────────────── file size ┤ file size: 2.8 MB -└──────────────────────────────────────────────────────────────────────────────┘

Read GDAL (GeoTIFF, GeoJSON)

All GDAL compatible files can be read as a YAXArrays.Dataset after loading ArchGDAL:

@example
using YAXArrays
-using ArchGDAL
-using Downloads: download
-
-path = download("https://github.com/yeesian/ArchGDALDatasets/raw/307f8f0e584a39a050c042849004e6a2bd674f99/gdalworkshop/world.tif", "world.tif")
-ds = open_dataset(path)
- +└──────────────────────────────────────────────────────────────────────────────┘

Read GDAL (GeoTIFF, GeoJSON)

All GDAL compatible files can be read as a YAXArrays.Dataset after loading ArchGDAL:

julia
using YAXArrays
+using ArchGDAL
+using Downloads: download
+
+path = download("https://github.com/yeesian/ArchGDALDatasets/raw/307f8f0e584a39a050c042849004e6a2bd674f99/gdalworkshop/world.tif", "world.tif")
+ds = open_dataset(path)
YAXArray Dataset
+Shared Axes: 
+↓ X Sampled{Float64} -180.0:0.17578125:179.82421875 ForwardOrdered Regular Points,
+→ Y Sampled{Float64} 90.0:-0.17578125:-89.82421875 ReverseOrdered Regular Points
+Variables: 
+Red, Green, Blue, 
+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/dev/UserGuide/select.html b/dev/UserGuide/select.html index ef655788..104c5470 100644 --- a/dev/UserGuide/select.html +++ b/dev/UserGuide/select.html @@ -8,10 +8,10 @@ - + - + @@ -309,7 +309,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/dev/UserGuide/types.html b/dev/UserGuide/types.html index 766c13f7..0b5970cc 100644 --- a/dev/UserGuide/types.html +++ b/dev/UserGuide/types.html @@ -8,17 +8,17 @@ - + - +
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/dev/UserGuide/write.html b/dev/UserGuide/write.html index 6e9af0e1..9d01a58f 100644 --- a/dev/UserGuide/write.html +++ b/dev/UserGuide/write.html @@ -8,11 +8,11 @@ - + - - + + @@ -31,7 +31,7 @@ tos, Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Write Zarr

Save a single YAXArray to a directory:

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

Save an entire Dataset to a directory:

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

Write NetCDF

Save a single YAXArray to a directory:

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

Save an entire Dataset to a directory:

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

Overwrite a Dataset

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

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

DANGER

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

Look at the doc string for more information

# YAXArrays.Datasets.savedatasetFunction.

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

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

Warning

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

source


Append to a Dataset

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

julia
ds2 = Dataset(z = YAXArray(rand(10,20,5)))
+savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

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

Overwrite a Dataset

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

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

DANGER

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

Look at the doc string for more information

# YAXArrays.Datasets.savedatasetFunction.

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

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

Warning

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

source


Append to a Dataset

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

julia
ds2 = Dataset(z = YAXArray(rand(10,20,5)))
 savedataset(ds2, path="ds.zarr", backend=:zarr, append=true)
julia
julia> open_dataset("ds.zarr", driver=:zarr)
YAXArray Dataset
 Shared Axes:
 ()
@@ -55,7 +55,7 @@
 ├─────────────────────────────────────────────────────────── file size ┤
   file size: 800.0 bytes
 └──────────────────────────────────────────────────────────────────────┘

and save them as

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

and check that all the values are missing

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

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

INFO

The skeleton argument is also available for savedataset.

- + \ No newline at end of file diff --git a/dev/api.html b/dev/api.html index e12c89e4..883178e4 100644 --- a/dev/api.html +++ b/dev/api.html @@ -8,29 +8,29 @@ - + - - + + -
Skip to content

API Reference

This section describes all available functions of this package.

Public API

# YAXArrays.getAxisMethod.
julia
getAxis(desc, c)

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

  • the name as a string or symbol.

  • an Axis object

source


# YAXArrays.CubesModule.

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

source


# YAXArrays.Cubes.YAXArrayType.
julia
YAXArray{T,N}

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

Fields

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

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

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

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

source


# YAXArrays.Cubes.caxesFunction.

Returns the axes of a Cube

source


# YAXArrays.Cubes.caxesMethod.
julia
caxes

Embeds Cube inside a new Cube

source


# YAXArrays.Cubes.concatenatecubesMethod.
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

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

source


# YAXArrays.Cubes.readcubedataMethod.
julia
readcubedata(cube)

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

source


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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source


# YAXArrays.Cubes.subsetcubeFunction.

This function calculates a subset of a cube's data

source


# YAXArrays.DAT.InDimsType.
julia
InDims(axisdesc...;...)

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

Keyword arguments

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

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

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

source


# YAXArrays.DAT.MovingWindowType.
julia
MovingWindow(desc, pre, after)

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

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

source


# YAXArrays.DAT.OutDimsMethod.
julia
OutDims(axisdesc;...)

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

  • axisdesc: List of input axis names

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

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

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

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

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

source


# YAXArrays.DAT.CubeTableMethod.
julia
CubeTable()

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

source


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

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

source


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

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

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

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

source


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

API Reference

This section describes all available functions of this package.

Public API

# YAXArrays.getAxisMethod.
julia
getAxis(desc, c)

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

  • the name as a string or symbol.

  • an Axis object

source


# YAXArrays.CubesModule.

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

source


# YAXArrays.Cubes.YAXArrayType.
julia
YAXArray{T,N}

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

Fields

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

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

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

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

source


# YAXArrays.Cubes.caxesFunction.

Returns the axes of a Cube

source


# YAXArrays.Cubes.caxesMethod.
julia
caxes

Embeds Cube inside a new Cube

source


# YAXArrays.Cubes.concatenatecubesMethod.
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

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

source


# YAXArrays.Cubes.readcubedataMethod.
julia
readcubedata(cube)

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

source


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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source


# YAXArrays.Cubes.subsetcubeFunction.

This function calculates a subset of a cube's data

source


# YAXArrays.DAT.InDimsType.
julia
InDims(axisdesc...;...)

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

Keyword arguments

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

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

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

source


# YAXArrays.DAT.MovingWindowType.
julia
MovingWindow(desc, pre, after)

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

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

source


# YAXArrays.DAT.OutDimsMethod.
julia
OutDims(axisdesc;...)

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

  • axisdesc: List of input axis names

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

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

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

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

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

source


# YAXArrays.DAT.CubeTableMethod.
julia
CubeTable()

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

source


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

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

source


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

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

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

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

source


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

source


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

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

Keyword arguments

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

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

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

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

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

  • showprog boolean indicating if a ProgressMeter shall be shown

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

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

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

  • kwargs additional keyword arguments are passed to the inner function

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

source


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

source


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

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

Keyword arguments

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

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

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

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

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

  • showprog boolean indicating if a ProgressMeter shall be shown

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

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

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

  • kwargs additional keyword arguments are passed to the inner function

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

source


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

source


# YAXArrays.Datasets.DatasetMethod.

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

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

source


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

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

source


# YAXArrays.Datasets.open_datasetMethod.

open_dataset(g; driver=:all)

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

source


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

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

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

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

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

  • driver: The same setting as backend.

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

source


# YAXArrays.Datasets.savedatasetMethod.

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

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

Warning

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

source


# YAXArrays.Datasets.to_datasetMethod.

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

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

source


Internal API

# YAXArrays.YAXDefaultsConstant.

Default configuration for YAXArrays, has the following fields:

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

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

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

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

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

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

source


# YAXArrays.findAxisMethod.
julia
findAxis(desc, c)

Internal function

Extended Help

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

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source


# YAXArrays.getOutAxisMethod.
julia
getOutAxis

source


# YAXArrays.get_descriptorMethod.
julia
get_descriptor(a)

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

source


# YAXArrays.match_axisMethod.
julia
match_axis

Internal function

Extended Help

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

source


# YAXArrays.Datasets.DatasetMethod.

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

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

source


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

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

source


# YAXArrays.Datasets.open_datasetMethod.

open_dataset(g; driver=:all)

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

source


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

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

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

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

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

  • driver: The same setting as backend.

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

source


# YAXArrays.Datasets.savedatasetMethod.

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

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

Warning

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

source


# YAXArrays.Datasets.to_datasetMethod.

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

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

source


Internal API

# YAXArrays.YAXDefaultsConstant.

Default configuration for YAXArrays, has the following fields:

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

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

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

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

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

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

source


# YAXArrays.findAxisMethod.
julia
findAxis(desc, c)

Internal function

Extended Help

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

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source


# YAXArrays.getOutAxisMethod.
julia
getOutAxis

source


# YAXArrays.get_descriptorMethod.
julia
get_descriptor(a)

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

source


# YAXArrays.match_axisMethod.
julia
match_axis

Internal function

Extended Help

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

source


# YAXArrays.Cubes.CleanMeType.
julia
mutable struct CleanMe

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

source


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

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

source


# YAXArrays.Cubes.copydataMethod.
julia
copydata(outar, inar, copybuf)

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

source


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

Internal

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

source


# YAXArrays.DAT.DATConfigType.

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

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

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

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

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

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

  • loopcachesize::Vector{Int64}:

  • allow_irregular_chunks::Bool:

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

  • fu::Any: Inner function which is computed

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

  • include_loopvars::Bool:

  • ntr::Any:

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

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

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

source


# YAXArrays.DAT.InputCubeType.

Internal representation of an input cube for DAT operations

  • cube: The input data

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

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

  • icolon

  • colonperm

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

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

  • window

  • iwindow

  • windowloopinds

  • iall

source


# YAXArrays.DAT.OutputCubeType.

Internal representation of an output cube for DAT operations

Fields

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

  • cube_unpermuted: The unpermuted output cube

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

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

  • allAxes: List of all the axes of the cube

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

  • innerchunks

  • outtype: Elementtype of the outputcube

source


# YAXArrays.DAT.YAXColumnType.
julia
YAXColumn

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

  • inarBC

  • inds

source


# YAXArrays.DAT.cmpcachmissesMethod.

Function that compares two cache miss specifiers by their importance

source


# YAXArrays.DAT.getFrontPermMethod.

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

source


# YAXArrays.DAT.getLoopCacheSizeMethod.

Calculate optimal Cache size to DAT operation

source


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

Internal function

Get the element type for the output cube

source


# YAXArrays.DAT.getloopchunksMethod.
julia
getloopchunks(dc::DATConfig)

Internal function

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

source


# YAXArrays.DAT.permuteloopaxesMethod.
julia
permuteloopaxes(dc)

Internal function

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

source


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

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

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

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

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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source


# YAXArrays.Datasets.collectfromhandleMethod.

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

source


# YAXArrays.Datasets.createdatasetMethod.

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

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

Keyword arguments

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

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

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

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

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

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

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

  • 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

source


# YAXArrays.Datasets.getarrayinfoMethod.

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

source


# YAXArrays.Datasets.testrangeMethod.

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

source


- +For example to disregard differences of captialisation.

source


# YAXArrays.Cubes.CleanMeType.
julia
mutable struct CleanMe

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

source


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

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

source


# YAXArrays.Cubes.copydataMethod.
julia
copydata(outar, inar, copybuf)

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

source


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

Internal

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

source


# YAXArrays.DAT.DATConfigType.

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

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

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

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

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

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

  • loopcachesize::Vector{Int64}:

  • allow_irregular_chunks::Bool:

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

  • fu::Any: Inner function which is computed

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

  • include_loopvars::Bool:

  • ntr::Any:

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

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

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

source


# YAXArrays.DAT.InputCubeType.

Internal representation of an input cube for DAT operations

  • cube: The input data

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

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

  • icolon

  • colonperm

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

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

  • window

  • iwindow

  • windowloopinds

  • iall

source


# YAXArrays.DAT.OutputCubeType.

Internal representation of an output cube for DAT operations

Fields

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

  • cube_unpermuted: The unpermuted output cube

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

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

  • allAxes: List of all the axes of the cube

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

  • innerchunks

  • outtype: Elementtype of the outputcube

source


# YAXArrays.DAT.YAXColumnType.
julia
YAXColumn

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

  • inarBC

  • inds

source


# YAXArrays.DAT.cmpcachmissesMethod.

Function that compares two cache miss specifiers by their importance

source


# YAXArrays.DAT.getFrontPermMethod.

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

source


# YAXArrays.DAT.getLoopCacheSizeMethod.

Calculate optimal Cache size to DAT operation

source


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

Internal function

Get the element type for the output cube

source


# YAXArrays.DAT.getloopchunksMethod.
julia
getloopchunks(dc::DATConfig)

Internal function

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

source


# YAXArrays.DAT.permuteloopaxesMethod.
julia
permuteloopaxes(dc)

Internal function

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

source


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

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

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

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

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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source


# YAXArrays.Datasets.collectfromhandleMethod.

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

source


# YAXArrays.Datasets.createdatasetMethod.

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

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

Keyword arguments

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

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

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

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

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

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

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

  • 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

source


# YAXArrays.Datasets.getarrayinfoMethod.

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

source


# YAXArrays.Datasets.testrangeMethod.

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

source


+ \ No newline at end of file diff --git a/dev/assets/UserGuide_compute.md.9OcrDvwn.js b/dev/assets/UserGuide_compute.md.ChZq8mMQ.js similarity index 96% rename from dev/assets/UserGuide_compute.md.9OcrDvwn.js rename to dev/assets/UserGuide_compute.md.ChZq8mMQ.js index 5562805d..067140cb 100644 --- a/dev/assets/UserGuide_compute.md.9OcrDvwn.js +++ b/dev/assets/UserGuide_compute.md.ChZq8mMQ.js @@ -19,7 +19,7 @@ import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const c :origin => "user guide" ├─────────────────────────────────────────────────────────────────── file size ┤ file size: 35.16 KB -└──────────────────────────────────────────────────────────────────────────────┘

Modify elements of a YAXArray

julia
a[1,2,3]
0.9834433505013818
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.7870153406281395
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,
@@ -112,14 +112,14 @@ import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const c
 ├──────────────────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 └──────────────────────────────────────────────────────────────────────────────┘
-  ↓ →  1.0        1.28571   1.57143    …  4.42857   4.71429    5.0
-  1.0  0.318039   0.692256  0.28974       0.317792  0.0182202  0.390315
-  2.0  0.136076   0.449317  0.340401      0.937007  0.127343   0.406874
-  3.0  0.977188   0.136718  0.642726      0.101499  0.92248    0.987994
-  ⋮                                    ⋱                       ⋮
-  8.0  0.347368   0.206873  0.215695      0.761502  0.972913   0.0674906
-  9.0  0.0461837  0.817787  0.365603      0.773245  0.613749   0.0822654
- 10.0  0.585923   0.25238   0.0913507  …  0.761125  0.190139   0.584065

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

julia
regions = ["A", "B", "C", "D"]
+  ↓ →  1.0       1.28571   1.57143   …  4.42857   4.71429   5.0
+  1.0  0.445729  0.193177  0.205039     0.469779  0.685585  0.268218
+  2.0  0.548087  0.151078  0.169472     0.352339  0.461642  0.252348
+  3.0  0.16588   0.841752  0.184589     0.983521  0.642404  0.354223
+  ⋮                                  ⋱                      ⋮
+  8.0  0.916085  0.320579  0.211217     0.359397  0.57312   0.528733
+  9.0  0.584464  0.868467  0.12203      0.572336  0.280057  0.492411
+ 10.0  0.992488  0.203837  0.581175  …  0.762323  0.188519  0.784243

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

julia
regions = ["A", "B", "C", "D"]
 points_of_regions = map(enumerate(regions)) do (i,region)
     region => findall(isequal(region), regions_mat)
 end |> Dict |> sort
OrderedCollections.OrderedDict{String, Vector{CartesianIndex{2}}} with 4 entries:
diff --git a/dev/assets/UserGuide_compute.md.9OcrDvwn.lean.js b/dev/assets/UserGuide_compute.md.ChZq8mMQ.lean.js
similarity index 100%
rename from dev/assets/UserGuide_compute.md.9OcrDvwn.lean.js
rename to dev/assets/UserGuide_compute.md.ChZq8mMQ.lean.js
diff --git a/dev/assets/UserGuide_convert.md.V3ot1yUx.js b/dev/assets/UserGuide_convert.md.BJz7o2z5.js
similarity index 80%
rename from dev/assets/UserGuide_convert.md.V3ot1yUx.js
rename to dev/assets/UserGuide_convert.md.BJz7o2z5.js
index 8ecaf4dc..fffb28c4 100644
--- a/dev/assets/UserGuide_convert.md.V3ot1yUx.js
+++ b/dev/assets/UserGuide_convert.md.BJz7o2z5.js
@@ -11,11 +11,11 @@ import{_ as s,c as a,o as n,a3 as i}from"./chunks/framework.D-wbpLqx.js";const y
 ├────────────────────────────────────────────────────────── file size ┤ 
   file size: 400.0 bytes
 └─────────────────────────────────────────────────────────────────────┘

Convert YAXArray to Base.Array:

julia
m2 = collect(a.data)
5×10 Matrix{Float64}:
- 0.250748   0.606155  0.685321   0.683486  …  0.853183   0.602267   0.756506
- 0.394941   0.865179  0.0884358  0.072622     0.0751232  0.543502   0.86815
- 0.740692   0.174079  0.832396   0.987598     0.83732    0.342369   0.876059
- 0.972404   0.192129  0.421407   0.736639     0.353257   0.0570881  0.564018
- 0.0873387  0.859362  0.66181    0.560379     0.186338   0.72339    0.684705

Convert Raster

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

julia
using Rasters
+ 0.46355   0.0140149  0.0717486  0.184858   …  0.262421  0.188793  0.355802
+ 0.82791   0.221616   0.478795   0.0393255     0.808129  0.538712  0.00951025
+ 0.201955  0.455047   0.593137   0.101167      0.35517   0.195559  0.573784
+ 0.568233  0.89601    0.551051   0.970684      0.9236    0.434748  0.403694
+ 0.492505  0.088705   0.154983   0.763945      0.680141  0.974903  0.956224

Convert Raster

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

julia
using Rasters
 
 lon, lat = X(25:1:30), Y(25:1:30)
 time = Ti(2000:2024)
@@ -43,13 +43,13 @@ import{_ as s,c as a,o as n,a3 as i}from"./chunks/framework.D-wbpLqx.js";const y
 
 └─────────────────────────────────────────────────────────────┘
 [:, :, 1]
-  ↓ →  25          26         27         28          29          30
- 25     0.665024    0.763095   0.141595   0.809514    0.0668261   0.286677
- 26     0.49657     0.820772   0.675138   0.0934071   0.827419    0.53963
- 27     0.0885343   0.751802   0.493651   0.98674     0.490318    0.488797
- 28     0.184555    0.547323   0.335812   0.484735    0.996668    0.427747
- 29     0.623178    0.211379   0.762215   0.742236    0.621469    0.0371825
- 30     0.189827    0.454855   0.728284   0.871052    0.601579    0.973524

Convert DimArray

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

Convert DimArray to YAXArray:

julia
using DimensionalData
+  ↓ →  25         26         27          28          29         30
+ 25     0.291321   0.824445   0.653268    0.132326    0.865994   0.641973
+ 26     0.527791   0.169676   0.0206258   0.786535    0.402122   0.315526
+ 27     0.580583   0.429587   0.636742    0.538022    0.267019   0.992423
+ 28     0.352519   0.189652   0.258517    0.199195    0.11943    0.437138
+ 29     0.868084   0.36842    0.4424      0.0242338   0.305508   0.191514
+ 30     0.118944   0.45301    0.142095    0.71611     0.933612   0.941105

Convert DimArray

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

Convert DimArray to YAXArray:

julia
using DimensionalData
 using YAXArrayBase
 
 dim_arr = rand(X(1:5), Y(10.0:15.0), metadata = Dict{String, Any}())
@@ -70,9 +70,9 @@ import{_ as s,c as a,o as n,a3 as i}from"./chunks/framework.D-wbpLqx.js";const y
 ├──────────────────────────────────────────────────────── metadata ┤
   Dict{String, Any}()
 └──────────────────────────────────────────────────────────────────┘
- ↓ →  10.0        11.0       12.0        13.0        14.0        15.0
- 1     0.0356227   0.307849   0.546663    0.420426    0.0096067   0.98121
- 2     0.385317    0.405208   0.254633    0.662609    0.690995    0.126389
- 3     0.280651    0.122665   0.73653     0.0574339   0.55694     0.99227
- 4     0.216638    0.772677   0.501288    0.726186    0.355128    0.833617
- 5     0.401606    0.37699    0.0709768   0.290475    0.777094    0.23261

INFO

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

`,25),l=[e];function t(r,h,d,k,o,c){return n(),a("div",null,l)}const E=s(p,[["render",t]]);export{y as __pageData,E as default}; + ↓ → 10.0 11.0 12.0 13.0 14.0 15.0 + 1 0.860322 0.722586 0.986293 0.853058 0.550851 0.805387 + 2 0.875727 0.729319 0.544755 0.396487 0.15801 0.061297 + 3 0.585497 0.306032 0.759697 0.623339 0.0746812 0.325956 + 4 0.240089 0.165311 0.216921 0.137499 0.741617 0.0677662 + 5 0.631004 0.197966 0.450627 0.732335 0.580733 0.195108

INFO

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

`,25),l=[e];function t(r,h,d,k,o,c){return n(),a("div",null,l)}const E=s(p,[["render",t]]);export{y as __pageData,E as default}; diff --git a/dev/assets/UserGuide_convert.md.V3ot1yUx.lean.js b/dev/assets/UserGuide_convert.md.BJz7o2z5.lean.js similarity index 100% rename from dev/assets/UserGuide_convert.md.V3ot1yUx.lean.js rename to dev/assets/UserGuide_convert.md.BJz7o2z5.lean.js diff --git a/dev/assets/UserGuide_faq.md.P26McMwi.js b/dev/assets/UserGuide_faq.md.DDYpR1Ez.js similarity index 99% rename from dev/assets/UserGuide_faq.md.P26McMwi.js rename to dev/assets/UserGuide_faq.md.DDYpR1Ez.js index 837d601c..9f20bd4d 100644 --- a/dev/assets/UserGuide_faq.md.P26McMwi.js +++ b/dev/assets/UserGuide_faq.md.DDYpR1Ez.js @@ -1,4 +1,4 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const h="/YAXArrays.jl/dev/assets/yvbiuxj.3Hpo7gAL.jpeg",c=JSON.parse('{"title":"Frequently Asked Questions (FAQ)","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/faq.md","filePath":"UserGuide/faq.md","lastUpdated":null}'),e={name:"UserGuide/faq.md"},l=n(`

Frequently Asked Questions (FAQ)

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

Extract the axes names from a Cube

julia
using YAXArrays
+import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const h="/YAXArrays.jl/dev/assets/lzgujzo.CO4ruIH4.jpeg",c=JSON.parse('{"title":"Frequently Asked Questions (FAQ)","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/faq.md","filePath":"UserGuide/faq.md","lastUpdated":null}'),e={name:"UserGuide/faq.md"},l=n(`

Frequently Asked Questions (FAQ)

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

Extract the axes names from a Cube

julia
using YAXArrays
 using DimensionalData
julia
julia> c = YAXArray(rand(10, 10, 5))
╭─────────────────────────────╮
 10×10×5 YAXArray{Float64,3}
 ├─────────────────────────────┴────────────────────────────────── dims ┐
diff --git a/dev/assets/UserGuide_faq.md.P26McMwi.lean.js b/dev/assets/UserGuide_faq.md.DDYpR1Ez.lean.js
similarity index 86%
rename from dev/assets/UserGuide_faq.md.P26McMwi.lean.js
rename to dev/assets/UserGuide_faq.md.DDYpR1Ez.lean.js
index f89feed4..9e4ac37c 100644
--- a/dev/assets/UserGuide_faq.md.P26McMwi.lean.js
+++ b/dev/assets/UserGuide_faq.md.DDYpR1Ez.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const h="/YAXArrays.jl/dev/assets/yvbiuxj.3Hpo7gAL.jpeg",c=JSON.parse('{"title":"Frequently Asked Questions (FAQ)","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/faq.md","filePath":"UserGuide/faq.md","lastUpdated":null}'),e={name:"UserGuide/faq.md"},l=n("",86),t=[l];function k(p,d,r,g,y,o){return a(),i("div",null,t)}const f=s(e,[["render",k]]);export{c as __pageData,f as default};
+import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const h="/YAXArrays.jl/dev/assets/lzgujzo.CO4ruIH4.jpeg",c=JSON.parse('{"title":"Frequently Asked Questions (FAQ)","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/faq.md","filePath":"UserGuide/faq.md","lastUpdated":null}'),e={name:"UserGuide/faq.md"},l=n("",86),t=[l];function k(p,d,r,g,y,o){return a(),i("div",null,t)}const f=s(e,[["render",k]]);export{c as __pageData,f as default};
diff --git a/dev/assets/UserGuide_group.md.B84Hc12z.js b/dev/assets/UserGuide_group.md.COeZscTn.js
similarity index 99%
rename from dev/assets/UserGuide_group.md.B84Hc12z.js
rename to dev/assets/UserGuide_group.md.COeZscTn.js
index 8c53a769..147fd84c 100644
--- a/dev/assets/UserGuide_group.md.B84Hc12z.js
+++ b/dev/assets/UserGuide_group.md.COeZscTn.js
@@ -1,4 +1,4 @@
-import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const h="/YAXArrays.jl/dev/assets/ldaihxz.CBBZcGwj.png",o=JSON.parse('{"title":"Group YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/group.md","filePath":"UserGuide/group.md","lastUpdated":null}'),l={name:"UserGuide/group.md"},e=n(`

Group YAXArrays and Datasets

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

julia
using YAXArrays, DimensionalData
+import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const h="/YAXArrays.jl/dev/assets/segxzvx.CBBZcGwj.png",o=JSON.parse('{"title":"Group YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/group.md","filePath":"UserGuide/group.md","lastUpdated":null}'),l={name:"UserGuide/group.md"},e=n(`

Group YAXArrays and Datasets

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

julia
using YAXArrays, DimensionalData
 using NetCDF
 using Downloads
 using Dates
diff --git a/dev/assets/UserGuide_group.md.B84Hc12z.lean.js b/dev/assets/UserGuide_group.md.COeZscTn.lean.js
similarity index 86%
rename from dev/assets/UserGuide_group.md.B84Hc12z.lean.js
rename to dev/assets/UserGuide_group.md.COeZscTn.lean.js
index 3353f0ad..b8045cd3 100644
--- a/dev/assets/UserGuide_group.md.B84Hc12z.lean.js
+++ b/dev/assets/UserGuide_group.md.COeZscTn.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const h="/YAXArrays.jl/dev/assets/ldaihxz.CBBZcGwj.png",o=JSON.parse('{"title":"Group YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/group.md","filePath":"UserGuide/group.md","lastUpdated":null}'),l={name:"UserGuide/group.md"},e=n("",62),p=[e];function t(k,d,r,g,y,f){return a(),i("div",null,p)}const c=s(l,[["render",t]]);export{o as __pageData,c as default};
+import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const h="/YAXArrays.jl/dev/assets/segxzvx.CBBZcGwj.png",o=JSON.parse('{"title":"Group YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/group.md","filePath":"UserGuide/group.md","lastUpdated":null}'),l={name:"UserGuide/group.md"},e=n("",62),p=[e];function t(k,d,r,g,y,f){return a(),i("div",null,p)}const c=s(l,[["render",t]]);export{o as __pageData,c as default};
diff --git a/dev/assets/UserGuide_read.md.DMkMRsS0.lean.js b/dev/assets/UserGuide_read.md.DMkMRsS0.lean.js
deleted file mode 100644
index 46bba495..00000000
--- a/dev/assets/UserGuide_read.md.DMkMRsS0.lean.js
+++ /dev/null
@@ -1 +0,0 @@
-import{_ as a,c as s,o as n,a3 as t}from"./chunks/framework.D-wbpLqx.js";const k=JSON.parse('{"title":"Read YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/read.md","filePath":"UserGuide/read.md","lastUpdated":null}'),e={name:"UserGuide/read.md"},i=t("",20),p=[i];function l(o,r,d,u,h,c){return n(),s("div",null,p)}const q=a(e,[["render",l]]);export{k as __pageData,q as default};
diff --git a/dev/assets/UserGuide_read.md.DMkMRsS0.js b/dev/assets/UserGuide_read.md.DdxNKgV7.js
similarity index 81%
rename from dev/assets/UserGuide_read.md.DMkMRsS0.js
rename to dev/assets/UserGuide_read.md.DdxNKgV7.js
index 1679008d..9222d69f 100644
--- a/dev/assets/UserGuide_read.md.DMkMRsS0.js
+++ b/dev/assets/UserGuide_read.md.DdxNKgV7.js
@@ -1,4 +1,4 @@
-import{_ as a,c as s,o as n,a3 as t}from"./chunks/framework.D-wbpLqx.js";const k=JSON.parse('{"title":"Read YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/read.md","filePath":"UserGuide/read.md","lastUpdated":null}'),e={name:"UserGuide/read.md"},i=t(`

Read YAXArrays and Datasets

This section describes how to read files, URLs, and directories into YAXArrays and datasets.

Read Zarr

Open a Zarr store as a Dataset:

julia
using YAXArrays
+import{_ as s,c as a,o as n,a3 as t}from"./chunks/framework.D-wbpLqx.js";const g=JSON.parse('{"title":"Read YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/read.md","filePath":"UserGuide/read.md","lastUpdated":null}'),i={name:"UserGuide/read.md"},e=t(`

Read YAXArrays and Datasets

This section describes how to read files, URLs, and directories into YAXArrays and datasets.

Read Zarr

Open a Zarr store as a Dataset:

julia
using YAXArrays
 using Zarr
 path="gs://cmip6/CMIP6/ScenarioMIP/DKRZ/MPI-ESM1-2-HR/ssp585/r1i1p1f1/3hr/tas/gn/v20190710/"
 store = zopen(path, consolidated=true)
@@ -63,9 +63,15 @@ import{_ as a,c as s,o as n,a3 as t}from"./chunks/framework.D-wbpLqx.js";const k
   "original_name"  => "sosstsst"
 ├─────────────────────────────────────────────────────────────────── file size ┤ 
   file size: 2.8 MB
-└──────────────────────────────────────────────────────────────────────────────┘

Read GDAL (GeoTIFF, GeoJSON)

All GDAL compatible files can be read as a YAXArrays.Dataset after loading ArchGDAL:

@example
using YAXArrays
-using ArchGDAL
-using Downloads: download
-
-path = download("https://github.com/yeesian/ArchGDALDatasets/raw/307f8f0e584a39a050c042849004e6a2bd674f99/gdalworkshop/world.tif", "world.tif")
-ds = open_dataset(path)
`,20),p=[i];function l(o,r,d,u,h,c){return n(),s("div",null,p)}const q=a(e,[["render",l]]);export{k as __pageData,q as default}; +└──────────────────────────────────────────────────────────────────────────────┘

Read GDAL (GeoTIFF, GeoJSON)

All GDAL compatible files can be read as a YAXArrays.Dataset after loading ArchGDAL:

julia
using YAXArrays
+using ArchGDAL
+using Downloads: download
+
+path = download("https://github.com/yeesian/ArchGDALDatasets/raw/307f8f0e584a39a050c042849004e6a2bd674f99/gdalworkshop/world.tif", "world.tif")
+ds = open_dataset(path)
YAXArray Dataset
+Shared Axes: 
+↓ X Sampled{Float64} -180.0:0.17578125:179.82421875 ForwardOrdered Regular Points,
+→ Y Sampled{Float64} 90.0:-0.17578125:-89.82421875 ReverseOrdered Regular Points
+Variables: 
+Red, Green, Blue, 
+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\\"]]")
`,21),p=[e];function l(o,r,d,h,u,c){return n(),a("div",null,p)}const q=s(i,[["render",l]]);export{g as __pageData,q as default}; diff --git a/dev/assets/UserGuide_read.md.DdxNKgV7.lean.js b/dev/assets/UserGuide_read.md.DdxNKgV7.lean.js new file mode 100644 index 00000000..6dddb220 --- /dev/null +++ b/dev/assets/UserGuide_read.md.DdxNKgV7.lean.js @@ -0,0 +1 @@ +import{_ as s,c as a,o as n,a3 as t}from"./chunks/framework.D-wbpLqx.js";const g=JSON.parse('{"title":"Read YAXArrays and Datasets","description":"","frontmatter":{},"headers":[],"relativePath":"UserGuide/read.md","filePath":"UserGuide/read.md","lastUpdated":null}'),i={name:"UserGuide/read.md"},e=t("",21),p=[e];function l(o,r,d,h,u,c){return n(),a("div",null,p)}const q=s(i,[["render",l]]);export{g as __pageData,q as default}; diff --git a/dev/assets/UserGuide_write.md.17Th7D7-.js b/dev/assets/UserGuide_write.md.sMMS5yM0.js similarity index 99% rename from dev/assets/UserGuide_write.md.17Th7D7-.js rename to dev/assets/UserGuide_write.md.sMMS5yM0.js index afc72bff..7d1b6184 100644 --- a/dev/assets/UserGuide_write.md.17Th7D7-.js +++ b/dev/assets/UserGuide_write.md.sMMS5yM0.js @@ -12,7 +12,7 @@ import{_ as s,c as i,o as a,a3 as t}from"./chunks/framework.D-wbpLqx.js";const u tos, Properties: Dict{String, Any}("cmor_version" => 0.96f0, "references" => "Dufresne et al, Journal of Climate, 2015, vol XX, p 136", "realization" => 1, "Conventions" => "CF-1.0", "contact" => "Sebastien Denvil, sebastien.denvil@ipsl.jussieu.fr", "history" => "YYYY/MM/JJ: data generated; YYYY/MM/JJ+1 data transformed At 16:37:23 on 01/11/2005, CMOR rewrote data to comply with CF standards and IPCC Fourth Assessment requirements", "table_id" => "Table O1 (13 November 2004)", "source" => "IPSL-CM4_v1 (2003) : atmosphere : LMDZ (IPSL-CM4_IPCC, 96x71x19) ; ocean ORCA2 (ipsl_cm4_v1_8, 2x2L31); sea ice LIM (ipsl_cm4_v", "title" => "IPSL model output prepared for IPCC Fourth Assessment SRES A2 experiment", "experiment_id" => "SRES A2 experiment"…)

Write Zarr

Save a single YAXArray to a directory:

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

Save an entire Dataset to a directory:

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

Write NetCDF

Save a single YAXArray to a directory:

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

Save an entire Dataset to a directory:

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

Overwrite a Dataset

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

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

DANGER

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

Look at the doc string for more information

# YAXArrays.Datasets.savedatasetFunction.

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

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

Warning

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

source


Append to a Dataset

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

julia
ds2 = Dataset(z = YAXArray(rand(10,20,5)))
+savecube(ds.tos, "tos.nc", driver=:netcdf)

Save an entire Dataset to a directory:

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

Overwrite a Dataset

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

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

DANGER

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

Look at the doc string for more information

# YAXArrays.Datasets.savedatasetFunction.

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

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

Warning

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

source


Append to a Dataset

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

julia
ds2 = Dataset(z = YAXArray(rand(10,20,5)))
 savedataset(ds2, path="ds.zarr", backend=:zarr, append=true)
julia
julia> open_dataset("ds.zarr", driver=:zarr)
YAXArray Dataset
 Shared Axes:
 ()
diff --git a/dev/assets/UserGuide_write.md.17Th7D7-.lean.js b/dev/assets/UserGuide_write.md.sMMS5yM0.lean.js
similarity index 100%
rename from dev/assets/UserGuide_write.md.17Th7D7-.lean.js
rename to dev/assets/UserGuide_write.md.sMMS5yM0.lean.js
diff --git a/dev/assets/nzxhaau.C0catJxb.jpeg b/dev/assets/amefsef.C0catJxb.jpeg
similarity index 100%
rename from dev/assets/nzxhaau.C0catJxb.jpeg
rename to dev/assets/amefsef.C0catJxb.jpeg
diff --git a/dev/assets/api.md.DwO_Lp_-.js b/dev/assets/api.md.tbo9MALo.js
similarity index 91%
rename from dev/assets/api.md.DwO_Lp_-.js
rename to dev/assets/api.md.tbo9MALo.js
index 8132a8a6..27571e7c 100644
--- a/dev/assets/api.md.DwO_Lp_-.js
+++ b/dev/assets/api.md.tbo9MALo.js
@@ -1,13 +1,13 @@
-import{_ as e,c as a,o as s,a3 as i}from"./chunks/framework.D-wbpLqx.js";const y=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),t={name:"api.md"},r=i(`

API Reference

This section describes all available functions of this package.

Public API

# YAXArrays.getAxisMethod.
julia
getAxis(desc, c)

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

  • the name as a string or symbol.

  • an Axis object

source


# YAXArrays.CubesModule.

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

source


# YAXArrays.Cubes.YAXArrayType.
julia
YAXArray{T,N}

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

Fields

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

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

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

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

source


# YAXArrays.Cubes.caxesFunction.

Returns the axes of a Cube

source


# YAXArrays.Cubes.caxesMethod.
julia
caxes

Embeds Cube inside a new Cube

source


# YAXArrays.Cubes.concatenatecubesMethod.
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

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

source


# YAXArrays.Cubes.readcubedataMethod.
julia
readcubedata(cube)

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

source


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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source


# YAXArrays.Cubes.subsetcubeFunction.

This function calculates a subset of a cube's data

source


# YAXArrays.DAT.InDimsType.
julia
InDims(axisdesc...;...)

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

Keyword arguments

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

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

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

source


# YAXArrays.DAT.MovingWindowType.
julia
MovingWindow(desc, pre, after)

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

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

source


# YAXArrays.DAT.OutDimsMethod.
julia
OutDims(axisdesc;...)

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

  • axisdesc: List of input axis names

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

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

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

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

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

source


# YAXArrays.DAT.CubeTableMethod.
julia
CubeTable()

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

source


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

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

source


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

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

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

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

source


# YAXArrays.DAT.mapCubeMethod.
julia
mapCube(fun, cube, addargs...;kwargs...)
+import{_ as e,c as a,o as s,a3 as i}from"./chunks/framework.D-wbpLqx.js";const y=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),t={name:"api.md"},r=i(`

API Reference

This section describes all available functions of this package.

Public API

# YAXArrays.getAxisMethod.
julia
getAxis(desc, c)

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

  • the name as a string or symbol.

  • an Axis object

source


# YAXArrays.CubesModule.

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

source


# YAXArrays.Cubes.YAXArrayType.
julia
YAXArray{T,N}

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

Fields

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

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

  • properties: Metadata properties describing the content of the data

  • chunks: Representation of the chunking of the data

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

source


# YAXArrays.Cubes.caxesFunction.

Returns the axes of a Cube

source


# YAXArrays.Cubes.caxesMethod.
julia
caxes

Embeds Cube inside a new Cube

source


# YAXArrays.Cubes.concatenatecubesMethod.
julia
function concatenateCubes(cubelist, cataxis::CategoricalAxis)

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

source


# YAXArrays.Cubes.readcubedataMethod.
julia
readcubedata(cube)

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

source


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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source


# YAXArrays.Cubes.subsetcubeFunction.

This function calculates a subset of a cube's data

source


# YAXArrays.DAT.InDimsType.
julia
InDims(axisdesc...;...)

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

Keyword arguments

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

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

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

source


# YAXArrays.DAT.MovingWindowType.
julia
MovingWindow(desc, pre, after)

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

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

source


# YAXArrays.DAT.OutDimsMethod.
julia
OutDims(axisdesc;...)

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

  • axisdesc: List of input axis names

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

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

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

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

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

source


# YAXArrays.DAT.CubeTableMethod.
julia
CubeTable()

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

source


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

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

source


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

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

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

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

source


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

source


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

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

Keyword arguments

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

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

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

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

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

  • showprog boolean indicating if a ProgressMeter shall be shown

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

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

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

  • kwargs additional keyword arguments are passed to the inner function

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

source


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

source


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

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

Keyword arguments

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

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

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

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

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

  • showprog boolean indicating if a ProgressMeter shall be shown

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

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

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

  • kwargs additional keyword arguments are passed to the inner function

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

source


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

source


# YAXArrays.Datasets.DatasetMethod.

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

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

source


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

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

source


# YAXArrays.Datasets.open_datasetMethod.

open_dataset(g; driver=:all)

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

source


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

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

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

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

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

  • driver: The same setting as backend.

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

source


# YAXArrays.Datasets.savedatasetMethod.

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

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

Warning

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

source


# YAXArrays.Datasets.to_datasetMethod.

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

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

source


Internal API

# YAXArrays.YAXDefaultsConstant.

Default configuration for YAXArrays, has the following fields:

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

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

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

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

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

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

source


# YAXArrays.findAxisMethod.
julia
findAxis(desc, c)

Internal function

Extended Help

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

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source


# YAXArrays.getOutAxisMethod.
julia
getOutAxis

source


# YAXArrays.get_descriptorMethod.
julia
get_descriptor(a)

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

source


# YAXArrays.match_axisMethod.
julia
match_axis

Internal function

Extended Help

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

source


# YAXArrays.Datasets.DatasetMethod.

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

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

source


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

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

source


# YAXArrays.Datasets.open_datasetMethod.

open_dataset(g; driver=:all)

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

source


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

Save a YAXArray to the path.

Extended Help

The keyword arguments are:

  • name:

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

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

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

  • driver: The same setting as backend.

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

source


# YAXArrays.Datasets.savedatasetMethod.

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

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

Warning

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

source


# YAXArrays.Datasets.to_datasetMethod.

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

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

source


Internal API

# YAXArrays.YAXDefaultsConstant.

Default configuration for YAXArrays, has the following fields:

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

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

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

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

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

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

source


# YAXArrays.findAxisMethod.
julia
findAxis(desc, c)

Internal function

Extended Help

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

The Axis description can be:

  • the name as a string or symbol.

  • an Axis object

source


# YAXArrays.getOutAxisMethod.
julia
getOutAxis

source


# YAXArrays.get_descriptorMethod.
julia
get_descriptor(a)

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

source


# YAXArrays.match_axisMethod.
julia
match_axis

Internal function

Extended Help

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

source


# YAXArrays.Cubes.CleanMeType.
julia
mutable struct CleanMe

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

source


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

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

source


# YAXArrays.Cubes.copydataMethod.
julia
copydata(outar, inar, copybuf)

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

source


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

Internal

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

source


# YAXArrays.DAT.DATConfigType.

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

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

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

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

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

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

  • loopcachesize::Vector{Int64}:

  • allow_irregular_chunks::Bool:

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

  • fu::Any: Inner function which is computed

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

  • include_loopvars::Bool:

  • ntr::Any:

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

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

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

source


# YAXArrays.DAT.InputCubeType.

Internal representation of an input cube for DAT operations

  • cube: The input data

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

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

  • icolon

  • colonperm

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

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

  • window

  • iwindow

  • windowloopinds

  • iall

source


# YAXArrays.DAT.OutputCubeType.

Internal representation of an output cube for DAT operations

Fields

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

  • cube_unpermuted: The unpermuted output cube

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

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

  • allAxes: List of all the axes of the cube

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

  • innerchunks

  • outtype: Elementtype of the outputcube

source


# YAXArrays.DAT.YAXColumnType.
julia
YAXColumn

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

  • inarBC

  • inds

source


# YAXArrays.DAT.cmpcachmissesMethod.

Function that compares two cache miss specifiers by their importance

source


# YAXArrays.DAT.getFrontPermMethod.

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

source


# YAXArrays.DAT.getLoopCacheSizeMethod.

Calculate optimal Cache size to DAT operation

source


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

Internal function

Get the element type for the output cube

source


# YAXArrays.DAT.getloopchunksMethod.
julia
getloopchunks(dc::DATConfig)

Internal function

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

source


# YAXArrays.DAT.permuteloopaxesMethod.
julia
permuteloopaxes(dc)

Internal function

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

source


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

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

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

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

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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source


# YAXArrays.Datasets.collectfromhandleMethod.

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

source


# YAXArrays.Datasets.createdatasetMethod.

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

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

Keyword arguments

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

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

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

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

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

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

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

  • 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

source


# YAXArrays.Datasets.getarrayinfoMethod.

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

source


# YAXArrays.Datasets.testrangeMethod.

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

source


`,100),o=[r];function l(d,n,p,c,h,u){return s(),a("div",null,o)}const A=e(t,[["render",l]]);export{y as __pageData,A as default}; +For example to disregard differences of captialisation.

source


# YAXArrays.Cubes.CleanMeType.
julia
mutable struct CleanMe

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

source


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

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

source


# YAXArrays.Cubes.copydataMethod.
julia
copydata(outar, inar, copybuf)

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

source


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

Internal

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

source


# YAXArrays.DAT.DATConfigType.

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

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

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

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

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

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

  • loopcachesize::Vector{Int64}:

  • allow_irregular_chunks::Bool:

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

  • fu::Any: Inner function which is computed

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

  • include_loopvars::Bool:

  • ntr::Any:

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

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

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

source


# YAXArrays.DAT.InputCubeType.

Internal representation of an input cube for DAT operations

  • cube: The input data

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

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

  • icolon

  • colonperm

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

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

  • window

  • iwindow

  • windowloopinds

  • iall

source


# YAXArrays.DAT.OutputCubeType.

Internal representation of an output cube for DAT operations

Fields

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

  • cube_unpermuted: The unpermuted output cube

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

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

  • allAxes: List of all the axes of the cube

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

  • innerchunks

  • outtype: Elementtype of the outputcube

source


# YAXArrays.DAT.YAXColumnType.
julia
YAXColumn

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

  • inarBC

  • inds

source


# YAXArrays.DAT.cmpcachmissesMethod.

Function that compares two cache miss specifiers by their importance

source


# YAXArrays.DAT.getFrontPermMethod.

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

source


# YAXArrays.DAT.getLoopCacheSizeMethod.

Calculate optimal Cache size to DAT operation

source


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

Internal function

Get the element type for the output cube

source


# YAXArrays.DAT.getloopchunksMethod.
julia
getloopchunks(dc::DATConfig)

Internal function

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

source


# YAXArrays.DAT.permuteloopaxesMethod.
julia
permuteloopaxes(dc)

Internal function

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

source


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

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

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

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

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

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

  • a DiskArrays.GridChunks object

  • a tuple specifying the chunk size along each dimension

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

source


# YAXArrays.Datasets.collectfromhandleMethod.

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

source


# YAXArrays.Datasets.createdatasetMethod.

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

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

Keyword arguments

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

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

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

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

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

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

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

  • 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

source


# YAXArrays.Datasets.getarrayinfoMethod.

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

source


# YAXArrays.Datasets.testrangeMethod.

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

source


`,100),o=[r];function l(n,d,p,c,h,b){return s(),a("div",null,o)}const A=e(t,[["render",l]]);export{y as __pageData,A as default}; diff --git a/dev/assets/api.md.DwO_Lp_-.lean.js b/dev/assets/api.md.tbo9MALo.lean.js similarity index 83% rename from dev/assets/api.md.DwO_Lp_-.lean.js rename to dev/assets/api.md.tbo9MALo.lean.js index 3de10823..97c803a8 100644 --- a/dev/assets/api.md.DwO_Lp_-.lean.js +++ b/dev/assets/api.md.tbo9MALo.lean.js @@ -1 +1 @@ -import{_ as e,c as a,o as s,a3 as i}from"./chunks/framework.D-wbpLqx.js";const y=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),t={name:"api.md"},r=i("",100),o=[r];function l(d,n,p,c,h,u){return s(),a("div",null,o)}const A=e(t,[["render",l]]);export{y as __pageData,A as default}; +import{_ as e,c as a,o as s,a3 as i}from"./chunks/framework.D-wbpLqx.js";const y=JSON.parse('{"title":"API Reference","description":"","frontmatter":{},"headers":[],"relativePath":"api.md","filePath":"api.md","lastUpdated":null}'),t={name:"api.md"},r=i("",100),o=[r];function l(n,d,p,c,h,b){return s(),a("div",null,o)}const A=e(t,[["render",l]]);export{y as __pageData,A as default}; diff --git a/dev/assets/app.CfRkFKoj.js b/dev/assets/app.D07ZyF6G.js similarity index 95% rename from dev/assets/app.CfRkFKoj.js rename to dev/assets/app.D07ZyF6G.js index 9fc61578..b618ea50 100644 --- a/dev/assets/app.CfRkFKoj.js +++ b/dev/assets/app.D07ZyF6G.js @@ -1 +1 @@ -import{U as o,a7 as p,a8 as u,a9 as l,aa as c,ab as f,ac as d,ad as m,ae as h,af as g,ag as A,d as P,u as v,y,x as w,ah as C,ai as R,aj as b,a6 as E}from"./chunks/framework.D-wbpLqx.js";import{R as S}from"./chunks/theme.BRL7lqyv.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(S),T=P({name:"VitePressApp",setup(){const{site:e,lang:a,dir:t}=v();return y(()=>{w(()=>{document.documentElement.lang=a.value,document.documentElement.dir=t.value})}),e.value.router.prefetchLinks&&C(),R(),b(),s.setup&&s.setup(),()=>E(s.Layout)}});async function _(){globalThis.__VITEPRESS__=!0;const e=x(),a=j();a.provide(u,e);const t=l(e.route);return a.provide(c,t),a.component("Content",f),a.component("ClientOnly",d),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:m}),{app:a,router:e,data:t}}function j(){return h(T)}function x(){let e=o,a;return g(t=>{let n=A(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&&_().then(({app:e,router:a,data:t})=>{a.go().then(()=>{p(a.route,t.site),e.mount("#app")})});export{_ as createApp}; +import{U as o,a7 as p,a8 as u,a9 as l,aa as c,ab as f,ac as d,ad as m,ae as h,af as g,ag as A,d as P,u as v,y,x as w,ah as C,ai as R,aj as b,a6 as E}from"./chunks/framework.D-wbpLqx.js";import{R as S}from"./chunks/theme._5fjVdrL.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(S),T=P({name:"VitePressApp",setup(){const{site:e,lang:a,dir:t}=v();return y(()=>{w(()=>{document.documentElement.lang=a.value,document.documentElement.dir=t.value})}),e.value.router.prefetchLinks&&C(),R(),b(),s.setup&&s.setup(),()=>E(s.Layout)}});async function _(){globalThis.__VITEPRESS__=!0;const e=x(),a=j();a.provide(u,e);const t=l(e.route);return a.provide(c,t),a.component("Content",f),a.component("ClientOnly",d),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:m}),{app:a,router:e,data:t}}function j(){return h(T)}function x(){let e=o,a;return g(t=>{let n=A(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&&_().then(({app:e,router:a,data:t})=>{a.go().then(()=>{p(a.route,t.site),e.mount("#app")})});export{_ as createApp}; diff --git a/dev/assets/chunks/@localSearchIndexroot.Cm1xQonj.js b/dev/assets/chunks/@localSearchIndexroot.Cm1xQonj.js deleted file mode 100644 index a0358ccc..00000000 --- a/dev/assets/chunks/@localSearchIndexroot.Cm1xQonj.js +++ /dev/null @@ -1 +0,0 @@ -const e='{"documentCount":85,"nextId":85,"documentIds":{"0":"/YAXArrays.jl/dev/UserGuide/chunk#Chunk-YAXArrays","1":"/YAXArrays.jl/dev/UserGuide/chunk#Chunking-YAXArrays","2":"/YAXArrays.jl/dev/UserGuide/chunk#Chunking-Datasets","3":"/YAXArrays.jl/dev/UserGuide/chunk#Set-Chunks-by-Axis","4":"/YAXArrays.jl/dev/UserGuide/chunk#Set-chunking-by-Variable","5":"/YAXArrays.jl/dev/UserGuide/chunk#Set-chunking-for-all-variables","6":"/YAXArrays.jl/dev/UserGuide/combine#Combine-YAXArrays","7":"/YAXArrays.jl/dev/UserGuide/combine#cat-along-an-existing-dimension","8":"/YAXArrays.jl/dev/UserGuide/combine#concatenatecubes-to-a-new-dimension","9":"/YAXArrays.jl/dev/UserGuide/compute#Compute-YAXArrays","10":"/YAXArrays.jl/dev/UserGuide/compute#Modify-elements-of-a-YAXArray","11":"/YAXArrays.jl/dev/UserGuide/compute#arithmetics","12":"/YAXArrays.jl/dev/UserGuide/compute#map","13":"/YAXArrays.jl/dev/UserGuide/compute#mapslices","14":"/YAXArrays.jl/dev/UserGuide/compute#mapCube","15":"/YAXArrays.jl/dev/UserGuide/compute#Distributed-Computation","16":"/YAXArrays.jl/dev/UserGuide/create#Create-YAXArrays-and-Datasets","17":"/YAXArrays.jl/dev/UserGuide/create#Create-a-YAXArray","18":"/YAXArrays.jl/dev/UserGuide/create#Create-a-Dataset","19":"/YAXArrays.jl/dev/UserGuide/convert#Convert-YAXArrays","20":"/YAXArrays.jl/dev/UserGuide/convert#Convert-Base.Array","21":"/YAXArrays.jl/dev/UserGuide/convert#Convert-Raster","22":"/YAXArrays.jl/dev/UserGuide/convert#Convert-DimArray","23":"/YAXArrays.jl/dev/UserGuide/faq#Frequently-Asked-Questions-(FAQ)","24":"/YAXArrays.jl/dev/UserGuide/faq#Extract-the-axes-names-from-a-Cube","25":"/YAXArrays.jl/dev/UserGuide/faq#Obtain-values-from-axes-and-data-from-the-cube","26":"/YAXArrays.jl/dev/UserGuide/faq#How-do-I-concatenate-cubes","27":"/YAXArrays.jl/dev/UserGuide/faq#How-do-I-subset-a-Cube?","28":"/YAXArrays.jl/dev/UserGuide/faq#How-do-I-apply-map-algebra?","29":"/YAXArrays.jl/dev/UserGuide/faq#How-do-I-use-the-CubeTable-function?","30":"/YAXArrays.jl/dev/UserGuide/faq#How-do-I-assing-variable-names-to-YAXArrays-in-a-Dataset","31":"/YAXArrays.jl/dev/UserGuide/faq#One-variable-name","32":"/YAXArrays.jl/dev/UserGuide/faq#Multiple-variable-names","33":"/YAXArrays.jl/dev/UserGuide/group#Group-YAXArrays-and-Datasets","34":"/YAXArrays.jl/dev/UserGuide/group#Seasonal-Averages-from-Time-Series-of-Monthly-Means","35":"/YAXArrays.jl/dev/UserGuide/group#Download-the-data","36":"/YAXArrays.jl/dev/UserGuide/group#GroupBy:-seasons","37":"/YAXArrays.jl/dev/UserGuide/group#dropdims","38":"/YAXArrays.jl/dev/UserGuide/group#seasons","39":"/YAXArrays.jl/dev/UserGuide/group#GroupBy:-weight","40":"/YAXArrays.jl/dev/UserGuide/group#weights","41":"/YAXArrays.jl/dev/UserGuide/group#weighted-seasons","42":"/YAXArrays.jl/dev/UserGuide/read#Read-YAXArrays-and-Datasets","43":"/YAXArrays.jl/dev/UserGuide/read#Read-Zarr","44":"/YAXArrays.jl/dev/UserGuide/read#Read-NetCDF","45":"/YAXArrays.jl/dev/UserGuide/read#Read-GDAL-(GeoTIFF,-GeoJSON)","46":"/YAXArrays.jl/dev/UserGuide/select#Select-YAXArrays-and-Datasets","47":"/YAXArrays.jl/dev/UserGuide/select#Select-a-YAXArray","48":"/YAXArrays.jl/dev/UserGuide/select#Select-elements","49":"/YAXArrays.jl/dev/UserGuide/select#Select-ranges","50":"/YAXArrays.jl/dev/UserGuide/select#Closed-and-open-intervals","51":"/YAXArrays.jl/dev/UserGuide/select#Get-a-dimension","52":"/YAXArrays.jl/dev/UserGuide/types#types","53":"/YAXArrays.jl/dev/UserGuide/types#yaxarray","54":"/YAXArrays.jl/dev/UserGuide/types#dataset","55":"/YAXArrays.jl/dev/UserGuide/types#(Data)-Cube","56":"/YAXArrays.jl/dev/UserGuide/types#dimension","57":"/YAXArrays.jl/dev/UserGuide/write#Write-YAXArrays-and-Datasets","58":"/YAXArrays.jl/dev/UserGuide/write#Write-Zarr","59":"/YAXArrays.jl/dev/UserGuide/write#Write-NetCDF","60":"/YAXArrays.jl/dev/UserGuide/write#Overwrite-a-Dataset","61":"/YAXArrays.jl/dev/UserGuide/write#Append-to-a-Dataset","62":"/YAXArrays.jl/dev/UserGuide/write#Save-Skeleton","63":"/YAXArrays.jl/dev/api#API-Reference","64":"/YAXArrays.jl/dev/api#Public-API","65":"/YAXArrays.jl/dev/api#Internal-API","66":"/YAXArrays.jl/dev/development/contribute#Contribute-to-YAXArrays.jl","67":"/YAXArrays.jl/dev/development/contribute#Contribute-to-Documentation","68":"/YAXArrays.jl/dev/development/contribute#Build-docs-locally","69":"/YAXArrays.jl/dev/get_started#Getting-Started","70":"/YAXArrays.jl/dev/get_started#installation","71":"/YAXArrays.jl/dev/get_started#quickstart","72":"/YAXArrays.jl/dev/get_started#updates","73":"/YAXArrays.jl/dev/tutorials/mean_seasonal_cycle#Mean-Seasonal-Cycle-for-a-sigle-pixel","74":"/YAXArrays.jl/dev/tutorials/mean_seasonal_cycle#Define-the-cube","75":"/YAXArrays.jl/dev/tutorials/mean_seasonal_cycle#Plot-results:-mean-seasonal-cycle","76":"/YAXArrays.jl/dev/tutorials/other_tutorials#Other-tutorials","77":"/YAXArrays.jl/dev/tutorials/other_tutorials#General-overview-of-the-functionality-of-YAXArrays","78":"/YAXArrays.jl/dev/tutorials/other_tutorials#Table-style-iteration-over-YAXArrays","79":"/YAXArrays.jl/dev/tutorials/other_tutorials#Combining-multiple-tiff-files-into-a-zarr-based-datacube","80":"/YAXArrays.jl/dev/tutorials/plottingmaps#Plotting-maps","81":"/YAXArrays.jl/dev/tutorials/plottingmaps#Heatmap-plot","82":"/YAXArrays.jl/dev/tutorials/plottingmaps#Wintri-Projection","83":"/YAXArrays.jl/dev/tutorials/plottingmaps#Moll-projection","84":"/YAXArrays.jl/dev/tutorials/plottingmaps#3D-sphere-plot"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[2,1,58],"1":[2,2,57],"2":[2,2,9],"3":[4,4,73],"4":[4,4,73],"5":[5,4,81],"6":[2,1,31],"7":[5,2,80],"8":[5,2,89],"9":[2,1,117],"10":[5,2,30],"11":[1,2,70],"12":[1,2,118],"13":[1,2,88],"14":[1,2,261],"15":[2,2,138],"16":[4,1,14],"17":[3,4,106],"18":[3,4,45],"19":[2,1,52],"20":[3,2,84],"21":[2,2,116],"22":[2,2,120],"23":[5,1,19],"24":[7,5,75],"25":[8,5,76],"26":[5,5,87],"27":[7,5,126],"28":[7,5,115],"29":[8,5,175],"30":[11,5,1],"31":[3,15,24],"32":[3,15,32],"33":[4,1,23],"34":[8,4,35],"35":[3,4,67],"36":[2,4,95],"37":[1,6,72],"38":[1,6,49],"39":[2,4,95],"40":[1,6,69],"41":[2,6,203],"42":[4,1,14],"43":[2,4,184],"44":[2,4,206],"45":[5,4,34],"46":[4,1,165],"47":[3,4,106],"48":[2,4,117],"49":[2,4,131],"50":[4,4,144],"51":[3,4,73],"52":[1,1,16],"53":[1,1,113],"54":[1,1,78],"55":[3,1,70],"56":[1,1,32],"57":[4,1,146],"58":[2,4,19],"59":[2,4,20],"60":[3,4,80],"61":[4,4,153],"62":[2,4,117],"63":[2,1,10],"64":[2,2,559],"65":[2,2,457],"66":[4,1,15],"67":[3,4,40],"68":[3,5,75],"69":[2,1,1],"70":[1,2,34],"71":[1,2,189],"72":[1,2,49],"73":[7,1,121],"74":[3,7,132],"75":[5,7,53],"76":[2,1,49],"77":[6,2,12],"78":[5,2,38],"79":[9,2,1],"80":[2,1,132],"81":[2,2,21],"82":[2,1,46],"83":[2,2,33],"84":[3,2,57]},"averageFieldLength":[3.2352941176470593,3.176470588235294,88.11764705882354],"storedFields":{"0":{"title":"Chunk YAXArrays","titles":[]},"1":{"title":"Chunking YAXArrays","titles":["Chunk YAXArrays"]},"2":{"title":"Chunking Datasets","titles":["Chunk YAXArrays"]},"3":{"title":"Set Chunks by Axis","titles":["Chunk YAXArrays","Chunking Datasets"]},"4":{"title":"Set chunking by Variable","titles":["Chunk YAXArrays","Chunking Datasets"]},"5":{"title":"Set chunking for all variables","titles":["Chunk YAXArrays","Chunking Datasets"]},"6":{"title":"Combine YAXArrays","titles":[]},"7":{"title":"cat along an existing dimension","titles":["Combine YAXArrays"]},"8":{"title":"concatenatecubes to a new dimension","titles":["Combine YAXArrays"]},"9":{"title":"Compute YAXArrays","titles":[]},"10":{"title":"Modify elements of a YAXArray","titles":["Compute YAXArrays"]},"11":{"title":"Arithmetics","titles":["Compute YAXArrays"]},"12":{"title":"map","titles":["Compute YAXArrays"]},"13":{"title":"mapslices","titles":["Compute YAXArrays"]},"14":{"title":"mapCube","titles":["Compute YAXArrays"]},"15":{"title":"Distributed Computation","titles":["Compute YAXArrays"]},"16":{"title":"Create YAXArrays and Datasets","titles":[]},"17":{"title":"Create a YAXArray","titles":["Create YAXArrays and Datasets"]},"18":{"title":"Create a Dataset","titles":["Create YAXArrays and Datasets"]},"19":{"title":"Convert YAXArrays","titles":[]},"20":{"title":"Convert Base.Array","titles":["Convert YAXArrays"]},"21":{"title":"Convert Raster","titles":["Convert YAXArrays"]},"22":{"title":"Convert DimArray","titles":["Convert YAXArrays"]},"23":{"title":"Frequently Asked Questions (FAQ)","titles":[]},"24":{"title":"Extract the axes names from a Cube","titles":["Frequently Asked Questions (FAQ)"]},"25":{"title":"Obtain values from axes and data from the cube","titles":["Frequently Asked Questions (FAQ)"]},"26":{"title":"How do I concatenate cubes","titles":["Frequently Asked Questions (FAQ)"]},"27":{"title":"How do I subset a Cube?","titles":["Frequently Asked Questions (FAQ)"]},"28":{"title":"How do I apply map algebra?","titles":["Frequently Asked Questions (FAQ)"]},"29":{"title":"How do I use the CubeTable function?","titles":["Frequently Asked Questions (FAQ)"]},"30":{"title":"How do I assing variable names to YAXArrays in a Dataset","titles":["Frequently Asked Questions (FAQ)"]},"31":{"title":"One variable name","titles":["Frequently Asked Questions (FAQ)","How do I assing variable names to YAXArrays in a Dataset"]},"32":{"title":"Multiple variable names","titles":["Frequently Asked Questions (FAQ)","How do I assing variable names to YAXArrays in a Dataset"]},"33":{"title":"Group YAXArrays and Datasets","titles":[]},"34":{"title":"Seasonal Averages from Time Series of Monthly Means","titles":["Group YAXArrays and Datasets"]},"35":{"title":"Download the data","titles":["Group YAXArrays and Datasets"]},"36":{"title":"GroupBy: seasons","titles":["Group YAXArrays and Datasets"]},"37":{"title":"dropdims","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"38":{"title":"seasons","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"39":{"title":"GroupBy: weight","titles":["Group YAXArrays and Datasets"]},"40":{"title":"weights","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"41":{"title":"weighted seasons","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"42":{"title":"Read YAXArrays and Datasets","titles":[]},"43":{"title":"Read Zarr","titles":["Read YAXArrays and Datasets"]},"44":{"title":"Read NetCDF","titles":["Read YAXArrays and Datasets"]},"45":{"title":"Read GDAL (GeoTIFF, GeoJSON)","titles":["Read YAXArrays and Datasets"]},"46":{"title":"Select YAXArrays and Datasets","titles":[]},"47":{"title":"Select a YAXArray","titles":["Select YAXArrays and Datasets"]},"48":{"title":"Select elements","titles":["Select YAXArrays and Datasets"]},"49":{"title":"Select ranges","titles":["Select YAXArrays and Datasets"]},"50":{"title":"Closed and open intervals","titles":["Select YAXArrays and Datasets"]},"51":{"title":"Get a dimension","titles":["Select YAXArrays and Datasets"]},"52":{"title":"Types","titles":[]},"53":{"title":"YAXArray","titles":["Types"]},"54":{"title":"Dataset","titles":["Types"]},"55":{"title":"(Data) Cube","titles":["Types"]},"56":{"title":"Dimension","titles":["Types"]},"57":{"title":"Write YAXArrays and Datasets","titles":[]},"58":{"title":"Write Zarr","titles":["Write YAXArrays and Datasets"]},"59":{"title":"Write NetCDF","titles":["Write YAXArrays and Datasets"]},"60":{"title":"Overwrite a Dataset","titles":["Write YAXArrays and Datasets"]},"61":{"title":"Append to a Dataset","titles":["Write YAXArrays and Datasets"]},"62":{"title":"Save Skeleton","titles":["Write YAXArrays and Datasets"]},"63":{"title":"API Reference","titles":[]},"64":{"title":"Public API","titles":["API Reference"]},"65":{"title":"Internal API","titles":["API Reference"]},"66":{"title":"Contribute to YAXArrays.jl","titles":[]},"67":{"title":"Contribute to Documentation","titles":["Contribute to YAXArrays.jl"]},"68":{"title":"Build docs locally","titles":["Contribute to YAXArrays.jl","Contribute to Documentation"]},"69":{"title":"Getting Started","titles":[]},"70":{"title":"Installation","titles":["Getting Started"]},"71":{"title":"Quickstart","titles":["Getting Started"]},"72":{"title":"Updates","titles":["Getting Started"]},"73":{"title":"Mean Seasonal Cycle for a sigle pixel","titles":[]},"74":{"title":"Define the cube","titles":["Mean Seasonal Cycle for a sigle pixel"]},"75":{"title":"Plot results: mean seasonal cycle","titles":["Mean Seasonal Cycle for a sigle pixel"]},"76":{"title":"Other tutorials","titles":[]},"77":{"title":"General overview of the functionality of YAXArrays","titles":["Other tutorials"]},"78":{"title":"Table-style iteration over YAXArrays","titles":["Other tutorials"]},"79":{"title":"Combining multiple tiff files into a zarr based datacube","titles":["Other tutorials"]},"80":{"title":"Plotting maps","titles":[]},"81":{"title":"Heatmap plot","titles":["Plotting maps"]},"82":{"title":"Wintri Projection","titles":[]},"83":{"title":"Moll projection","titles":["Wintri Projection"]},"84":{"title":"3D sphere plot","titles":["Wintri Projection"]}},"dirtCount":0,"index":[["δlon",{"2":{"82":1}}],["÷",{"2":{"73":1}}],["`diskarrays",{"2":{"65":1}}],["`ds`",{"2":{"64":1}}],["`ordereddict`",{"2":{"64":1}}],["`fun`",{"2":{"64":1}}],["quickstart",{"0":{"71":1}}],["query",{"2":{"46":1}}],["questions",{"0":{"23":1},"1":{"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1}}],["quot",{"2":{"29":2,"60":2,"62":2,"64":16,"65":10}}],["π",{"2":{"28":2,"73":1,"75":1}}],[">var",{"2":{"74":1}}],[">dates",{"2":{"74":1}}],[">month",{"2":{"64":1}}],[">abs",{"2":{"64":1}}],[">",{"2":{"28":2,"74":1}}],["└──────────────────────────────────────────────────────────┘",{"2":{"27":1}}],["└────────────────────────────────────────────────────────────┘",{"2":{"25":1}}],["└─────────────────────────────────────────────────────────────┘",{"2":{"21":2}}],["└────────────────────────────────────────────────────────────────────┘",{"2":{"29":1}}],["└─────────────────────────────────────────────────────────────────────┘",{"2":{"20":1,"71":1}}],["└──────────────────────────────────────────────────────────────────────┘",{"2":{"17":1,"24":1,"62":1}}],["└────────────────────────────────────────────────────────────────────────────────┘",{"2":{"48":1}}],["└──────────────────────────────────────────────────────────────────────────────┘",{"2":{"9":1,"11":1,"12":1,"13":2,"14":4,"17":1,"26":1,"27":4,"28":3,"29":1,"36":2,"37":1,"39":3,"40":2,"41":3,"43":1,"44":1,"47":2,"48":2,"49":3,"50":5,"71":1,"74":1}}],["└───────────────────────────────────────────────────────────────────────┘",{"2":{"7":1,"29":1}}],["└──────────────────────────────────────────────────────────────────┘",{"2":{"22":2}}],["└────────────────────────────────────────────────────────────────┘",{"2":{"8":1}}],["⬔",{"2":{"26":1,"71":1}}],["jj+1",{"2":{"44":1,"46":1,"57":1,"61":1}}],["jj",{"2":{"44":1,"46":1,"57":1,"61":1}}],["joinname",{"2":{"64":1}}],["joinname=",{"2":{"64":1}}],["journal",{"2":{"44":1,"46":1,"57":1,"61":1}}],["joe",{"2":{"34":1,"41":1}}],["j",{"2":{"41":8}}],["jan",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["jl",{"0":{"66":1},"1":{"67":1,"68":1},"2":{"21":1,"22":1,"29":1,"35":1,"41":1,"53":1,"56":1,"66":1,"68":2,"70":1,"71":2,"72":3,"78":1}}],["jussieu",{"2":{"44":1,"46":1,"57":1,"61":1}}],["just",{"2":{"14":1,"53":1,"55":1,"64":1,"65":2}}],["jul",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["juliaδlon",{"2":{"82":1}}],["juliaglmakie",{"2":{"81":1}}],["juliagetloopchunks",{"2":{"65":1}}],["juliagetouttype",{"2":{"65":1}}],["juliagetoutaxis",{"2":{"65":1}}],["juliaget",{"2":{"65":1}}],["juliagetaxis",{"2":{"64":1}}],["julialon",{"2":{"80":1}}],["julialookup",{"2":{"51":1}}],["julialines",{"2":{"73":1}}],["juliax",{"2":{"73":1}}],["juliapkg>",{"2":{"70":1,"72":1}}],["juliapermuteloopaxes",{"2":{"65":1}}],["juliayaxcolumn",{"2":{"65":1}}],["juliayaxarray",{"2":{"64":1}}],["juliaoptifunc",{"2":{"65":1}}],["juliaoutdims",{"2":{"64":1}}],["juliaoffset",{"2":{"12":1}}],["juliaindims",{"2":{"64":1}}],["juliaimport",{"2":{"13":1,"70":1}}],["juliacopydata",{"2":{"65":1}}],["juliacollect",{"2":{"25":1,"51":1}}],["juliaclean",{"2":{"65":1}}],["juliacube",{"2":{"64":1}}],["juliacubefittable",{"2":{"64":1}}],["juliacubetable",{"2":{"64":1}}],["juliacaxes",{"2":{"64":1}}],["juliasavecube",{"2":{"64":1}}],["juliasavedataset",{"2":{"58":1,"59":1,"60":1}}],["juliasetchunks",{"2":{"64":1,"65":1}}],["juliaseasons",{"2":{"38":1}}],["juliawith",{"2":{"41":1}}],["julia>",{"2":{"41":1,"68":1,"74":1}}],["juliaurl",{"2":{"35":1}}],["juliausing",{"2":{"1":1,"3":1,"4":1,"5":1,"7":1,"8":1,"9":1,"14":1,"15":2,"17":2,"20":1,"21":1,"22":1,"24":1,"26":1,"27":1,"29":2,"33":1,"41":1,"43":1,"44":1,"46":1,"48":1,"50":1,"57":1,"58":1,"59":1,"62":1,"71":2,"73":1,"80":1,"84":1}}],["juliakeylist",{"2":{"32":1}}],["juliatos",{"2":{"47":2,"48":2,"49":3,"50":1,"51":1}}],["juliatempo",{"2":{"39":1}}],["juliat",{"2":{"29":1,"73":1}}],["juliajulia>",{"2":{"24":3,"25":1,"26":1,"27":5,"28":3,"29":3,"31":1,"32":1,"36":2,"37":1,"39":2,"40":2,"41":3,"50":4,"61":1,"62":1,"74":2,"80":3}}],["juliareadcubedata",{"2":{"64":1}}],["juliaregions",{"2":{"14":2}}],["juliar",{"2":{"62":1}}],["juliaras2",{"2":{"21":1}}],["juliamutable",{"2":{"65":1}}],["juliamatch",{"2":{"65":1}}],["juliamapcube",{"2":{"64":2}}],["juliamapslices",{"2":{"13":1,"15":1}}],["juliamovingwindow",{"2":{"64":1}}],["juliamean",{"2":{"41":1}}],["juliam2",{"2":{"20":1}}],["julia",{"2":{"19":1,"65":1,"68":1,"70":2,"72":2}}],["juliadataset",{"2":{"64":1}}],["juliadata3",{"2":{"18":1}}],["juliads2",{"2":{"61":1}}],["juliads",{"2":{"43":1,"44":1}}],["juliadim",{"2":{"22":1}}],["juliadimarray",{"2":{"14":1}}],["juliavector",{"2":{"14":1}}],["juliaall",{"2":{"62":1}}],["juliaaxs",{"2":{"35":1}}],["juliaaxes",{"2":{"27":1}}],["juliaa2",{"2":{"11":2,"17":2,"71":1}}],["juliaa",{"2":{"1":1,"10":3}}],["juliafig",{"2":{"73":1,"82":1,"83":1}}],["juliafindaxis",{"2":{"65":1}}],["juliafittable",{"2":{"64":2}}],["juliafunction",{"2":{"36":1,"64":1,"73":1,"74":1}}],["juliaf",{"2":{"1":1,"3":1,"4":1,"5":1}}],["jun",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["∘",{"2":{"15":1}}],["|>",{"2":{"14":2}}],["⋱",{"2":{"14":1}}],["⋮",{"2":{"14":2,"51":1,"74":1}}],["844823",{"2":{"71":1}}],["84",{"2":{"51":1}}],["89",{"2":{"43":4,"44":2,"46":1,"47":2,"48":1,"49":1,"50":5,"51":1,"57":1,"61":1,"80":2}}],["88",{"2":{"26":1,"43":4,"51":1,"71":1,"80":2}}],["800",{"2":{"25":1,"27":1,"62":1}}],["809514",{"2":{"21":1}}],["87",{"2":{"51":1}}],["871052",{"2":{"21":1}}],["876059",{"2":{"20":1}}],["82",{"2":{"51":1}}],["827419",{"2":{"21":1}}],["820772",{"2":{"21":1}}],["839279",{"2":{"71":1}}],["83",{"2":{"51":1}}],["833617",{"2":{"22":1}}],["83732",{"2":{"20":1}}],["832396",{"2":{"20":1}}],["86",{"2":{"51":1}}],["86815",{"2":{"20":1}}],["865179",{"2":{"20":1}}],["858072",{"2":{"71":1}}],["85",{"2":{"51":1,"82":1,"83":1}}],["850",{"2":{"41":1}}],["859362",{"2":{"20":1}}],["853183",{"2":{"20":1}}],["85714",{"2":{"14":1}}],["818591",{"2":{"71":1}}],["810778",{"2":{"71":1}}],["81",{"2":{"17":1,"51":1}}],["817787",{"2":{"14":1}}],["8",{"2":{"14":2,"25":1,"27":1,"44":2,"46":1,"47":2,"57":1,"61":1,"74":1}}],["v",{"2":{"44":1,"46":1,"57":1,"61":1}}],["v1",{"2":{"44":2,"46":2,"57":2,"61":2,"70":1}}],["vol",{"2":{"44":1,"46":1,"57":1,"61":1}}],["v20190710",{"2":{"43":1,"80":2}}],["video",{"2":{"76":1}}],["videos",{"2":{"76":1}}],["visualization",{"2":{"29":1}}],["vice",{"2":{"19":1}}],["view",{"2":{"14":1,"71":1}}],["version",{"2":{"43":1,"44":1,"46":1,"57":1,"61":1,"72":2,"80":1}}],["versa",{"2":{"19":1}}],["verify",{"2":{"40":1}}],["very",{"2":{"12":1,"29":1,"53":1}}],["vector",{"2":{"14":4,"25":1,"38":1,"51":1,"53":1,"64":2,"65":3}}],["val",{"2":{"25":2,"51":1}}],["vals",{"2":{"14":1}}],["value",{"2":{"11":1,"13":3,"28":1,"44":1,"47":2,"48":3,"49":3,"50":5,"64":4,"65":1}}],["values=ds1",{"2":{"29":1}}],["values",{"0":{"25":1},"2":{"8":1,"14":2,"16":1,"17":2,"24":3,"25":1,"27":1,"29":4,"49":1,"51":2,"53":1,"54":1,"62":1,"64":9,"71":1,"80":1}}],["vararg",{"2":{"65":2}}],["varoables",{"2":{"64":1}}],["variant",{"2":{"43":1,"80":1}}],["variable=at",{"2":{"71":1}}],["variable",{"0":{"4":1,"30":1,"31":1,"32":1},"1":{"31":1,"32":1},"2":{"4":1,"8":3,"43":1,"64":4,"65":6,"71":3,"73":2,"74":1,"75":1,"80":1}}],["variables=at",{"2":{"28":2}}],["variables",{"0":{"5":1},"2":{"3":2,"4":1,"5":2,"8":2,"18":1,"19":1,"26":2,"31":1,"32":1,"43":2,"44":1,"46":1,"54":1,"55":1,"57":1,"61":2,"64":2,"80":2}}],["varlist",{"2":{"32":2}}],["var2",{"2":{"26":2,"28":1}}],["var1",{"2":{"26":2,"28":1}}],["var",{"2":{"8":2,"73":3,"74":2,"75":2}}],["uv",{"2":{"84":1}}],["u",{"2":{"74":1}}],["updates",{"0":{"72":1}}],["update",{"2":{"64":1}}],["up",{"2":{"64":1}}],["ucar",{"2":{"44":1,"46":1,"54":1,"57":1}}],["urls",{"2":{"42":1}}],["url",{"2":{"35":1,"43":1}}],["unpermuted",{"2":{"65":2}}],["unpractical",{"2":{"35":1}}],["underlying",{"2":{"64":1,"65":1,"72":1}}],["unlike",{"2":{"55":1}}],["unique",{"2":{"74":1}}],["unidata",{"2":{"44":1,"46":1,"54":1,"57":1}}],["units",{"2":{"43":1,"44":2,"47":4,"48":6,"49":6,"50":10}}],["union",{"2":{"13":2,"14":1,"28":1,"29":2,"44":1,"47":2,"48":3,"49":3,"50":5,"62":2}}],["unordered",{"2":{"36":2,"37":1,"38":1,"39":2,"40":2,"41":3}}],["unweighted",{"2":{"36":1,"41":1}}],["unnecessary",{"2":{"14":1}}],["unchanged",{"2":{"12":1}}],["usually",{"2":{"43":1,"53":2,"54":2}}],["usual",{"2":{"36":1}}],["us",{"2":{"14":1}}],["using",{"2":{"7":1,"8":1,"9":1,"14":2,"15":7,"22":1,"24":1,"26":1,"28":1,"29":1,"33":4,"43":2,"44":3,"45":2,"46":2,"48":3,"49":2,"57":2,"61":1,"62":2,"72":1,"73":2,"74":1,"80":3}}],["useable",{"2":{"64":1}}],["useful",{"2":{"55":1}}],["uses",{"2":{"29":1}}],["used",{"2":{"14":1,"15":1,"46":1,"51":1,"52":1,"53":1,"56":1,"64":4,"65":3}}],["userguide",{"2":{"67":2}}],["users",{"2":{"65":1}}],["user",{"2":{"9":2,"11":1,"12":1,"15":1,"17":3,"18":1,"65":1}}],["use",{"0":{"29":1},"2":{"7":1,"8":1,"9":4,"12":1,"15":2,"24":2,"28":1,"29":2,"33":1,"35":1,"37":1,"50":2,"55":1,"62":1,"64":3,"65":1,"76":1,"78":1,"80":2}}],["kwargs",{"2":{"64":4,"65":2}}],["k",{"2":{"43":1,"44":1,"47":2,"48":3,"49":3,"50":5}}],["keep",{"2":{"65":1}}],["keeps",{"2":{"12":1}}],["keys",{"2":{"64":1}}],["key",{"2":{"64":1}}],["keyword",{"2":{"61":1,"64":6,"65":2}}],["keylist",{"2":{"32":1}}],["kb",{"2":{"9":1,"11":1,"12":1,"13":1,"14":1,"17":2,"21":1,"24":1,"26":1,"27":4,"28":3,"29":1,"48":1,"49":3,"50":5,"71":1,"74":1}}],["+proj=moll",{"2":{"83":1}}],["+",{"2":{"11":2,"12":1,"73":1,"82":1}}],["930779",{"2":{"71":1}}],["9375",{"2":{"43":2,"80":1}}],["937007",{"2":{"14":1}}],["927544",{"2":{"71":1}}],["92248",{"2":{"14":1}}],["905464",{"2":{"71":1}}],["904235",{"2":{"71":1}}],["90",{"2":{"50":5}}],["95",{"2":{"41":1}}],["9×275×205",{"2":{"41":4}}],["916561",{"2":{"71":1}}],["91",{"2":{"24":1,"50":5}}],["996066",{"2":{"71":1}}],["996668",{"2":{"21":1}}],["99227",{"2":{"22":1}}],["979487",{"2":{"71":1}}],["973524",{"2":{"21":1}}],["972404",{"2":{"20":1}}],["972913",{"2":{"14":1}}],["977188",{"2":{"14":1}}],["989932",{"2":{"71":1}}],["98121",{"2":{"22":1}}],["98674",{"2":{"21":1}}],["987598",{"2":{"20":1}}],["987994",{"2":{"14":1}}],["9834433505013818",{"2":{"10":1}}],["9",{"2":{"14":2,"25":1,"27":1,"39":4,"40":4,"49":4,"65":1}}],["96x71x19",{"2":{"44":1,"46":1,"57":1,"61":1}}],["96f0",{"2":{"44":1,"46":1,"57":1}}],["960",{"2":{"14":1}}],["96",{"2":{"7":1,"8":1,"48":2,"61":1}}],["↗",{"2":{"9":1,"11":1,"12":1,"14":1,"17":3,"18":1,"21":2,"24":3,"26":1,"27":5,"28":3,"36":2,"41":1,"43":2,"44":2,"46":1,"47":2,"49":3,"50":5,"57":1,"61":2,"71":1,"80":1}}],["lscene",{"2":{"84":1}}],["lw=2",{"2":{"75":1}}],["lmdz",{"2":{"44":1,"46":1,"57":1,"61":1}}],["link",{"2":{"67":1}}],["linewidth=0",{"2":{"82":1,"83":1}}],["linewidth=2",{"2":{"75":1}}],["linewidth=1",{"2":{"73":2,"75":1}}],["linestyle=",{"2":{"75":2}}],["lines",{"2":{"73":1,"75":3}}],["line",{"2":{"29":1}}],["libraries",{"2":{"53":1}}],["lim",{"2":{"44":1,"46":1,"57":1,"61":1}}],["like",{"2":{"29":1,"64":2,"65":1,"67":1}}],["little",{"2":{"15":1}}],["list",{"2":{"14":1,"64":5,"65":6}}],["loopinds",{"2":{"65":2}}],["looping",{"2":{"64":1,"65":1}}],["loopcachesize",{"2":{"65":1}}],["loopchunksize",{"2":{"64":1}}],["loopaxes",{"2":{"65":1}}],["loopvars",{"2":{"64":1,"65":1}}],["loops",{"2":{"64":1}}],["loop",{"2":{"64":1,"65":2}}],["looped",{"2":{"64":3,"65":3}}],["look",{"2":{"60":1,"64":1,"65":1,"67":1,"68":1}}],["lookups",{"2":{"51":3}}],["lookup",{"2":{"36":1,"38":1,"80":3}}],["looks",{"2":{"29":1}}],["located",{"2":{"76":1}}],["locate",{"2":{"68":1}}],["location",{"2":{"65":3}}],["locations",{"2":{"54":1,"55":1}}],["localhost",{"2":{"68":1}}],["locally",{"0":{"68":1},"2":{"68":1}}],["local",{"2":{"15":1,"43":1}}],["loadorgenerate",{"2":{"65":1}}],["load",{"2":{"53":1}}],["loading",{"2":{"45":1}}],["lowclip",{"2":{"41":4}}],["lost",{"2":{"19":1}}],["long",{"2":{"41":1,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5}}],["longitude",{"2":{"27":1,"71":2}}],["lon=1",{"2":{"27":1}}],["lon",{"2":{"9":2,"11":1,"12":1,"13":2,"14":12,"15":1,"17":3,"18":1,"21":2,"26":2,"27":7,"28":4,"29":3,"43":2,"44":2,"46":1,"47":2,"48":3,"49":6,"50":10,"51":2,"57":1,"61":1,"80":2,"82":3}}],["layer",{"2":{"64":1}}],["layername",{"2":{"64":2}}],["layout",{"2":{"41":2}}],["lazy",{"2":{"64":1}}],["lazily",{"2":{"12":1}}],["labelled",{"2":{"64":1}}],["labels",{"2":{"41":1,"51":1,"55":1,"56":1}}],["label=false",{"2":{"41":1}}],["label=",{"2":{"41":1,"75":3}}],["label=cb",{"2":{"41":1}}],["label",{"2":{"41":3,"43":1,"80":1}}],["larger",{"2":{"19":1}}],["large",{"2":{"19":1,"35":1,"53":1}}],["last",{"2":{"15":1}}],["latest",{"2":{"72":1}}],["lat=5",{"2":{"27":1}}],["latitude",{"2":{"27":1,"71":2}}],["lat",{"2":{"9":2,"11":1,"12":1,"13":2,"14":12,"15":1,"17":3,"18":1,"21":2,"26":2,"27":7,"28":4,"29":3,"43":2,"44":2,"46":1,"47":2,"48":3,"49":5,"50":5,"51":1,"57":1,"61":1,"64":1,"80":3,"82":1,"83":1}}],["lentime",{"2":{"73":2}}],["length",{"2":{"36":2,"37":1,"39":3,"64":1,"65":3,"73":3}}],["length=365",{"2":{"73":1}}],["length=20",{"2":{"26":1,"71":1}}],["length=15",{"2":{"9":1,"14":1,"15":1,"17":1,"26":1,"71":1}}],["length=10",{"2":{"9":1,"14":1,"15":1,"17":1,"26":1,"71":1}}],["level",{"2":{"67":1,"68":1}}],["learn",{"2":{"78":1}}],["learning",{"2":{"53":1,"76":1}}],["leap",{"2":{"73":1}}],["least",{"2":{"64":1}}],["left",{"2":{"13":2}}],["let",{"2":{"9":1,"26":1,"27":1,"41":1,"46":1,"74":1}}],["├─────────────────────────┴──────────────────────────",{"2":{"27":1}}],["├─────────────────────────┴─────────────────────────────────────",{"2":{"71":1}}],["├─────────────────────────┴──────────────────────────────────────────────",{"2":{"29":1}}],["├─────────────────────────┴──────────────────────────────────",{"2":{"22":2}}],["├─────────────────────────┴────────────────────────────────",{"2":{"8":1}}],["├──────────────────────────┴────────────────────────────",{"2":{"21":1}}],["├──────────────────────────┴────────────────────────────────────",{"2":{"20":1}}],["├──────────────────────────┴─────────────────────────────────────────────",{"2":{"14":1,"27":1}}],["├───────────────────────────┴──────────────────────────",{"2":{"25":1}}],["├───────────────────────────┴────────────────────────────────────────────",{"2":{"14":1,"27":1}}],["├────────────────────────────┴───────────────────────────────────────────",{"2":{"27":2}}],["├────────────────────────────┴──────────────────────────",{"2":{"21":1}}],["├─────────────────────────────┴──────────────────────────────────",{"2":{"17":1,"24":1}}],["├───────────────────────────────┴────────────────────────────────────────",{"2":{"40":1}}],["├──────────────────────────────────┴─────────────────────────────────────",{"2":{"74":1}}],["├─────────────────────────────────────────┴──────────────────────",{"2":{"62":1}}],["├──────────────────────────────────────────┴──────────────────────",{"2":{"29":1}}],["├──────────────────────────────────────────┴─────────────────────────────",{"2":{"14":1}}],["├─────────────────────────────────────────────┴─────────────────",{"2":{"48":1}}],["├──────────────────────────────────────────────┴─────────────────────────",{"2":{"28":1,"49":2}}],["├───────────────────────────────────────────────┴────────────────────────",{"2":{"49":1,"50":5}}],["├───────────────────────────────────────────────┴──────────────",{"2":{"29":1}}],["├───────────────────────────────────────────────",{"2":{"27":1}}],["├────────────────────────────────────────────────",{"2":{"27":1}}],["├─────────────────────────────────────────────────",{"2":{"25":1}}],["├──────────────────────────────────────────────────┴─────────────────────",{"2":{"36":2,"37":1,"40":1,"41":3}}],["├──────────────────────────────────────────────────",{"2":{"21":1,"25":1}}],["├───────────────────────────────────────────────────",{"2":{"21":2}}],["├─────────────────────────────────────────────────────",{"2":{"8":1,"21":1}}],["├───────────────────────────────────────────────────────",{"2":{"22":1}}],["├─────────────────────────────────────────────────────────",{"2":{"29":1}}],["├──────────────────────────────────────────────────────────",{"2":{"20":1,"29":1,"71":1}}],["├───────────────────────────────────────────────────────────",{"2":{"17":1,"20":1,"24":1,"62":1,"71":1}}],["├────────────────────────────────────────────────────────────",{"2":{"7":1,"17":1,"24":1,"29":1,"62":1}}],["├──────────────────────────────────────────────────────────────────",{"2":{"36":2,"37":1,"39":2,"40":1,"41":3}}],["├───────────────────────────────────────────────────────────────────",{"2":{"9":1,"11":1,"12":1,"13":2,"14":2,"17":1,"26":1,"27":4,"28":3,"29":1,"39":1,"43":1,"44":1,"47":2,"48":2,"49":3,"50":5,"71":1,"74":1}}],["├─────────────────────────────────────────────────────────────────────",{"2":{"48":1}}],["├─────────────────────────────────────────────────────────────────────┴",{"2":{"48":1}}],["├────────────────────────────────────────────────────────────────────",{"2":{"9":1,"11":1,"12":1,"13":2,"14":3,"17":1,"26":1,"27":4,"28":3,"29":1,"36":2,"37":1,"39":3,"40":2,"41":3,"43":1,"44":1,"47":2,"48":2,"49":3,"50":5,"71":1,"74":1}}],["├─────────────────────────────────────────────────────────────",{"2":{"7":1,"29":1}}],["├────────────────────────────────────────────────────────",{"2":{"22":2}}],["├──────────────────────────────────────────────────────",{"2":{"8":1}}],["├────────────────────────────────────────────────┴───────────────────────",{"2":{"13":1,"39":2,"44":1,"47":2,"48":2}}],["├───────────────────────────────────────────┴────────────────────────────",{"2":{"13":1}}],["├────────────────────────────────────┴───────────────────────────────────",{"2":{"43":1}}],["├────────────────────────────────┴───────────────────────────────────────",{"2":{"26":1,"71":1}}],["├────────────────────────────────┴────────────────────────────────",{"2":{"7":1}}],["├──────────────────────────────┴─────────────────────────────────────────",{"2":{"9":1,"11":1,"12":1,"14":1,"17":1,"28":2,"39":1}}],["╭────────────────────────────╮",{"2":{"21":1,"27":2}}],["╭─────────────────────────────╮",{"2":{"17":1,"24":1}}],["╭───────────────────────────────╮",{"2":{"40":1}}],["╭──────────────────────────────────╮",{"2":{"74":1}}],["╭─────────────────────────────────────────╮",{"2":{"62":1}}],["╭──────────────────────────────────────────╮",{"2":{"14":1,"29":1}}],["╭─────────────────────────────────────────────╮",{"2":{"48":1}}],["╭──────────────────────────────────────────────────╮",{"2":{"36":2,"37":1,"40":1,"41":3}}],["╭────────────────────────────────────────────────╮",{"2":{"13":1,"39":2,"44":1,"47":2,"48":2}}],["╭───────────────────────────────────────────────╮",{"2":{"29":1,"49":1,"50":5}}],["╭──────────────────────────────────────────────╮",{"2":{"28":1,"49":2}}],["╭───────────────────────────────────────────╮",{"2":{"13":1}}],["╭────────────────────────────────────╮",{"2":{"43":1}}],["╭────────────────────────────────╮",{"2":{"7":1,"26":1,"71":1}}],["╭──────────────────────────────╮",{"2":{"9":1,"11":1,"12":1,"14":1,"17":1,"28":2,"39":1}}],["╭───────────────────────────╮",{"2":{"14":1,"25":1,"27":1}}],["╭──────────────────────────╮",{"2":{"14":1,"20":1,"21":1,"27":1}}],["╭─────────────────────────╮",{"2":{"8":1,"22":2,"27":1,"29":1,"71":1}}],["04354276578064988",{"2":{"74":1}}],["0461837",{"2":{"14":1}}],["0e8",{"2":{"64":1}}],["026632639827486607",{"2":{"74":1}}],["0289642",{"2":{"71":1}}],["02",{"2":{"43":1}}],["0f20",{"2":{"43":1,"44":2,"47":4,"48":6,"49":6,"50":10}}],["009440420694598698",{"2":{"74":1}}],["0096067",{"2":{"22":1}}],["00883826",{"2":{"71":1}}],["00",{"2":{"39":4,"43":9,"44":8,"46":4,"47":8,"48":8,"49":12,"50":20,"57":4,"61":4,"80":5}}],["05453450147782992",{"2":{"74":1}}],["05518573296083463",{"2":{"74":1}}],["05",{"2":{"27":3}}],["0574339",{"2":{"22":1}}],["0570881",{"2":{"20":1}}],["09282949434033017",{"2":{"74":1}}],["09303549634259171",{"2":{"74":1}}],["0934071",{"2":{"21":1}}],["09",{"2":{"39":1}}],["0913507",{"2":{"14":1}}],["06411819722231638",{"2":{"74":1}}],["065512",{"2":{"71":1}}],["0625",{"2":{"43":2,"80":1}}],["0668261",{"2":{"21":1}}],["0674906",{"2":{"14":1}}],["03819632721332169",{"2":{"74":1}}],["0393444",{"2":{"71":1}}],["0356227",{"2":{"22":1}}],["0371825",{"2":{"21":1}}],["03",{"2":{"21":1}}],["07",{"2":{"43":2,"80":1}}],["0709768",{"2":{"22":1}}],["0751232",{"2":{"20":1}}],["072622",{"2":{"20":1}}],["08189384076626645",{"2":{"74":1}}],["0833081",{"2":{"71":1}}],["0836145",{"2":{"71":1}}],["0827526",{"2":{"71":1}}],["0822654",{"2":{"14":1}}],["08",{"2":{"39":1}}],["088841",{"2":{"71":1}}],["0885343",{"2":{"21":1}}],["0884358",{"2":{"20":1}}],["0873387",{"2":{"20":1}}],["014576477542674833",{"2":{"74":1}}],["014443514865955756",{"2":{"74":1}}],["0170527",{"2":{"71":1}}],["0105681",{"2":{"71":1}}],["0169226",{"2":{"71":1}}],["01t00",{"2":{"43":2,"80":1}}],["01t03",{"2":{"43":2,"80":1}}],["0182202",{"2":{"14":1}}],["01",{"2":{"9":6,"11":3,"12":3,"13":3,"14":9,"15":3,"17":9,"18":3,"27":22,"43":5,"44":4,"46":2,"47":4,"48":6,"49":6,"50":10,"57":2,"61":2,"73":2,"74":4,"80":5}}],["0",{"2":{"7":1,"8":1,"9":6,"10":2,"11":6,"12":6,"13":7,"14":75,"17":12,"18":6,"20":36,"21":36,"22":45,"25":1,"26":9,"27":1,"28":27,"29":11,"39":2,"40":4,"41":3,"43":7,"44":10,"46":6,"47":8,"48":6,"49":14,"50":20,"51":6,"57":6,"60":1,"61":6,"62":1,"64":2,"65":1,"71":70,"72":1,"73":2,"74":19,"75":1,"80":4,"82":2,"83":2,"84":2}}],["┤",{"2":{"7":2,"8":2,"9":2,"11":2,"12":2,"13":4,"14":5,"17":4,"20":2,"21":4,"22":3,"24":2,"25":2,"26":2,"27":10,"28":6,"29":6,"36":4,"37":2,"39":6,"40":3,"41":6,"43":2,"44":2,"47":4,"48":5,"49":6,"50":10,"62":2,"71":4,"74":2}}],["┐",{"2":{"7":1,"8":1,"9":1,"11":1,"12":1,"13":2,"14":4,"17":2,"20":1,"21":2,"22":2,"24":1,"25":1,"26":1,"27":5,"28":3,"29":3,"36":2,"37":1,"39":3,"40":2,"41":3,"43":1,"44":1,"47":2,"48":4,"49":3,"50":5,"62":1,"71":2,"74":1}}],["│",{"2":{"7":2,"8":2,"9":2,"11":2,"12":2,"13":4,"14":8,"17":4,"20":2,"21":4,"22":4,"24":2,"25":2,"26":2,"27":10,"28":6,"29":6,"36":4,"37":2,"39":6,"40":4,"41":6,"43":2,"44":2,"47":4,"48":6,"49":6,"50":10,"62":2,"71":4,"74":2}}],["730",{"2":{"75":1}}],["73",{"2":{"51":1}}],["73653",{"2":{"22":1}}],["736639",{"2":{"20":1}}],["716007",{"2":{"71":1}}],["717",{"2":{"50":5}}],["71",{"2":{"49":1,"51":1}}],["71429",{"2":{"14":2}}],["785236",{"2":{"71":1}}],["78",{"2":{"49":1,"51":1}}],["709112",{"2":{"71":1}}],["70",{"2":{"49":3,"51":1}}],["795953",{"2":{"71":1}}],["79",{"2":{"44":2,"46":1,"47":2,"48":2,"49":4,"50":5,"51":1,"57":1,"61":1}}],["77",{"2":{"51":1}}],["777094",{"2":{"22":1}}],["772677",{"2":{"22":1}}],["773245",{"2":{"14":1}}],["72",{"2":{"51":1}}],["726186",{"2":{"22":1}}],["728284",{"2":{"21":1}}],["72339",{"2":{"20":1}}],["74",{"2":{"51":1}}],["742236",{"2":{"21":1}}],["740692",{"2":{"20":1}}],["75",{"2":{"51":1}}],["751802",{"2":{"21":1}}],["756506",{"2":{"20":1}}],["76",{"2":{"51":1}}],["762215",{"2":{"21":1}}],["763095",{"2":{"21":1}}],["761125",{"2":{"14":1}}],["761502",{"2":{"14":1}}],["7",{"2":{"7":1,"14":1,"17":1,"21":1,"25":1,"43":1,"80":1}}],["→",{"2":{"3":1,"4":1,"5":1,"8":1,"9":1,"11":1,"12":1,"13":1,"14":6,"17":3,"18":1,"20":1,"21":3,"22":3,"24":3,"25":1,"26":1,"27":6,"28":3,"29":2,"32":2,"36":2,"37":1,"41":3,"43":2,"44":2,"46":1,"47":2,"48":1,"49":3,"50":5,"57":1,"61":2,"62":1,"71":2,"80":1}}],["↓",{"2":{"3":3,"4":3,"5":1,"7":1,"8":1,"9":1,"11":1,"12":1,"13":2,"14":6,"17":3,"18":1,"20":1,"21":3,"22":3,"24":3,"25":1,"26":1,"27":6,"28":3,"29":3,"31":1,"32":3,"36":4,"37":2,"39":5,"40":3,"41":6,"43":2,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":2,"62":1,"71":2,"74":2,"80":1}}],["pkg",{"2":{"70":2}}],["pkg>",{"2":{"68":1}}],["p",{"2":{"44":1,"46":1,"57":1,"61":1}}],["purple",{"2":{"73":2}}],["purpose",{"2":{"23":1,"28":1}}],["pull",{"2":{"66":1}}],["public",{"0":{"64":1}}],["published",{"2":{"41":1}}],["plt",{"2":{"81":1}}],["place",{"2":{"65":1}}],["plots",{"2":{"84":1}}],["plotted",{"2":{"73":1}}],["plotting",{"0":{"80":1},"1":{"81":1},"2":{"73":1}}],["plot",{"0":{"75":1,"81":1,"84":1},"2":{"41":2}}],["plus",{"2":{"35":1,"64":1}}],["pydata",{"2":{"35":1}}],["picture",{"2":{"53":1,"54":1}}],["pieces",{"2":{"23":1}}],["pixel",{"0":{"73":1},"1":{"74":1,"75":1},"2":{"15":2}}],["page",{"2":{"71":1,"84":1}}],["paste",{"2":{"68":1}}],["pass",{"2":{"64":1}}],["passing",{"2":{"64":3}}],["passed",{"2":{"64":4}}],["pair",{"2":{"65":1}}],["partitioned",{"2":{"65":1}}],["participate",{"2":{"64":1}}],["particular",{"2":{"56":1}}],["parts",{"2":{"64":1}}],["parent",{"2":{"43":1,"80":1}}],["parallelized",{"2":{"65":1}}],["parallelisation",{"2":{"64":1}}],["parallel",{"2":{"15":1,"53":1}}],["paths",{"2":{"65":2}}],["path=",{"2":{"43":1,"58":1,"59":1,"60":1,"61":1,"65":1}}],["path=f",{"2":{"3":1,"4":1,"5":1}}],["path",{"2":{"35":2,"43":3,"44":2,"45":2,"46":2,"57":2,"60":3,"64":4,"68":1}}],["packages",{"2":{"19":1}}],["package",{"2":{"15":1,"49":1,"51":1,"63":1,"70":1}}],["post=getpostfunction",{"2":{"64":1}}],["positions",{"2":{"65":2}}],["position",{"2":{"53":1}}],["positional",{"2":{"48":1,"49":1}}],["possible",{"2":{"15":2,"19":1,"26":1,"62":1,"64":3,"65":1}}],["pos",{"2":{"14":2}}],["point3f",{"2":{"84":1}}],["point",{"2":{"14":3,"43":1,"71":1}}],["pointsy",{"2":{"3":1,"4":1}}],["points",{"2":{"3":3,"4":3,"5":2,"7":1,"8":1,"9":3,"11":3,"12":3,"13":4,"14":16,"15":1,"17":9,"18":3,"20":2,"21":6,"22":4,"24":9,"25":2,"26":3,"27":14,"28":9,"29":5,"31":1,"32":5,"39":1,"43":6,"44":6,"46":3,"47":6,"48":4,"49":9,"50":16,"51":2,"53":2,"54":1,"57":3,"61":6,"62":2,"71":5,"74":1,"80":3}}],["pr",{"2":{"68":1}}],["projection",{"0":{"82":1,"83":1},"1":{"83":1,"84":1}}],["props",{"2":{"71":2}}],["properly",{"2":{"34":1}}],["properties=dict",{"2":{"65":1}}],["properties",{"2":{"9":2,"15":2,"17":3,"18":3,"35":1,"41":1,"43":1,"44":1,"46":1,"57":1,"61":1,"64":5,"65":1,"80":1}}],["probably",{"2":{"65":1}}],["provide",{"2":{"64":1}}],["provided",{"2":{"64":1}}],["provides",{"2":{"53":1,"77":1}}],["process",{"2":{"53":1,"65":2}}],["processed",{"2":{"12":1}}],["progressmeter",{"2":{"64":1}}],["progress",{"2":{"35":1,"76":1,"78":1}}],["product",{"2":{"14":1}}],["pressing",{"2":{"70":1}}],["pre",{"2":{"64":2}}],["previous",{"2":{"41":1,"60":1,"64":1,"73":1}}],["previously",{"2":{"29":1}}],["prepared",{"2":{"44":1,"46":1,"57":1,"61":1}}],["prep",{"2":{"8":2}}],["precipitation",{"2":{"8":2,"54":1,"55":1,"71":2}}],["prior",{"2":{"0":1}}],["permute",{"2":{"65":1}}],["permuteloopaxes",{"2":{"65":1}}],["permutation",{"2":{"65":1}}],["persistend",{"2":{"65":1}}],["persistency",{"2":{"65":1}}],["persistent",{"2":{"64":1,"65":2}}],["persist",{"2":{"60":1,"64":1,"65":1}}],["perform",{"2":{"65":1}}],["performed",{"2":{"12":2}}],["performing",{"2":{"9":1}}],["per",{"2":{"6":1,"13":1,"36":1,"39":1,"40":1}}],["459038",{"2":{"71":1}}],["45×170×24",{"2":{"50":5}}],["454855",{"2":{"21":1}}],["445214",{"2":{"71":1}}],["44",{"2":{"27":1,"28":3}}],["449317",{"2":{"14":1}}],["46",{"2":{"26":1,"71":1}}],["48",{"2":{"71":1}}],["480",{"2":{"29":1}}],["484735",{"2":{"21":1}}],["488797",{"2":{"21":1}}],["490318",{"2":{"21":1}}],["493651",{"2":{"21":1}}],["49657",{"2":{"21":1}}],["401606",{"2":{"22":1}}],["405208",{"2":{"22":1}}],["400",{"2":{"20":1,"73":2,"75":1}}],["406874",{"2":{"14":1}}],["4×30",{"2":{"14":1}}],["420426",{"2":{"22":1}}],["427747",{"2":{"21":1}}],["421407",{"2":{"20":1}}],["42857",{"2":{"14":2}}],["42",{"2":{"10":3}}],["4",{"2":{"3":4,"4":4,"14":9,"22":1,"25":1,"26":1,"36":2,"37":1,"38":1,"39":2,"40":2,"41":4,"71":3,"73":1,"75":1}}],["3d",{"0":{"84":1}}],["338979",{"2":{"71":1}}],["331562",{"2":{"71":1}}],["335812",{"2":{"21":1}}],["37",{"2":{"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1}}],["37699",{"2":{"22":1}}],["3hr",{"2":{"43":2,"80":3}}],["3×20",{"2":{"29":1}}],["384×192×251288",{"2":{"43":1}}],["38",{"2":{"27":1,"49":3}}],["385317",{"2":{"22":1}}],["366",{"2":{"75":1}}],["365×1",{"2":{"74":1}}],["365",{"2":{"74":1,"75":5}}],["365603",{"2":{"14":1}}],["36",{"2":{"27":1,"39":1}}],["3600",{"2":{"27":1}}],["342369",{"2":{"20":1}}],["347368",{"2":{"14":1}}],["340401",{"2":{"14":1}}],["31",{"2":{"27":2,"73":1,"74":2}}],["317792",{"2":{"14":1}}],["318039",{"2":{"14":1}}],["35700351866494",{"2":{"43":4,"80":2}}],["359",{"2":{"43":2,"44":2,"46":1,"47":2,"48":1,"51":2,"57":1,"61":1,"80":1}}],["355128",{"2":{"22":1}}],["353257",{"2":{"20":1}}],["35",{"2":{"9":1,"11":1,"12":1,"14":1,"17":1}}],["308482",{"2":{"71":1}}],["303697",{"2":{"71":1}}],["307f8f0e584a39a050c042849004e6a2bd674f99",{"2":{"45":1}}],["307849",{"2":{"22":1}}],["30×10×15",{"2":{"9":1,"11":1,"12":1,"14":1,"17":1}}],["30",{"2":{"9":3,"11":1,"12":1,"13":2,"14":5,"15":2,"17":4,"18":2,"21":10,"41":2,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5,"80":1}}],["394941",{"2":{"20":1}}],["390315",{"2":{"14":1}}],["39",{"2":{"9":1,"26":1,"27":1,"28":2,"41":1,"46":1,"56":1,"64":2,"67":4,"73":1,"74":3}}],["3",{"2":{"3":8,"4":8,"5":10,"9":1,"10":3,"11":3,"12":2,"14":6,"17":3,"21":2,"22":1,"24":5,"25":1,"27":4,"28":4,"29":5,"36":1,"41":5,"43":1,"44":1,"47":2,"49":4,"50":5,"61":1,"64":1,"71":3,"73":3}}],["zoom",{"2":{"84":1}}],["zopen",{"2":{"43":1,"80":1}}],["zeros",{"2":{"62":3,"74":1}}],["z",{"2":{"3":2,"4":3,"5":2,"61":2}}],["zarr",{"0":{"43":1,"58":1,"79":1},"2":{"1":2,"3":2,"4":2,"5":2,"15":1,"22":1,"43":3,"58":5,"60":3,"61":4,"62":3,"64":2,"65":2,"80":1}}],["xticklabelalign",{"2":{"73":1,"75":1}}],["xticklabelrotation",{"2":{"73":1,"75":1}}],["xticks",{"2":{"73":1,"75":1}}],["xpos",{"2":{"73":2,"75":1}}],["xlabel=",{"2":{"73":2,"75":1}}],["xx",{"2":{"44":1,"46":1,"57":1,"61":1}}],["xarray",{"2":{"34":1,"35":1}}],["xin",{"2":{"14":3,"28":3}}],["xout",{"2":{"14":3}}],["x26",{"2":{"14":12}}],["x3c",{"2":{"14":12}}],["x",{"2":{"3":2,"4":3,"5":2,"12":2,"21":4,"22":3,"28":4,"36":2,"37":1,"41":3,"53":1,"65":1,"71":5,"73":1,"74":6}}],["eo",{"2":{"76":1}}],["esdltutorials",{"2":{"76":1}}],["esm1",{"2":{"43":1,"80":2}}],["eltype",{"2":{"71":1}}],["elementtype",{"2":{"65":1}}],["element",{"2":{"7":1,"8":1,"9":2,"12":2,"13":1,"14":2,"25":1,"29":1,"36":2,"37":1,"38":1,"39":11,"40":6,"41":3,"48":2,"51":1,"54":1,"55":2,"64":1,"65":1,"74":1}}],["elements",{"0":{"10":1,"48":1},"2":{"7":1,"11":1,"12":2,"15":1,"46":1,"53":1,"64":1,"65":1}}],["empty",{"2":{"65":1}}],["embeds",{"2":{"64":1}}],["either",{"2":{"64":2}}],["error",{"2":{"60":1}}],["et",{"2":{"44":1,"46":1,"55":1,"57":1,"61":1}}],["edu",{"2":{"44":1,"46":1,"54":1,"57":1}}],["equivalent",{"2":{"41":1,"51":1}}],["effectively",{"2":{"28":1}}],["even",{"2":{"27":1}}],["everywhere",{"2":{"15":2}}],["every",{"2":{"9":1,"12":1,"64":1}}],["easy",{"2":{"21":1,"22":1}}],["easier",{"2":{"17":1,"46":1}}],["easily",{"2":{"15":1}}],["each",{"2":{"3":1,"4":1,"9":1,"12":1,"14":5,"15":2,"28":2,"29":2,"34":1,"38":1,"54":1,"56":1,"64":3,"65":3,"71":1}}],["env",{"2":{"68":1}}],["enabling",{"2":{"17":1}}],["enter",{"2":{"70":1}}],["entire",{"2":{"14":1,"19":1,"58":1,"59":1}}],["entries",{"2":{"14":1,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5,"64":1,"71":1}}],["entry",{"2":{"9":1,"11":1,"12":1,"17":2,"36":2,"37":1,"39":2,"40":2,"41":3,"64":1,"67":3}}],["enumerate",{"2":{"14":2,"41":2}}],["end",{"2":{"12":1,"14":4,"15":2,"28":1,"36":2,"41":2,"73":1,"74":2,"84":1}}],["exists",{"2":{"60":1,"64":1,"65":1}}],["existing",{"0":{"7":1},"2":{"60":1,"61":1}}],["exportable=true",{"2":{"84":1}}],["expression",{"2":{"64":1}}],["experiment",{"2":{"44":3,"46":3,"57":3,"61":3}}],["explicitly",{"2":{"12":1,"65":1}}],["extended",{"2":{"64":1,"65":2}}],["extension",{"2":{"64":2}}],["extent",{"2":{"21":2}}],["external",{"2":{"43":1,"80":1}}],["extracts",{"2":{"65":1}}],["extract",{"0":{"24":1},"2":{"65":1}}],["extra",{"2":{"15":1}}],["executes",{"2":{"64":1}}],["execute",{"2":{"15":1}}],["exactly",{"2":{"4":1,"25":1}}],["examplexpos",{"2":{"75":1}}],["exampleusing",{"2":{"45":1}}],["examples",{"2":{"5":1,"25":2,"33":1,"44":1,"46":1,"57":1,"67":1}}],["example",{"2":{"0":1,"4":1,"9":1,"15":2,"28":1,"29":1,"34":1,"44":1,"46":2,"53":2,"54":1,"55":1,"57":2,"64":3,"65":1,"67":2,"71":2}}],["e",{"2":{"6":1,"7":1,"9":1,"10":1,"12":1,"14":2,"15":1,"17":1,"21":1,"22":1,"51":1,"53":1,"56":1,"60":1,"64":6,"65":1,"68":1,"71":1}}],["ndata",{"2":{"82":2,"83":1,"84":1}}],["ndays",{"2":{"74":4}}],["nlon",{"2":{"82":2,"83":1}}],["npy",{"2":{"73":2,"74":2}}],["ntuple",{"2":{"65":2}}],["ntr",{"2":{"65":1}}],["nthreads",{"2":{"64":2}}],["nin",{"2":{"65":2}}],["nvalid",{"2":{"64":1}}],["nbsp",{"2":{"60":1,"64":24,"65":24}}],["n",{"2":{"52":1,"64":3}}],["n256",{"2":{"41":1}}],["natively",{"2":{"73":1}}],["nan",{"2":{"35":1}}],["namely",{"2":{"73":1}}],["name=cube",{"2":{"64":1}}],["namedtuple",{"2":{"64":1,"65":3}}],["named",{"2":{"46":1,"48":1,"49":1,"53":1,"64":2,"72":1}}],["names",{"0":{"24":1,"30":1,"32":1},"1":{"31":1,"32":1},"2":{"17":2,"38":1,"53":2,"64":2,"65":1}}],["name",{"0":{"31":1},"2":{"1":1,"24":1,"41":1,"43":3,"44":4,"47":8,"48":12,"49":12,"50":20,"56":1,"64":6,"65":4,"71":1}}],["nc",{"2":{"35":2,"44":2,"46":2,"57":2,"59":2}}],["number",{"2":{"34":1,"39":1,"64":2,"65":1,"74":1}}],["numbers",{"2":{"9":1,"27":1,"71":1}}],["nout",{"2":{"65":2}}],["normal",{"2":{"64":1,"84":1}}],["november",{"2":{"44":1,"46":1,"57":1,"61":1}}],["nov",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["nonmissingtype",{"2":{"65":1}}],["nonthreaded",{"2":{"28":2}}],["non",{"2":{"15":1,"64":1,"65":1,"73":1}}],["now",{"2":{"14":1,"26":1,"27":1,"29":1,"36":1,"37":1,"39":1,"41":1,"68":1,"73":1}}],["no",{"2":{"13":1,"22":1,"62":1,"64":1}}],["notation",{"2":{"50":1}}],["nothing",{"2":{"41":3,"60":1,"64":1,"65":1}}],["note",{"2":{"8":1,"12":1,"14":1,"37":1,"64":1,"65":1}}],["not",{"2":{"0":1,"12":1,"35":1,"62":1,"64":2,"65":3}}],["neighbour",{"2":{"64":1}}],["neighboring",{"2":{"12":1}}],["needed",{"2":{"64":1}}],["need",{"2":{"64":1,"65":1,"67":1}}],["near",{"2":{"43":2,"50":1,"80":1}}],["necessary",{"2":{"34":1,"35":1,"65":4}}],["next",{"2":{"28":1,"29":1,"38":1,"68":2}}],["netcdf",{"0":{"44":1,"59":1},"2":{"22":1,"33":1,"44":4,"46":2,"54":3,"57":2,"59":3,"60":1,"64":1}}],["new",{"0":{"8":1},"2":{"9":1,"11":1,"17":1,"35":1,"38":1,"55":1,"60":1,"61":1,"64":5,"65":4,"67":6,"74":1}}],["bits",{"2":{"64":2}}],["big",{"2":{"53":1}}],["black",{"2":{"75":1}}],["blocks",{"2":{"64":1}}],["blue",{"2":{"54":1}}],["bonito",{"2":{"84":1}}],["boundaries",{"2":{"65":1}}],["bounds",{"2":{"64":1}}],["bool=true",{"2":{"65":1}}],["bool=false",{"2":{"64":1,"65":1}}],["bool",{"2":{"65":6}}],["boolean",{"2":{"64":3}}],["bold",{"2":{"41":1}}],["build",{"0":{"68":1},"2":{"68":1}}],["bug",{"2":{"66":1}}],["bundle",{"2":{"54":1}}],["but",{"2":{"7":1,"24":1,"48":1,"49":1,"64":2,"73":1}}],["bwr",{"2":{"41":1}}],["broad",{"2":{"77":1}}],["broadcasts",{"2":{"65":1}}],["broadcasted",{"2":{"64":1,"65":1}}],["broadcast",{"2":{"36":1,"41":1}}],["brown",{"2":{"75":1}}],["browser",{"2":{"68":1}}],["brightness",{"2":{"53":1,"54":1}}],["brings",{"2":{"65":1}}],["bring",{"2":{"25":1}}],["branch",{"2":{"43":1,"80":1}}],["b",{"2":{"14":13,"32":2,"50":2}}],["backgroundcolor=",{"2":{"84":1}}],["back",{"2":{"64":1}}],["backendlist",{"2":{"64":1}}],["backend",{"2":{"60":2,"64":8}}],["backend=",{"2":{"1":1,"61":1}}],["based",{"0":{"79":1},"2":{"65":1}}],["base",{"0":{"20":1},"2":{"3":4,"4":4,"5":2,"17":3,"20":4,"24":9,"31":1,"32":5,"62":2,"65":1,"71":2}}],["by=",{"2":{"29":2,"64":2}}],["bytes",{"2":{"7":1,"8":1,"13":1,"14":1,"20":1,"22":1,"25":1,"27":1,"29":2,"39":1,"48":2,"62":1,"71":1}}],["by",{"0":{"3":1,"4":1},"2":{"1":1,"9":2,"13":1,"14":1,"16":1,"17":1,"27":5,"29":1,"34":1,"38":1,"39":1,"40":1,"41":1,"43":1,"53":3,"55":1,"56":1,"60":1,"64":12,"65":6,"67":1,"68":1,"70":1,"74":1}}],["beware",{"2":{"76":1}}],["best",{"2":{"65":1,"78":1}}],["become",{"2":{"64":1}}],["because",{"2":{"0":1,"12":1,"13":1}}],["before",{"2":{"64":1,"68":1}}],["belonging",{"2":{"54":1}}],["belongs",{"2":{"14":1}}],["between",{"2":{"21":1,"22":1,"50":1,"64":1}}],["begin",{"2":{"15":1}}],["be",{"2":{"1":1,"2":1,"3":1,"12":1,"14":2,"19":1,"28":1,"29":2,"35":1,"43":2,"44":1,"45":1,"51":1,"53":1,"55":2,"60":1,"61":1,"64":22,"65":8,"67":1,"72":1,"76":1,"80":1}}],["648612",{"2":{"71":1}}],["642",{"2":{"35":1}}],["642726",{"2":{"14":1}}],["610474",{"2":{"71":1}}],["613749",{"2":{"14":1}}],["675077",{"2":{"71":1}}],["675138",{"2":{"21":1}}],["69",{"2":{"43":1}}],["690995",{"2":{"22":1}}],["692256",{"2":{"14":1}}],["629512",{"2":{"71":1}}],["621469",{"2":{"21":1}}],["623178",{"2":{"21":1}}],["666392",{"2":{"71":1}}],["661043",{"2":{"71":1}}],["66181",{"2":{"20":1}}],["662609",{"2":{"22":1}}],["665024",{"2":{"21":1}}],["6×6×25",{"2":{"21":2}}],["6×2",{"2":{"8":1}}],["600",{"2":{"73":2,"75":1,"81":1,"82":1,"83":1}}],["602397",{"2":{"71":1}}],["60265",{"2":{"43":1,"80":1}}],["602267",{"2":{"20":1}}],["601579",{"2":{"21":1}}],["606155",{"2":{"20":1}}],["688623",{"2":{"71":1}}],["684705",{"2":{"20":1}}],["683486",{"2":{"20":1}}],["685321",{"2":{"20":1}}],["6",{"2":{"1":6,"3":6,"4":6,"5":6,"7":4,"8":5,"14":1,"25":1,"27":1,"43":1,"80":1}}],["1e8",{"2":{"65":1}}],["13z",{"2":{"43":2,"80":1}}],["13",{"2":{"22":1,"44":1,"46":1,"57":1,"61":1}}],["136",{"2":{"44":1,"46":1,"57":1,"61":1}}],["136718",{"2":{"14":1}}],["136076",{"2":{"14":1}}],["180",{"2":{"50":5,"82":1}}],["180×170",{"2":{"48":1}}],["180×170×24",{"2":{"44":1,"47":2}}],["189827",{"2":{"21":1}}],["184555",{"2":{"21":1}}],["186338",{"2":{"20":1}}],["145791",{"2":{"71":1}}],["14",{"2":{"22":1}}],["141595",{"2":{"21":1}}],["14286",{"2":{"14":1}}],["192",{"2":{"82":1}}],["192129",{"2":{"20":1}}],["19",{"2":{"49":3,"50":5}}],["1983",{"2":{"39":1}}],["1980",{"2":{"39":1}}],["190139",{"2":{"14":1}}],["170",{"2":{"51":1}}],["179",{"2":{"50":5}}],["17t00",{"2":{"39":1}}],["174079",{"2":{"20":1}}],["17",{"2":{"13":1,"29":1,"49":1}}],["1688628629485436",{"2":{"74":1}}],["161647",{"2":{"71":1}}],["16t00",{"2":{"44":4,"46":2,"47":4,"48":4,"49":6,"50":10,"57":2,"61":2}}],["16t12",{"2":{"39":1}}],["16",{"2":{"9":1,"11":1,"12":1,"14":1,"17":1,"44":2,"46":1,"47":2,"48":4,"49":3,"50":5,"57":1,"61":1}}],["159",{"2":{"49":1}}],["15",{"2":{"9":1,"14":6,"15":1,"17":1,"18":1,"22":4,"26":2,"29":1,"71":1}}],["128",{"2":{"84":1}}],["1200",{"2":{"81":1,"82":1,"83":1}}],["1233412309511344",{"2":{"74":1}}],["126927",{"2":{"71":1}}],["126389",{"2":{"22":1}}],["122665",{"2":{"22":1}}],["127343",{"2":{"14":1}}],["12",{"2":{"7":4,"22":1,"27":10,"44":2,"46":1,"47":2,"48":2,"49":3,"50":5,"57":1,"61":1,"73":1,"74":2}}],["1=5",{"2":{"1":1}}],["11777086374155309",{"2":{"74":1}}],["1164461445266934",{"2":{"74":1}}],["119",{"2":{"48":1}}],["11",{"2":{"1":6,"3":6,"4":6,"5":6,"7":1,"22":1,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1}}],["1",{"2":{"1":12,"3":19,"4":20,"5":22,"7":5,"8":3,"9":8,"10":3,"11":7,"12":5,"13":6,"14":34,"15":3,"17":15,"18":4,"20":1,"21":7,"22":6,"24":3,"25":8,"26":8,"27":23,"28":15,"29":14,"31":1,"32":3,"36":4,"37":2,"39":10,"40":10,"41":18,"43":4,"44":8,"46":4,"47":8,"48":13,"49":18,"50":15,"51":2,"57":4,"61":11,"62":1,"65":1,"71":11,"73":5,"74":5,"75":6,"80":3,"82":4,"83":2,"84":5}}],["1000",{"2":{"82":1,"83":1}}],["101959133818752",{"2":{"74":1}}],["101499",{"2":{"14":1}}],["10477244475013929",{"2":{"74":1}}],["1095",{"2":{"74":1}}],["10mb",{"2":{"64":2}}],["10×20",{"2":{"62":1}}],["10×20×5",{"2":{"17":1}}],["10×170×24",{"2":{"49":1}}],["10×10×24",{"2":{"49":2}}],["10×10×8",{"2":{"27":1}}],["10×10×12",{"2":{"27":1}}],["10×10×36",{"2":{"27":1}}],["10×10×5",{"2":{"24":1}}],["10×10",{"2":{"25":1,"27":1}}],["10×15×20",{"2":{"28":1}}],["10×15",{"2":{"13":1,"14":2,"29":1,"71":1}}],["10x15",{"2":{"14":1}}],["10",{"2":{"1":14,"3":16,"4":18,"5":17,"9":3,"11":1,"12":1,"13":1,"14":15,"15":3,"17":6,"18":2,"20":2,"22":4,"24":8,"25":5,"26":4,"27":16,"28":3,"29":2,"31":2,"32":4,"43":1,"44":1,"47":2,"48":3,"49":6,"50":5,"61":2,"62":2,"70":1,"71":3}}],["garbage",{"2":{"65":1}}],["gc",{"2":{"65":2}}],["gt",{"2":{"64":1,"65":3,"68":1}}],["gdalworkshop",{"2":{"45":1}}],["gdal",{"0":{"45":1},"2":{"45":1}}],["gb",{"2":{"43":1}}],["gn",{"2":{"43":1,"80":2}}],["gs",{"2":{"43":1,"80":2}}],["go",{"2":{"68":2}}],["going",{"2":{"65":1}}],["goes",{"2":{"64":1,"65":1}}],["good",{"2":{"41":1}}],["goal",{"2":{"34":1}}],["ggplot2",{"2":{"41":1}}],["github",{"2":{"35":2,"45":1,"66":1}}],["gives",{"2":{"14":1}}],["given",{"2":{"1":1,"14":2,"53":1,"55":1,"60":1,"64":6,"65":3,"71":1}}],["global",{"2":{"64":1}}],["glmakie",{"2":{"29":2,"80":2}}],["glue",{"2":{"7":1}}],["gradient",{"2":{"81":1,"82":1,"83":1,"84":1}}],["gradually",{"2":{"62":1}}],["grey25",{"2":{"84":1}}],["grey15",{"2":{"29":1,"41":1}}],["green",{"2":{"54":1}}],["grouped",{"2":{"64":1}}],["groups",{"2":{"40":1}}],["groupby",{"0":{"36":1,"39":1},"1":{"37":1,"38":1,"40":1,"41":1},"2":{"33":1,"35":1,"36":6,"37":1,"38":1,"39":3,"40":2,"41":3,"64":1,"74":1}}],["group",{"0":{"33":1},"1":{"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1},"2":{"36":2,"37":1,"38":1,"39":3,"40":1,"41":3,"54":1,"64":3}}],["grouping",{"2":{"29":2,"38":2}}],["grid=false",{"2":{"41":1}}],["grid",{"2":{"15":1,"53":1,"64":1}}],["gridchunks",{"2":{"1":3,"3":1,"4":1,"5":1,"64":1,"65":1}}],["guide",{"2":{"9":2,"11":1,"12":1,"15":1,"17":3,"18":1}}],["general",{"0":{"77":1},"2":{"64":1}}],["generate",{"2":{"64":1,"68":1}}],["generated",{"2":{"44":1,"46":1,"57":1,"61":1,"65":1}}],["generic",{"2":{"17":1}}],["getting",{"0":{"69":1},"1":{"70":1,"71":1,"72":1}}],["getarrayinfo",{"2":{"65":1}}],["getaxis",{"2":{"25":1,"29":2,"64":1}}],["getloopchunks",{"2":{"65":1}}],["getloopcachesize",{"2":{"65":1}}],["getouttype",{"2":{"65":1}}],["getoutaxis",{"2":{"65":1}}],["getfrontperm",{"2":{"65":1}}],["gets",{"2":{"64":1,"65":1}}],["get",{"0":{"51":1},"2":{"9":1,"24":1,"35":1,"39":1,"47":1,"49":1,"51":1,"65":3,"71":2,"74":1,"80":1}}],["geoaxis",{"2":{"82":1,"83":1}}],["geometrybasics",{"2":{"80":1}}],["geomakie",{"2":{"80":1,"82":2,"83":1}}],["geojson",{"0":{"45":1}}],["geotiff",{"0":{"45":1}}],["geo",{"2":{"0":1}}],["g",{"2":{"6":1,"9":1,"10":1,"12":1,"15":1,"17":1,"36":26,"37":2,"38":2,"39":2,"40":1,"41":18,"51":1,"53":1,"56":1,"64":5,"80":2}}],["2π",{"2":{"73":1}}],["227097",{"2":{"71":1}}],["2×3",{"2":{"71":1}}],["2×2×3",{"2":{"3":1,"4":1,"5":1}}],["2×2",{"2":{"1":3}}],["2x2l31",{"2":{"44":1,"46":1,"57":1,"61":1}}],["244735",{"2":{"71":1}}],["244829",{"2":{"71":1}}],["24",{"2":{"29":1,"48":2}}],["240",{"2":{"13":1,"22":1}}],["233383",{"2":{"71":1}}],["23",{"2":{"28":3,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1}}],["23261",{"2":{"22":1}}],["21t06",{"2":{"43":2,"80":1}}],["2101",{"2":{"43":2,"80":1}}],["216638",{"2":{"22":1}}],["211379",{"2":{"21":1}}],["215695",{"2":{"14":1}}],["290475",{"2":{"22":1}}],["29",{"2":{"21":2}}],["270374",{"2":{"71":1}}],["271444",{"2":{"71":1}}],["275×205",{"2":{"37":4,"41":8}}],["275×205×1",{"2":{"36":4}}],["275×205×9",{"2":{"36":4}}],["27",{"2":{"21":2}}],["26",{"2":{"21":2,"43":2,"80":1}}],["259052",{"2":{"71":1}}],["254633",{"2":{"22":1}}],["25",{"2":{"21":10,"27":1,"73":2}}],["250748",{"2":{"20":1}}],["25238",{"2":{"14":1}}],["28046",{"2":{"71":1}}],["280651",{"2":{"22":1}}],["28422753251364",{"2":{"43":4,"80":2}}],["288",{"2":{"39":1}}],["286677",{"2":{"21":1}}],["28",{"2":{"21":2,"27":1}}],["28974",{"2":{"14":1}}],["28571",{"2":{"14":2}}],["2857142857142857",{"2":{"9":1,"11":1,"12":1,"13":1,"14":3,"17":2,"18":1,"26":1,"28":3,"29":1,"71":1}}],["2=10",{"2":{"1":1}}],["2",{"2":{"1":3,"3":8,"4":9,"5":10,"7":1,"8":1,"10":3,"11":2,"12":1,"13":1,"14":9,"15":1,"17":1,"20":2,"22":3,"24":3,"25":3,"27":1,"29":6,"32":4,"36":1,"37":1,"41":5,"43":3,"44":3,"46":1,"47":4,"48":2,"49":2,"50":5,"51":2,"57":1,"61":2,"62":2,"64":2,"71":5,"80":3,"82":2,"84":1}}],["207205",{"2":{"71":1}}],["2003",{"2":{"44":1,"46":1,"57":1,"61":1}}],["2004",{"2":{"44":1,"46":1,"57":1,"61":1}}],["2005",{"2":{"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1}}],["2002",{"2":{"44":3,"46":2,"47":2,"48":2,"49":3,"50":5,"57":2,"61":1}}],["2001",{"2":{"44":3,"46":2,"47":2,"48":3,"49":3,"50":5,"57":2,"61":1}}],["2000",{"2":{"21":4}}],["2019",{"2":{"43":2,"80":1}}],["20159276561397022",{"2":{"74":1}}],["2015",{"2":{"43":2,"44":1,"46":1,"57":1,"61":1,"80":2}}],["20×10×15",{"2":{"28":2}}],["20×10×15×2",{"2":{"26":1,"71":1}}],["2023",{"2":{"73":1,"74":2}}],["2021",{"2":{"27":9,"73":1,"74":2,"75":1}}],["2020",{"2":{"27":5,"55":1}}],["2024",{"2":{"21":4}}],["2022",{"2":{"9":4,"11":2,"12":2,"13":2,"14":6,"15":2,"17":6,"18":2,"27":5,"75":1}}],["206873",{"2":{"14":1}}],["20",{"2":{"1":7,"3":10,"4":10,"5":10,"17":2,"26":4,"28":3,"29":1,"41":1,"61":2,"62":2,"71":3}}],["55",{"2":{"74":1}}],["55694",{"2":{"22":1}}],["570218",{"2":{"71":1}}],["573349",{"2":{"71":1}}],["572372",{"2":{"71":1}}],["572332",{"2":{"71":1}}],["57143",{"2":{"14":2}}],["518845",{"2":{"71":1}}],["5173",{"2":{"68":1}}],["5e8",{"2":{"60":1,"64":1}}],["53",{"2":{"48":1}}],["53963",{"2":{"21":1}}],["50609",{"2":{"71":1}}],["500",{"2":{"41":1,"84":2}}],["501288",{"2":{"22":1}}],["5×6×36",{"2":{"27":1}}],["5×6",{"2":{"22":2}}],["5×10",{"2":{"20":2}}],["546663",{"2":{"22":1}}],["547323",{"2":{"21":1}}],["543502",{"2":{"20":1}}],["560379",{"2":{"20":1}}],["564018",{"2":{"20":1}}],["584065",{"2":{"14":1}}],["585923",{"2":{"14":1}}],["5",{"2":{"1":7,"3":16,"4":18,"5":7,"9":2,"11":3,"12":2,"13":1,"14":10,"15":1,"17":5,"18":1,"20":2,"22":4,"24":4,"25":1,"26":2,"27":3,"28":3,"29":2,"32":4,"41":5,"44":4,"46":2,"47":4,"48":3,"49":10,"50":10,"51":19,"57":2,"61":4,"71":2,"72":1,"75":2,"84":2}}],["rotate",{"2":{"84":1}}],["row",{"2":{"56":1,"64":1}}],["rowgap",{"2":{"41":1}}],["right",{"2":{"73":1,"75":1}}],["r",{"2":{"62":1}}],["r1i1p1f1",{"2":{"43":2,"80":3}}],["running",{"2":{"28":2,"68":1}}],["run",{"2":{"15":1,"68":3}}],["runs",{"2":{"12":1,"65":1}}],["rafaqz",{"2":{"35":1}}],["raw",{"2":{"35":1,"45":1}}],["rasm",{"2":{"35":2}}],["ras",{"2":{"21":3}}],["rasters",{"2":{"21":2}}],["raster",{"0":{"21":1},"2":{"14":11,"21":5}}],["ranges",{"0":{"49":1},"2":{"25":1,"46":1}}],["range",{"2":{"9":2,"14":2,"15":2,"17":2,"26":3,"27":2,"65":1,"71":3,"73":2}}],["randn",{"2":{"73":1}}],["random",{"2":{"71":1}}],["rand",{"2":{"1":1,"3":3,"4":3,"5":3,"7":2,"8":2,"9":1,"14":1,"15":1,"17":2,"18":1,"20":1,"21":1,"22":1,"24":1,"26":2,"29":1,"31":1,"32":3,"61":1,"71":2}}],["recommend",{"2":{"72":1}}],["recommended",{"2":{"50":1}}],["rechunking",{"2":{"65":1}}],["recalculate",{"2":{"65":1}}],["recal",{"2":{"65":1}}],["relational",{"2":{"53":1}}],["related",{"2":{"35":1}}],["requests",{"2":{"66":1}}],["requested",{"2":{"12":1}}],["requirements",{"2":{"44":1,"46":1,"57":1,"61":1}}],["rewrote",{"2":{"43":1,"44":1,"46":1,"57":1,"61":1,"80":1}}],["realization",{"2":{"44":1,"46":1,"57":1,"61":1}}],["realm",{"2":{"43":1,"80":1}}],["readcubedata",{"2":{"64":1}}],["read",{"0":{"42":1,"43":1,"44":1,"45":1},"1":{"43":1,"44":1,"45":1},"2":{"0":1,"35":1,"42":1,"45":1,"49":1,"64":1}}],["red",{"2":{"41":1,"54":1}}],["reduce",{"2":{"9":1,"13":1}}],["reverse",{"2":{"41":1}}],["reverseordered",{"2":{"8":1,"71":1}}],["removes",{"2":{"65":1}}],["remove",{"2":{"37":1}}],["removed",{"2":{"14":1,"65":1}}],["resolution",{"2":{"73":2}}],["resets",{"2":{"64":1,"65":1}}],["respectively",{"2":{"54":1}}],["reshape",{"2":{"27":1}}],["result",{"2":{"25":1,"29":1}}],["resulting",{"2":{"7":1,"8":1,"13":1,"64":1,"65":1}}],["results",{"0":{"75":1},"2":{"1":1,"4":1,"41":2,"64":1,"65":1}}],["reference",{"0":{"63":1},"1":{"64":1,"65":1}}],["references",{"2":{"44":1,"46":1,"57":1,"61":1}}],["ref",{"2":{"26":1,"64":1,"65":1}}],["rebuild",{"2":{"24":1,"35":1}}],["repeat",{"2":{"73":1}}],["repl",{"2":{"70":1}}],["replace",{"2":{"15":1,"35":1,"84":1}}],["repository",{"2":{"66":1,"76":1}}],["reports",{"2":{"66":1}}],["reproduces",{"2":{"34":1}}],["represented",{"2":{"64":1,"78":1}}],["represents",{"2":{"54":1}}],["representing",{"2":{"14":2,"65":1}}],["representation",{"2":{"0":1,"64":2,"65":3}}],["re",{"2":{"14":1}}],["returned",{"2":{"64":1}}],["returns",{"2":{"64":5,"65":2}}],["return",{"2":{"14":4,"36":1,"64":1,"65":1,"73":1,"74":1}}],["registration",{"2":{"65":2}}],["registered",{"2":{"65":1}}],["regions",{"2":{"14":8}}],["region",{"2":{"14":12}}],["regular",{"2":{"3":4,"4":4,"5":2,"7":1,"8":1,"9":3,"11":3,"12":3,"13":3,"14":8,"17":9,"18":3,"20":2,"21":6,"22":4,"24":9,"25":2,"26":3,"27":14,"28":9,"29":3,"31":1,"32":5,"43":2,"44":4,"46":2,"47":4,"48":2,"49":3,"50":10,"51":2,"57":2,"61":5,"62":2,"71":5,"74":1,"80":1}}],["regularchunks",{"2":{"1":6,"3":3,"4":3,"5":3}}],["=interval",{"2":{"50":2}}],["==",{"2":{"11":1,"74":1}}],["=>nan",{"2":{"84":1}}],["=>",{"2":{"9":2,"11":1,"12":1,"14":5,"15":1,"17":3,"18":3,"31":1,"32":1,"35":1,"36":5,"37":1,"39":3,"40":2,"41":3,"43":20,"44":20,"46":10,"47":20,"48":30,"49":30,"50":50,"57":10,"61":10,"71":6,"80":10}}],["=>2",{"2":{"3":1}}],["=>10",{"2":{"3":1}}],["=>5",{"2":{"3":1,"4":1}}],["=",{"2":{"1":4,"3":9,"4":15,"5":9,"7":5,"8":5,"9":4,"10":1,"11":1,"12":1,"14":16,"15":5,"17":5,"18":4,"20":3,"21":8,"22":4,"24":1,"26":6,"27":7,"28":1,"29":7,"31":1,"32":3,"35":8,"36":16,"37":1,"38":1,"39":4,"40":1,"41":22,"43":2,"44":2,"45":2,"46":2,"47":2,"48":6,"49":6,"50":3,"57":2,"60":8,"61":2,"62":2,"64":11,"65":7,"71":5,"73":18,"74":11,"75":7,"80":8,"81":5,"82":7,"83":5,"84":6}}],["oob",{"2":{"64":1}}],["o1",{"2":{"44":2,"46":2,"57":2,"61":1}}],["ocean",{"2":{"44":1,"46":1,"57":1,"61":1}}],["oct",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["occuring",{"2":{"3":1}}],["o",{"2":{"35":4,"41":4,"64":5}}],["ouput",{"2":{"68":1}}],["our",{"2":{"28":1,"29":1,"74":1}}],["outcube",{"2":{"65":1}}],["outcubes",{"2":{"65":1}}],["outcs",{"2":{"65":1}}],["outsize",{"2":{"65":1}}],["outar",{"2":{"65":2}}],["outtype",{"2":{"64":1,"65":2}}],["outdims",{"2":{"64":6}}],["outdims=outdims",{"2":{"14":1,"15":1}}],["out",{"2":{"35":1,"64":2,"65":1}}],["outputcube",{"2":{"65":3}}],["output",{"2":{"5":1,"14":1,"15":3,"44":1,"46":1,"57":1,"61":1,"64":11,"65":9,"73":1,"84":1}}],["ommiting",{"2":{"27":1}}],["omit",{"2":{"15":1}}],["optimal",{"2":{"65":1}}],["optifunc",{"2":{"65":1}}],["optionally",{"2":{"64":1}}],["options",{"2":{"25":1}}],["operation",{"2":{"65":1}}],["operations",{"2":{"9":1,"36":1,"64":2,"65":3}}],["operates",{"2":{"64":1}}],["openinterval",{"2":{"50":1}}],["open",{"0":{"50":1},"2":{"43":2,"44":2,"45":1,"46":2,"50":2,"57":1,"61":1,"64":3,"80":1}}],["obj",{"2":{"29":2,"73":1,"75":1}}],["objects",{"2":{"64":2}}],["object",{"2":{"10":1,"43":1,"64":5,"65":3,"73":1}}],["obtain",{"0":{"25":1},"2":{"38":1}}],["otherwise",{"2":{"64":1}}],["other",{"0":{"76":1},"1":{"77":1,"78":1,"79":1},"2":{"19":1,"76":1,"78":1}}],["overview",{"0":{"77":1},"2":{"76":1,"77":1}}],["overwrite=true",{"2":{"60":2}}],["overwrite",{"0":{"60":1},"2":{"60":3,"64":4,"65":2}}],["over",{"0":{"78":1},"2":{"9":1,"14":1,"15":1,"41":1,"64":8,"65":1,"78":1}}],["offline=true",{"2":{"84":1}}],["offsets",{"2":{"65":1}}],["offset",{"2":{"12":1}}],["often",{"2":{"6":1}}],["of",{"0":{"10":1,"34":1,"77":2},"2":{"0":1,"5":1,"7":3,"8":1,"9":2,"10":1,"11":1,"12":2,"13":1,"14":8,"15":3,"19":1,"21":1,"22":1,"23":3,"24":4,"27":1,"28":1,"29":1,"34":1,"35":1,"39":1,"44":1,"46":3,"47":1,"49":1,"51":1,"53":7,"54":1,"55":2,"56":2,"57":1,"61":1,"62":1,"63":1,"64":50,"65":41,"71":1,"72":2,"74":2,"76":1,"77":1}}],["ormax",{"2":{"64":1}}],["orca2",{"2":{"44":1,"46":1,"57":1,"61":1}}],["order",{"2":{"34":1,"73":1}}],["ordered",{"2":{"53":1,"54":1}}],["ordereddict",{"2":{"14":1}}],["orderedcollections",{"2":{"14":1}}],["orangered",{"2":{"29":1}}],["original",{"2":{"44":2,"47":4,"48":6,"49":6,"50":10}}],["originates",{"2":{"8":1}}],["origin",{"2":{"9":2,"11":1,"12":1,"15":1,"17":3,"18":1,"71":2}}],["or",{"2":{"0":2,"5":1,"9":1,"12":2,"14":1,"22":1,"43":1,"46":2,"53":3,"56":2,"60":1,"64":21,"65":7,"70":1,"71":2}}],["once",{"2":{"41":1,"55":1,"65":1,"67":1}}],["onlinestat",{"2":{"64":2}}],["onlinestats",{"2":{"29":2}}],["only",{"2":{"5":1,"12":1,"13":1,"14":1,"17":2,"19":1,"28":1,"62":1,"64":2}}],["one",{"0":{"31":1},"2":{"6":1,"7":2,"13":2,"14":2,"29":1,"37":1,"53":2,"54":1,"62":1,"64":8,"65":3,"76":1}}],["oneto",{"2":{"3":4,"4":4,"5":2,"17":3,"20":2,"24":9,"31":1,"32":5,"62":2,"71":2}}],["on",{"2":{"0":2,"5":1,"6":1,"9":2,"12":2,"15":2,"23":1,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"53":1,"57":1,"61":1,"62":1,"64":5,"65":4}}],["dc",{"2":{"65":2}}],["dkrz",{"2":{"43":1,"80":2}}],["drivers",{"2":{"64":1}}],["driver",{"2":{"60":2,"64":6}}],["driver=",{"2":{"3":1,"4":1,"5":1,"58":2,"59":2,"60":3,"61":1,"62":1,"64":3}}],["drop",{"2":{"41":1}}],["dropdims",{"0":{"37":1},"2":{"36":2,"37":2,"41":1}}],["dufresne",{"2":{"44":1,"46":1,"57":1,"61":1}}],["due",{"2":{"38":1}}],["dummy",{"2":{"26":1,"27":1,"73":1,"74":1}}],["during",{"2":{"14":1,"15":1,"19":1}}],["dd",{"2":{"24":1,"74":1}}],["d",{"2":{"14":5,"41":3,"74":1}}],["dash",{"2":{"75":1}}],["danger",{"2":{"60":1}}],["daysinmonth",{"2":{"36":1,"39":1}}],["days",{"2":{"34":1,"36":2,"38":1,"39":2,"40":2}}],["day",{"2":{"9":2,"11":1,"12":1,"13":1,"14":3,"15":1,"17":3,"18":1,"73":1,"74":4}}],["datconfig",{"2":{"65":2}}],["datset",{"2":{"64":1}}],["dat",{"2":{"64":8,"65":16}}],["datetime360day",{"2":{"44":6,"46":3,"47":6,"48":7,"49":9,"50":15,"57":3,"61":3}}],["datetime",{"2":{"43":2,"80":1}}],["datetimenoleap",{"2":{"39":3}}],["date",{"2":{"9":5,"11":3,"12":3,"13":3,"14":11,"15":3,"17":8,"18":3,"27":24,"53":1,"73":2,"74":5,"80":1}}],["datesid",{"2":{"74":2}}],["dates",{"2":{"9":2,"11":1,"12":1,"13":1,"14":3,"15":1,"17":3,"18":1,"27":7,"33":1,"55":1,"73":6,"74":2,"80":1}}],["data=cube1",{"2":{"64":1}}],["databases",{"2":{"53":1}}],["dataframe",{"2":{"29":1,"64":1}}],["dataframes",{"2":{"29":1}}],["datacubes",{"2":{"64":1}}],["datacube",{"0":{"79":1},"2":{"29":2,"62":1,"64":1}}],["data1",{"2":{"26":2}}],["data3",{"2":{"18":1}}],["data2",{"2":{"17":2,"26":2}}],["datasetaxis",{"2":{"64":2}}],["datasetaxis=",{"2":{"64":1,"65":1}}],["dataset",{"0":{"18":1,"30":1,"54":1,"60":1,"61":1},"1":{"31":1,"32":1},"2":{"2":1,"3":4,"4":2,"5":3,"8":1,"9":1,"18":2,"19":1,"31":2,"32":2,"43":3,"44":3,"45":2,"46":3,"47":1,"54":3,"55":2,"57":3,"58":1,"59":1,"60":3,"61":4,"64":18,"65":7,"80":2}}],["datasets",{"0":{"2":1,"16":1,"33":1,"42":1,"46":1,"57":1},"1":{"3":1,"4":1,"5":1,"17":1,"18":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"43":1,"44":1,"45":1,"47":1,"48":1,"49":1,"50":1,"51":1,"58":1,"59":1,"60":1,"61":1,"62":1},"2":{"16":1,"19":1,"42":1,"60":1,"64":8,"65":4,"78":1}}],["data",{"0":{"25":1,"35":1,"55":1},"2":{"0":2,"6":1,"7":1,"9":2,"10":1,"14":2,"15":2,"20":1,"21":1,"25":1,"29":2,"35":8,"43":2,"44":4,"46":3,"47":2,"48":3,"49":3,"50":5,"52":1,"53":3,"54":2,"55":3,"57":3,"60":2,"61":3,"62":3,"64":20,"65":12,"71":4,"72":1,"73":2,"74":1,"78":4,"80":5,"82":1}}],["details",{"2":{"71":1}}],["detect",{"2":{"64":1,"65":1}}],["determined",{"2":{"65":1}}],["determines",{"2":{"64":1}}],["determine",{"2":{"0":1,"64":1}}],["dev",{"2":{"68":1}}],["dependencies",{"2":{"68":1}}],["defaultfillval",{"2":{"65":1}}],["default",{"2":{"64":1,"65":4}}],["defaults",{"2":{"64":7}}],["definition",{"2":{"55":1}}],["defining",{"2":{"15":1}}],["defines",{"2":{"64":1}}],["define",{"0":{"74":1},"2":{"27":1,"29":1,"41":1,"64":2,"73":1}}],["defined",{"2":{"21":1,"22":1,"29":1,"41":1,"51":1,"53":1,"56":1,"71":1}}],["deletes",{"2":{"60":1,"64":1}}],["delete",{"2":{"60":2}}],["denoting",{"2":{"64":1}}],["dense",{"2":{"53":1}}],["denvil",{"2":{"44":2,"46":2,"57":2,"61":2}}],["degc",{"2":{"44":1,"47":2,"48":3,"49":3,"50":5}}],["dec",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["dest",{"2":{"83":1}}],["desired",{"2":{"65":4}}],["designed",{"2":{"19":2,"53":1}}],["descriptor",{"2":{"65":4}}],["descriptors",{"2":{"64":2}}],["descriptions",{"2":{"64":1}}],["description",{"2":{"64":4,"65":11}}],["described",{"2":{"78":1}}],["describe",{"2":{"64":2}}],["describes",{"2":{"6":1,"9":1,"16":1,"19":1,"42":1,"50":1,"52":1,"63":1,"65":1}}],["describing",{"2":{"64":1}}],["desc",{"2":{"64":3,"65":3}}],["demand",{"2":{"12":1}}],["dsw",{"2":{"36":2,"41":2}}],["dsfinal",{"2":{"26":1,"28":2,"29":2}}],["ds2",{"2":{"26":3,"28":1,"61":1}}],["ds1",{"2":{"26":3,"28":3,"29":1}}],["dschunked",{"2":{"3":3,"4":3,"5":3}}],["ds",{"2":{"3":2,"4":2,"5":2,"18":1,"31":1,"32":1,"35":5,"36":10,"39":1,"41":3,"43":1,"44":1,"45":1,"46":1,"47":2,"57":1,"58":3,"59":3,"60":3,"61":2,"64":3,"65":1,"84":2}}],["directory",{"2":{"43":1,"58":2,"59":2}}],["directories",{"2":{"42":1,"65":1}}],["directly",{"2":{"16":1,"17":1,"22":1}}],["diverging",{"2":{"41":1}}],["divided",{"2":{"28":1}}],["differing",{"2":{"64":1}}],["difference",{"2":{"41":1}}],["differences",{"2":{"36":1,"41":1,"65":1}}],["different",{"2":{"8":2,"15":1,"24":1,"34":1,"54":1,"64":3,"65":2,"76":1}}],["diff",{"2":{"36":2,"41":3}}],["disregard",{"2":{"65":1}}],["dispatch",{"2":{"65":1}}],["discribe",{"2":{"64":2}}],["distribute",{"2":{"15":1}}],["distributed",{"0":{"15":1},"2":{"15":2}}],["diskarray",{"2":{"64":1}}],["diskarrays",{"2":{"1":9,"3":4,"4":4,"5":4,"64":2,"65":1}}],["disk",{"2":{"0":1,"22":1,"53":1,"62":2,"64":1,"65":2}}],["dictionary",{"2":{"54":1,"64":3}}],["dict",{"2":{"3":1,"4":1,"7":1,"8":1,"9":2,"11":1,"12":1,"13":2,"14":4,"15":1,"17":4,"18":2,"20":1,"21":2,"22":3,"24":1,"25":1,"26":1,"27":5,"28":3,"29":3,"36":2,"37":1,"39":3,"40":2,"41":3,"43":2,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1,"62":1,"64":3,"71":3,"74":1,"80":1}}],["dime",{"2":{"43":1}}],["dimensional",{"2":{"52":1,"53":2,"64":1}}],["dimensionaldata",{"2":{"14":1,"22":2,"24":1,"33":1,"35":1,"49":1,"50":2,"51":3,"53":1,"56":1,"71":1,"72":3,"74":1,"80":1}}],["dimensions",{"2":{"8":1,"9":1,"12":1,"14":3,"15":1,"17":2,"26":1,"28":2,"35":1,"46":1,"51":2,"53":3,"54":1,"64":8,"65":3,"71":3,"72":1}}],["dimension",{"0":{"7":1,"8":1,"51":1,"56":1},"2":{"1":1,"7":2,"8":1,"9":1,"13":2,"14":3,"27":1,"37":1,"38":1,"41":1,"49":1,"51":1,"53":1,"55":1,"56":1,"64":3,"65":3,"71":1}}],["dimgroupbyarray",{"2":{"36":2,"37":1,"39":2,"40":1,"41":3}}],["dimarray",{"0":{"22":1},"2":{"14":3,"22":6,"40":1,"53":1}}],["dims=2",{"2":{"74":1}}],["dims=",{"2":{"13":2,"15":1,"28":1,"36":5,"37":1,"39":1,"41":1}}],["dims",{"2":{"7":3,"8":1,"9":1,"11":1,"12":1,"13":2,"14":4,"17":2,"20":1,"21":3,"22":2,"24":3,"25":1,"26":1,"27":5,"28":3,"29":3,"35":1,"36":7,"37":2,"39":6,"40":3,"41":8,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5,"62":1,"71":2,"74":1}}],["dim",{"2":{"1":2,"3":7,"4":8,"5":2,"7":2,"8":3,"9":3,"14":4,"15":3,"17":7,"20":2,"22":2,"24":9,"25":3,"26":4,"27":3,"31":1,"32":5,"61":3,"62":2,"71":4,"74":1}}],["dodgerblue",{"2":{"75":1}}],["dot",{"2":{"75":1}}],["documenter",{"2":{"84":1}}],["documentation",{"0":{"67":1},"1":{"68":1}}],["doc",{"2":{"60":1}}],["docstring",{"2":{"64":1}}],["docs",{"0":{"68":1},"2":{"54":1,"67":2,"68":6,"72":1}}],["download",{"0":{"35":1},"2":{"35":1,"44":2,"45":2,"46":2,"57":2}}],["downloads",{"2":{"33":1,"35":1,"44":1,"45":1,"46":1,"57":1}}],["done",{"2":{"28":1,"41":1,"67":2}}],["doing",{"2":{"15":1,"24":1,"25":1,"68":1}}],["doesn",{"2":{"73":1}}],["does",{"2":{"15":1,"62":1,"64":1,"65":1}}],["do",{"0":{"26":1,"27":1,"28":1,"29":1,"30":1},"1":{"31":1,"32":1},"2":{"0":1,"12":1,"14":3,"15":1,"23":2,"28":1,"34":1,"41":1,"65":1,"68":1,"70":1,"73":1}}],["switched",{"2":{"72":1}}],["syntax",{"2":{"72":1,"76":1}}],["system",{"2":{"68":1}}],["symbol",{"2":{"9":1,"11":1,"12":1,"17":2,"36":4,"37":2,"38":2,"39":4,"40":4,"41":6,"64":3,"65":1}}],["src",{"2":{"67":1}}],["sres",{"2":{"44":2,"46":2,"57":2,"61":2}}],["slightly",{"2":{"76":1}}],["slice",{"2":{"73":3,"80":4,"81":1}}],["slices",{"2":{"64":3}}],["slurmmanager",{"2":{"15":1}}],["skipped",{"2":{"64":1}}],["skip",{"2":{"64":1}}],["skipmissing",{"2":{"15":1,"28":1}}],["skeleton=true",{"2":{"62":1}}],["skeleton=false",{"2":{"60":1,"64":1}}],["skeleton",{"0":{"62":1},"2":{"62":3}}],["ssp585",{"2":{"43":1,"80":2}}],["scene",{"2":{"84":3}}],["scenarios",{"2":{"80":1}}],["scenariomip",{"2":{"43":1,"80":2}}],["scripts",{"2":{"68":1}}],["scope",{"2":{"64":1,"65":1}}],["scalar",{"2":{"43":1}}],["scattered",{"2":{"6":1}}],["snow3",{"2":{"29":1}}],["snippet",{"2":{"5":1}}],["small",{"2":{"23":1}}],["shinclude",{"2":{"68":1}}],["shdocs>",{"2":{"68":1}}],["shnpm",{"2":{"68":2}}],["should",{"2":{"35":1,"64":3,"65":1,"67":1,"68":1}}],["shown",{"2":{"64":1}}],["showprog",{"2":{"64":1}}],["shows",{"2":{"41":1}}],["show",{"2":{"15":1,"84":1}}],["shading=false",{"2":{"82":1,"83":1,"84":1}}],["shall",{"2":{"64":5,"65":1}}],["share",{"2":{"54":1,"64":1}}],["shared",{"2":{"3":1,"4":1,"5":1,"18":1,"26":1,"31":1,"32":1,"43":1,"44":1,"46":1,"57":1,"61":1,"80":1}}],["shape",{"2":{"5":1}}],["sure",{"2":{"84":1}}],["surface",{"2":{"41":2,"43":2,"44":2,"47":5,"48":6,"49":6,"50":10,"82":1,"83":1}}],["such",{"2":{"50":1,"64":1,"72":1}}],["subcubes",{"2":{"64":1}}],["subtype",{"2":{"53":1,"65":1,"72":1}}],["subtables",{"2":{"29":1}}],["subsetextensions",{"2":{"65":1}}],["subsetcube",{"2":{"64":1}}],["subseting",{"2":{"51":1}}],["subsetting",{"2":{"43":1,"44":1,"65":1,"74":1}}],["subset",{"0":{"27":1},"2":{"27":4,"46":1,"49":1,"64":1,"65":1,"80":1}}],["subsets",{"2":{"14":1,"56":1}}],["supposed",{"2":{"64":1}}],["support",{"2":{"22":1,"73":1}}],["supertype",{"2":{"21":1,"22":1}}],["sum",{"2":{"14":2,"28":1,"36":4,"39":2,"40":4,"41":2}}],["suggestions",{"2":{"5":1}}],["s",{"2":{"9":1,"26":1,"27":1,"41":7,"46":1,"56":1,"64":2,"65":1,"74":1}}],["style",{"0":{"78":1}}],["st",{"2":{"72":1}}],["stdzero",{"2":{"64":1}}],["struct",{"2":{"64":1,"65":4}}],["structure",{"2":{"55":1}}],["structures",{"2":{"52":1}}],["string",{"2":{"7":1,"8":2,"9":1,"11":1,"12":1,"13":2,"14":6,"17":3,"20":1,"21":2,"22":3,"24":1,"25":1,"26":2,"27":5,"28":3,"29":3,"39":1,"41":1,"43":2,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"60":1,"61":1,"62":1,"64":6,"65":3,"71":4,"73":1,"74":1,"80":1}}],["storing",{"2":{"54":1}}],["stored",{"2":{"53":3,"65":1}}],["stores",{"2":{"53":1,"64":1}}],["store",{"2":{"43":4,"53":1,"54":1,"80":2}}],["storage",{"2":{"10":1,"43":1}}],["stable",{"2":{"72":1}}],["standard",{"2":{"43":1,"44":1,"47":2,"48":3,"49":3,"50":5}}],["standards",{"2":{"43":1,"44":1,"46":1,"57":1,"61":1,"80":1}}],["statistics",{"2":{"13":1,"15":1,"29":3,"33":1,"73":1}}],["started",{"0":{"69":1},"1":{"70":1,"71":1,"72":1}}],["start=12",{"2":{"36":2,"37":1,"39":2,"40":2,"41":3}}],["start=december",{"2":{"36":3,"39":1}}],["start",{"2":{"9":1,"27":1}}],["still",{"2":{"7":1,"14":1,"54":1,"76":1}}],["step=lentime",{"2":{"73":1}}],["step=3",{"2":{"36":2,"37":1,"39":2,"40":2,"41":3}}],["steps",{"2":{"9":1,"13":1,"41":1,"64":1,"68":1}}],["step",{"2":{"6":1,"13":1,"28":2,"64":1,"65":2,"80":1}}],["serve",{"2":{"65":1}}],["series",{"0":{"34":1},"2":{"15":1}}],["sequence",{"2":{"53":1}}],["see",{"2":{"50":1,"64":1,"72":1}}],["selected",{"2":{"65":1,"73":1}}],["selectors",{"2":{"50":1}}],["selector",{"2":{"49":1}}],["select",{"0":{"46":1,"47":1,"48":1,"49":1},"1":{"47":1,"48":1,"49":1,"50":1,"51":1},"2":{"46":1,"71":1}}],["seaborn",{"2":{"81":1,"82":1,"83":1,"84":1}}],["searching",{"2":{"64":1}}],["search",{"2":{"64":1}}],["sea",{"2":{"44":3,"46":1,"47":5,"48":6,"49":6,"50":10,"57":1,"61":1}}],["season",{"2":{"36":1,"39":2,"40":1}}],["seasons",{"0":{"36":1,"38":1,"41":1},"1":{"37":1,"38":1},"2":{"36":9,"39":1,"41":5}}],["seasonal",{"0":{"34":1,"73":1,"75":1},"1":{"74":1,"75":1},"2":{"34":1,"40":1,"41":1,"73":1,"74":4}}],["sebastien",{"2":{"44":2,"46":2,"57":2,"61":2}}],["separate",{"2":{"64":1,"65":1}}],["separated",{"2":{"54":1}}],["separately",{"2":{"4":1,"14":1,"15":1}}],["sep",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["several",{"2":{"26":1}}],["second",{"2":{"7":3,"64":1}}],["section",{"2":{"6":1,"9":1,"16":1,"19":1,"23":1,"42":1,"52":1,"63":1}}],["setting",{"2":{"60":1,"64":1,"65":1}}],["sets",{"2":{"5":1,"35":1}}],["set",{"0":{"3":1,"4":1,"5":1},"2":{"3":1,"4":1,"14":1,"43":1,"60":1,"64":1,"65":2,"68":1}}],["setchunks",{"2":{"0":1,"1":2,"2":1,"3":1,"4":1,"5":1,"64":1,"65":1}}],["sampled",{"2":{"3":4,"4":4,"5":2,"7":1,"8":1,"9":3,"11":3,"12":3,"13":3,"14":8,"17":9,"18":3,"20":2,"21":6,"22":4,"24":9,"25":2,"26":3,"27":14,"28":9,"29":5,"31":1,"32":5,"39":1,"43":6,"44":6,"46":3,"47":6,"48":4,"49":9,"50":15,"51":2,"57":3,"61":6,"62":2,"71":5,"74":1,"80":3}}],["same",{"2":{"1":1,"4":1,"5":1,"8":1,"14":2,"21":1,"22":1,"24":1,"25":2,"26":1,"47":1,"48":1,"49":1,"53":1,"54":3,"55":2,"64":1,"65":1,"68":1}}],["saves",{"2":{"60":1,"64":1}}],["save",{"0":{"62":1},"2":{"11":1,"22":1,"58":2,"59":2,"62":1,"64":2}}],["savecube",{"2":{"1":1,"58":1,"59":1,"62":1,"64":2}}],["savedataset",{"2":{"3":1,"4":1,"5":1,"60":2,"61":1,"62":1,"64":2,"65":1}}],["saved",{"2":{"1":1,"10":1,"60":1}}],["saving",{"2":{"0":1,"3":1,"4":1,"5":1}}],["sosstsst",{"2":{"44":1,"47":2,"48":3,"49":3,"50":5}}],["source",{"2":{"44":1,"46":1,"57":1,"60":1,"61":1,"64":24,"65":24}}],["software",{"2":{"44":1,"46":1,"57":1}}],["sort",{"2":{"14":1}}],["sometimes",{"2":{"62":1,"78":1}}],["some",{"2":{"10":1,"28":1,"41":1,"64":1,"73":1,"82":1}}],["so",{"2":{"1":1,"15":1,"64":1,"65":1}}],["sphere",{"0":{"84":1},"2":{"84":3}}],["split",{"2":{"64":1,"73":1}}],["splitted",{"2":{"1":1}}],["special",{"2":{"48":1,"64":1,"65":1}}],["specifiers",{"2":{"65":1}}],["specifier",{"2":{"64":1}}],["specifies",{"2":{"64":3}}],["specified",{"2":{"64":7,"65":1}}],["specific",{"2":{"27":1,"64":2}}],["specifying",{"2":{"64":2,"65":1}}],["specify",{"2":{"17":1,"64":1}}],["specs",{"2":{"43":1,"80":1}}],["spectral",{"2":{"41":1}}],["sparse",{"2":{"53":1}}],["spatio",{"2":{"28":1}}],["spatial",{"2":{"0":1,"13":1,"14":5,"15":1,"33":1,"53":1}}],["span",{"2":{"27":1,"73":1}}],["space",{"2":{"0":1}}],["sigle",{"0":{"73":1},"1":{"74":1,"75":1}}],["sin",{"2":{"73":1}}],["sink",{"2":{"65":1}}],["single",{"2":{"6":1,"7":1,"55":1,"58":1,"59":1,"64":6,"65":1}}],["simplicity",{"2":{"73":1}}],["simple",{"2":{"23":1,"71":1}}],["simply",{"2":{"15":1,"68":1}}],["size=",{"2":{"82":1,"83":1,"84":1}}],["sizes",{"2":{"1":1,"64":2,"65":2}}],["size",{"2":{"0":1,"3":1,"4":1,"7":2,"8":2,"9":2,"11":2,"12":2,"13":4,"14":4,"17":4,"20":2,"21":2,"22":2,"24":2,"25":2,"26":2,"27":10,"28":6,"29":6,"39":2,"41":1,"43":2,"44":2,"47":4,"48":6,"49":6,"50":10,"62":2,"64":3,"65":4,"71":5,"74":3,"75":1,"81":1}}],["situations",{"2":{"0":1}}],["features",{"2":{"77":1}}],["feb",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["falls",{"2":{"64":1}}],["false",{"2":{"60":2,"64":3,"65":1}}],["faq",{"0":{"23":1},"1":{"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1}}],["faster",{"2":{"65":1}}],["fastest",{"2":{"0":1}}],["fast",{"2":{"0":1,"12":1}}],["frame",{"2":{"78":1}}],["frames",{"2":{"53":1}}],["frac",{"2":{"73":1}}],["frac=8",{"2":{"73":2,"75":1}}],["front",{"2":{"65":1}}],["from",{"0":{"24":1,"25":2,"34":1},"2":{"7":1,"8":1,"19":1,"25":4,"50":1,"55":2,"64":6,"65":6,"71":1,"74":1}}],["fr",{"2":{"44":1,"46":1,"57":1,"61":1}}],["frequently",{"0":{"23":1},"1":{"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1}}],["fu",{"2":{"65":1}}],["funtion",{"2":{"74":1}}],["fun",{"2":{"64":4}}],["functionality",{"0":{"77":1}}],["functions",{"2":{"9":2,"53":2,"63":1,"64":1,"65":1}}],["function",{"0":{"29":1},"2":{"0":1,"12":2,"14":1,"15":6,"24":2,"26":1,"28":1,"29":1,"33":1,"36":1,"38":1,"41":1,"50":1,"60":1,"62":1,"64":24,"65":13,"73":2}}],["future",{"2":{"35":1}}],["further",{"2":{"12":1,"76":1}}],["flag",{"2":{"65":3}}],["float32",{"2":{"43":1,"44":1,"47":2,"48":3,"49":3,"50":5,"65":1}}],["float64",{"2":{"7":1,"8":1,"9":3,"11":3,"12":3,"13":4,"14":9,"17":6,"18":2,"20":2,"21":2,"22":4,"24":1,"25":1,"26":4,"28":12,"29":5,"36":2,"37":1,"40":2,"41":3,"43":4,"44":4,"46":2,"47":4,"48":2,"49":6,"50":10,"51":3,"57":2,"61":2,"64":1,"65":1,"71":7,"74":2,"80":2}}],["flexible",{"2":{"8":1,"14":1}}],["folder",{"2":{"68":1}}],["follow",{"2":{"68":1,"76":1}}],["follows",{"2":{"36":1,"41":1}}],["following",{"2":{"1":1,"4":1,"5":1,"15":1,"33":1,"34":1,"35":1,"64":2,"65":4,"73":1,"76":1}}],["found",{"2":{"64":1}}],["fourth",{"2":{"44":2,"46":2,"57":2,"61":2}}],["fontsize=24",{"2":{"81":1}}],["fontsize=18",{"2":{"41":1}}],["font=",{"2":{"41":1}}],["forwarded",{"2":{"64":1}}],["forwardordered",{"2":{"3":4,"4":4,"5":2,"7":1,"8":1,"9":3,"11":3,"12":3,"13":3,"14":9,"17":9,"18":3,"20":2,"21":6,"22":4,"24":9,"25":2,"26":4,"27":14,"28":9,"29":5,"31":1,"32":5,"39":1,"43":6,"44":6,"46":3,"47":6,"48":4,"49":9,"50":15,"51":2,"57":3,"61":6,"62":2,"71":5,"74":1,"80":3}}],["force",{"2":{"64":1}}],["forcing",{"2":{"43":1,"80":1}}],["forms",{"2":{"64":1,"65":2}}],["format",{"2":{"60":1,"64":1,"74":1}}],["formal",{"2":{"55":1}}],["former",{"2":{"24":1}}],["for",{"0":{"5":1,"73":1},"1":{"74":1,"75":1},"2":{"0":3,"3":1,"4":1,"5":1,"14":4,"15":1,"28":4,"29":6,"35":1,"39":1,"41":3,"44":1,"46":1,"50":1,"51":1,"53":4,"54":3,"55":1,"57":1,"60":1,"61":1,"62":1,"64":19,"65":16,"73":2,"74":2,"76":1}}],["f",{"2":{"1":2}}],["field",{"2":{"64":1}}],["fields",{"2":{"29":1,"64":1,"65":4}}],["figure=",{"2":{"75":1}}],["figure",{"2":{"41":2,"73":3,"75":1,"81":1,"82":1,"83":1,"84":1}}],["fig",{"2":{"29":3,"41":8,"73":1,"75":2,"81":2,"82":2,"83":2,"84":3}}],["filterig",{"2":{"74":1}}],["filter",{"2":{"64":2}}],["fillarrays",{"2":{"62":3}}],["fill",{"2":{"62":1,"64":1,"65":1}}],["fillvalue=",{"2":{"65":1}}],["fillvalue",{"2":{"35":3,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5}}],["filling",{"2":{"16":1,"17":1}}],["filename",{"2":{"35":2,"64":1}}],["files",{"0":{"79":1},"2":{"6":1,"42":1,"45":1,"65":2,"68":1}}],["file",{"2":{"1":1,"6":1,"7":2,"8":2,"9":2,"11":2,"12":2,"13":4,"14":4,"17":4,"20":2,"21":2,"22":3,"24":2,"25":2,"26":2,"27":10,"28":6,"29":6,"39":2,"43":2,"44":4,"47":4,"48":6,"49":6,"50":10,"60":2,"62":2,"64":2,"67":4,"71":4,"74":2}}],["find",{"2":{"65":1,"76":1}}],["findaxis",{"2":{"65":1}}],["findall",{"2":{"14":1,"74":1}}],["finalizer",{"2":{"65":1}}],["finalize",{"2":{"65":1}}],["finally",{"2":{"14":1,"64":1}}],["final",{"2":{"14":1}}],["first",{"2":{"7":4,"14":1,"29":1,"41":1,"64":4,"65":1,"67":1,"71":1,"80":1}}],["fitting",{"2":{"64":1}}],["fittable",{"2":{"64":2}}],["fitcube",{"2":{"29":2}}],["fitsym",{"2":{"64":4}}],["fits",{"2":{"19":1}}],["fit",{"2":{"0":1,"53":1}}],["hold",{"2":{"64":1}}],["holds",{"2":{"64":1,"65":1}}],["however",{"2":{"19":1}}],["how",{"0":{"26":1,"27":1,"28":1,"29":1,"30":1},"1":{"31":1,"32":1},"2":{"5":1,"6":1,"9":1,"16":1,"19":1,"23":1,"29":1,"42":1,"64":1,"76":1,"78":1}}],["http",{"2":{"68":1}}],["https",{"2":{"35":2,"44":1,"45":1,"46":1,"54":1,"57":1}}],["html",{"2":{"54":1}}],["hr",{"2":{"43":1,"80":2}}],["his",{"2":{"73":1}}],["history",{"2":{"43":2,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1,"80":1}}],["hidedecorations",{"2":{"41":1}}],["highclip",{"2":{"41":4}}],["hm",{"2":{"41":8}}],["happens",{"2":{"65":1}}],["had",{"2":{"64":1,"65":1}}],["hamman",{"2":{"34":1,"41":1}}],["handled",{"2":{"65":1}}],["handle",{"2":{"53":1,"65":1}}],["handling",{"2":{"8":1,"64":1}}],["handy",{"2":{"29":1}}],["has",{"2":{"7":1,"8":1,"14":1,"21":1,"22":1,"34":1,"37":1,"65":1}}],["half",{"2":{"7":5}}],["have",{"2":{"5":1,"8":1,"14":1,"17":1,"55":1,"64":3}}],["having",{"2":{"0":1,"14":1}}],["help",{"2":{"64":1,"65":2}}],["height",{"2":{"43":2,"80":1}}],["heatmap",{"0":{"81":1},"2":{"29":1,"41":3,"81":1}}],["hereby",{"2":{"14":1}}],["here",{"2":{"7":1,"8":1,"12":1,"14":1,"29":1,"49":1,"62":1,"67":2}}],["hence",{"2":{"0":1}}],["msc",{"2":{"74":3,"75":2}}],["mscarray",{"2":{"74":2}}],["md",{"2":{"67":2}}],["mdash",{"2":{"60":1,"64":24,"65":24}}],["must",{"2":{"55":1,"64":1,"65":1}}],["multiplying",{"2":{"28":1}}],["multiply",{"2":{"9":1,"28":1}}],["multiple",{"0":{"32":1,"79":1},"2":{"6":1,"15":1,"43":1,"44":1,"53":1,"64":1}}],["mb",{"2":{"44":1,"47":2}}],["mm",{"2":{"44":2,"46":2,"57":2,"61":2}}],["mpi",{"2":{"43":1,"80":2}}],["m",{"2":{"20":2}}],["miss",{"2":{"65":1}}],["missing",{"2":{"13":2,"14":2,"28":1,"29":2,"44":2,"47":4,"48":6,"49":6,"50":10,"62":3,"64":2,"65":2,"84":1}}],["minimized",{"2":{"65":1}}],["minutes",{"2":{"44":1,"47":2,"48":3,"49":3,"50":5}}],["might",{"2":{"19":1,"76":1}}],["mymean",{"2":{"15":4}}],["manager",{"2":{"70":1}}],["many",{"2":{"53":1,"65":1}}],["main",{"2":{"65":1}}],["make",{"2":{"62":1,"64":1,"65":2,"68":1,"84":1}}],["makie",{"2":{"41":1,"73":1,"84":1}}],["making",{"2":{"10":1,"46":1}}],["maximal",{"2":{"65":1}}],["maximum",{"2":{"28":1,"64":1,"65":1}}],["maxbuf",{"2":{"65":1}}],["max",{"2":{"60":1,"64":7,"65":2}}],["mahecha",{"2":{"55":1}}],["mar",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["master",{"2":{"35":1}}],["mask",{"2":{"29":2}}],["machine",{"2":{"15":1,"53":1}}],["matching",{"2":{"71":1}}],["match",{"2":{"65":2}}],["matched",{"2":{"64":1}}],["mat",{"2":{"14":4}}],["matrix",{"2":{"14":1,"20":1,"53":1,"74":1}}],["may",{"2":{"9":1,"14":1,"36":4,"37":2,"38":1,"39":4,"40":4,"41":6,"43":1,"44":1,"72":1}}],["maps",{"0":{"80":1},"1":{"81":1}}],["mapslice",{"2":{"15":1}}],["mapslices",{"0":{"13":1},"2":{"9":1,"12":1,"13":1,"15":1,"28":1,"74":1}}],["mapped",{"2":{"64":1}}],["mapping",{"2":{"64":1,"65":3}}],["mapcube",{"0":{"14":1},"2":{"9":1,"12":1,"14":3,"15":3,"64":5,"65":2}}],["map",{"0":{"12":1,"28":1},"2":{"9":1,"12":2,"14":3,"15":3,"28":4,"29":1,"36":2,"40":1,"41":1,"64":2,"71":1,"74":2}}],["moll",{"0":{"83":1}}],["mowingwindow",{"2":{"64":1}}],["movingwindow",{"2":{"64":4}}],["module",{"2":{"64":2}}],["model",{"2":{"44":1,"46":1,"54":2,"57":1,"61":1}}],["modification",{"2":{"10":1,"15":1}}],["modify",{"0":{"10":1}}],["monthday",{"2":{"74":4}}],["monthly",{"0":{"34":1}}],["month",{"2":{"27":7,"34":1,"36":4,"37":1,"38":1,"39":5,"40":2,"41":3,"64":1,"74":2}}],["moment",{"2":{"22":1}}],["more",{"2":{"8":1,"9":1,"28":1,"29":1,"49":1,"50":1,"55":1,"60":1,"64":3,"65":1,"71":2}}],["most",{"2":{"0":1,"14":1,"19":1}}],["mesh",{"2":{"84":2}}],["merely",{"2":{"62":1}}],["measured",{"2":{"54":1,"55":1}}],["measure",{"2":{"53":1}}],["measures",{"2":{"43":1}}],["means",{"0":{"34":1},"2":{"13":1,"64":1}}],["mean",{"0":{"73":1,"75":1},"1":{"74":1,"75":1},"2":{"9":1,"13":3,"15":4,"29":4,"36":10,"37":2,"38":1,"41":2,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5,"64":1,"74":5}}],["method",{"2":{"64":17,"65":18}}],["methods",{"2":{"6":1,"15":1,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5}}],["meter",{"2":{"43":1}}],["metadata",{"2":{"7":1,"8":1,"9":1,"11":1,"12":1,"13":2,"14":3,"17":2,"19":1,"20":1,"21":2,"22":3,"24":1,"25":1,"26":1,"27":5,"28":3,"29":3,"36":2,"37":1,"39":3,"40":2,"41":3,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5,"62":2,"64":1,"71":3,"74":1}}],["members",{"2":{"65":1}}],["member",{"2":{"5":1}}],["memory",{"2":{"0":1,"14":1,"19":3,"35":1,"53":1,"62":1,"64":2,"65":1}}],["wglmakie",{"2":{"84":2}}],["would",{"2":{"64":2}}],["world",{"2":{"45":2}}],["workdir",{"2":{"65":1}}],["worker",{"2":{"64":1}}],["workers",{"2":{"64":1}}],["work",{"2":{"19":2,"35":1,"52":1,"64":1,"73":1,"76":2,"78":1}}],["workload",{"2":{"15":1}}],["works",{"2":{"5":1,"25":1,"62":1}}],["workflows",{"2":{"0":1}}],["written",{"2":{"64":1,"65":1}}],["writefac",{"2":{"65":1}}],["writefac=4",{"2":{"60":1,"64":1}}],["writes",{"2":{"64":1}}],["write",{"0":{"57":1,"58":1,"59":1},"1":{"58":1,"59":1,"60":1,"61":1,"62":1},"2":{"62":1,"64":2}}],["wrap",{"2":{"64":1}}],["wrapping",{"2":{"38":1,"51":2}}],["www",{"2":{"44":1,"46":1,"57":1}}],["w",{"2":{"41":2}}],["was",{"2":{"14":1,"15":1,"65":1}}],["way",{"2":{"14":1,"19":1,"24":1}}],["warning",{"2":{"10":1,"19":1,"24":1,"35":1,"60":1,"64":1}}],["wanted",{"2":{"65":1}}],["wants",{"2":{"62":1}}],["want",{"2":{"0":1,"55":1,"65":1,"68":1,"78":1}}],["wintri",{"0":{"82":1},"1":{"83":1,"84":1}}],["windowloopinds",{"2":{"65":1}}],["window",{"2":{"64":1,"65":1}}],["without",{"2":{"65":1}}],["within",{"2":{"49":1}}],["with",{"2":{"7":1,"9":1,"11":1,"12":1,"14":4,"15":2,"17":3,"19":1,"24":1,"28":2,"29":3,"36":3,"37":1,"39":2,"40":2,"41":5,"43":2,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"52":1,"54":1,"57":1,"60":1,"61":1,"62":1,"64":11,"65":1,"67":1,"71":4,"72":3,"76":1,"78":1,"80":1,"82":1}}],["will",{"2":{"0":1,"3":1,"4":1,"12":1,"14":1,"28":2,"29":2,"33":1,"38":2,"60":3,"64":12,"65":3,"78":1}}],["white",{"2":{"82":1,"83":1}}],["while",{"2":{"62":1}}],["which",{"2":{"8":1,"14":2,"41":1,"47":1,"50":1,"51":1,"55":3,"64":5,"65":4,"78":1}}],["whether",{"2":{"65":2}}],["whereas",{"2":{"53":1}}],["where",{"2":{"15":1,"34":1,"50":1,"64":1,"65":4}}],["when",{"2":{"0":1,"5":1,"12":1,"55":1,"64":2,"65":1}}],["whole",{"2":{"7":3}}],["wether",{"2":{"64":1}}],["weight=",{"2":{"64":1}}],["weight=nothing",{"2":{"64":1}}],["weight",{"0":{"39":1},"1":{"40":1,"41":1},"2":{"38":1,"40":1,"41":1}}],["weights",{"0":{"40":1},"2":{"36":3,"40":2,"41":1}}],["weightedmean",{"2":{"64":1}}],["weighted",{"0":{"41":1},"2":{"29":1,"34":1,"36":8,"41":8,"64":3}}],["well",{"2":{"29":1,"62":1,"64":1}}],["welcome",{"2":{"5":1,"66":1}}],["were",{"2":{"12":2,"50":1,"65":1,"73":1}}],["we",{"2":{"7":2,"8":1,"12":2,"13":1,"14":5,"15":2,"17":2,"26":1,"27":1,"28":2,"29":5,"36":1,"37":1,"38":2,"41":1,"43":1,"49":1,"55":1,"62":1,"72":2,"73":2,"80":1}}],["yeesian",{"2":{"45":1}}],["years",{"2":{"27":1,"73":1,"74":1}}],["year",{"2":{"7":4}}],["yyyy",{"2":{"44":2,"46":2,"57":2,"61":2}}],["ylabel=",{"2":{"73":2,"75":1}}],["ylabel",{"2":{"41":3}}],["yaxcolumn",{"2":{"65":1}}],["yaxconvert",{"2":{"22":2}}],["yaxdefaults",{"2":{"65":1}}],["yaxarraybase",{"2":{"22":1,"64":1,"65":1}}],["yaxarray",{"0":{"10":1,"17":1,"47":1,"53":1},"2":{"1":1,"3":4,"4":4,"5":4,"6":1,"7":3,"8":3,"9":2,"11":1,"12":1,"13":2,"14":3,"15":1,"17":5,"18":2,"20":4,"21":3,"22":5,"24":3,"25":1,"26":3,"27":6,"28":3,"29":4,"31":2,"32":4,"35":2,"36":11,"37":5,"39":13,"40":5,"41":15,"43":2,"44":2,"46":2,"47":2,"48":3,"49":3,"50":5,"53":1,"55":1,"57":1,"58":1,"59":1,"61":2,"62":3,"64":10,"65":3,"71":5,"74":2,"78":1,"80":1}}],["yaxarrays",{"0":{"0":1,"1":1,"6":1,"9":1,"16":1,"19":1,"30":1,"33":1,"42":1,"46":1,"57":1,"66":1,"77":1,"78":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"7":1,"8":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"17":1,"18":1,"20":1,"21":1,"22":1,"31":1,"32":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"43":1,"44":1,"45":1,"47":1,"48":1,"49":1,"50":1,"51":1,"58":1,"59":1,"60":1,"61":1,"62":1,"67":1,"68":1},"2":{"1":1,"3":1,"4":1,"5":1,"7":1,"8":1,"9":2,"14":1,"15":2,"17":1,"19":2,"20":1,"24":1,"26":1,"31":1,"32":1,"33":1,"42":1,"43":1,"44":1,"45":2,"46":1,"52":1,"54":1,"57":1,"60":1,"62":1,"64":27,"65":28,"66":1,"68":1,"70":3,"71":3,"72":2,"74":1,"76":1,"77":1,"80":1}}],["y",{"2":{"3":1,"4":2,"5":2,"21":4,"22":3,"28":4,"36":2,"37":1,"41":3,"53":1,"71":5}}],["you",{"2":{"0":1,"15":1,"64":1,"65":2,"67":1,"68":2,"70":2,"72":1,"76":3,"78":2}}],["yourself",{"2":{"68":1}}],["your",{"2":{"0":2,"60":2,"64":1,"67":4,"68":4}}],["auto",{"2":{"64":1}}],["aug",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["again",{"2":{"60":1}}],["agreement",{"2":{"41":1}}],["aggregation",{"2":{"15":1}}],["aggregate",{"2":{"14":1}}],["air",{"2":{"41":2,"43":3}}],["api",{"0":{"63":1,"64":1,"65":1},"1":{"64":1,"65":1}}],["apr",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["appropriate",{"2":{"67":1}}],["approximated",{"2":{"65":1}}],["approx",{"2":{"64":1,"65":1}}],["approach",{"2":{"8":1}}],["append=true",{"2":{"61":2}}],["append",{"0":{"61":1},"2":{"60":1,"64":1}}],["applies",{"2":{"12":1}}],["applied",{"2":{"2":1,"3":1,"14":1,"64":2,"65":1}}],["apply",{"0":{"28":1},"2":{"9":2,"12":1,"14":1,"15":1,"41":1,"73":1,"74":1}}],["abstractdict",{"2":{"64":1,"65":3}}],["abstractdimarray",{"2":{"21":1,"22":1,"53":1}}],["above",{"2":{"4":1,"70":1}}],["about",{"2":{"0":2,"49":1,"71":1,"77":1}}],["a3",{"2":{"18":4}}],["a2",{"2":{"17":1,"18":3,"44":2,"46":2,"57":2,"61":2,"71":1}}],["a1",{"2":{"17":1}}],["available",{"2":{"50":2,"62":1,"63":1,"64":2,"70":1}}],["avoids",{"2":{"14":1}}],["averaging",{"2":{"13":1}}],["averages",{"0":{"34":1},"2":{"33":1}}],["average",{"2":{"13":1,"34":2}}],["atol",{"2":{"49":1}}],["atmosphere",{"2":{"44":1,"46":1,"57":1,"61":1}}],["atmos",{"2":{"43":1,"80":1}}],["attributes",{"2":{"41":1,"64":1}}],["at",{"2":{"14":4,"22":1,"41":1,"44":2,"46":1,"47":2,"48":6,"49":7,"50":5,"54":1,"55":2,"57":1,"60":2,"61":1,"64":3,"65":2,"66":1,"67":2,"68":2,"71":2,"76":2}}],["after",{"2":{"13":1,"45":1,"64":3}}],["artype",{"2":{"64":2}}],["archgdaldatasets",{"2":{"45":1}}],["archgdal",{"2":{"45":2}}],["arguments",{"2":{"41":1,"64":11,"65":3}}],["argument",{"2":{"15":1,"62":1,"64":4,"65":2}}],["arr2",{"2":{"22":1}}],["arr",{"2":{"14":7,"22":2}}],["arrayinfo",{"2":{"65":1}}],["arrays",{"2":{"5":1,"6":1,"7":2,"8":1,"10":1,"16":1,"18":2,"43":2,"44":2,"52":1,"53":4,"54":3,"55":3,"64":2,"65":1}}],["array",{"0":{"20":1},"2":{"0":1,"7":2,"8":2,"9":3,"11":2,"12":2,"14":9,"20":2,"25":1,"46":1,"53":4,"54":1,"55":1,"56":2,"62":4,"64":10,"65":4,"71":3}}],["areas",{"2":{"64":1}}],["area",{"2":{"43":2,"64":1}}],["areacella",{"2":{"43":2,"80":1}}],["are",{"2":{"10":1,"19":3,"25":1,"41":2,"46":1,"50":1,"51":1,"53":3,"54":2,"55":3,"62":1,"64":11,"65":6,"66":1,"68":1,"76":2,"78":1}}],["arithmetics",{"0":{"11":1},"2":{"9":1}}],["according",{"2":{"64":1}}],["accessed",{"2":{"43":1,"44":1}}],["access",{"2":{"0":2,"12":1,"17":1,"53":1,"56":1}}],["activate",{"2":{"29":1,"68":2,"73":1,"81":1,"84":1}}],["actually",{"2":{"65":1}}],["actual",{"2":{"12":1,"62":1,"65":1,"71":1}}],["across",{"2":{"6":1,"53":3}}],["addargs",{"2":{"64":3,"65":1}}],["adds",{"2":{"53":2,"56":1}}],["addprocs",{"2":{"15":2}}],["addition",{"2":{"14":1,"19":1,"53":1}}],["additional",{"2":{"8":1,"64":4,"65":3}}],["added",{"2":{"14":1,"61":1,"64":1}}],["add",{"2":{"5":1,"9":1,"11":1,"28":1,"67":2,"70":2,"82":1}}],["asaxisarray",{"2":{"64":1}}],["assemble",{"2":{"71":1}}],["assessment",{"2":{"44":2,"46":2,"57":2,"61":2}}],["associated",{"2":{"64":1}}],["assing",{"0":{"30":1},"1":{"31":1,"32":1}}],["assign",{"2":{"27":1}}],["aspect=dataaspect",{"2":{"41":1,"81":1}}],["asked",{"0":{"23":1},"1":{"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1}}],["as",{"2":{"4":1,"11":1,"14":1,"15":1,"21":1,"22":2,"25":1,"29":1,"36":2,"41":1,"43":1,"44":1,"45":1,"47":1,"50":1,"51":1,"53":1,"56":1,"62":2,"64":11,"65":3,"72":1,"78":1,"80":1}}],["axs",{"2":{"35":1,"41":9}}],["axcopy",{"2":{"24":1}}],["ax",{"2":{"24":2,"29":1,"73":4,"75":4,"81":1,"82":3,"83":3,"84":5}}],["axlist",{"2":{"9":2,"14":2,"15":2,"17":2,"18":1,"26":3,"65":5,"71":3}}],["axessmall",{"2":{"65":2}}],["axes",{"0":{"24":1,"25":1},"2":{"3":1,"4":1,"5":1,"17":1,"18":1,"24":2,"25":2,"27":2,"31":1,"32":1,"43":1,"44":1,"46":2,"53":2,"57":1,"61":1,"64":15,"65":11,"71":1,"74":2,"80":1}}],["axislegend",{"2":{"75":1}}],["axis=false",{"2":{"84":1}}],["axis=",{"2":{"73":2}}],["axisdescriptor",{"2":{"65":1}}],["axisdesc",{"2":{"64":3}}],["axis",{"0":{"3":1},"2":{"3":1,"8":2,"25":1,"41":1,"51":1,"56":1,"62":1,"64":16,"65":14,"71":1,"73":2,"75":1,"80":1,"81":1}}],["always",{"2":{"64":2,"65":1,"66":1,"72":1}}],["already",{"2":{"60":1,"64":1,"65":1}}],["although",{"2":{"50":1}}],["alternatives",{"2":{"64":1}}],["alternatively",{"2":{"1":1,"64":1,"70":1}}],["altered",{"2":{"43":1,"44":1,"47":2,"48":3,"49":3,"50":5}}],["al",{"2":{"44":1,"46":1,"55":1,"57":1,"61":1}}],["algebra",{"0":{"28":1},"2":{"28":1}}],["along",{"0":{"7":1},"2":{"7":1,"64":3,"65":2,"76":1}}],["allaxes",{"2":{"65":1}}],["allinaxes",{"2":{"65":1}}],["allmissing",{"2":{"64":1}}],["allocate",{"2":{"62":1}}],["allocation",{"2":{"14":1}}],["allow",{"2":{"65":1}}],["allowing",{"2":{"21":1,"22":1,"54":1}}],["allows",{"2":{"15":1}}],["all",{"0":{"5":1},"2":{"3":1,"5":2,"9":1,"11":1,"12":1,"13":2,"14":1,"15":4,"41":2,"45":1,"50":1,"53":1,"55":2,"60":3,"62":1,"63":1,"64":6,"65":7,"68":1}}],["also",{"2":{"1":1,"2":1,"13":1,"15":1,"17":1,"24":1,"29":1,"53":2,"54":1,"62":1,"64":1,"70":1}}],["analog",{"2":{"54":1}}],["analyzing",{"2":{"0":1}}],["anynymous",{"2":{"64":1}}],["anyocean",{"2":{"64":1}}],["anymissing",{"2":{"64":1}}],["any",{"2":{"7":1,"8":1,"9":1,"10":1,"13":2,"14":4,"17":1,"20":1,"21":2,"22":3,"24":1,"25":1,"26":1,"27":6,"28":3,"29":3,"36":2,"37":1,"39":3,"40":2,"41":3,"43":2,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1,"62":1,"64":4,"65":8,"71":1,"74":1,"80":1}}],["an",{"0":{"7":1},"2":{"8":1,"9":4,"11":1,"12":1,"14":1,"15":2,"24":1,"25":1,"29":1,"46":3,"49":1,"53":1,"54":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"64":19,"65":8}}],["and",{"0":{"16":1,"25":1,"33":1,"42":1,"46":1,"50":1,"57":1},"1":{"17":1,"18":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"43":1,"44":1,"45":1,"47":1,"48":1,"49":1,"50":1,"51":1,"58":1,"59":1,"60":1,"61":1,"62":1},"2":{"1":1,"4":1,"5":1,"6":1,"7":1,"11":1,"14":2,"16":1,"17":1,"19":1,"26":1,"27":2,"28":1,"29":6,"33":1,"34":1,"36":1,"41":1,"42":2,"43":1,"44":1,"46":1,"50":1,"53":5,"54":3,"55":2,"57":1,"60":1,"61":1,"62":5,"64":18,"65":6,"66":1,"68":4,"70":1,"71":2,"73":2,"80":1,"82":1}}],["a",{"0":{"8":1,"10":1,"17":1,"18":1,"24":1,"27":1,"30":1,"47":1,"51":1,"60":1,"61":1,"73":1,"79":1},"1":{"31":1,"32":1,"74":1,"75":1},"2":{"1":7,"2":1,"3":1,"6":1,"7":1,"8":2,"9":3,"10":1,"11":4,"12":2,"13":2,"14":76,"15":11,"17":1,"20":2,"21":5,"22":8,"23":1,"24":1,"25":1,"27":3,"29":3,"31":2,"32":2,"34":1,"39":1,"41":2,"43":6,"44":3,"45":1,"49":2,"50":4,"51":1,"53":12,"54":4,"55":8,"56":1,"58":3,"59":3,"60":4,"62":4,"64":60,"65":31,"67":2,"68":2,"71":4,"72":1,"77":1,"78":1}}],["t=union",{"2":{"65":1}}],["typing",{"2":{"70":1}}],["typically",{"2":{"64":1}}],["type",{"2":{"53":1,"55":1,"64":12,"65":8,"71":1,"72":1}}],["types",{"0":{"52":1},"1":{"53":1,"54":1,"55":1,"56":1},"2":{"19":2,"21":1,"22":1,"48":1,"54":1,"64":2,"72":1}}],["tesselation",{"2":{"84":1}}],["test",{"2":{"65":1,"80":1}}],["testrange",{"2":{"65":1}}],["terminal",{"2":{"68":1}}],["text",{"2":{"67":1}}],["tensors",{"2":{"53":1}}],["temporary",{"2":{"65":1}}],["temporal",{"2":{"28":1,"33":1,"53":1}}],["tempo",{"2":{"36":6,"39":4,"40":1,"73":3}}],["temp",{"2":{"8":2}}],["temperature",{"2":{"8":2,"41":2,"43":3,"44":2,"47":5,"48":6,"49":6,"50":10,"53":1,"54":1,"55":1,"71":4}}],["tempname",{"2":{"1":1,"3":1,"4":1,"5":1}}],["tutorial",{"2":{"76":2,"77":1,"78":1}}],["tutorials",{"0":{"76":1},"1":{"77":1,"78":1,"79":1},"2":{"50":1,"76":3}}],["turn",{"2":{"64":1}}],["tuple",{"2":{"1":3,"3":1,"4":1,"5":1,"64":5,"65":3}}],["target",{"2":{"65":1}}],["tab",{"2":{"64":4}}],["tables",{"2":{"78":1}}],["tableaggregator",{"2":{"64":1}}],["table",{"0":{"78":1},"2":{"29":2,"43":1,"44":2,"46":2,"57":2,"61":2,"64":4,"65":1,"80":1}}],["takes",{"2":{"64":4}}],["take",{"2":{"64":1,"65":2,"68":1}}],["tas",{"2":{"43":5,"80":5}}],["tair",{"2":{"41":1,"64":1}}],["tbl",{"2":{"29":2}}],["t",{"2":{"27":2,"29":3,"44":1,"47":2,"48":3,"49":3,"50":5,"64":1,"65":2,"73":4,"74":1,"75":1}}],["tip",{"2":{"72":1}}],["tidy",{"2":{"64":1}}],["ticks",{"2":{"53":1,"73":4,"75":3}}],["ticks=false",{"2":{"41":1}}],["tick",{"2":{"51":1,"56":1,"71":1}}],["tiff",{"0":{"79":1}}],["tif",{"2":{"45":2}}],["title",{"2":{"41":1,"44":1,"46":1,"57":1,"61":1,"67":1}}],["ti=at",{"2":{"41":3}}],["ti=>cyclicbins",{"2":{"36":2,"37":1,"39":2,"40":2,"41":3}}],["ti",{"2":{"21":4,"36":15,"37":2,"38":1,"39":8,"40":3,"41":6,"43":2,"44":2,"46":1,"47":2,"48":2,"49":3,"50":5,"57":1,"61":1,"80":2}}],["time1",{"2":{"48":2}}],["timestep",{"2":{"29":1}}],["time=1",{"2":{"71":1}}],["time=date",{"2":{"27":1}}],["time=at",{"2":{"27":1}}],["time=between",{"2":{"27":1}}],["time",{"0":{"34":1},"2":{"0":1,"6":1,"7":4,"8":3,"9":3,"11":1,"12":1,"13":7,"14":8,"15":5,"17":3,"18":1,"21":2,"26":2,"27":7,"28":4,"29":3,"37":1,"38":1,"41":1,"43":2,"44":1,"47":2,"48":4,"49":3,"50":5,"53":2,"54":1,"64":4,"71":4,"73":5,"74":4,"75":2,"80":2}}],["treat",{"2":{"64":1}}],["treatment",{"2":{"64":1,"65":1}}],["treated",{"2":{"43":1}}],["tries",{"2":{"64":1}}],["translate",{"2":{"82":1,"83":1}}],["transformed",{"2":{"44":1,"46":1,"57":1,"61":1}}],["transformations",{"2":{"82":1}}],["transformation",{"2":{"14":1}}],["transform",{"2":{"14":2}}],["track",{"2":{"64":1}}],["true",{"2":{"11":1,"60":1,"62":1,"64":4,"65":1,"84":1}}],["two",{"2":{"7":1,"8":1,"25":2,"26":1,"53":1,"65":1}}],["though",{"2":{"62":1}}],["those",{"2":{"10":1,"19":1,"21":1,"22":1,"54":1}}],["through",{"2":{"64":5,"65":5,"70":1}}],["thrown",{"2":{"60":1}}],["three",{"2":{"54":1,"73":1}}],["threads",{"2":{"64":2}}],["thread",{"2":{"15":1}}],["than",{"2":{"19":1,"28":1,"29":1}}],["that",{"2":{"8":2,"9":1,"12":1,"14":2,"15":1,"19":1,"26":1,"29":1,"34":1,"37":1,"40":1,"51":1,"53":1,"54":2,"56":1,"62":1,"64":13,"65":13,"76":1,"78":1}}],["their",{"2":{"53":1,"64":3,"65":2}}],["then",{"2":{"14":2,"28":1,"68":2,"70":1}}],["thereby",{"2":{"64":1}}],["therefore",{"2":{"29":1,"72":1}}],["there",{"2":{"13":2,"22":1,"25":1,"64":1}}],["theme",{"2":{"41":2}}],["them",{"2":{"6":1,"9":1,"27":1,"62":1,"64":1}}],["these",{"2":{"5":1,"25":1,"51":1,"53":1}}],["the",{"0":{"24":1,"25":1,"29":1,"35":1,"74":1,"77":1},"2":{"0":4,"1":3,"3":1,"4":4,"5":4,"7":6,"8":3,"9":1,"10":1,"12":3,"13":2,"14":15,"15":7,"17":3,"19":2,"22":1,"23":1,"24":4,"25":3,"26":2,"27":3,"28":3,"29":10,"33":2,"34":5,"35":4,"36":2,"37":1,"38":2,"39":2,"40":2,"41":9,"44":1,"46":1,"47":5,"48":3,"49":5,"50":6,"51":1,"52":1,"53":5,"54":4,"55":4,"60":3,"61":1,"62":6,"64":116,"65":80,"66":1,"67":1,"68":6,"70":2,"71":7,"72":8,"73":5,"74":4,"76":6,"77":1,"78":5,"80":1}}],["things",{"2":{"23":1}}],["think",{"2":{"0":1}}],["thinking",{"2":{"0":1}}],["this",{"2":{"0":1,"3":1,"6":1,"9":1,"12":2,"14":3,"15":1,"16":1,"19":1,"23":1,"25":1,"28":2,"29":2,"34":1,"38":2,"42":1,"43":1,"50":1,"52":1,"55":1,"63":2,"64":6,"65":10,"67":1,"68":2,"77":1,"78":1}}],["todo",{"2":{"74":1}}],["toghether",{"2":{"65":1}}],["together",{"2":{"55":1}}],["too",{"2":{"53":1}}],["touches",{"2":{"50":1}}],["tolerances",{"2":{"49":1}}],["tos",{"2":{"44":4,"46":2,"47":4,"48":4,"49":3,"50":9,"51":2,"57":2,"58":2,"59":2,"61":1}}],["top",{"2":{"41":1}}],["to",{"0":{"8":1,"30":1,"61":1,"66":1,"67":1},"1":{"31":1,"32":1,"67":1,"68":2},"2":{"0":4,"2":1,"3":1,"5":2,"6":1,"7":1,"8":1,"9":8,"11":1,"14":3,"15":6,"16":1,"19":3,"20":2,"22":3,"23":2,"24":2,"25":3,"26":1,"27":1,"28":1,"29":1,"33":1,"34":3,"35":2,"37":1,"38":1,"41":1,"42":1,"43":3,"44":1,"46":3,"50":1,"51":1,"52":1,"53":5,"54":3,"55":2,"56":2,"57":1,"58":2,"59":2,"60":1,"61":2,"62":3,"64":47,"65":17,"67":2,"68":3,"72":2,"73":1,"76":1,"78":3,"80":2,"84":1}}],["circshift",{"2":{"82":1}}],["ct1",{"2":{"80":4,"81":1}}],["ctime3",{"2":{"27":1}}],["ctime2",{"2":{"27":1}}],["ctime",{"2":{"27":1}}],["cycle",{"0":{"73":1,"75":1},"1":{"74":1,"75":1},"2":{"74":4}}],["cycle=12",{"2":{"36":2,"37":1,"39":2,"40":2,"41":3}}],["cdata",{"2":{"65":1}}],["center",{"2":{"64":1,"73":1,"75":1}}],["certain",{"2":{"46":2,"65":1}}],["cell",{"2":{"43":2,"44":1,"47":2,"48":3,"49":3,"50":5,"64":1}}],["cf",{"2":{"43":2,"44":2,"46":2,"57":2,"61":2,"80":2}}],["cftime",{"2":{"39":3,"44":6,"46":3,"47":6,"48":7,"49":9,"50":15,"57":3,"61":3}}],["cmpcachmisses",{"2":{"65":1}}],["cm4",{"2":{"44":4,"46":4,"57":4,"61":4}}],["cmip",{"2":{"43":1,"80":1}}],["cmip6",{"2":{"43":3,"80":6}}],["cmor",{"2":{"43":2,"44":3,"46":2,"47":2,"48":3,"49":3,"50":5,"57":2,"61":2,"80":1}}],["c54",{"2":{"41":1}}],["cb",{"2":{"41":1}}],["cbar",{"2":{"29":1}}],["cgrad",{"2":{"29":1}}],["cl",{"2":{"82":1,"83":1}}],["cl=lines",{"2":{"82":1,"83":1}}],["clean",{"2":{"65":1}}],["cleanme",{"2":{"65":4}}],["cleaner",{"2":{"64":2}}],["climate",{"2":{"44":1,"46":1,"57":1,"61":1}}],["classes=classes",{"2":{"29":1}}],["classes",{"2":{"29":8}}],["classification",{"2":{"29":2}}],["class",{"2":{"29":3}}],["closedinterval",{"2":{"50":1}}],["closed",{"0":{"50":1},"2":{"50":3}}],["clonlat",{"2":{"27":1}}],["cloud",{"2":{"10":1,"43":1}}],["clustermanagers",{"2":{"15":2}}],["cluster",{"2":{"15":1}}],["cpus",{"2":{"15":1}}],["cpu",{"2":{"15":1}}],["custom",{"2":{"17":1,"64":1}}],["currently",{"2":{"35":1,"73":1,"76":1}}],["current",{"2":{"14":2,"54":1,"64":1,"75":1}}],["cubeaxis",{"2":{"65":1}}],["cubeaxes",{"2":{"64":1}}],["cubedir",{"2":{"65":1}}],["cube2",{"2":{"64":1}}],["cube1",{"2":{"64":1}}],["cubelist",{"2":{"64":1}}],["cubefittable",{"2":{"29":2,"64":1}}],["cubetable",{"0":{"29":1},"2":{"29":3,"64":3}}],["cubes",{"0":{"26":1},"2":{"8":2,"26":2,"28":2,"29":1,"47":1,"55":1,"64":18,"65":9}}],["cube",{"0":{"24":1,"25":1,"27":1,"55":1,"74":1},"2":{"1":1,"3":1,"4":1,"5":1,"25":1,"27":8,"28":1,"29":2,"35":1,"55":3,"64":34,"65":19,"78":1}}],["c",{"2":{"14":11,"24":3,"25":3,"27":5,"29":2,"32":2,"54":1,"64":3,"65":3,"74":4,"80":2}}],["chose",{"2":{"54":1}}],["child",{"2":{"43":1,"80":1}}],["check",{"2":{"27":1,"62":1,"72":1}}],["changed",{"2":{"72":1,"76":1}}],["change",{"2":{"9":1,"64":1,"65":1}}],["chunkoffset",{"2":{"65":1}}],["chunksize`",{"2":{"65":1}}],["chunksizes",{"2":{"64":2}}],["chunksize",{"2":{"64":1,"65":3}}],["chunks",{"0":{"3":1},"2":{"1":5,"3":1,"4":1,"5":2,"64":4,"65":11}}],["chunked",{"2":{"1":5}}],["chunking",{"0":{"1":1,"2":1,"4":1,"5":1},"1":{"3":1,"4":1,"5":1},"2":{"0":1,"4":1,"64":4,"65":3}}],["chunk",{"0":{"0":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1},"2":{"0":1,"1":1,"3":1,"4":1,"64":4,"65":4}}],["criteria",{"2":{"29":1}}],["creating",{"2":{"9":1,"27":1,"67":1}}],["createdataset",{"2":{"65":2}}],["created",{"2":{"65":2}}],["creates",{"2":{"29":1,"64":2,"65":1}}],["create",{"0":{"16":1,"17":1,"18":1},"1":{"17":1,"18":1},"2":{"9":1,"14":2,"16":1,"17":1,"26":1,"27":1,"29":1,"35":1,"39":1,"57":1,"60":1,"62":3,"64":1,"65":1,"71":1,"73":1}}],["crucial",{"2":{"0":1}}],["coastlines",{"2":{"82":3,"83":1}}],["cosd",{"2":{"64":1}}],["country",{"2":{"64":4}}],["country=cube2",{"2":{"64":1}}],["copies",{"2":{"65":1}}],["copied",{"2":{"62":1}}],["copybuf",{"2":{"65":2}}],["copydata",{"2":{"65":1}}],["copy",{"2":{"24":1,"64":1,"68":1}}],["coordinates",{"2":{"43":1}}],["college",{"2":{"76":1}}],["collected",{"2":{"65":1}}],["collectfromhandle",{"2":{"65":1}}],["collection",{"2":{"23":1,"53":1}}],["collect",{"2":{"20":1,"25":3,"74":1}}],["colonperm",{"2":{"65":1}}],["color=",{"2":{"75":3}}],["color",{"2":{"73":2,"82":1,"83":1,"84":1}}],["colormap=",{"2":{"41":1}}],["colormap=makie",{"2":{"29":1}}],["colormap",{"2":{"41":3,"81":1,"82":1,"83":1,"84":1}}],["colorrange=",{"2":{"41":1}}],["colorrange",{"2":{"41":3}}],["colorbar",{"2":{"29":1,"41":2}}],["column",{"2":{"56":1,"65":1}}],["colgap",{"2":{"41":1}}],["configuration",{"2":{"65":2}}],["concatenating",{"2":{"64":1}}],["concatenates",{"2":{"64":1}}],["concatenate",{"0":{"26":1},"2":{"26":2}}],["concatenatecubes",{"0":{"8":1},"2":{"8":2,"26":2,"64":2}}],["concrete",{"2":{"64":2}}],["constant",{"2":{"65":1}}],["construct",{"2":{"64":2}}],["constructor",{"2":{"64":1}}],["constructs",{"2":{"64":1}}],["consolidated=true",{"2":{"43":1,"80":1}}],["consistent",{"2":{"43":1,"80":1}}],["consisting",{"2":{"7":1}}],["considering",{"2":{"34":1}}],["considered",{"2":{"29":1}}],["contributing",{"2":{"67":1}}],["contribute",{"0":{"66":1,"67":1},"1":{"67":1,"68":2}}],["contrast",{"2":{"64":1}}],["content",{"2":{"64":1}}],["contact",{"2":{"44":1,"46":1,"57":1,"61":1}}],["contains",{"2":{"50":1,"64":1,"65":1}}],["contain",{"2":{"43":1,"44":1,"65":1}}],["containing",{"2":{"7":1,"29":1,"54":1,"55":1,"64":1}}],["continue",{"2":{"36":1}}],["convinient",{"2":{"23":1}}],["conventions",{"2":{"44":1,"46":1,"57":1,"61":1}}],["convenient",{"2":{"15":1}}],["conversion",{"2":{"19":1,"21":1,"22":1}}],["conversions",{"2":{"19":1}}],["converted",{"2":{"55":1}}],["convert",{"0":{"19":1,"20":1,"21":1,"22":1},"1":{"20":1,"21":1,"22":1},"2":{"19":1,"20":2,"22":2,"64":1,"65":1}}],["corresponding",{"2":{"6":1,"14":2,"55":1,"64":1}}],["combining",{"0":{"79":1}}],["combined",{"2":{"8":2,"55":2}}],["combine",{"0":{"6":1},"1":{"7":1,"8":1},"2":{"6":1,"7":1,"8":1,"78":1}}],["common",{"2":{"64":1}}],["comment",{"2":{"43":1}}],["com",{"2":{"35":2,"45":1}}],["components",{"2":{"73":1}}],["compiler",{"2":{"72":1}}],["compares",{"2":{"65":1}}],["compatible",{"2":{"45":1}}],["compuation",{"2":{"64":1}}],["computing",{"2":{"29":1}}],["computations",{"2":{"12":1,"28":1}}],["computation",{"0":{"15":1},"2":{"12":1,"53":1,"64":3,"65":3}}],["computed",{"2":{"65":1}}],["compute",{"0":{"9":1},"1":{"10":1,"11":1,"12":1,"13":1,"14":1,"15":1},"2":{"74":1}}],["comply",{"2":{"44":1,"46":1,"57":1,"61":1}}],["complexity",{"2":{"28":1}}],["complex",{"2":{"9":2,"71":1}}],["comes",{"2":{"0":1}}],["code",{"2":{"5":1,"12":1,"15":2,"23":1}}],["captialisation",{"2":{"65":1}}],["cachesize",{"2":{"65":1}}],["cache=1gb```",{"2":{"64":1}}],["cache=",{"2":{"64":1}}],["cache=5",{"2":{"64":1}}],["cache=yaxdefaults",{"2":{"64":1}}],["cache",{"2":{"60":1,"64":4,"65":7}}],["cameracontrols",{"2":{"84":1}}],["came",{"2":{"55":1}}],["cairomakie",{"2":{"41":1,"73":2}}],["caxes",{"2":{"24":2,"64":2}}],["car",{"2":{"14":1}}],["cartesianindex",{"2":{"14":11}}],["caluclate",{"2":{"64":1}}],["calculations",{"2":{"41":1,"65":1}}],["calculating",{"2":{"13":1,"64":1}}],["calculates",{"2":{"64":1}}],["calculated",{"2":{"29":2,"36":1}}],["calculate",{"2":{"13":1,"14":1,"29":2,"33":1,"34":2,"36":1,"41":1,"65":2,"74":1}}],["called",{"2":{"53":3,"65":1}}],["calling",{"2":{"41":1}}],["call",{"2":{"0":1,"15":1}}],["cases",{"2":{"50":1,"76":1}}],["case",{"2":{"12":1,"38":1,"43":1}}],["cataxis",{"2":{"64":2}}],["categoricalaxis",{"2":{"64":1}}],["categorical",{"2":{"8":1,"14":1,"26":1,"29":1,"36":2,"37":1,"38":1,"39":2,"40":2,"41":3,"64":1,"65":1,"71":1}}],["cat",{"0":{"7":1},"2":{"7":2}}],["can",{"2":{"1":1,"2":1,"12":2,"13":1,"14":1,"15":3,"17":2,"26":1,"28":1,"29":2,"37":1,"41":1,"43":2,"44":1,"45":1,"51":1,"53":3,"54":2,"55":1,"61":1,"64":11,"65":6,"67":1,"70":2,"73":1,"76":2}}],["iall",{"2":{"65":1}}],["iwindow",{"2":{"65":1}}],["icolon",{"2":{"65":1}}],["icefire",{"2":{"81":1,"82":1,"83":1,"84":1}}],["ice",{"2":{"44":1,"46":1,"57":1,"61":1}}],["ipcc",{"2":{"44":3,"46":3,"57":3,"61":3}}],["ipsl",{"2":{"44":6,"46":6,"57":6,"61":6}}],["idx",{"2":{"74":3}}],["identical",{"2":{"64":1}}],["id",{"2":{"43":2,"44":2,"46":2,"57":2,"61":2,"80":2}}],["irregular",{"2":{"29":2,"39":1,"43":4,"44":2,"46":1,"47":2,"48":2,"49":6,"50":5,"57":1,"61":1,"65":1,"80":2}}],["if",{"2":{"19":1,"60":1,"62":1,"64":11,"65":5,"68":1,"76":1}}],["immutable",{"2":{"10":1}}],["improving",{"2":{"72":1}}],["improve",{"2":{"5":1}}],["implementing",{"2":{"64":1}}],["importance",{"2":{"65":1}}],["important",{"2":{"0":1}}],["impossible",{"2":{"10":1}}],["i",{"0":{"26":1,"27":1,"28":1,"29":1,"30":1},"1":{"31":1,"32":1},"2":{"7":1,"14":3,"21":1,"22":1,"41":2,"60":1,"64":7,"65":4,"68":2,"71":1,"74":3}}],["inline",{"2":{"84":2}}],["incubes",{"2":{"65":1}}],["incs",{"2":{"65":1}}],["include",{"2":{"64":2,"65":1}}],["included",{"2":{"50":1}}],["inarbc",{"2":{"65":1}}],["inar",{"2":{"65":2}}],["inplace",{"2":{"64":3,"65":1}}],["inputcube",{"2":{"65":2}}],["input",{"2":{"15":2,"29":1,"64":12,"65":8}}],["innerchunks",{"2":{"65":1}}],["inner",{"2":{"64":9,"65":3}}],["installed",{"2":{"72":1}}],["installation",{"0":{"70":1}}],["install",{"2":{"68":1,"70":1}}],["instead",{"2":{"7":1,"8":1,"12":1,"24":2,"50":1,"53":1}}],["insize",{"2":{"65":1}}],["inside",{"2":{"64":3}}],["inds",{"2":{"65":1}}],["indexing",{"2":{"48":2,"49":2,"72":1}}],["index",{"2":{"43":2,"65":2,"80":2}}],["indices",{"2":{"65":1,"74":1}}],["indicate",{"2":{"64":1}}],["indicating",{"2":{"8":1,"14":1,"64":1}}],["indims",{"2":{"64":7}}],["indims=indims",{"2":{"14":1,"15":1}}],["individual",{"2":{"43":1,"44":1}}],["individually",{"2":{"12":2}}],["initialization",{"2":{"43":1,"80":1}}],["initially",{"2":{"14":1}}],["information",{"2":{"60":1,"65":2}}],["info",{"2":{"22":1,"24":1,"62":1,"72":1}}],["int",{"2":{"74":3}}],["int32",{"2":{"62":2}}],["introducing",{"2":{"55":1}}],["interested",{"2":{"76":1}}],["internal",{"0":{"65":1},"2":{"65":9}}],["internally",{"2":{"54":1}}],["interface",{"2":{"64":2,"78":1}}],["intervalsets",{"2":{"50":1}}],["intervals",{"0":{"50":1}}],["interval",{"2":{"44":1,"47":2,"48":3,"49":4,"50":6}}],["integer",{"2":{"17":1,"48":1,"49":1,"53":1}}],["int64",{"2":{"3":4,"4":4,"5":2,"7":1,"8":1,"17":3,"20":2,"21":6,"22":2,"24":9,"25":3,"27":15,"29":3,"31":1,"32":5,"39":3,"61":3,"62":2,"65":1,"71":2}}],["into",{"0":{"79":1},"2":{"0":1,"1":1,"6":1,"7":1,"14":1,"19":2,"22":1,"42":1,"55":2,"60":1,"64":6,"65":3,"68":1,"73":1,"84":1}}],["in",{"0":{"30":1},"1":{"31":1,"32":1},"2":{"0":1,"1":1,"3":2,"4":1,"8":1,"10":1,"12":1,"13":2,"14":6,"15":3,"19":2,"21":1,"22":1,"25":1,"29":2,"34":2,"35":2,"38":3,"41":4,"43":2,"44":1,"47":2,"48":3,"49":4,"50":7,"51":1,"52":1,"53":5,"54":1,"55":2,"62":1,"64":13,"65":8,"68":2,"70":1,"71":2,"73":1,"74":1,"76":3,"78":4,"80":1}}],["iter",{"2":{"64":1}}],["iterate",{"2":{"78":1}}],["iteration",{"0":{"78":1}}],["iterator",{"2":{"29":1}}],["iterators",{"2":{"14":1}}],["iterable",{"2":{"29":2,"64":2}}],["itself",{"2":{"64":1,"65":1}}],["it",{"2":{"0":3,"11":1,"15":2,"24":1,"25":1,"26":1,"27":1,"29":2,"37":1,"39":1,"41":1,"46":1,"53":2,"54":1,"56":1,"60":1,"62":2,"64":10,"65":5,"68":1,"70":1}}],["ispar",{"2":{"64":1,"65":1}}],["ismissing",{"2":{"62":1}}],["issues",{"2":{"35":1}}],["isequal",{"2":{"14":1}}],["is",{"2":{"0":2,"1":1,"5":1,"6":1,"8":1,"12":1,"13":2,"14":3,"15":3,"19":1,"22":1,"23":1,"26":1,"27":1,"28":1,"29":4,"34":2,"35":2,"36":1,"40":1,"47":1,"50":2,"51":1,"53":4,"54":1,"55":2,"56":1,"62":3,"64":10,"65":9,"67":1,"70":1,"72":1,"76":1,"78":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/dev/assets/chunks/@localSearchIndexroot.nQia0NST.js b/dev/assets/chunks/@localSearchIndexroot.nQia0NST.js new file mode 100644 index 00000000..4b84887b --- /dev/null +++ b/dev/assets/chunks/@localSearchIndexroot.nQia0NST.js @@ -0,0 +1 @@ +const e='{"documentCount":85,"nextId":85,"documentIds":{"0":"/YAXArrays.jl/dev/UserGuide/chunk#Chunk-YAXArrays","1":"/YAXArrays.jl/dev/UserGuide/chunk#Chunking-YAXArrays","2":"/YAXArrays.jl/dev/UserGuide/chunk#Chunking-Datasets","3":"/YAXArrays.jl/dev/UserGuide/chunk#Set-Chunks-by-Axis","4":"/YAXArrays.jl/dev/UserGuide/chunk#Set-chunking-by-Variable","5":"/YAXArrays.jl/dev/UserGuide/chunk#Set-chunking-for-all-variables","6":"/YAXArrays.jl/dev/UserGuide/combine#Combine-YAXArrays","7":"/YAXArrays.jl/dev/UserGuide/combine#cat-along-an-existing-dimension","8":"/YAXArrays.jl/dev/UserGuide/combine#concatenatecubes-to-a-new-dimension","9":"/YAXArrays.jl/dev/UserGuide/compute#Compute-YAXArrays","10":"/YAXArrays.jl/dev/UserGuide/compute#Modify-elements-of-a-YAXArray","11":"/YAXArrays.jl/dev/UserGuide/compute#arithmetics","12":"/YAXArrays.jl/dev/UserGuide/compute#map","13":"/YAXArrays.jl/dev/UserGuide/compute#mapslices","14":"/YAXArrays.jl/dev/UserGuide/compute#mapCube","15":"/YAXArrays.jl/dev/UserGuide/compute#Distributed-Computation","16":"/YAXArrays.jl/dev/UserGuide/convert#Convert-YAXArrays","17":"/YAXArrays.jl/dev/UserGuide/convert#Convert-Base.Array","18":"/YAXArrays.jl/dev/UserGuide/convert#Convert-Raster","19":"/YAXArrays.jl/dev/UserGuide/convert#Convert-DimArray","20":"/YAXArrays.jl/dev/UserGuide/create#Create-YAXArrays-and-Datasets","21":"/YAXArrays.jl/dev/UserGuide/create#Create-a-YAXArray","22":"/YAXArrays.jl/dev/UserGuide/create#Create-a-Dataset","23":"/YAXArrays.jl/dev/UserGuide/faq#Frequently-Asked-Questions-(FAQ)","24":"/YAXArrays.jl/dev/UserGuide/faq#Extract-the-axes-names-from-a-Cube","25":"/YAXArrays.jl/dev/UserGuide/faq#Obtain-values-from-axes-and-data-from-the-cube","26":"/YAXArrays.jl/dev/UserGuide/faq#How-do-I-concatenate-cubes","27":"/YAXArrays.jl/dev/UserGuide/faq#How-do-I-subset-a-Cube?","28":"/YAXArrays.jl/dev/UserGuide/faq#How-do-I-apply-map-algebra?","29":"/YAXArrays.jl/dev/UserGuide/faq#How-do-I-use-the-CubeTable-function?","30":"/YAXArrays.jl/dev/UserGuide/faq#How-do-I-assing-variable-names-to-YAXArrays-in-a-Dataset","31":"/YAXArrays.jl/dev/UserGuide/faq#One-variable-name","32":"/YAXArrays.jl/dev/UserGuide/faq#Multiple-variable-names","33":"/YAXArrays.jl/dev/UserGuide/group#Group-YAXArrays-and-Datasets","34":"/YAXArrays.jl/dev/UserGuide/group#Seasonal-Averages-from-Time-Series-of-Monthly-Means","35":"/YAXArrays.jl/dev/UserGuide/group#Download-the-data","36":"/YAXArrays.jl/dev/UserGuide/group#GroupBy:-seasons","37":"/YAXArrays.jl/dev/UserGuide/group#dropdims","38":"/YAXArrays.jl/dev/UserGuide/group#seasons","39":"/YAXArrays.jl/dev/UserGuide/group#GroupBy:-weight","40":"/YAXArrays.jl/dev/UserGuide/group#weights","41":"/YAXArrays.jl/dev/UserGuide/group#weighted-seasons","42":"/YAXArrays.jl/dev/UserGuide/read#Read-YAXArrays-and-Datasets","43":"/YAXArrays.jl/dev/UserGuide/read#Read-Zarr","44":"/YAXArrays.jl/dev/UserGuide/read#Read-NetCDF","45":"/YAXArrays.jl/dev/UserGuide/read#Read-GDAL-(GeoTIFF,-GeoJSON)","46":"/YAXArrays.jl/dev/UserGuide/select#Select-YAXArrays-and-Datasets","47":"/YAXArrays.jl/dev/UserGuide/select#Select-a-YAXArray","48":"/YAXArrays.jl/dev/UserGuide/select#Select-elements","49":"/YAXArrays.jl/dev/UserGuide/select#Select-ranges","50":"/YAXArrays.jl/dev/UserGuide/select#Closed-and-open-intervals","51":"/YAXArrays.jl/dev/UserGuide/select#Get-a-dimension","52":"/YAXArrays.jl/dev/UserGuide/types#types","53":"/YAXArrays.jl/dev/UserGuide/types#yaxarray","54":"/YAXArrays.jl/dev/UserGuide/types#dataset","55":"/YAXArrays.jl/dev/UserGuide/types#(Data)-Cube","56":"/YAXArrays.jl/dev/UserGuide/types#dimension","57":"/YAXArrays.jl/dev/UserGuide/write#Write-YAXArrays-and-Datasets","58":"/YAXArrays.jl/dev/UserGuide/write#Write-Zarr","59":"/YAXArrays.jl/dev/UserGuide/write#Write-NetCDF","60":"/YAXArrays.jl/dev/UserGuide/write#Overwrite-a-Dataset","61":"/YAXArrays.jl/dev/UserGuide/write#Append-to-a-Dataset","62":"/YAXArrays.jl/dev/UserGuide/write#Save-Skeleton","63":"/YAXArrays.jl/dev/api#API-Reference","64":"/YAXArrays.jl/dev/api#Public-API","65":"/YAXArrays.jl/dev/api#Internal-API","66":"/YAXArrays.jl/dev/development/contribute#Contribute-to-YAXArrays.jl","67":"/YAXArrays.jl/dev/development/contribute#Contribute-to-Documentation","68":"/YAXArrays.jl/dev/development/contribute#Build-docs-locally","69":"/YAXArrays.jl/dev/get_started#Getting-Started","70":"/YAXArrays.jl/dev/get_started#installation","71":"/YAXArrays.jl/dev/get_started#quickstart","72":"/YAXArrays.jl/dev/get_started#updates","73":"/YAXArrays.jl/dev/tutorials/mean_seasonal_cycle#Mean-Seasonal-Cycle-for-a-sigle-pixel","74":"/YAXArrays.jl/dev/tutorials/mean_seasonal_cycle#Define-the-cube","75":"/YAXArrays.jl/dev/tutorials/mean_seasonal_cycle#Plot-results:-mean-seasonal-cycle","76":"/YAXArrays.jl/dev/tutorials/other_tutorials#Other-tutorials","77":"/YAXArrays.jl/dev/tutorials/other_tutorials#General-overview-of-the-functionality-of-YAXArrays","78":"/YAXArrays.jl/dev/tutorials/other_tutorials#Table-style-iteration-over-YAXArrays","79":"/YAXArrays.jl/dev/tutorials/other_tutorials#Combining-multiple-tiff-files-into-a-zarr-based-datacube","80":"/YAXArrays.jl/dev/tutorials/plottingmaps#Plotting-maps","81":"/YAXArrays.jl/dev/tutorials/plottingmaps#Heatmap-plot","82":"/YAXArrays.jl/dev/tutorials/plottingmaps#Wintri-Projection","83":"/YAXArrays.jl/dev/tutorials/plottingmaps#Moll-projection","84":"/YAXArrays.jl/dev/tutorials/plottingmaps#3D-sphere-plot"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[2,1,58],"1":[2,2,57],"2":[2,2,9],"3":[4,4,73],"4":[4,4,73],"5":[5,4,81],"6":[2,1,31],"7":[5,2,80],"8":[5,2,89],"9":[2,1,117],"10":[5,2,30],"11":[1,2,70],"12":[1,2,118],"13":[1,2,88],"14":[1,2,261],"15":[2,2,138],"16":[2,1,52],"17":[3,2,84],"18":[2,2,116],"19":[2,2,120],"20":[4,1,14],"21":[3,4,106],"22":[3,4,45],"23":[5,1,19],"24":[7,5,75],"25":[8,5,76],"26":[5,5,87],"27":[7,5,126],"28":[7,5,115],"29":[8,5,175],"30":[11,5,1],"31":[3,15,24],"32":[3,15,32],"33":[4,1,23],"34":[8,4,35],"35":[3,4,67],"36":[2,4,95],"37":[1,6,72],"38":[1,6,49],"39":[2,4,95],"40":[1,6,69],"41":[2,6,203],"42":[4,1,14],"43":[2,4,184],"44":[2,4,206],"45":[5,4,90],"46":[4,1,165],"47":[3,4,106],"48":[2,4,117],"49":[2,4,131],"50":[4,4,144],"51":[3,4,73],"52":[1,1,16],"53":[1,1,113],"54":[1,1,78],"55":[3,1,70],"56":[1,1,32],"57":[4,1,146],"58":[2,4,19],"59":[2,4,20],"60":[3,4,80],"61":[4,4,153],"62":[2,4,117],"63":[2,1,10],"64":[2,2,559],"65":[2,2,457],"66":[4,1,15],"67":[3,4,40],"68":[3,5,75],"69":[2,1,1],"70":[1,2,34],"71":[1,2,189],"72":[1,2,49],"73":[7,1,121],"74":[3,7,132],"75":[5,7,52],"76":[2,1,49],"77":[6,2,12],"78":[5,2,38],"79":[9,2,1],"80":[2,1,132],"81":[2,2,21],"82":[2,1,46],"83":[2,2,33],"84":[3,2,57]},"averageFieldLength":[3.2352941176470593,3.176470588235294,88.76470588235294],"storedFields":{"0":{"title":"Chunk YAXArrays","titles":[]},"1":{"title":"Chunking YAXArrays","titles":["Chunk YAXArrays"]},"2":{"title":"Chunking Datasets","titles":["Chunk YAXArrays"]},"3":{"title":"Set Chunks by Axis","titles":["Chunk YAXArrays","Chunking Datasets"]},"4":{"title":"Set chunking by Variable","titles":["Chunk YAXArrays","Chunking Datasets"]},"5":{"title":"Set chunking for all variables","titles":["Chunk YAXArrays","Chunking Datasets"]},"6":{"title":"Combine YAXArrays","titles":[]},"7":{"title":"cat along an existing dimension","titles":["Combine YAXArrays"]},"8":{"title":"concatenatecubes to a new dimension","titles":["Combine YAXArrays"]},"9":{"title":"Compute YAXArrays","titles":[]},"10":{"title":"Modify elements of a YAXArray","titles":["Compute YAXArrays"]},"11":{"title":"Arithmetics","titles":["Compute YAXArrays"]},"12":{"title":"map","titles":["Compute YAXArrays"]},"13":{"title":"mapslices","titles":["Compute YAXArrays"]},"14":{"title":"mapCube","titles":["Compute YAXArrays"]},"15":{"title":"Distributed Computation","titles":["Compute YAXArrays"]},"16":{"title":"Convert YAXArrays","titles":[]},"17":{"title":"Convert Base.Array","titles":["Convert YAXArrays"]},"18":{"title":"Convert Raster","titles":["Convert YAXArrays"]},"19":{"title":"Convert DimArray","titles":["Convert YAXArrays"]},"20":{"title":"Create YAXArrays and Datasets","titles":[]},"21":{"title":"Create a YAXArray","titles":["Create YAXArrays and Datasets"]},"22":{"title":"Create a Dataset","titles":["Create YAXArrays and Datasets"]},"23":{"title":"Frequently Asked Questions (FAQ)","titles":[]},"24":{"title":"Extract the axes names from a Cube","titles":["Frequently Asked Questions (FAQ)"]},"25":{"title":"Obtain values from axes and data from the cube","titles":["Frequently Asked Questions (FAQ)"]},"26":{"title":"How do I concatenate cubes","titles":["Frequently Asked Questions (FAQ)"]},"27":{"title":"How do I subset a Cube?","titles":["Frequently Asked Questions (FAQ)"]},"28":{"title":"How do I apply map algebra?","titles":["Frequently Asked Questions (FAQ)"]},"29":{"title":"How do I use the CubeTable function?","titles":["Frequently Asked Questions (FAQ)"]},"30":{"title":"How do I assing variable names to YAXArrays in a Dataset","titles":["Frequently Asked Questions (FAQ)"]},"31":{"title":"One variable name","titles":["Frequently Asked Questions (FAQ)","How do I assing variable names to YAXArrays in a Dataset"]},"32":{"title":"Multiple variable names","titles":["Frequently Asked Questions (FAQ)","How do I assing variable names to YAXArrays in a Dataset"]},"33":{"title":"Group YAXArrays and Datasets","titles":[]},"34":{"title":"Seasonal Averages from Time Series of Monthly Means","titles":["Group YAXArrays and Datasets"]},"35":{"title":"Download the data","titles":["Group YAXArrays and Datasets"]},"36":{"title":"GroupBy: seasons","titles":["Group YAXArrays and Datasets"]},"37":{"title":"dropdims","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"38":{"title":"seasons","titles":["Group YAXArrays and Datasets","GroupBy: seasons"]},"39":{"title":"GroupBy: weight","titles":["Group YAXArrays and Datasets"]},"40":{"title":"weights","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"41":{"title":"weighted seasons","titles":["Group YAXArrays and Datasets","GroupBy: weight"]},"42":{"title":"Read YAXArrays and Datasets","titles":[]},"43":{"title":"Read Zarr","titles":["Read YAXArrays and Datasets"]},"44":{"title":"Read NetCDF","titles":["Read YAXArrays and Datasets"]},"45":{"title":"Read GDAL (GeoTIFF, GeoJSON)","titles":["Read YAXArrays and Datasets"]},"46":{"title":"Select YAXArrays and Datasets","titles":[]},"47":{"title":"Select a YAXArray","titles":["Select YAXArrays and Datasets"]},"48":{"title":"Select elements","titles":["Select YAXArrays and Datasets"]},"49":{"title":"Select ranges","titles":["Select YAXArrays and Datasets"]},"50":{"title":"Closed and open intervals","titles":["Select YAXArrays and Datasets"]},"51":{"title":"Get a dimension","titles":["Select YAXArrays and Datasets"]},"52":{"title":"Types","titles":[]},"53":{"title":"YAXArray","titles":["Types"]},"54":{"title":"Dataset","titles":["Types"]},"55":{"title":"(Data) Cube","titles":["Types"]},"56":{"title":"Dimension","titles":["Types"]},"57":{"title":"Write YAXArrays and Datasets","titles":[]},"58":{"title":"Write Zarr","titles":["Write YAXArrays and Datasets"]},"59":{"title":"Write NetCDF","titles":["Write YAXArrays and Datasets"]},"60":{"title":"Overwrite a Dataset","titles":["Write YAXArrays and Datasets"]},"61":{"title":"Append to a Dataset","titles":["Write YAXArrays and Datasets"]},"62":{"title":"Save Skeleton","titles":["Write YAXArrays and Datasets"]},"63":{"title":"API Reference","titles":[]},"64":{"title":"Public API","titles":["API Reference"]},"65":{"title":"Internal API","titles":["API Reference"]},"66":{"title":"Contribute to YAXArrays.jl","titles":[]},"67":{"title":"Contribute to Documentation","titles":["Contribute to YAXArrays.jl"]},"68":{"title":"Build docs locally","titles":["Contribute to YAXArrays.jl","Contribute to Documentation"]},"69":{"title":"Getting Started","titles":[]},"70":{"title":"Installation","titles":["Getting Started"]},"71":{"title":"Quickstart","titles":["Getting Started"]},"72":{"title":"Updates","titles":["Getting Started"]},"73":{"title":"Mean Seasonal Cycle for a sigle pixel","titles":[]},"74":{"title":"Define the cube","titles":["Mean Seasonal Cycle for a sigle pixel"]},"75":{"title":"Plot results: mean seasonal cycle","titles":["Mean Seasonal Cycle for a sigle pixel"]},"76":{"title":"Other tutorials","titles":[]},"77":{"title":"General overview of the functionality of YAXArrays","titles":["Other tutorials"]},"78":{"title":"Table-style iteration over YAXArrays","titles":["Other tutorials"]},"79":{"title":"Combining multiple tiff files into a zarr based datacube","titles":["Other tutorials"]},"80":{"title":"Plotting maps","titles":[]},"81":{"title":"Heatmap plot","titles":["Plotting maps"]},"82":{"title":"Wintri Projection","titles":[]},"83":{"title":"Moll projection","titles":["Wintri Projection"]},"84":{"title":"3D sphere plot","titles":["Wintri Projection"]}},"dirtCount":0,"index":[["δlon",{"2":{"82":1}}],["÷",{"2":{"73":1}}],["`diskarrays",{"2":{"65":1}}],["`ds`",{"2":{"64":1}}],["`ordereddict`",{"2":{"64":1}}],["`fun`",{"2":{"64":1}}],["quickstart",{"0":{"71":1}}],["query",{"2":{"46":1}}],["questions",{"0":{"23":1},"1":{"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1}}],["quot",{"2":{"29":2,"60":2,"62":2,"64":16,"65":10}}],["π",{"2":{"28":2,"73":1,"75":1}}],[">var",{"2":{"74":1}}],[">dates",{"2":{"74":1}}],[">month",{"2":{"64":1}}],[">abs",{"2":{"64":1}}],[">",{"2":{"28":2,"74":1}}],["└──────────────────────────────────────────────────────────┘",{"2":{"27":1}}],["└────────────────────────────────────────────────────────────┘",{"2":{"25":1}}],["└─────────────────────────────────────────────────────────────┘",{"2":{"18":2}}],["└────────────────────────────────────────────────────────────────────┘",{"2":{"29":1}}],["└──────────────────────────────────────────────────────────────────────┘",{"2":{"21":1,"24":1,"62":1}}],["└────────────────────────────────────────────────────────────────────────────────┘",{"2":{"48":1}}],["└──────────────────────────────────────────────────────────────────────────────┘",{"2":{"9":1,"11":1,"12":1,"13":2,"14":4,"21":1,"26":1,"27":4,"28":3,"29":1,"36":2,"37":1,"39":3,"40":2,"41":3,"43":1,"44":1,"47":2,"48":2,"49":3,"50":5,"71":1,"74":1}}],["└───────────────────────────────────────────────────────────────────────┘",{"2":{"7":1,"29":1}}],["└─────────────────────────────────────────────────────────────────────┘",{"2":{"17":1,"71":1}}],["└──────────────────────────────────────────────────────────────────┘",{"2":{"19":2}}],["└────────────────────────────────────────────────────────────────┘",{"2":{"8":1}}],["⬔",{"2":{"26":1,"71":1}}],["jj+1",{"2":{"44":1,"46":1,"57":1,"61":1}}],["jj",{"2":{"44":1,"46":1,"57":1,"61":1}}],["joinname",{"2":{"64":1}}],["joinname=",{"2":{"64":1}}],["journal",{"2":{"44":1,"46":1,"57":1,"61":1}}],["joe",{"2":{"34":1,"41":1}}],["j",{"2":{"41":8}}],["jan",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["jl",{"0":{"66":1},"1":{"67":1,"68":1},"2":{"18":1,"19":1,"29":1,"35":1,"41":1,"53":1,"56":1,"66":1,"68":2,"70":1,"71":2,"72":3,"78":1}}],["jussieu",{"2":{"44":1,"46":1,"57":1,"61":1}}],["just",{"2":{"14":1,"53":1,"55":1,"64":1,"65":2}}],["jul",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["juliaδlon",{"2":{"82":1}}],["juliaglmakie",{"2":{"81":1}}],["juliagetloopchunks",{"2":{"65":1}}],["juliagetouttype",{"2":{"65":1}}],["juliagetoutaxis",{"2":{"65":1}}],["juliaget",{"2":{"65":1}}],["juliagetaxis",{"2":{"64":1}}],["julialon",{"2":{"80":1}}],["julialookup",{"2":{"51":1}}],["julialines",{"2":{"73":1}}],["juliaxpos",{"2":{"75":1}}],["juliax",{"2":{"73":1}}],["juliapkg>",{"2":{"70":1,"72":1}}],["juliapermuteloopaxes",{"2":{"65":1}}],["juliayaxcolumn",{"2":{"65":1}}],["juliayaxarray",{"2":{"64":1}}],["juliaoptifunc",{"2":{"65":1}}],["juliaoutdims",{"2":{"64":1}}],["juliaoffset",{"2":{"12":1}}],["juliaindims",{"2":{"64":1}}],["juliaimport",{"2":{"13":1,"70":1}}],["juliacopydata",{"2":{"65":1}}],["juliacollect",{"2":{"25":1,"51":1}}],["juliaclean",{"2":{"65":1}}],["juliacube",{"2":{"64":1}}],["juliacubefittable",{"2":{"64":1}}],["juliacubetable",{"2":{"64":1}}],["juliacaxes",{"2":{"64":1}}],["juliasavecube",{"2":{"64":1}}],["juliasavedataset",{"2":{"58":1,"59":1,"60":1}}],["juliasetchunks",{"2":{"64":1,"65":1}}],["juliaseasons",{"2":{"38":1}}],["juliawith",{"2":{"41":1}}],["julia>",{"2":{"41":1,"68":1,"74":1}}],["juliaurl",{"2":{"35":1}}],["juliausing",{"2":{"1":1,"3":1,"4":1,"5":1,"7":1,"8":1,"9":1,"14":1,"15":2,"17":1,"18":1,"19":1,"21":2,"24":1,"26":1,"27":1,"29":2,"33":1,"41":1,"43":1,"44":1,"45":1,"46":1,"48":1,"50":1,"57":1,"58":1,"59":1,"62":1,"71":2,"73":1,"80":1,"84":1}}],["juliakeylist",{"2":{"32":1}}],["juliatos",{"2":{"47":2,"48":2,"49":3,"50":1,"51":1}}],["juliatempo",{"2":{"39":1}}],["juliat",{"2":{"29":1,"73":1}}],["juliajulia>",{"2":{"24":3,"25":1,"26":1,"27":5,"28":3,"29":3,"31":1,"32":1,"36":2,"37":1,"39":2,"40":2,"41":3,"50":4,"61":1,"62":1,"74":2,"80":3}}],["juliadataset",{"2":{"64":1}}],["juliadata3",{"2":{"22":1}}],["juliads2",{"2":{"61":1}}],["juliads",{"2":{"43":1,"44":1}}],["juliadim",{"2":{"19":1}}],["juliadimarray",{"2":{"14":1}}],["juliareadcubedata",{"2":{"64":1}}],["juliaregions",{"2":{"14":2}}],["juliar",{"2":{"62":1}}],["juliaras2",{"2":{"18":1}}],["juliamutable",{"2":{"65":1}}],["juliamatch",{"2":{"65":1}}],["juliamapcube",{"2":{"64":2}}],["juliamapslices",{"2":{"13":1,"15":1}}],["juliamovingwindow",{"2":{"64":1}}],["juliamean",{"2":{"41":1}}],["juliam2",{"2":{"17":1}}],["julia",{"2":{"16":1,"65":1,"68":1,"70":2,"72":2}}],["juliavector",{"2":{"14":1}}],["juliaall",{"2":{"62":1}}],["juliaaxs",{"2":{"35":1}}],["juliaaxes",{"2":{"27":1}}],["juliaa2",{"2":{"11":2,"21":2,"71":1}}],["juliaa",{"2":{"1":1,"10":3}}],["juliafig",{"2":{"73":1,"82":1,"83":1}}],["juliafindaxis",{"2":{"65":1}}],["juliafittable",{"2":{"64":2}}],["juliafunction",{"2":{"36":1,"64":1,"73":1,"74":1}}],["juliaf",{"2":{"1":1,"3":1,"4":1,"5":1}}],["jun",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["∘",{"2":{"15":1}}],["|>",{"2":{"14":2}}],["⋱",{"2":{"14":1}}],["⋮",{"2":{"14":2,"51":1,"74":1}}],["949458",{"2":{"71":1}}],["941105",{"2":{"18":1}}],["993925",{"2":{"71":1}}],["992423",{"2":{"18":1}}],["992488",{"2":{"14":1}}],["90",{"2":{"45":1,"50":5}}],["9375",{"2":{"43":2,"80":1}}],["933612",{"2":{"18":1}}],["955757",{"2":{"71":1}}],["95",{"2":{"41":1}}],["956224",{"2":{"17":1}}],["9×275×205",{"2":{"41":4}}],["9122",{"2":{"45":1}}],["91",{"2":{"24":1,"50":5}}],["916085",{"2":{"14":1}}],["986293",{"2":{"19":1}}],["983521",{"2":{"14":1}}],["974903",{"2":{"17":1}}],["970684",{"2":{"17":1}}],["9236",{"2":{"17":1}}],["9",{"2":{"14":2,"25":1,"27":1,"39":4,"40":4,"49":4,"65":1}}],["96x71x19",{"2":{"44":1,"46":1,"57":1,"61":1}}],["96f0",{"2":{"44":1,"46":1,"57":1}}],["960",{"2":{"14":1}}],["96",{"2":{"7":1,"8":1,"48":2,"61":1}}],["872783",{"2":{"71":1}}],["874981",{"2":{"71":1}}],["87",{"2":{"51":1}}],["875727",{"2":{"19":1}}],["833461",{"2":{"71":1}}],["83",{"2":{"51":1}}],["84",{"2":{"45":2,"51":1}}],["841752",{"2":{"14":1}}],["893785",{"2":{"71":1}}],["8901",{"2":{"45":1}}],["89",{"2":{"43":4,"44":2,"45":1,"46":1,"47":2,"48":1,"49":1,"50":5,"51":1,"57":1,"61":1,"80":2}}],["89601",{"2":{"17":1}}],["880088",{"2":{"71":1}}],["88",{"2":{"26":1,"43":4,"51":1,"71":1,"80":2}}],["81",{"2":{"21":1,"51":1}}],["809603",{"2":{"71":1}}],["800",{"2":{"25":1,"27":1,"62":1}}],["805387",{"2":{"19":1}}],["808129",{"2":{"17":1}}],["85",{"2":{"51":1,"82":1,"83":1}}],["850",{"2":{"41":1}}],["853058",{"2":{"19":1}}],["85714",{"2":{"14":1}}],["86",{"2":{"51":1}}],["860322",{"2":{"19":1}}],["868084",{"2":{"18":1}}],["868467",{"2":{"14":1}}],["865994",{"2":{"18":1}}],["828806",{"2":{"71":1}}],["82",{"2":{"51":1}}],["824374",{"2":{"71":1}}],["82421875",{"2":{"45":2}}],["824445",{"2":{"18":1}}],["82791",{"2":{"17":1}}],["8",{"2":{"14":2,"25":1,"27":1,"44":2,"46":1,"47":2,"57":1,"61":1,"74":1}}],["v",{"2":{"44":1,"46":1,"57":1,"61":1}}],["v1",{"2":{"44":2,"46":2,"57":2,"61":2,"70":1}}],["vol",{"2":{"44":1,"46":1,"57":1,"61":1}}],["v20190710",{"2":{"43":1,"80":2}}],["video",{"2":{"76":1}}],["videos",{"2":{"76":1}}],["visualization",{"2":{"29":1}}],["vice",{"2":{"16":1}}],["view",{"2":{"14":1,"71":1}}],["version",{"2":{"43":1,"44":1,"46":1,"57":1,"61":1,"72":2,"80":1}}],["versa",{"2":{"16":1}}],["verify",{"2":{"40":1}}],["very",{"2":{"12":1,"29":1,"53":1}}],["vector",{"2":{"14":4,"25":1,"38":1,"51":1,"53":1,"64":2,"65":3}}],["val",{"2":{"25":2,"51":1}}],["vals",{"2":{"14":1}}],["value",{"2":{"11":1,"13":3,"28":1,"44":1,"47":2,"48":3,"49":3,"50":5,"64":4,"65":1}}],["values=ds1",{"2":{"29":1}}],["values",{"0":{"25":1},"2":{"8":1,"14":2,"20":1,"21":2,"24":3,"25":1,"27":1,"29":4,"49":1,"51":2,"53":1,"54":1,"62":1,"64":9,"71":1,"80":1}}],["vararg",{"2":{"65":2}}],["varoables",{"2":{"64":1}}],["variant",{"2":{"43":1,"80":1}}],["variable=at",{"2":{"71":1}}],["variable",{"0":{"4":1,"30":1,"31":1,"32":1},"1":{"31":1,"32":1},"2":{"4":1,"8":3,"43":1,"64":4,"65":6,"71":3,"73":2,"74":1,"75":1,"80":1}}],["variables=at",{"2":{"28":2}}],["variables",{"0":{"5":1},"2":{"3":2,"4":1,"5":2,"8":2,"16":1,"22":1,"26":2,"31":1,"32":1,"43":2,"44":1,"45":1,"46":1,"54":1,"55":1,"57":1,"61":2,"64":2,"80":2}}],["varlist",{"2":{"32":2}}],["var2",{"2":{"26":2,"28":1}}],["var1",{"2":{"26":2,"28":1}}],["var",{"2":{"8":2,"73":3,"74":2,"75":2}}],["uv",{"2":{"84":1}}],["u",{"2":{"74":1}}],["updates",{"0":{"72":1}}],["update",{"2":{"64":1}}],["up",{"2":{"64":1}}],["ucar",{"2":{"44":1,"46":1,"54":1,"57":1}}],["urls",{"2":{"42":1}}],["url",{"2":{"35":1,"43":1}}],["unpermuted",{"2":{"65":2}}],["unpractical",{"2":{"35":1}}],["underlying",{"2":{"64":1,"65":1,"72":1}}],["unlike",{"2":{"55":1}}],["unique",{"2":{"74":1}}],["unit",{"2":{"45":1}}],["units",{"2":{"43":1,"44":2,"47":4,"48":6,"49":6,"50":10}}],["unidata",{"2":{"44":1,"46":1,"54":1,"57":1}}],["union",{"2":{"13":2,"14":1,"28":1,"29":2,"44":1,"47":2,"48":3,"49":3,"50":5,"62":2}}],["unordered",{"2":{"36":2,"37":1,"38":1,"39":2,"40":2,"41":3}}],["unweighted",{"2":{"36":1,"41":1}}],["unnecessary",{"2":{"14":1}}],["unchanged",{"2":{"12":1}}],["usually",{"2":{"43":1,"53":2,"54":2}}],["usual",{"2":{"36":1}}],["us",{"2":{"14":1}}],["using",{"2":{"7":1,"8":1,"9":1,"14":2,"15":7,"19":1,"24":1,"26":1,"28":1,"29":1,"33":4,"43":2,"44":3,"45":2,"46":2,"48":3,"49":2,"57":2,"61":1,"62":2,"72":1,"73":2,"74":1,"80":3}}],["useable",{"2":{"64":1}}],["useful",{"2":{"55":1}}],["uses",{"2":{"29":1}}],["used",{"2":{"14":1,"15":1,"46":1,"51":1,"52":1,"53":1,"56":1,"64":4,"65":3}}],["userguide",{"2":{"67":2}}],["users",{"2":{"65":1}}],["user",{"2":{"9":2,"11":1,"12":1,"15":1,"21":3,"22":1,"65":1}}],["use",{"0":{"29":1},"2":{"7":1,"8":1,"9":4,"12":1,"15":2,"24":2,"28":1,"29":2,"33":1,"35":1,"37":1,"50":2,"55":1,"62":1,"64":3,"65":1,"76":1,"78":1,"80":2}}],["kwargs",{"2":{"64":4,"65":2}}],["k",{"2":{"43":1,"44":1,"47":2,"48":3,"49":3,"50":5}}],["keep",{"2":{"65":1}}],["keeps",{"2":{"12":1}}],["keys",{"2":{"64":1}}],["key",{"2":{"64":1}}],["keyword",{"2":{"61":1,"64":6,"65":2}}],["keylist",{"2":{"32":1}}],["kb",{"2":{"9":1,"11":1,"12":1,"13":1,"14":1,"18":1,"21":2,"24":1,"26":1,"27":4,"28":3,"29":1,"48":1,"49":3,"50":5,"71":1,"74":1}}],["+proj=moll",{"2":{"83":1}}],["+",{"2":{"11":2,"12":1,"73":1,"82":1}}],["↗",{"2":{"9":1,"11":1,"12":1,"14":1,"18":2,"21":3,"22":1,"24":3,"26":1,"27":5,"28":3,"36":2,"41":1,"43":2,"44":2,"46":1,"47":2,"49":3,"50":5,"57":1,"61":2,"71":1,"80":1}}],["lscene",{"2":{"84":1}}],["lmdz",{"2":{"44":1,"46":1,"57":1,"61":1}}],["link",{"2":{"67":1}}],["linewidth=0",{"2":{"82":1,"83":1}}],["linewidth=2",{"2":{"75":2}}],["linewidth=1",{"2":{"73":2,"75":1}}],["linestyle=",{"2":{"75":2}}],["lines",{"2":{"73":1,"75":3}}],["line",{"2":{"29":1}}],["libraries",{"2":{"53":1}}],["lim",{"2":{"44":1,"46":1,"57":1,"61":1}}],["like",{"2":{"29":1,"64":2,"65":1,"67":1}}],["little",{"2":{"15":1}}],["list",{"2":{"14":1,"64":5,"65":6}}],["loopinds",{"2":{"65":2}}],["looping",{"2":{"64":1,"65":1}}],["loopcachesize",{"2":{"65":1}}],["loopchunksize",{"2":{"64":1}}],["loopaxes",{"2":{"65":1}}],["loopvars",{"2":{"64":1,"65":1}}],["loops",{"2":{"64":1}}],["loop",{"2":{"64":1,"65":2}}],["looped",{"2":{"64":3,"65":3}}],["look",{"2":{"60":1,"64":1,"65":1,"67":1,"68":1}}],["lookups",{"2":{"51":3}}],["lookup",{"2":{"36":1,"38":1,"80":3}}],["looks",{"2":{"29":1}}],["located",{"2":{"76":1}}],["locate",{"2":{"68":1}}],["location",{"2":{"65":3}}],["locations",{"2":{"54":1,"55":1}}],["localhost",{"2":{"68":1}}],["locally",{"0":{"68":1},"2":{"68":1}}],["local",{"2":{"15":1,"43":1}}],["loadorgenerate",{"2":{"65":1}}],["load",{"2":{"53":1}}],["loading",{"2":{"45":1}}],["lowclip",{"2":{"41":4}}],["lost",{"2":{"16":1}}],["long",{"2":{"41":1,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5}}],["longitude",{"2":{"27":1,"45":1,"71":2}}],["lon=1",{"2":{"27":1}}],["lon",{"2":{"9":2,"11":1,"12":1,"13":2,"14":12,"15":1,"18":2,"21":3,"22":1,"26":2,"27":7,"28":4,"29":3,"43":2,"44":2,"46":1,"47":2,"48":3,"49":6,"50":10,"51":2,"57":1,"61":1,"80":2,"82":3}}],["layer",{"2":{"64":1}}],["layername",{"2":{"64":2}}],["layout",{"2":{"41":2}}],["lazy",{"2":{"64":1}}],["lazily",{"2":{"12":1}}],["labelled",{"2":{"64":1}}],["labels",{"2":{"41":1,"51":1,"55":1,"56":1}}],["label=false",{"2":{"41":1}}],["label=",{"2":{"41":1,"75":3}}],["label=cb",{"2":{"41":1}}],["label",{"2":{"41":3,"43":1,"80":1}}],["larger",{"2":{"16":1}}],["large",{"2":{"16":1,"35":1,"53":1}}],["last",{"2":{"15":1}}],["latest",{"2":{"72":1}}],["lat=5",{"2":{"27":1}}],["latitude",{"2":{"27":1,"45":1,"71":2}}],["lat",{"2":{"9":2,"11":1,"12":1,"13":2,"14":12,"15":1,"18":2,"21":3,"22":1,"26":2,"27":7,"28":4,"29":3,"43":2,"44":2,"46":1,"47":2,"48":3,"49":5,"50":5,"51":1,"57":1,"61":1,"64":1,"80":3,"82":1,"83":1}}],["lentime",{"2":{"73":2}}],["length",{"2":{"36":2,"37":1,"39":3,"64":1,"65":3,"73":3}}],["length=365",{"2":{"73":1}}],["length=20",{"2":{"26":1,"71":1}}],["length=15",{"2":{"9":1,"14":1,"15":1,"21":1,"26":1,"71":1}}],["length=10",{"2":{"9":1,"14":1,"15":1,"21":1,"26":1,"71":1}}],["level",{"2":{"67":1,"68":1}}],["learn",{"2":{"78":1}}],["learning",{"2":{"53":1,"76":1}}],["leap",{"2":{"73":1}}],["least",{"2":{"64":1}}],["left",{"2":{"13":2}}],["let",{"2":{"9":1,"26":1,"27":1,"41":1,"46":1,"74":1}}],["├─────────────────────────┴──────────────────────────",{"2":{"27":1}}],["├─────────────────────────┴─────────────────────────────────────",{"2":{"71":1}}],["├─────────────────────────┴──────────────────────────────────────────────",{"2":{"29":1}}],["├─────────────────────────┴──────────────────────────────────",{"2":{"19":2}}],["├─────────────────────────┴────────────────────────────────",{"2":{"8":1}}],["├──────────────────────────┴────────────────────────────",{"2":{"18":1}}],["├──────────────────────────┴────────────────────────────────────",{"2":{"17":1}}],["├──────────────────────────┴─────────────────────────────────────────────",{"2":{"14":1,"27":1}}],["├───────────────────────────┴──────────────────────────",{"2":{"25":1}}],["├───────────────────────────┴────────────────────────────────────────────",{"2":{"14":1,"27":1}}],["├─────────────────────────────┴──────────────────────────────────",{"2":{"21":1,"24":1}}],["├───────────────────────────────┴────────────────────────────────────────",{"2":{"40":1}}],["├──────────────────────────────────┴─────────────────────────────────────",{"2":{"74":1}}],["├─────────────────────────────────────────┴──────────────────────",{"2":{"62":1}}],["├──────────────────────────────────────────┴──────────────────────",{"2":{"29":1}}],["├──────────────────────────────────────────┴─────────────────────────────",{"2":{"14":1}}],["├─────────────────────────────────────────────┴─────────────────",{"2":{"48":1}}],["├──────────────────────────────────────────────┴─────────────────────────",{"2":{"28":1,"49":2}}],["├───────────────────────────────────────────────┴────────────────────────",{"2":{"49":1,"50":5}}],["├───────────────────────────────────────────────┴──────────────",{"2":{"29":1}}],["├───────────────────────────────────────────────",{"2":{"27":1}}],["├────────────────────────────────────────────────",{"2":{"27":1}}],["├─────────────────────────────────────────────────",{"2":{"25":1}}],["├──────────────────────────────────────────────────┴─────────────────────",{"2":{"36":2,"37":1,"40":1,"41":3}}],["├──────────────────────────────────────────────────",{"2":{"18":1,"25":1}}],["├───────────────────────────────────────────────────",{"2":{"18":2}}],["├─────────────────────────────────────────────────────",{"2":{"8":1,"18":1}}],["├───────────────────────────────────────────────────────",{"2":{"19":1}}],["├─────────────────────────────────────────────────────────",{"2":{"29":1}}],["├──────────────────────────────────────────────────────────",{"2":{"17":1,"29":1,"71":1}}],["├───────────────────────────────────────────────────────────",{"2":{"17":1,"21":1,"24":1,"62":1,"71":1}}],["├────────────────────────────────────────────────────────────",{"2":{"7":1,"21":1,"24":1,"29":1,"62":1}}],["├──────────────────────────────────────────────────────────────────",{"2":{"36":2,"37":1,"39":2,"40":1,"41":3}}],["├───────────────────────────────────────────────────────────────────",{"2":{"9":1,"11":1,"12":1,"13":2,"14":2,"21":1,"26":1,"27":4,"28":3,"29":1,"39":1,"43":1,"44":1,"47":2,"48":2,"49":3,"50":5,"71":1,"74":1}}],["├─────────────────────────────────────────────────────────────────────",{"2":{"48":1}}],["├─────────────────────────────────────────────────────────────────────┴",{"2":{"48":1}}],["├────────────────────────────────────────────────────────────────────",{"2":{"9":1,"11":1,"12":1,"13":2,"14":3,"21":1,"26":1,"27":4,"28":3,"29":1,"36":2,"37":1,"39":3,"40":2,"41":3,"43":1,"44":1,"47":2,"48":2,"49":3,"50":5,"71":1,"74":1}}],["├─────────────────────────────────────────────────────────────",{"2":{"7":1,"29":1}}],["├────────────────────────────────────────────────────────",{"2":{"19":2}}],["├──────────────────────────────────────────────────────",{"2":{"8":1}}],["├────────────────────────────────────────────────┴───────────────────────",{"2":{"13":1,"39":2,"44":1,"47":2,"48":2}}],["├───────────────────────────────────────────┴────────────────────────────",{"2":{"13":1}}],["├────────────────────────────────────┴───────────────────────────────────",{"2":{"43":1}}],["├────────────────────────────────┴───────────────────────────────────────",{"2":{"26":1,"71":1}}],["├────────────────────────────────┴────────────────────────────────",{"2":{"7":1}}],["├──────────────────────────────┴─────────────────────────────────────────",{"2":{"9":1,"11":1,"12":1,"14":1,"21":1,"28":2,"39":1}}],["├────────────────────────────┴───────────────────────────────────────────",{"2":{"27":2}}],["├────────────────────────────┴──────────────────────────",{"2":{"18":1}}],["╭─────────────────────────────╮",{"2":{"21":1,"24":1}}],["╭───────────────────────────────╮",{"2":{"40":1}}],["╭──────────────────────────────────╮",{"2":{"74":1}}],["╭─────────────────────────────────────────╮",{"2":{"62":1}}],["╭──────────────────────────────────────────╮",{"2":{"14":1,"29":1}}],["╭─────────────────────────────────────────────╮",{"2":{"48":1}}],["╭──────────────────────────────────────────────────╮",{"2":{"36":2,"37":1,"40":1,"41":3}}],["╭────────────────────────────────────────────────╮",{"2":{"13":1,"39":2,"44":1,"47":2,"48":2}}],["╭───────────────────────────────────────────────╮",{"2":{"29":1,"49":1,"50":5}}],["╭──────────────────────────────────────────────╮",{"2":{"28":1,"49":2}}],["╭───────────────────────────────────────────╮",{"2":{"13":1}}],["╭────────────────────────────────────╮",{"2":{"43":1}}],["╭────────────────────────────────╮",{"2":{"7":1,"26":1,"71":1}}],["╭──────────────────────────────╮",{"2":{"9":1,"11":1,"12":1,"14":1,"21":1,"28":2,"39":1}}],["╭────────────────────────────╮",{"2":{"18":1,"27":2}}],["╭───────────────────────────╮",{"2":{"14":1,"25":1,"27":1}}],["╭──────────────────────────╮",{"2":{"14":1,"17":1,"18":1,"27":1}}],["╭─────────────────────────╮",{"2":{"8":1,"19":2,"27":1,"29":1,"71":1}}],["0455706",{"2":{"71":1}}],["0e8",{"2":{"64":1}}],["0f20",{"2":{"43":1,"44":2,"47":4,"48":6,"49":6,"50":10}}],["08939189433608173",{"2":{"74":1}}],["08918311959898663",{"2":{"74":1}}],["0800265",{"2":{"71":1}}],["0889315",{"2":{"71":1}}],["088705",{"2":{"17":1}}],["08",{"2":{"39":1}}],["007793635603722353",{"2":{"74":1}}],["00728967",{"2":{"71":1}}],["003850819580283507",{"2":{"74":1}}],["008155624989858334",{"2":{"74":1}}],["00597561",{"2":{"71":1}}],["00184427",{"2":{"71":1}}],["00",{"2":{"39":4,"43":9,"44":8,"46":4,"47":8,"48":8,"49":12,"50":20,"57":4,"61":4,"80":5}}],["00951025",{"2":{"17":1}}],["09",{"2":{"39":1}}],["05589671830494097",{"2":{"74":1}}],["0533438",{"2":{"71":1}}],["05",{"2":{"27":3}}],["06035693633380305",{"2":{"74":1}}],["06513011461361937",{"2":{"74":1}}],["0655962",{"2":{"71":1}}],["0624195",{"2":{"71":1}}],["0625",{"2":{"43":2,"80":1}}],["0677662",{"2":{"19":1}}],["061297",{"2":{"19":1}}],["07",{"2":{"43":2,"80":1}}],["0746812",{"2":{"19":1}}],["0717486",{"2":{"17":1}}],["02",{"2":{"43":1}}],["0242338",{"2":{"18":1}}],["0206258",{"2":{"18":1}}],["03320047069654842",{"2":{"74":1}}],["0338526",{"2":{"71":1}}],["03",{"2":{"18":1}}],["0393255",{"2":{"17":1}}],["015057268460556827",{"2":{"74":1}}],["0174532925199433",{"2":{"45":1}}],["01t00",{"2":{"43":2,"80":1}}],["01t03",{"2":{"43":2,"80":1}}],["0140149",{"2":{"17":1}}],["01",{"2":{"9":6,"11":3,"12":3,"13":3,"14":9,"15":3,"21":9,"22":3,"27":22,"43":5,"44":4,"46":2,"47":4,"48":6,"49":6,"50":10,"57":2,"61":2,"73":2,"74":4,"80":5}}],["0",{"2":{"7":1,"8":1,"9":6,"10":2,"11":6,"12":6,"13":7,"14":75,"17":36,"18":36,"19":45,"21":12,"22":6,"25":1,"26":9,"27":1,"28":27,"29":11,"39":2,"40":4,"41":3,"43":7,"44":10,"45":6,"46":6,"47":8,"48":6,"49":14,"50":20,"51":6,"57":6,"60":1,"61":6,"62":1,"64":2,"65":1,"71":70,"72":1,"73":2,"74":19,"75":1,"80":4,"82":2,"83":2,"84":2}}],["┤",{"2":{"7":2,"8":2,"9":2,"11":2,"12":2,"13":4,"14":5,"17":2,"18":4,"19":3,"21":4,"24":2,"25":2,"26":2,"27":10,"28":6,"29":6,"36":4,"37":2,"39":6,"40":3,"41":6,"43":2,"44":2,"47":4,"48":5,"49":6,"50":10,"62":2,"71":4,"74":2}}],["┐",{"2":{"7":1,"8":1,"9":1,"11":1,"12":1,"13":2,"14":4,"17":1,"18":2,"19":2,"21":2,"24":1,"25":1,"26":1,"27":5,"28":3,"29":3,"36":2,"37":1,"39":3,"40":2,"41":3,"43":1,"44":1,"47":2,"48":4,"49":3,"50":5,"62":1,"71":2,"74":1}}],["│",{"2":{"7":2,"8":2,"9":2,"11":2,"12":2,"13":4,"14":8,"17":2,"18":4,"19":4,"21":4,"24":2,"25":2,"26":2,"27":10,"28":6,"29":6,"36":4,"37":2,"39":6,"40":4,"41":6,"43":2,"44":2,"47":4,"48":6,"49":6,"50":10,"62":2,"71":4,"74":2}}],["730",{"2":{"75":1}}],["730354",{"2":{"71":1}}],["733863",{"2":{"71":1}}],["73",{"2":{"51":1}}],["732335",{"2":{"19":1}}],["74958",{"2":{"71":1}}],["74",{"2":{"51":1}}],["741617",{"2":{"19":1}}],["75",{"2":{"51":1}}],["759697",{"2":{"19":1}}],["77",{"2":{"51":1}}],["709465",{"2":{"71":1}}],["70",{"2":{"49":3,"51":1}}],["7030",{"2":{"45":1}}],["79",{"2":{"44":2,"46":1,"47":2,"48":2,"49":4,"50":5,"51":1,"57":1,"61":1}}],["729044",{"2":{"71":1}}],["729319",{"2":{"19":1}}],["72",{"2":{"51":1}}],["722586",{"2":{"19":1}}],["718171",{"2":{"71":1}}],["718014",{"2":{"71":1}}],["717",{"2":{"50":5}}],["71",{"2":{"49":1,"51":1}}],["71611",{"2":{"18":1}}],["71429",{"2":{"14":2}}],["763835",{"2":{"71":1}}],["763945",{"2":{"17":1}}],["76",{"2":{"51":1}}],["762323",{"2":{"14":1}}],["78",{"2":{"49":1,"51":1}}],["786535",{"2":{"18":1}}],["784243",{"2":{"14":1}}],["7870153406281395",{"2":{"10":1}}],["7",{"2":{"7":1,"14":1,"18":1,"21":1,"25":1,"43":1,"80":1}}],["→",{"2":{"3":1,"4":1,"5":1,"8":1,"9":1,"11":1,"12":1,"13":1,"14":6,"17":1,"18":3,"19":3,"21":3,"22":1,"24":3,"25":1,"26":1,"27":6,"28":3,"29":2,"32":2,"36":2,"37":1,"41":3,"43":2,"44":2,"45":1,"46":1,"47":2,"48":1,"49":3,"50":5,"57":1,"61":2,"62":1,"71":2,"80":1}}],["↓",{"2":{"3":3,"4":3,"5":1,"7":1,"8":1,"9":1,"11":1,"12":1,"13":2,"14":6,"17":1,"18":3,"19":3,"21":3,"22":1,"24":3,"25":1,"26":1,"27":6,"28":3,"29":3,"31":1,"32":3,"36":4,"37":2,"39":5,"40":3,"41":6,"43":2,"44":2,"45":1,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":2,"62":1,"71":2,"74":2,"80":1}}],["pkg",{"2":{"70":2}}],["pkg>",{"2":{"68":1}}],["p",{"2":{"44":1,"46":1,"57":1,"61":1}}],["purple",{"2":{"73":2}}],["purpose",{"2":{"23":1,"28":1}}],["pull",{"2":{"66":1}}],["public",{"0":{"64":1}}],["published",{"2":{"41":1}}],["plt",{"2":{"81":1}}],["place",{"2":{"65":1}}],["plots",{"2":{"84":1}}],["plotted",{"2":{"73":1}}],["plotting",{"0":{"80":1},"1":{"81":1},"2":{"73":1}}],["plot",{"0":{"75":1,"81":1,"84":1},"2":{"41":2}}],["plus",{"2":{"35":1,"64":1}}],["pydata",{"2":{"35":1}}],["picture",{"2":{"53":1,"54":1}}],["pieces",{"2":{"23":1}}],["pixel",{"0":{"73":1},"1":{"74":1,"75":1},"2":{"15":2}}],["page",{"2":{"71":1,"84":1}}],["paste",{"2":{"68":1}}],["pass",{"2":{"64":1}}],["passing",{"2":{"64":3}}],["passed",{"2":{"64":4}}],["pair",{"2":{"65":1}}],["partitioned",{"2":{"65":1}}],["participate",{"2":{"64":1}}],["particular",{"2":{"56":1}}],["parts",{"2":{"64":1}}],["parent",{"2":{"43":1,"80":1}}],["parallelized",{"2":{"65":1}}],["parallelisation",{"2":{"64":1}}],["parallel",{"2":{"15":1,"53":1}}],["paths",{"2":{"65":2}}],["path=",{"2":{"43":1,"58":1,"59":1,"60":1,"61":1,"65":1}}],["path=f",{"2":{"3":1,"4":1,"5":1}}],["path",{"2":{"35":2,"43":3,"44":2,"45":2,"46":2,"57":2,"60":3,"64":4,"68":1}}],["packages",{"2":{"16":1}}],["package",{"2":{"15":1,"49":1,"51":1,"63":1,"70":1}}],["post=getpostfunction",{"2":{"64":1}}],["positions",{"2":{"65":2}}],["position",{"2":{"53":1}}],["positional",{"2":{"48":1,"49":1}}],["possible",{"2":{"15":2,"16":1,"26":1,"62":1,"64":3,"65":1}}],["pos",{"2":{"14":2}}],["point3f",{"2":{"84":1}}],["point",{"2":{"14":3,"43":1,"71":1}}],["pointsy",{"2":{"3":1,"4":1}}],["points",{"2":{"3":3,"4":3,"5":2,"7":1,"8":1,"9":3,"11":3,"12":3,"13":4,"14":16,"15":1,"17":2,"18":6,"19":4,"21":9,"22":3,"24":9,"25":2,"26":3,"27":14,"28":9,"29":5,"31":1,"32":5,"39":1,"43":6,"44":6,"45":2,"46":3,"47":6,"48":4,"49":9,"50":16,"51":2,"53":2,"54":1,"57":3,"61":6,"62":2,"71":5,"74":1,"80":3}}],["pr",{"2":{"68":1}}],["primem",{"2":{"45":1}}],["prior",{"2":{"0":1}}],["props",{"2":{"71":2}}],["properly",{"2":{"34":1}}],["properties=dict",{"2":{"65":1}}],["properties",{"2":{"9":2,"15":2,"21":3,"22":3,"35":1,"41":1,"43":1,"44":1,"45":1,"46":1,"57":1,"61":1,"64":5,"65":1,"80":1}}],["probably",{"2":{"65":1}}],["provide",{"2":{"64":1}}],["provided",{"2":{"64":1}}],["provides",{"2":{"53":1,"77":1}}],["process",{"2":{"53":1,"65":2}}],["processed",{"2":{"12":1}}],["projection",{"0":{"82":1,"83":1},"1":{"83":1,"84":1},"2":{"45":1}}],["progressmeter",{"2":{"64":1}}],["progress",{"2":{"35":1,"76":1,"78":1}}],["product",{"2":{"14":1}}],["pressing",{"2":{"70":1}}],["pre",{"2":{"64":2}}],["previous",{"2":{"41":1,"60":1,"64":1,"73":1}}],["previously",{"2":{"29":1}}],["prepared",{"2":{"44":1,"46":1,"57":1,"61":1}}],["prep",{"2":{"8":2}}],["precipitation",{"2":{"8":2,"54":1,"55":1,"71":2}}],["permute",{"2":{"65":1}}],["permuteloopaxes",{"2":{"65":1}}],["permutation",{"2":{"65":1}}],["persistend",{"2":{"65":1}}],["persistency",{"2":{"65":1}}],["persistent",{"2":{"64":1,"65":2}}],["persist",{"2":{"60":1,"64":1,"65":1}}],["perform",{"2":{"65":1}}],["performed",{"2":{"12":2}}],["performing",{"2":{"9":1}}],["per",{"2":{"6":1,"13":1,"36":1,"39":1,"40":1}}],["417223",{"2":{"71":1}}],["48",{"2":{"71":1}}],["480",{"2":{"29":1}}],["45×170×24",{"2":{"50":5}}],["450627",{"2":{"19":1}}],["45301",{"2":{"18":1}}],["455047",{"2":{"17":1}}],["44",{"2":{"27":1,"28":3}}],["442446",{"2":{"71":1}}],["4424",{"2":{"18":1}}],["445729",{"2":{"14":1}}],["43313",{"2":{"71":1}}],["4326",{"2":{"45":1}}],["437138",{"2":{"18":1}}],["434748",{"2":{"17":1}}],["492505",{"2":{"17":1}}],["492411",{"2":{"14":1}}],["404622",{"2":{"71":1}}],["401364",{"2":{"71":1}}],["402122",{"2":{"18":1}}],["403694",{"2":{"17":1}}],["400",{"2":{"17":1,"73":2,"75":1}}],["478795",{"2":{"17":1}}],["4×30",{"2":{"14":1}}],["46",{"2":{"26":1,"71":1}}],["46355",{"2":{"17":1}}],["461642",{"2":{"14":1}}],["469779",{"2":{"14":1}}],["424079",{"2":{"71":1}}],["429587",{"2":{"18":1}}],["42857",{"2":{"14":2}}],["42",{"2":{"10":3}}],["4",{"2":{"3":4,"4":4,"14":9,"19":1,"25":1,"26":1,"36":2,"37":1,"38":1,"39":2,"40":2,"41":4,"71":3,"73":1,"75":1}}],["3d",{"0":{"84":1}}],["37",{"2":{"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1}}],["3hr",{"2":{"43":2,"80":3}}],["3×20",{"2":{"29":1}}],["387959",{"2":{"71":1}}],["384×192×251288",{"2":{"43":1}}],["38",{"2":{"27":1,"49":3}}],["366",{"2":{"75":1}}],["365×1",{"2":{"74":1}}],["365",{"2":{"74":1,"75":5}}],["36",{"2":{"27":1,"39":1}}],["3600",{"2":{"27":1}}],["36842",{"2":{"18":1}}],["31",{"2":{"27":2,"73":1,"74":2}}],["315526",{"2":{"18":1}}],["325956",{"2":{"19":1}}],["320579",{"2":{"14":1}}],["35700351866494",{"2":{"43":4,"80":2}}],["359",{"2":{"43":2,"44":2,"46":1,"47":2,"48":1,"51":2,"57":1,"61":1,"80":1}}],["359397",{"2":{"14":1}}],["352519",{"2":{"18":1}}],["352339",{"2":{"14":1}}],["35517",{"2":{"17":1}}],["355802",{"2":{"17":1}}],["354223",{"2":{"14":1}}],["35",{"2":{"9":1,"11":1,"12":1,"14":1,"21":1}}],["307f8f0e584a39a050c042849004e6a2bd674f99",{"2":{"45":1}}],["306032",{"2":{"19":1}}],["305508",{"2":{"18":1}}],["30×10×15",{"2":{"9":1,"11":1,"12":1,"14":1,"21":1}}],["30",{"2":{"9":3,"11":1,"12":1,"13":2,"14":5,"15":2,"18":10,"21":4,"22":2,"41":2,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5,"80":1}}],["39433",{"2":{"71":1}}],["396487",{"2":{"19":1}}],["39",{"2":{"9":1,"26":1,"27":1,"28":2,"41":1,"46":1,"56":1,"64":2,"67":4,"73":1,"74":3}}],["3",{"2":{"3":8,"4":8,"5":10,"9":1,"10":3,"11":3,"12":2,"14":6,"18":2,"19":1,"21":3,"24":5,"25":1,"27":4,"28":4,"29":5,"36":1,"41":5,"43":1,"44":1,"47":2,"49":4,"50":5,"61":1,"64":1,"71":3,"73":3}}],["zoom",{"2":{"84":1}}],["zopen",{"2":{"43":1,"80":1}}],["zeros",{"2":{"62":3,"74":1}}],["z",{"2":{"3":2,"4":3,"5":2,"61":2}}],["zarr",{"0":{"43":1,"58":1,"79":1},"2":{"1":2,"3":2,"4":2,"5":2,"15":1,"19":1,"43":3,"58":5,"60":3,"61":4,"62":3,"64":2,"65":2,"80":1}}],["xticklabelalign",{"2":{"73":1,"75":1}}],["xticklabelrotation",{"2":{"73":1,"75":1}}],["xticks",{"2":{"73":1,"75":1}}],["xpos",{"2":{"73":2,"75":1}}],["xlabel=",{"2":{"73":2,"75":1}}],["xx",{"2":{"44":1,"46":1,"57":1,"61":1}}],["xarray",{"2":{"34":1,"35":1}}],["xin",{"2":{"14":3,"28":3}}],["xout",{"2":{"14":3}}],["x26",{"2":{"14":12}}],["x3c",{"2":{"14":12}}],["x",{"2":{"3":2,"4":3,"5":2,"12":2,"18":4,"19":3,"28":4,"36":2,"37":1,"41":3,"45":1,"53":1,"65":1,"71":5,"73":1,"74":6}}],["eo",{"2":{"76":1}}],["esdltutorials",{"2":{"76":1}}],["esm1",{"2":{"43":1,"80":2}}],["eltype",{"2":{"71":1}}],["elementtype",{"2":{"65":1}}],["element",{"2":{"7":1,"8":1,"9":2,"12":2,"13":1,"14":2,"25":1,"29":1,"36":2,"37":1,"38":1,"39":11,"40":6,"41":3,"48":2,"51":1,"54":1,"55":2,"64":1,"65":1,"74":1}}],["elements",{"0":{"10":1,"48":1},"2":{"7":1,"11":1,"12":2,"15":1,"46":1,"53":1,"64":1,"65":1}}],["empty",{"2":{"65":1}}],["embeds",{"2":{"64":1}}],["either",{"2":{"64":2}}],["error",{"2":{"60":1}}],["epsg",{"2":{"45":5}}],["et",{"2":{"44":1,"46":1,"55":1,"57":1,"61":1}}],["edu",{"2":{"44":1,"46":1,"54":1,"57":1}}],["equivalent",{"2":{"41":1,"51":1}}],["effectively",{"2":{"28":1}}],["even",{"2":{"27":1}}],["everywhere",{"2":{"15":2}}],["every",{"2":{"9":1,"12":1,"64":1}}],["east",{"2":{"45":1}}],["easier",{"2":{"21":1,"46":1}}],["easily",{"2":{"15":1}}],["easy",{"2":{"18":1,"19":1}}],["each",{"2":{"3":1,"4":1,"9":1,"12":1,"14":5,"15":2,"28":2,"29":2,"34":1,"38":1,"54":1,"56":1,"64":3,"65":3,"71":1}}],["env",{"2":{"68":1}}],["enabling",{"2":{"21":1}}],["enter",{"2":{"70":1}}],["entire",{"2":{"14":1,"16":1,"58":1,"59":1}}],["entries",{"2":{"14":1,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5,"64":1,"71":1}}],["entry",{"2":{"9":1,"11":1,"12":1,"21":2,"36":2,"37":1,"39":2,"40":2,"41":3,"64":1,"67":3}}],["enumerate",{"2":{"14":2,"41":2}}],["end",{"2":{"12":1,"14":4,"15":2,"28":1,"36":2,"41":2,"73":1,"74":2,"84":1}}],["exists",{"2":{"60":1,"64":1,"65":1}}],["existing",{"0":{"7":1},"2":{"60":1,"61":1}}],["exportable=true",{"2":{"84":1}}],["expression",{"2":{"64":1}}],["experiment",{"2":{"44":3,"46":3,"57":3,"61":3}}],["explicitly",{"2":{"12":1,"65":1}}],["extended",{"2":{"64":1,"65":2}}],["extension",{"2":{"64":2}}],["extent",{"2":{"18":2}}],["external",{"2":{"43":1,"80":1}}],["extracts",{"2":{"65":1}}],["extract",{"0":{"24":1},"2":{"65":1}}],["extra",{"2":{"15":1}}],["executes",{"2":{"64":1}}],["execute",{"2":{"15":1}}],["exactly",{"2":{"4":1,"25":1}}],["examples",{"2":{"5":1,"25":2,"33":1,"44":1,"46":1,"57":1,"67":1}}],["example",{"2":{"0":1,"4":1,"9":1,"15":2,"28":1,"29":1,"34":1,"44":1,"46":2,"53":2,"54":1,"55":1,"57":2,"64":3,"65":1,"67":2,"71":2}}],["e",{"2":{"6":1,"7":1,"9":1,"10":1,"12":1,"14":2,"15":1,"18":1,"19":1,"21":1,"51":1,"53":1,"56":1,"60":1,"64":6,"65":1,"68":1,"71":1}}],["ndata",{"2":{"82":2,"83":1,"84":1}}],["ndays",{"2":{"74":4}}],["nlon",{"2":{"82":2,"83":1}}],["npy",{"2":{"73":2,"74":2}}],["ntuple",{"2":{"65":2}}],["ntr",{"2":{"65":1}}],["nthreads",{"2":{"64":2}}],["nin",{"2":{"65":2}}],["nvalid",{"2":{"64":1}}],["nbsp",{"2":{"60":1,"64":24,"65":24}}],["n",{"2":{"52":1,"64":3}}],["n256",{"2":{"41":1}}],["natively",{"2":{"73":1}}],["nan",{"2":{"35":1}}],["namely",{"2":{"73":1}}],["name=cube",{"2":{"64":1}}],["namedtuple",{"2":{"64":1,"65":3}}],["named",{"2":{"46":1,"48":1,"49":1,"53":1,"64":2,"72":1}}],["names",{"0":{"24":1,"30":1,"32":1},"1":{"31":1,"32":1},"2":{"21":2,"38":1,"53":2,"64":2,"65":1}}],["name",{"0":{"31":1},"2":{"1":1,"24":1,"41":1,"43":3,"44":4,"47":8,"48":12,"49":12,"50":20,"56":1,"64":6,"65":4,"71":1}}],["nc",{"2":{"35":2,"44":2,"46":2,"57":2,"59":2}}],["number",{"2":{"34":1,"39":1,"64":2,"65":1,"74":1}}],["numbers",{"2":{"9":1,"27":1,"71":1}}],["nout",{"2":{"65":2}}],["normal",{"2":{"64":1,"84":1}}],["north",{"2":{"45":1}}],["november",{"2":{"44":1,"46":1,"57":1,"61":1}}],["nov",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["nonmissingtype",{"2":{"65":1}}],["nonthreaded",{"2":{"28":2}}],["non",{"2":{"15":1,"64":1,"65":1,"73":1}}],["now",{"2":{"14":1,"26":1,"27":1,"29":1,"36":1,"37":1,"39":1,"41":1,"68":1,"73":1}}],["no",{"2":{"13":1,"19":1,"62":1,"64":1}}],["notation",{"2":{"50":1}}],["nothing",{"2":{"41":3,"60":1,"64":1,"65":1}}],["note",{"2":{"8":1,"12":1,"14":1,"37":1,"64":1,"65":1}}],["not",{"2":{"0":1,"12":1,"35":1,"62":1,"64":2,"65":3}}],["neighbour",{"2":{"64":1}}],["neighboring",{"2":{"12":1}}],["needed",{"2":{"64":1}}],["need",{"2":{"64":1,"65":1,"67":1}}],["near",{"2":{"43":2,"50":1,"80":1}}],["necessary",{"2":{"34":1,"35":1,"65":4}}],["next",{"2":{"28":1,"29":1,"38":1,"68":2}}],["netcdf",{"0":{"44":1,"59":1},"2":{"19":1,"33":1,"44":4,"46":2,"54":3,"57":2,"59":3,"60":1,"64":1}}],["new",{"0":{"8":1},"2":{"9":1,"11":1,"21":1,"35":1,"38":1,"55":1,"60":1,"61":1,"64":5,"65":4,"67":6,"74":1}}],["bits",{"2":{"64":2}}],["big",{"2":{"53":1}}],["black",{"2":{"75":1}}],["blocks",{"2":{"64":1}}],["blue",{"2":{"45":1,"54":1}}],["bonito",{"2":{"84":1}}],["boundaries",{"2":{"65":1}}],["bounds",{"2":{"64":1}}],["bool=true",{"2":{"65":1}}],["bool=false",{"2":{"64":1,"65":1}}],["bool",{"2":{"65":6}}],["boolean",{"2":{"64":3}}],["bold",{"2":{"41":1}}],["build",{"0":{"68":1},"2":{"68":1}}],["bug",{"2":{"66":1}}],["bundle",{"2":{"54":1}}],["but",{"2":{"7":1,"24":1,"48":1,"49":1,"64":2,"73":1}}],["bwr",{"2":{"41":1}}],["broad",{"2":{"77":1}}],["broadcasts",{"2":{"65":1}}],["broadcasted",{"2":{"64":1,"65":1}}],["broadcast",{"2":{"36":1,"41":1}}],["brown",{"2":{"75":1}}],["browser",{"2":{"68":1}}],["brightness",{"2":{"53":1,"54":1}}],["brings",{"2":{"65":1}}],["bring",{"2":{"25":1}}],["branch",{"2":{"43":1,"80":1}}],["b",{"2":{"14":13,"32":2,"50":2}}],["backgroundcolor=",{"2":{"84":1}}],["back",{"2":{"64":1}}],["backendlist",{"2":{"64":1}}],["backend",{"2":{"60":2,"64":8}}],["backend=",{"2":{"1":1,"61":1}}],["based",{"0":{"79":1},"2":{"65":1}}],["base",{"0":{"17":1},"2":{"3":4,"4":4,"5":2,"17":4,"21":3,"24":9,"31":1,"32":5,"62":2,"65":1,"71":2}}],["by=",{"2":{"29":2,"64":2}}],["bytes",{"2":{"7":1,"8":1,"13":1,"14":1,"17":1,"19":1,"25":1,"27":1,"29":2,"39":1,"48":2,"62":1,"71":1}}],["by",{"0":{"3":1,"4":1},"2":{"1":1,"9":2,"13":1,"14":1,"20":1,"21":1,"27":5,"29":1,"34":1,"38":1,"39":1,"40":1,"41":1,"43":1,"53":3,"55":1,"56":1,"60":1,"64":12,"65":6,"67":1,"68":1,"70":1,"74":1}}],["beware",{"2":{"76":1}}],["best",{"2":{"65":1,"78":1}}],["become",{"2":{"64":1}}],["because",{"2":{"0":1,"12":1,"13":1}}],["before",{"2":{"64":1,"68":1}}],["belonging",{"2":{"54":1}}],["belongs",{"2":{"14":1}}],["between",{"2":{"18":1,"19":1,"50":1,"64":1}}],["begin",{"2":{"15":1}}],["be",{"2":{"1":1,"2":1,"3":1,"12":1,"14":2,"16":1,"28":1,"29":2,"35":1,"43":2,"44":1,"45":1,"51":1,"53":1,"55":2,"60":1,"61":1,"64":22,"65":8,"67":1,"72":1,"76":1,"80":1}}],["600",{"2":{"73":2,"75":1,"81":1,"82":1,"83":1}}],["603915",{"2":{"71":1}}],["602762",{"2":{"71":1}}],["60265",{"2":{"43":1,"80":1}}],["625771",{"2":{"71":1}}],["623339",{"2":{"19":1}}],["692262",{"2":{"71":1}}],["694598",{"2":{"71":1}}],["69",{"2":{"43":1}}],["6326",{"2":{"45":1}}],["6378137",{"2":{"45":1}}],["631004",{"2":{"19":1}}],["636742",{"2":{"18":1}}],["642",{"2":{"35":1}}],["642404",{"2":{"14":1}}],["641973",{"2":{"18":1}}],["653268",{"2":{"18":1}}],["6×6×25",{"2":{"18":2}}],["6×2",{"2":{"8":1}}],["687355",{"2":{"71":1}}],["680141",{"2":{"17":1}}],["685585",{"2":{"14":1}}],["6",{"2":{"1":6,"3":6,"4":6,"5":6,"7":4,"8":5,"14":1,"25":1,"27":1,"43":1,"80":1}}],["1e8",{"2":{"65":1}}],["14566211980677987",{"2":{"74":1}}],["141775",{"2":{"71":1}}],["14",{"2":{"19":1}}],["142095",{"2":{"18":1}}],["14286",{"2":{"14":1}}],["13767647843279568",{"2":{"74":1}}],["137499",{"2":{"19":1}}],["136",{"2":{"44":1,"46":1,"57":1,"61":1}}],["13z",{"2":{"43":2,"80":1}}],["13",{"2":{"19":1,"44":1,"46":1,"57":1,"61":1}}],["132326",{"2":{"18":1}}],["192",{"2":{"82":1}}],["19760851260255663",{"2":{"74":1}}],["197966",{"2":{"19":1}}],["19",{"2":{"49":3,"50":5}}],["1984",{"2":{"45":1}}],["1983",{"2":{"39":1}}],["1980",{"2":{"39":1}}],["195108",{"2":{"19":1}}],["195559",{"2":{"17":1}}],["191514",{"2":{"18":1}}],["199195",{"2":{"18":1}}],["193177",{"2":{"14":1}}],["185747",{"2":{"71":1}}],["180×170",{"2":{"48":1}}],["180×170×24",{"2":{"44":1,"47":2}}],["180",{"2":{"45":1,"50":5,"82":1}}],["189652",{"2":{"18":1}}],["188793",{"2":{"17":1}}],["188519",{"2":{"14":1}}],["184858",{"2":{"17":1}}],["184589",{"2":{"14":1}}],["170539",{"2":{"71":1}}],["170",{"2":{"51":1}}],["179",{"2":{"45":1,"50":5}}],["17578125",{"2":{"45":2}}],["17t00",{"2":{"39":1}}],["17",{"2":{"13":1,"29":1,"49":1}}],["160579854546293",{"2":{"74":1}}],["1638237056184001",{"2":{"74":1}}],["16t00",{"2":{"44":4,"46":2,"47":4,"48":4,"49":6,"50":10,"57":2,"61":2}}],["16t12",{"2":{"39":1}}],["165311",{"2":{"19":1}}],["16588",{"2":{"14":1}}],["169676",{"2":{"18":1}}],["169472",{"2":{"14":1}}],["16",{"2":{"9":1,"11":1,"12":1,"14":1,"21":1,"44":2,"46":1,"47":2,"48":4,"49":3,"50":5,"57":1,"61":1}}],["158222",{"2":{"71":1}}],["15801",{"2":{"19":1}}],["150096",{"2":{"71":1}}],["159",{"2":{"49":1}}],["154983",{"2":{"17":1}}],["151078",{"2":{"14":1}}],["15",{"2":{"9":1,"14":6,"15":1,"19":4,"21":1,"22":1,"26":2,"29":1,"71":1}}],["1200",{"2":{"81":1,"82":1,"83":1}}],["128",{"2":{"84":1}}],["12859803026876504",{"2":{"74":1}}],["12836",{"2":{"71":1}}],["1228349539422174",{"2":{"74":1}}],["12203",{"2":{"14":1}}],["12",{"2":{"7":4,"19":1,"27":10,"44":2,"46":1,"47":2,"48":2,"49":3,"50":5,"57":1,"61":1,"73":1,"74":2}}],["1=5",{"2":{"1":1}}],["119",{"2":{"48":1}}],["11943",{"2":{"18":1}}],["118944",{"2":{"18":1}}],["11",{"2":{"1":6,"3":6,"4":6,"5":6,"7":1,"19":1,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1}}],["1",{"2":{"1":12,"3":19,"4":20,"5":22,"7":5,"8":3,"9":8,"10":3,"11":7,"12":5,"13":6,"14":34,"15":3,"17":1,"18":7,"19":6,"21":15,"22":4,"24":3,"25":8,"26":8,"27":23,"28":15,"29":14,"31":1,"32":3,"36":4,"37":2,"39":10,"40":10,"41":18,"43":4,"44":8,"46":4,"47":8,"48":13,"49":18,"50":15,"51":2,"57":4,"61":11,"62":1,"65":1,"71":11,"73":5,"74":5,"75":6,"80":3,"82":4,"83":2,"84":5}}],["1000",{"2":{"82":1,"83":1}}],["10053995320755664",{"2":{"74":1}}],["10432166011250354",{"2":{"74":1}}],["1095",{"2":{"74":1}}],["10mb",{"2":{"64":2}}],["10×20",{"2":{"62":1}}],["10×20×5",{"2":{"21":1}}],["10×170×24",{"2":{"49":1}}],["10×10×24",{"2":{"49":2}}],["10×10×8",{"2":{"27":1}}],["10×10×12",{"2":{"27":1}}],["10×10×36",{"2":{"27":1}}],["10×10×5",{"2":{"24":1}}],["10×10",{"2":{"25":1,"27":1}}],["10×15×20",{"2":{"28":1}}],["10×15",{"2":{"13":1,"14":2,"29":1,"71":1}}],["101167",{"2":{"17":1}}],["10x15",{"2":{"14":1}}],["10",{"2":{"1":14,"3":16,"4":18,"5":17,"9":3,"11":1,"12":1,"13":1,"14":15,"15":3,"17":2,"19":4,"21":6,"22":2,"24":8,"25":5,"26":4,"27":16,"28":3,"29":2,"31":2,"32":4,"43":1,"44":1,"47":2,"48":3,"49":6,"50":5,"61":2,"62":2,"70":1,"71":3}}],["garbage",{"2":{"65":1}}],["gc",{"2":{"65":2}}],["gt",{"2":{"64":1,"65":3,"68":1}}],["gdalworkshop",{"2":{"45":1}}],["gdal",{"0":{"45":1},"2":{"45":1}}],["gb",{"2":{"43":1}}],["gn",{"2":{"43":1,"80":2}}],["gs",{"2":{"43":1,"80":2}}],["go",{"2":{"68":2}}],["going",{"2":{"65":1}}],["goes",{"2":{"64":1,"65":1}}],["good",{"2":{"41":1}}],["goal",{"2":{"34":1}}],["ggplot2",{"2":{"41":1}}],["github",{"2":{"35":2,"45":1,"66":1}}],["gives",{"2":{"14":1}}],["given",{"2":{"1":1,"14":2,"53":1,"55":1,"60":1,"64":6,"65":3,"71":1}}],["global",{"2":{"64":1}}],["glmakie",{"2":{"29":2,"80":2}}],["glue",{"2":{"7":1}}],["gradient",{"2":{"81":1,"82":1,"83":1,"84":1}}],["gradually",{"2":{"62":1}}],["grey25",{"2":{"84":1}}],["grey15",{"2":{"29":1,"41":1}}],["greenwich",{"2":{"45":1}}],["green",{"2":{"45":1,"54":1}}],["grouped",{"2":{"64":1}}],["groups",{"2":{"40":1}}],["groupby",{"0":{"36":1,"39":1},"1":{"37":1,"38":1,"40":1,"41":1},"2":{"33":1,"35":1,"36":6,"37":1,"38":1,"39":3,"40":2,"41":3,"64":1,"74":1}}],["group",{"0":{"33":1},"1":{"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1},"2":{"36":2,"37":1,"38":1,"39":3,"40":1,"41":3,"54":1,"64":3}}],["grouping",{"2":{"29":2,"38":2}}],["grid=false",{"2":{"41":1}}],["grid",{"2":{"15":1,"53":1,"64":1}}],["gridchunks",{"2":{"1":3,"3":1,"4":1,"5":1,"64":1,"65":1}}],["guide",{"2":{"9":2,"11":1,"12":1,"15":1,"21":3,"22":1}}],["general",{"0":{"77":1},"2":{"64":1}}],["generate",{"2":{"64":1,"68":1}}],["generated",{"2":{"44":1,"46":1,"57":1,"61":1,"65":1}}],["generic",{"2":{"21":1}}],["getting",{"0":{"69":1},"1":{"70":1,"71":1,"72":1}}],["getarrayinfo",{"2":{"65":1}}],["getaxis",{"2":{"25":1,"29":2,"64":1}}],["getloopchunks",{"2":{"65":1}}],["getloopcachesize",{"2":{"65":1}}],["getouttype",{"2":{"65":1}}],["getoutaxis",{"2":{"65":1}}],["getfrontperm",{"2":{"65":1}}],["gets",{"2":{"64":1,"65":1}}],["get",{"0":{"51":1},"2":{"9":1,"24":1,"35":1,"39":1,"47":1,"49":1,"51":1,"65":3,"71":2,"74":1,"80":1}}],["geoaxis",{"2":{"82":1,"83":1}}],["geometrybasics",{"2":{"80":1}}],["geomakie",{"2":{"80":1,"82":2,"83":1}}],["geogcs",{"2":{"45":1}}],["geojson",{"0":{"45":1}}],["geotiff",{"0":{"45":1}}],["geo",{"2":{"0":1}}],["g",{"2":{"6":1,"9":1,"10":1,"12":1,"15":1,"21":1,"36":26,"37":2,"38":2,"39":2,"40":1,"41":18,"51":1,"53":1,"56":1,"64":5,"80":2}}],["2π",{"2":{"73":1}}],["2×3",{"2":{"71":1}}],["2×2×3",{"2":{"3":1,"4":1,"5":1}}],["2×2",{"2":{"1":3}}],["2x2l31",{"2":{"44":1,"46":1,"57":1,"61":1}}],["24",{"2":{"29":1,"48":2}}],["240089",{"2":{"19":1}}],["240",{"2":{"13":1,"19":1}}],["23",{"2":{"28":3,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1}}],["21t06",{"2":{"43":2,"80":1}}],["2101",{"2":{"43":2,"80":1}}],["216921",{"2":{"19":1}}],["211217",{"2":{"14":1}}],["297248",{"2":{"71":1}}],["298",{"2":{"45":1}}],["291321",{"2":{"18":1}}],["29",{"2":{"18":2}}],["275×205",{"2":{"37":4,"41":8}}],["275×205×1",{"2":{"36":4}}],["275×205×9",{"2":{"36":4}}],["27",{"2":{"18":2}}],["254352",{"2":{"71":1}}],["254154",{"2":{"71":1}}],["250507",{"2":{"71":1}}],["257223563",{"2":{"45":1}}],["258517",{"2":{"18":1}}],["25",{"2":{"18":10,"27":1,"73":2}}],["252348",{"2":{"14":1}}],["221616",{"2":{"17":1}}],["260353",{"2":{"71":1}}],["267019",{"2":{"18":1}}],["26",{"2":{"18":2,"43":2,"80":1}}],["262421",{"2":{"17":1}}],["268218",{"2":{"14":1}}],["28422753251364",{"2":{"43":4,"80":2}}],["288",{"2":{"39":1}}],["28",{"2":{"18":2,"27":1}}],["280057",{"2":{"14":1}}],["28571",{"2":{"14":2}}],["2857142857142857",{"2":{"9":1,"11":1,"12":1,"13":1,"14":3,"21":2,"22":1,"26":1,"28":3,"29":1,"71":1}}],["2=10",{"2":{"1":1}}],["2",{"2":{"1":3,"3":8,"4":9,"5":10,"7":1,"8":1,"10":3,"11":2,"12":1,"13":1,"14":9,"15":1,"17":2,"19":3,"21":1,"24":3,"25":3,"27":1,"29":6,"32":4,"36":1,"37":1,"41":5,"43":3,"44":3,"46":1,"47":4,"48":2,"49":2,"50":5,"51":2,"57":1,"61":2,"62":2,"64":2,"71":5,"80":3,"82":2,"84":1}}],["203286",{"2":{"71":1}}],["203837",{"2":{"14":1}}],["2003",{"2":{"44":1,"46":1,"57":1,"61":1}}],["2004",{"2":{"44":1,"46":1,"57":1,"61":1}}],["2005",{"2":{"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1}}],["2002",{"2":{"44":3,"46":2,"47":2,"48":2,"49":3,"50":5,"57":2,"61":1}}],["2001",{"2":{"44":3,"46":2,"47":2,"48":3,"49":3,"50":5,"57":2,"61":1}}],["2000",{"2":{"18":4}}],["2019",{"2":{"43":2,"80":1}}],["201955",{"2":{"17":1}}],["2015",{"2":{"43":2,"44":1,"46":1,"57":1,"61":1,"80":2}}],["20×10×15",{"2":{"28":2}}],["20×10×15×2",{"2":{"26":1,"71":1}}],["2023",{"2":{"73":1,"74":2}}],["2021",{"2":{"27":9,"73":1,"74":2,"75":1}}],["2020",{"2":{"27":5,"55":1}}],["2024",{"2":{"18":4}}],["2022",{"2":{"9":4,"11":2,"12":2,"13":2,"14":6,"15":2,"21":6,"22":2,"27":5,"75":1}}],["205039",{"2":{"14":1}}],["20",{"2":{"1":7,"3":10,"4":10,"5":10,"21":2,"26":4,"28":3,"29":1,"41":1,"61":2,"62":2,"71":3}}],["592717",{"2":{"71":1}}],["593137",{"2":{"17":1}}],["5173",{"2":{"68":1}}],["5e8",{"2":{"60":1,"64":1}}],["53",{"2":{"48":1}}],["538756",{"2":{"71":1}}],["538712",{"2":{"17":1}}],["538022",{"2":{"18":1}}],["500686",{"2":{"71":1}}],["500",{"2":{"41":1,"84":2}}],["548293",{"2":{"71":1}}],["548087",{"2":{"14":1}}],["544755",{"2":{"19":1}}],["55",{"2":{"74":1}}],["550851",{"2":{"19":1}}],["551051",{"2":{"17":1}}],["5×6×36",{"2":{"27":1}}],["5×6",{"2":{"19":2}}],["5×10",{"2":{"17":2}}],["529395",{"2":{"71":1}}],["527791",{"2":{"18":1}}],["528733",{"2":{"14":1}}],["568233",{"2":{"17":1}}],["580733",{"2":{"19":1}}],["580583",{"2":{"18":1}}],["585497",{"2":{"19":1}}],["581175",{"2":{"14":1}}],["584464",{"2":{"14":1}}],["573784",{"2":{"17":1}}],["57312",{"2":{"14":1}}],["572336",{"2":{"14":1}}],["57143",{"2":{"14":2}}],["5",{"2":{"1":7,"3":16,"4":18,"5":7,"9":2,"11":3,"12":2,"13":1,"14":10,"15":1,"17":2,"19":4,"21":5,"22":1,"24":4,"25":1,"26":2,"27":3,"28":3,"29":2,"32":4,"41":5,"44":4,"46":2,"47":4,"48":3,"49":10,"50":10,"51":19,"57":2,"61":4,"71":2,"72":1,"75":2,"84":2}}],["rotate",{"2":{"84":1}}],["row",{"2":{"56":1,"64":1}}],["rowgap",{"2":{"41":1}}],["right",{"2":{"73":1,"75":1}}],["r",{"2":{"62":1}}],["r1i1p1f1",{"2":{"43":2,"80":3}}],["running",{"2":{"28":2,"68":1}}],["run",{"2":{"15":1,"68":3}}],["runs",{"2":{"12":1,"65":1}}],["rafaqz",{"2":{"35":1}}],["raw",{"2":{"35":1,"45":1}}],["rasm",{"2":{"35":2}}],["ras",{"2":{"18":3}}],["rasters",{"2":{"18":2}}],["raster",{"0":{"18":1},"2":{"14":11,"18":5}}],["ranges",{"0":{"49":1},"2":{"25":1,"46":1}}],["range",{"2":{"9":2,"14":2,"15":2,"21":2,"26":3,"27":2,"65":1,"71":3,"73":2}}],["randn",{"2":{"73":1}}],["random",{"2":{"71":1}}],["rand",{"2":{"1":1,"3":3,"4":3,"5":3,"7":2,"8":2,"9":1,"14":1,"15":1,"17":1,"18":1,"19":1,"21":2,"22":1,"24":1,"26":2,"29":1,"31":1,"32":3,"61":1,"71":2}}],["recommend",{"2":{"72":1}}],["recommended",{"2":{"50":1}}],["rechunking",{"2":{"65":1}}],["recalculate",{"2":{"65":1}}],["recal",{"2":{"65":1}}],["relational",{"2":{"53":1}}],["related",{"2":{"35":1}}],["requests",{"2":{"66":1}}],["requested",{"2":{"12":1}}],["requirements",{"2":{"44":1,"46":1,"57":1,"61":1}}],["rewrote",{"2":{"43":1,"44":1,"46":1,"57":1,"61":1,"80":1}}],["realization",{"2":{"44":1,"46":1,"57":1,"61":1}}],["realm",{"2":{"43":1,"80":1}}],["readcubedata",{"2":{"64":1}}],["read",{"0":{"42":1,"43":1,"44":1,"45":1},"1":{"43":1,"44":1,"45":1},"2":{"0":1,"35":1,"42":1,"45":1,"49":1,"64":1}}],["red",{"2":{"41":1,"45":1,"54":1}}],["reduce",{"2":{"9":1,"13":1}}],["reverse",{"2":{"41":1}}],["reverseordered",{"2":{"8":1,"45":1,"71":1}}],["removes",{"2":{"65":1}}],["remove",{"2":{"37":1}}],["removed",{"2":{"14":1,"65":1}}],["resolution",{"2":{"73":2}}],["resets",{"2":{"64":1,"65":1}}],["respectively",{"2":{"54":1}}],["reshape",{"2":{"27":1}}],["result",{"2":{"25":1,"29":1}}],["resulting",{"2":{"7":1,"8":1,"13":1,"64":1,"65":1}}],["results",{"0":{"75":1},"2":{"1":1,"4":1,"41":2,"64":1,"65":1}}],["reference",{"0":{"63":1},"1":{"64":1,"65":1}}],["references",{"2":{"44":1,"46":1,"57":1,"61":1}}],["ref",{"2":{"26":1,"64":1,"65":1}}],["rebuild",{"2":{"24":1,"35":1}}],["repeat",{"2":{"73":1}}],["repl",{"2":{"70":1}}],["replace",{"2":{"15":1,"35":1,"84":1}}],["repository",{"2":{"66":1,"76":1}}],["reports",{"2":{"66":1}}],["reproduces",{"2":{"34":1}}],["represented",{"2":{"64":1,"78":1}}],["represents",{"2":{"54":1}}],["representing",{"2":{"14":2,"65":1}}],["representation",{"2":{"0":1,"64":2,"65":3}}],["re",{"2":{"14":1}}],["returned",{"2":{"64":1}}],["returns",{"2":{"64":5,"65":2}}],["return",{"2":{"14":4,"36":1,"64":1,"65":1,"73":1,"74":1}}],["registration",{"2":{"65":2}}],["registered",{"2":{"65":1}}],["regions",{"2":{"14":8}}],["region",{"2":{"14":12}}],["regular",{"2":{"3":4,"4":4,"5":2,"7":1,"8":1,"9":3,"11":3,"12":3,"13":3,"14":8,"17":2,"18":6,"19":4,"21":9,"22":3,"24":9,"25":2,"26":3,"27":14,"28":9,"29":3,"31":1,"32":5,"43":2,"44":4,"45":2,"46":2,"47":4,"48":2,"49":3,"50":10,"51":2,"57":2,"61":5,"62":2,"71":5,"74":1,"80":1}}],["regularchunks",{"2":{"1":6,"3":3,"4":3,"5":3}}],["=interval",{"2":{"50":2}}],["==",{"2":{"11":1,"74":1}}],["=>nan",{"2":{"84":1}}],["=>",{"2":{"9":2,"11":1,"12":1,"14":5,"15":1,"21":3,"22":3,"31":1,"32":1,"35":1,"36":5,"37":1,"39":3,"40":2,"41":3,"43":20,"44":20,"45":1,"46":10,"47":20,"48":30,"49":30,"50":50,"57":10,"61":10,"71":6,"80":10}}],["=>2",{"2":{"3":1}}],["=>10",{"2":{"3":1}}],["=>5",{"2":{"3":1,"4":1}}],["=",{"2":{"1":4,"3":9,"4":15,"5":9,"7":5,"8":5,"9":4,"10":1,"11":1,"12":1,"14":16,"15":5,"17":3,"18":8,"19":4,"21":5,"22":4,"24":1,"26":6,"27":7,"28":1,"29":7,"31":1,"32":3,"35":8,"36":16,"37":1,"38":1,"39":4,"40":1,"41":22,"43":2,"44":2,"45":2,"46":2,"47":2,"48":6,"49":6,"50":3,"57":2,"60":8,"61":2,"62":2,"64":11,"65":7,"71":5,"73":18,"74":11,"75":7,"80":8,"81":5,"82":7,"83":5,"84":6}}],["oob",{"2":{"64":1}}],["o1",{"2":{"44":2,"46":2,"57":2,"61":1}}],["ocean",{"2":{"44":1,"46":1,"57":1,"61":1}}],["oct",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["occuring",{"2":{"3":1}}],["o",{"2":{"35":4,"41":4,"64":5}}],["ouput",{"2":{"68":1}}],["our",{"2":{"28":1,"29":1,"74":1}}],["outcube",{"2":{"65":1}}],["outcubes",{"2":{"65":1}}],["outcs",{"2":{"65":1}}],["outsize",{"2":{"65":1}}],["outar",{"2":{"65":2}}],["outtype",{"2":{"64":1,"65":2}}],["outdims",{"2":{"64":6}}],["outdims=outdims",{"2":{"14":1,"15":1}}],["out",{"2":{"35":1,"64":2,"65":1}}],["outputcube",{"2":{"65":3}}],["output",{"2":{"5":1,"14":1,"15":3,"44":1,"46":1,"57":1,"61":1,"64":11,"65":9,"73":1,"84":1}}],["ommiting",{"2":{"27":1}}],["omit",{"2":{"15":1}}],["optimal",{"2":{"65":1}}],["optifunc",{"2":{"65":1}}],["optionally",{"2":{"64":1}}],["options",{"2":{"25":1}}],["operation",{"2":{"65":1}}],["operations",{"2":{"9":1,"36":1,"64":2,"65":3}}],["operates",{"2":{"64":1}}],["openinterval",{"2":{"50":1}}],["open",{"0":{"50":1},"2":{"43":2,"44":2,"45":1,"46":2,"50":2,"57":1,"61":1,"64":3,"80":1}}],["obj",{"2":{"29":2,"73":1,"75":1}}],["objects",{"2":{"64":2}}],["object",{"2":{"10":1,"43":1,"64":5,"65":3,"73":1}}],["obtain",{"0":{"25":1},"2":{"38":1}}],["otherwise",{"2":{"64":1}}],["other",{"0":{"76":1},"1":{"77":1,"78":1,"79":1},"2":{"16":1,"76":1,"78":1}}],["overview",{"0":{"77":1},"2":{"76":1,"77":1}}],["overwrite=true",{"2":{"60":2}}],["overwrite",{"0":{"60":1},"2":{"60":3,"64":4,"65":2}}],["over",{"0":{"78":1},"2":{"9":1,"14":1,"15":1,"41":1,"64":8,"65":1,"78":1}}],["offline=true",{"2":{"84":1}}],["offsets",{"2":{"65":1}}],["offset",{"2":{"12":1}}],["often",{"2":{"6":1}}],["of",{"0":{"10":1,"34":1,"77":2},"2":{"0":1,"5":1,"7":3,"8":1,"9":2,"10":1,"11":1,"12":2,"13":1,"14":8,"15":3,"16":1,"18":1,"19":1,"23":3,"24":4,"27":1,"28":1,"29":1,"34":1,"35":1,"39":1,"44":1,"46":3,"47":1,"49":1,"51":1,"53":7,"54":1,"55":2,"56":2,"57":1,"61":1,"62":1,"63":1,"64":50,"65":41,"71":1,"72":2,"74":2,"76":1,"77":1}}],["ormax",{"2":{"64":1}}],["orca2",{"2":{"44":1,"46":1,"57":1,"61":1}}],["order",{"2":{"34":1,"73":1}}],["ordered",{"2":{"53":1,"54":1}}],["ordereddict",{"2":{"14":1}}],["orderedcollections",{"2":{"14":1}}],["orangered",{"2":{"29":1}}],["original",{"2":{"44":2,"47":4,"48":6,"49":6,"50":10}}],["originates",{"2":{"8":1}}],["origin",{"2":{"9":2,"11":1,"12":1,"15":1,"21":3,"22":1,"71":2}}],["or",{"2":{"0":2,"5":1,"9":1,"12":2,"14":1,"19":1,"43":1,"46":2,"53":3,"56":2,"60":1,"64":21,"65":7,"70":1,"71":2}}],["once",{"2":{"41":1,"55":1,"65":1,"67":1}}],["onlinestat",{"2":{"64":2}}],["onlinestats",{"2":{"29":2}}],["only",{"2":{"5":1,"12":1,"13":1,"14":1,"16":1,"21":2,"28":1,"62":1,"64":2}}],["one",{"0":{"31":1},"2":{"6":1,"7":2,"13":2,"14":2,"29":1,"37":1,"53":2,"54":1,"62":1,"64":8,"65":3,"76":1}}],["oneto",{"2":{"3":4,"4":4,"5":2,"17":2,"21":3,"24":9,"31":1,"32":5,"62":2,"71":2}}],["on",{"2":{"0":2,"5":1,"6":1,"9":2,"12":2,"15":2,"23":1,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"53":1,"57":1,"61":1,"62":1,"64":5,"65":4}}],["dc",{"2":{"65":2}}],["dkrz",{"2":{"43":1,"80":2}}],["drivers",{"2":{"64":1}}],["driver",{"2":{"60":2,"64":6}}],["driver=",{"2":{"3":1,"4":1,"5":1,"58":2,"59":2,"60":3,"61":1,"62":1,"64":3}}],["drop",{"2":{"41":1}}],["dropdims",{"0":{"37":1},"2":{"36":2,"37":2,"41":1}}],["dufresne",{"2":{"44":1,"46":1,"57":1,"61":1}}],["due",{"2":{"38":1}}],["dummy",{"2":{"26":1,"27":1,"73":1,"74":1}}],["during",{"2":{"14":1,"15":1,"16":1}}],["dd",{"2":{"24":1,"74":1}}],["d",{"2":{"14":5,"41":3,"74":1}}],["dash",{"2":{"75":1}}],["danger",{"2":{"60":1}}],["daysinmonth",{"2":{"36":1,"39":1}}],["days",{"2":{"34":1,"36":2,"38":1,"39":2,"40":2}}],["day",{"2":{"9":2,"11":1,"12":1,"13":1,"14":3,"15":1,"21":3,"22":1,"73":1,"74":4}}],["datconfig",{"2":{"65":2}}],["datset",{"2":{"64":1}}],["dat",{"2":{"64":8,"65":16}}],["datum",{"2":{"45":1}}],["datetime360day",{"2":{"44":6,"46":3,"47":6,"48":7,"49":9,"50":15,"57":3,"61":3}}],["datetime",{"2":{"43":2,"80":1}}],["datetimenoleap",{"2":{"39":3}}],["date",{"2":{"9":5,"11":3,"12":3,"13":3,"14":11,"15":3,"21":8,"22":3,"27":24,"53":1,"73":2,"74":5,"80":1}}],["datesid",{"2":{"74":2}}],["dates",{"2":{"9":2,"11":1,"12":1,"13":1,"14":3,"15":1,"21":3,"22":1,"27":7,"33":1,"55":1,"73":6,"74":2,"80":1}}],["data=cube1",{"2":{"64":1}}],["databases",{"2":{"53":1}}],["dataframe",{"2":{"29":1,"64":1}}],["dataframes",{"2":{"29":1}}],["datacubes",{"2":{"64":1}}],["datacube",{"0":{"79":1},"2":{"29":2,"62":1,"64":1}}],["data1",{"2":{"26":2}}],["data3",{"2":{"22":1}}],["data2",{"2":{"21":2,"26":2}}],["datasetaxis",{"2":{"64":2}}],["datasetaxis=",{"2":{"64":1,"65":1}}],["dataset",{"0":{"22":1,"30":1,"54":1,"60":1,"61":1},"1":{"31":1,"32":1},"2":{"2":1,"3":4,"4":2,"5":3,"8":1,"9":1,"16":1,"22":2,"31":2,"32":2,"43":3,"44":3,"45":3,"46":3,"47":1,"54":3,"55":2,"57":3,"58":1,"59":1,"60":3,"61":4,"64":18,"65":7,"80":2}}],["datasets",{"0":{"2":1,"20":1,"33":1,"42":1,"46":1,"57":1},"1":{"3":1,"4":1,"5":1,"21":1,"22":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"43":1,"44":1,"45":1,"47":1,"48":1,"49":1,"50":1,"51":1,"58":1,"59":1,"60":1,"61":1,"62":1},"2":{"16":1,"20":1,"42":1,"60":1,"64":8,"65":4,"78":1}}],["data",{"0":{"25":1,"35":1,"55":1},"2":{"0":2,"6":1,"7":1,"9":2,"10":1,"14":2,"15":2,"17":1,"18":1,"25":1,"29":2,"35":8,"43":2,"44":4,"46":3,"47":2,"48":3,"49":3,"50":5,"52":1,"53":3,"54":2,"55":3,"57":3,"60":2,"61":3,"62":3,"64":20,"65":12,"71":4,"72":1,"73":2,"74":1,"78":4,"80":5,"82":1}}],["details",{"2":{"71":1}}],["detect",{"2":{"64":1,"65":1}}],["determined",{"2":{"65":1}}],["determines",{"2":{"64":1}}],["determine",{"2":{"0":1,"64":1}}],["dev",{"2":{"68":1}}],["dependencies",{"2":{"68":1}}],["defaultfillval",{"2":{"65":1}}],["default",{"2":{"64":1,"65":4}}],["defaults",{"2":{"64":7}}],["definition",{"2":{"55":1}}],["defining",{"2":{"15":1}}],["defines",{"2":{"64":1}}],["define",{"0":{"74":1},"2":{"27":1,"29":1,"41":1,"64":2,"73":1}}],["defined",{"2":{"18":1,"19":1,"29":1,"41":1,"51":1,"53":1,"56":1,"71":1}}],["deletes",{"2":{"60":1,"64":1}}],["delete",{"2":{"60":2}}],["denoting",{"2":{"64":1}}],["dense",{"2":{"53":1}}],["denvil",{"2":{"44":2,"46":2,"57":2,"61":2}}],["degree",{"2":{"45":1}}],["degc",{"2":{"44":1,"47":2,"48":3,"49":3,"50":5}}],["dec",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["dest",{"2":{"83":1}}],["desired",{"2":{"65":4}}],["designed",{"2":{"16":2,"53":1}}],["descriptor",{"2":{"65":4}}],["descriptors",{"2":{"64":2}}],["descriptions",{"2":{"64":1}}],["description",{"2":{"64":4,"65":11}}],["described",{"2":{"78":1}}],["describe",{"2":{"64":2}}],["describes",{"2":{"6":1,"9":1,"16":1,"20":1,"42":1,"50":1,"52":1,"63":1,"65":1}}],["describing",{"2":{"64":1}}],["desc",{"2":{"64":3,"65":3}}],["demand",{"2":{"12":1}}],["dsw",{"2":{"36":2,"41":2}}],["dsfinal",{"2":{"26":1,"28":2,"29":2}}],["ds2",{"2":{"26":3,"28":1,"61":1}}],["ds1",{"2":{"26":3,"28":3,"29":1}}],["dschunked",{"2":{"3":3,"4":3,"5":3}}],["ds",{"2":{"3":2,"4":2,"5":2,"22":1,"31":1,"32":1,"35":5,"36":10,"39":1,"41":3,"43":1,"44":1,"45":1,"46":1,"47":2,"57":1,"58":3,"59":3,"60":3,"61":2,"64":3,"65":1,"84":2}}],["directory",{"2":{"43":1,"58":2,"59":2}}],["directories",{"2":{"42":1,"65":1}}],["directly",{"2":{"19":1,"20":1,"21":1}}],["diverging",{"2":{"41":1}}],["divided",{"2":{"28":1}}],["differing",{"2":{"64":1}}],["difference",{"2":{"41":1}}],["differences",{"2":{"36":1,"41":1,"65":1}}],["different",{"2":{"8":2,"15":1,"24":1,"34":1,"54":1,"64":3,"65":2,"76":1}}],["diff",{"2":{"36":2,"41":3}}],["disregard",{"2":{"65":1}}],["dispatch",{"2":{"65":1}}],["discribe",{"2":{"64":2}}],["distribute",{"2":{"15":1}}],["distributed",{"0":{"15":1},"2":{"15":2}}],["diskarray",{"2":{"64":1}}],["diskarrays",{"2":{"1":9,"3":4,"4":4,"5":4,"64":2,"65":1}}],["disk",{"2":{"0":1,"19":1,"53":1,"62":2,"64":1,"65":2}}],["dictionary",{"2":{"54":1,"64":3}}],["dict",{"2":{"3":1,"4":1,"7":1,"8":1,"9":2,"11":1,"12":1,"13":2,"14":4,"15":1,"17":1,"18":2,"19":3,"21":4,"22":2,"24":1,"25":1,"26":1,"27":5,"28":3,"29":3,"36":2,"37":1,"39":3,"40":2,"41":3,"43":2,"44":2,"45":1,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1,"62":1,"64":3,"71":3,"74":1,"80":1}}],["dime",{"2":{"43":1}}],["dimensional",{"2":{"52":1,"53":2,"64":1}}],["dimensionaldata",{"2":{"14":1,"19":2,"24":1,"33":1,"35":1,"49":1,"50":2,"51":3,"53":1,"56":1,"71":1,"72":3,"74":1,"80":1}}],["dimensions",{"2":{"8":1,"9":1,"12":1,"14":3,"15":1,"21":2,"26":1,"28":2,"35":1,"46":1,"51":2,"53":3,"54":1,"64":8,"65":3,"71":3,"72":1}}],["dimension",{"0":{"7":1,"8":1,"51":1,"56":1},"2":{"1":1,"7":2,"8":1,"9":1,"13":2,"14":3,"27":1,"37":1,"38":1,"41":1,"49":1,"51":1,"53":1,"55":1,"56":1,"64":3,"65":3,"71":1}}],["dimgroupbyarray",{"2":{"36":2,"37":1,"39":2,"40":1,"41":3}}],["dimarray",{"0":{"19":1},"2":{"14":3,"19":6,"40":1,"53":1}}],["dims=2",{"2":{"74":1}}],["dims=",{"2":{"13":2,"15":1,"28":1,"36":5,"37":1,"39":1,"41":1}}],["dims",{"2":{"7":3,"8":1,"9":1,"11":1,"12":1,"13":2,"14":4,"17":1,"18":3,"19":2,"21":2,"24":3,"25":1,"26":1,"27":5,"28":3,"29":3,"35":1,"36":7,"37":2,"39":6,"40":3,"41":8,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5,"62":1,"71":2,"74":1}}],["dim",{"2":{"1":2,"3":7,"4":8,"5":2,"7":2,"8":3,"9":3,"14":4,"15":3,"17":2,"19":2,"21":7,"24":9,"25":3,"26":4,"27":3,"31":1,"32":5,"61":3,"62":2,"71":4,"74":1}}],["dodgerblue",{"2":{"75":1}}],["dot",{"2":{"75":1}}],["documenter",{"2":{"84":1}}],["documentation",{"0":{"67":1},"1":{"68":1}}],["doc",{"2":{"60":1}}],["docstring",{"2":{"64":1}}],["docs",{"0":{"68":1},"2":{"54":1,"67":2,"68":6,"72":1}}],["download",{"0":{"35":1},"2":{"35":1,"44":2,"45":2,"46":2,"57":2}}],["downloads",{"2":{"33":1,"35":1,"44":1,"45":1,"46":1,"57":1}}],["done",{"2":{"28":1,"41":1,"67":2}}],["doing",{"2":{"15":1,"24":1,"25":1,"68":1}}],["doesn",{"2":{"73":1}}],["does",{"2":{"15":1,"62":1,"64":1,"65":1}}],["do",{"0":{"26":1,"27":1,"28":1,"29":1,"30":1},"1":{"31":1,"32":1},"2":{"0":1,"12":1,"14":3,"15":1,"23":2,"28":1,"34":1,"41":1,"65":1,"68":1,"70":1,"73":1}}],["switched",{"2":{"72":1}}],["syntax",{"2":{"72":1,"76":1}}],["system",{"2":{"68":1}}],["symbol",{"2":{"9":1,"11":1,"12":1,"21":2,"36":4,"37":2,"38":2,"39":4,"40":4,"41":6,"64":3,"65":1}}],["src",{"2":{"67":1}}],["sres",{"2":{"44":2,"46":2,"57":2,"61":2}}],["slightly",{"2":{"76":1}}],["slice",{"2":{"73":3,"80":4,"81":1}}],["slices",{"2":{"64":3}}],["slurmmanager",{"2":{"15":1}}],["skipped",{"2":{"64":1}}],["skip",{"2":{"64":1}}],["skipmissing",{"2":{"15":1,"28":1}}],["skeleton=true",{"2":{"62":1}}],["skeleton=false",{"2":{"60":1,"64":1}}],["skeleton",{"0":{"62":1},"2":{"62":3}}],["ssp585",{"2":{"43":1,"80":2}}],["scene",{"2":{"84":3}}],["scenarios",{"2":{"80":1}}],["scenariomip",{"2":{"43":1,"80":2}}],["scripts",{"2":{"68":1}}],["scope",{"2":{"64":1,"65":1}}],["scalar",{"2":{"43":1}}],["scattered",{"2":{"6":1}}],["snow3",{"2":{"29":1}}],["snippet",{"2":{"5":1}}],["small",{"2":{"23":1}}],["shinclude",{"2":{"68":1}}],["shdocs>",{"2":{"68":1}}],["shnpm",{"2":{"68":2}}],["should",{"2":{"35":1,"64":3,"65":1,"67":1,"68":1}}],["shown",{"2":{"64":1}}],["showprog",{"2":{"64":1}}],["shows",{"2":{"41":1}}],["show",{"2":{"15":1,"84":1}}],["shading=false",{"2":{"82":1,"83":1,"84":1}}],["shall",{"2":{"64":5,"65":1}}],["share",{"2":{"54":1,"64":1}}],["shared",{"2":{"3":1,"4":1,"5":1,"22":1,"26":1,"31":1,"32":1,"43":1,"44":1,"45":1,"46":1,"57":1,"61":1,"80":1}}],["shape",{"2":{"5":1}}],["sure",{"2":{"84":1}}],["surface",{"2":{"41":2,"43":2,"44":2,"47":5,"48":6,"49":6,"50":10,"82":1,"83":1}}],["such",{"2":{"50":1,"64":1,"72":1}}],["subcubes",{"2":{"64":1}}],["subtype",{"2":{"53":1,"65":1,"72":1}}],["subtables",{"2":{"29":1}}],["subsetextensions",{"2":{"65":1}}],["subsetcube",{"2":{"64":1}}],["subseting",{"2":{"51":1}}],["subsetting",{"2":{"43":1,"44":1,"65":1,"74":1}}],["subset",{"0":{"27":1},"2":{"27":4,"46":1,"49":1,"64":1,"65":1,"80":1}}],["subsets",{"2":{"14":1,"56":1}}],["supposed",{"2":{"64":1}}],["support",{"2":{"19":1,"73":1}}],["supertype",{"2":{"18":1,"19":1}}],["sum",{"2":{"14":2,"28":1,"36":4,"39":2,"40":4,"41":2}}],["suggestions",{"2":{"5":1}}],["s",{"2":{"9":1,"26":1,"27":1,"41":7,"46":1,"56":1,"64":2,"65":1,"74":1}}],["style",{"0":{"78":1}}],["st",{"2":{"72":1}}],["stdzero",{"2":{"64":1}}],["struct",{"2":{"64":1,"65":4}}],["structure",{"2":{"55":1}}],["structures",{"2":{"52":1}}],["string",{"2":{"7":1,"8":2,"9":1,"11":1,"12":1,"13":2,"14":6,"17":1,"18":2,"19":3,"21":3,"24":1,"25":1,"26":2,"27":5,"28":3,"29":3,"39":1,"41":1,"43":2,"44":2,"45":1,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"60":1,"61":1,"62":1,"64":6,"65":3,"71":4,"73":1,"74":1,"80":1}}],["storing",{"2":{"54":1}}],["stored",{"2":{"53":3,"65":1}}],["stores",{"2":{"53":1,"64":1}}],["store",{"2":{"43":4,"53":1,"54":1,"80":2}}],["storage",{"2":{"10":1,"43":1}}],["stable",{"2":{"72":1}}],["standard",{"2":{"43":1,"44":1,"47":2,"48":3,"49":3,"50":5}}],["standards",{"2":{"43":1,"44":1,"46":1,"57":1,"61":1,"80":1}}],["statistics",{"2":{"13":1,"15":1,"29":3,"33":1,"73":1}}],["started",{"0":{"69":1},"1":{"70":1,"71":1,"72":1}}],["start=12",{"2":{"36":2,"37":1,"39":2,"40":2,"41":3}}],["start=december",{"2":{"36":3,"39":1}}],["start",{"2":{"9":1,"27":1}}],["still",{"2":{"7":1,"14":1,"54":1,"76":1}}],["step=lentime",{"2":{"73":1}}],["step=3",{"2":{"36":2,"37":1,"39":2,"40":2,"41":3}}],["steps",{"2":{"9":1,"13":1,"41":1,"64":1,"68":1}}],["step",{"2":{"6":1,"13":1,"28":2,"64":1,"65":2,"80":1}}],["serve",{"2":{"65":1}}],["series",{"0":{"34":1},"2":{"15":1}}],["sequence",{"2":{"53":1}}],["see",{"2":{"50":1,"64":1,"72":1}}],["selected",{"2":{"65":1,"73":1}}],["selectors",{"2":{"50":1}}],["selector",{"2":{"49":1}}],["select",{"0":{"46":1,"47":1,"48":1,"49":1},"1":{"47":1,"48":1,"49":1,"50":1,"51":1},"2":{"46":1,"71":1}}],["seaborn",{"2":{"81":1,"82":1,"83":1,"84":1}}],["searching",{"2":{"64":1}}],["search",{"2":{"64":1}}],["sea",{"2":{"44":3,"46":1,"47":5,"48":6,"49":6,"50":10,"57":1,"61":1}}],["season",{"2":{"36":1,"39":2,"40":1}}],["seasons",{"0":{"36":1,"38":1,"41":1},"1":{"37":1,"38":1},"2":{"36":9,"39":1,"41":5}}],["seasonal",{"0":{"34":1,"73":1,"75":1},"1":{"74":1,"75":1},"2":{"34":1,"40":1,"41":1,"73":1,"74":4}}],["sebastien",{"2":{"44":2,"46":2,"57":2,"61":2}}],["separate",{"2":{"64":1,"65":1}}],["separated",{"2":{"54":1}}],["separately",{"2":{"4":1,"14":1,"15":1}}],["sep",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["several",{"2":{"26":1}}],["second",{"2":{"7":3,"64":1}}],["section",{"2":{"6":1,"9":1,"16":1,"20":1,"23":1,"42":1,"52":1,"63":1}}],["setting",{"2":{"60":1,"64":1,"65":1}}],["sets",{"2":{"5":1,"35":1}}],["set",{"0":{"3":1,"4":1,"5":1},"2":{"3":1,"4":1,"14":1,"43":1,"60":1,"64":1,"65":2,"68":1}}],["setchunks",{"2":{"0":1,"1":2,"2":1,"3":1,"4":1,"5":1,"64":1,"65":1}}],["sampled",{"2":{"3":4,"4":4,"5":2,"7":1,"8":1,"9":3,"11":3,"12":3,"13":3,"14":8,"17":2,"18":6,"19":4,"21":9,"22":3,"24":9,"25":2,"26":3,"27":14,"28":9,"29":5,"31":1,"32":5,"39":1,"43":6,"44":6,"45":2,"46":3,"47":6,"48":4,"49":9,"50":15,"51":2,"57":3,"61":6,"62":2,"71":5,"74":1,"80":3}}],["same",{"2":{"1":1,"4":1,"5":1,"8":1,"14":2,"18":1,"19":1,"24":1,"25":2,"26":1,"47":1,"48":1,"49":1,"53":1,"54":3,"55":2,"64":1,"65":1,"68":1}}],["saves",{"2":{"60":1,"64":1}}],["save",{"0":{"62":1},"2":{"11":1,"19":1,"58":2,"59":2,"62":1,"64":2}}],["savecube",{"2":{"1":1,"58":1,"59":1,"62":1,"64":2}}],["savedataset",{"2":{"3":1,"4":1,"5":1,"60":2,"61":1,"62":1,"64":2,"65":1}}],["saved",{"2":{"1":1,"10":1,"60":1}}],["saving",{"2":{"0":1,"3":1,"4":1,"5":1}}],["sosstsst",{"2":{"44":1,"47":2,"48":3,"49":3,"50":5}}],["source",{"2":{"44":1,"46":1,"57":1,"60":1,"61":1,"64":24,"65":24}}],["software",{"2":{"44":1,"46":1,"57":1}}],["sort",{"2":{"14":1}}],["sometimes",{"2":{"62":1,"78":1}}],["some",{"2":{"10":1,"28":1,"41":1,"64":1,"73":1,"82":1}}],["so",{"2":{"1":1,"15":1,"64":1,"65":1}}],["sphere",{"0":{"84":1},"2":{"84":3}}],["spheroid",{"2":{"45":1}}],["split",{"2":{"64":1,"73":1}}],["splitted",{"2":{"1":1}}],["special",{"2":{"48":1,"64":1,"65":1}}],["specifiers",{"2":{"65":1}}],["specifier",{"2":{"64":1}}],["specifies",{"2":{"64":3}}],["specified",{"2":{"64":7,"65":1}}],["specific",{"2":{"27":1,"64":2}}],["specifying",{"2":{"64":2,"65":1}}],["specify",{"2":{"21":1,"64":1}}],["specs",{"2":{"43":1,"80":1}}],["spectral",{"2":{"41":1}}],["sparse",{"2":{"53":1}}],["spatio",{"2":{"28":1}}],["spatial",{"2":{"0":1,"13":1,"14":5,"15":1,"33":1,"53":1}}],["span",{"2":{"27":1,"73":1}}],["space",{"2":{"0":1}}],["sigle",{"0":{"73":1},"1":{"74":1,"75":1}}],["sin",{"2":{"73":1}}],["sink",{"2":{"65":1}}],["single",{"2":{"6":1,"7":1,"55":1,"58":1,"59":1,"64":6,"65":1}}],["simplicity",{"2":{"73":1}}],["simple",{"2":{"23":1,"71":1}}],["simply",{"2":{"15":1,"68":1}}],["size=",{"2":{"82":1,"83":1,"84":1}}],["sizes",{"2":{"1":1,"64":2,"65":2}}],["size",{"2":{"0":1,"3":1,"4":1,"7":2,"8":2,"9":2,"11":2,"12":2,"13":4,"14":4,"17":2,"18":2,"19":2,"21":4,"24":2,"25":2,"26":2,"27":10,"28":6,"29":6,"39":2,"41":1,"43":2,"44":2,"47":4,"48":6,"49":6,"50":10,"62":2,"64":3,"65":4,"71":5,"74":3,"75":1,"81":1}}],["situations",{"2":{"0":1}}],["features",{"2":{"77":1}}],["feb",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["falls",{"2":{"64":1}}],["false",{"2":{"60":2,"64":3,"65":1}}],["faq",{"0":{"23":1},"1":{"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1}}],["faster",{"2":{"65":1}}],["fastest",{"2":{"0":1}}],["fast",{"2":{"0":1,"12":1}}],["frame",{"2":{"78":1}}],["frames",{"2":{"53":1}}],["frac",{"2":{"73":1}}],["frac=8",{"2":{"73":2,"75":1}}],["front",{"2":{"65":1}}],["from",{"0":{"24":1,"25":2,"34":1},"2":{"7":1,"8":1,"16":1,"25":4,"50":1,"55":2,"64":6,"65":6,"71":1,"74":1}}],["fr",{"2":{"44":1,"46":1,"57":1,"61":1}}],["frequently",{"0":{"23":1},"1":{"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1}}],["fu",{"2":{"65":1}}],["funtion",{"2":{"74":1}}],["fun",{"2":{"64":4}}],["functionality",{"0":{"77":1}}],["functions",{"2":{"9":2,"53":2,"63":1,"64":1,"65":1}}],["function",{"0":{"29":1},"2":{"0":1,"12":2,"14":1,"15":6,"24":2,"26":1,"28":1,"29":1,"33":1,"36":1,"38":1,"41":1,"50":1,"60":1,"62":1,"64":24,"65":13,"73":2}}],["future",{"2":{"35":1}}],["further",{"2":{"12":1,"76":1}}],["flag",{"2":{"65":3}}],["float32",{"2":{"43":1,"44":1,"47":2,"48":3,"49":3,"50":5,"65":1}}],["float64",{"2":{"7":1,"8":1,"9":3,"11":3,"12":3,"13":4,"14":9,"17":2,"18":2,"19":4,"21":6,"22":2,"24":1,"25":1,"26":4,"28":12,"29":5,"36":2,"37":1,"40":2,"41":3,"43":4,"44":4,"45":2,"46":2,"47":4,"48":2,"49":6,"50":10,"51":3,"57":2,"61":2,"64":1,"65":1,"71":7,"74":2,"80":2}}],["flexible",{"2":{"8":1,"14":1}}],["folder",{"2":{"68":1}}],["follow",{"2":{"68":1,"76":1}}],["follows",{"2":{"36":1,"41":1}}],["following",{"2":{"1":1,"4":1,"5":1,"15":1,"33":1,"34":1,"35":1,"64":2,"65":4,"73":1,"76":1}}],["found",{"2":{"64":1}}],["fourth",{"2":{"44":2,"46":2,"57":2,"61":2}}],["fontsize=24",{"2":{"81":1}}],["fontsize=18",{"2":{"41":1}}],["font=",{"2":{"41":1}}],["forwarded",{"2":{"64":1}}],["forwardordered",{"2":{"3":4,"4":4,"5":2,"7":1,"8":1,"9":3,"11":3,"12":3,"13":3,"14":9,"17":2,"18":6,"19":4,"21":9,"22":3,"24":9,"25":2,"26":4,"27":14,"28":9,"29":5,"31":1,"32":5,"39":1,"43":6,"44":6,"45":1,"46":3,"47":6,"48":4,"49":9,"50":15,"51":2,"57":3,"61":6,"62":2,"71":5,"74":1,"80":3}}],["force",{"2":{"64":1}}],["forcing",{"2":{"43":1,"80":1}}],["forms",{"2":{"64":1,"65":2}}],["format",{"2":{"60":1,"64":1,"74":1}}],["formal",{"2":{"55":1}}],["former",{"2":{"24":1}}],["for",{"0":{"5":1,"73":1},"1":{"74":1,"75":1},"2":{"0":3,"3":1,"4":1,"5":1,"14":4,"15":1,"28":4,"29":6,"35":1,"39":1,"41":3,"44":1,"46":1,"50":1,"51":1,"53":4,"54":3,"55":1,"57":1,"60":1,"61":1,"62":1,"64":19,"65":16,"73":2,"74":2,"76":1}}],["f",{"2":{"1":2}}],["field",{"2":{"64":1}}],["fields",{"2":{"29":1,"64":1,"65":4}}],["figure=",{"2":{"75":1}}],["figure",{"2":{"41":2,"73":3,"75":1,"81":1,"82":1,"83":1,"84":1}}],["fig",{"2":{"29":3,"41":8,"73":1,"75":2,"81":2,"82":2,"83":2,"84":3}}],["filterig",{"2":{"74":1}}],["filter",{"2":{"64":2}}],["fillarrays",{"2":{"62":3}}],["fill",{"2":{"62":1,"64":1,"65":1}}],["fillvalue=",{"2":{"65":1}}],["fillvalue",{"2":{"35":3,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5}}],["filling",{"2":{"20":1,"21":1}}],["filename",{"2":{"35":2,"64":1}}],["files",{"0":{"79":1},"2":{"6":1,"42":1,"45":1,"65":2,"68":1}}],["file",{"2":{"1":1,"6":1,"7":2,"8":2,"9":2,"11":2,"12":2,"13":4,"14":4,"17":2,"18":2,"19":3,"21":4,"24":2,"25":2,"26":2,"27":10,"28":6,"29":6,"39":2,"43":2,"44":4,"47":4,"48":6,"49":6,"50":10,"60":2,"62":2,"64":2,"67":4,"71":4,"74":2}}],["find",{"2":{"65":1,"76":1}}],["findaxis",{"2":{"65":1}}],["findall",{"2":{"14":1,"74":1}}],["finalizer",{"2":{"65":1}}],["finalize",{"2":{"65":1}}],["finally",{"2":{"14":1,"64":1}}],["final",{"2":{"14":1}}],["first",{"2":{"7":4,"14":1,"29":1,"41":1,"64":4,"65":1,"67":1,"71":1,"80":1}}],["fitting",{"2":{"64":1}}],["fittable",{"2":{"64":2}}],["fitcube",{"2":{"29":2}}],["fitsym",{"2":{"64":4}}],["fits",{"2":{"16":1}}],["fit",{"2":{"0":1,"53":1}}],["hold",{"2":{"64":1}}],["holds",{"2":{"64":1,"65":1}}],["however",{"2":{"16":1}}],["how",{"0":{"26":1,"27":1,"28":1,"29":1,"30":1},"1":{"31":1,"32":1},"2":{"5":1,"6":1,"9":1,"16":1,"20":1,"23":1,"29":1,"42":1,"64":1,"76":1,"78":1}}],["http",{"2":{"68":1}}],["https",{"2":{"35":2,"44":1,"45":1,"46":1,"54":1,"57":1}}],["html",{"2":{"54":1}}],["hr",{"2":{"43":1,"80":2}}],["his",{"2":{"73":1}}],["history",{"2":{"43":2,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1,"80":1}}],["hidedecorations",{"2":{"41":1}}],["highclip",{"2":{"41":4}}],["hm",{"2":{"41":8}}],["happens",{"2":{"65":1}}],["had",{"2":{"64":1,"65":1}}],["hamman",{"2":{"34":1,"41":1}}],["handled",{"2":{"65":1}}],["handle",{"2":{"53":1,"65":1}}],["handling",{"2":{"8":1,"64":1}}],["handy",{"2":{"29":1}}],["has",{"2":{"7":1,"8":1,"14":1,"18":1,"19":1,"34":1,"37":1,"65":1}}],["half",{"2":{"7":5}}],["have",{"2":{"5":1,"8":1,"14":1,"21":1,"55":1,"64":3}}],["having",{"2":{"0":1,"14":1}}],["help",{"2":{"64":1,"65":2}}],["height",{"2":{"43":2,"80":1}}],["heatmap",{"0":{"81":1},"2":{"29":1,"41":3,"81":1}}],["hereby",{"2":{"14":1}}],["here",{"2":{"7":1,"8":1,"12":1,"14":1,"29":1,"49":1,"62":1,"67":2}}],["hence",{"2":{"0":1}}],["msc",{"2":{"74":3,"75":2}}],["mscarray",{"2":{"74":2}}],["md",{"2":{"67":2}}],["mdash",{"2":{"60":1,"64":24,"65":24}}],["must",{"2":{"55":1,"64":1,"65":1}}],["multiplying",{"2":{"28":1}}],["multiply",{"2":{"9":1,"28":1}}],["multiple",{"0":{"32":1,"79":1},"2":{"6":1,"15":1,"43":1,"44":1,"53":1,"64":1}}],["mb",{"2":{"44":1,"47":2}}],["mm",{"2":{"44":2,"46":2,"57":2,"61":2}}],["mpi",{"2":{"43":1,"80":2}}],["m",{"2":{"17":2}}],["miss",{"2":{"65":1}}],["missing",{"2":{"13":2,"14":2,"28":1,"29":2,"44":2,"47":4,"48":6,"49":6,"50":10,"62":3,"64":2,"65":2,"84":1}}],["minimized",{"2":{"65":1}}],["minutes",{"2":{"44":1,"47":2,"48":3,"49":3,"50":5}}],["might",{"2":{"16":1,"76":1}}],["mymean",{"2":{"15":4}}],["manager",{"2":{"70":1}}],["many",{"2":{"53":1,"65":1}}],["main",{"2":{"65":1}}],["make",{"2":{"62":1,"64":1,"65":2,"68":1,"84":1}}],["makie",{"2":{"41":1,"73":1,"84":1}}],["making",{"2":{"10":1,"46":1}}],["maximal",{"2":{"65":1}}],["maximum",{"2":{"28":1,"64":1,"65":1}}],["maxbuf",{"2":{"65":1}}],["max",{"2":{"60":1,"64":7,"65":2}}],["mahecha",{"2":{"55":1}}],["mar",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["master",{"2":{"35":1}}],["mask",{"2":{"29":2}}],["machine",{"2":{"15":1,"53":1}}],["matching",{"2":{"71":1}}],["match",{"2":{"65":2}}],["matched",{"2":{"64":1}}],["mat",{"2":{"14":4}}],["matrix",{"2":{"14":1,"17":1,"53":1,"74":1}}],["may",{"2":{"9":1,"14":1,"36":4,"37":2,"38":1,"39":4,"40":4,"41":6,"43":1,"44":1,"72":1}}],["maps",{"0":{"80":1},"1":{"81":1}}],["mapslice",{"2":{"15":1}}],["mapslices",{"0":{"13":1},"2":{"9":1,"12":1,"13":1,"15":1,"28":1,"74":1}}],["mapped",{"2":{"64":1}}],["mapping",{"2":{"64":1,"65":3}}],["mapcube",{"0":{"14":1},"2":{"9":1,"12":1,"14":3,"15":3,"64":5,"65":2}}],["map",{"0":{"12":1,"28":1},"2":{"9":1,"12":2,"14":3,"15":3,"28":4,"29":1,"36":2,"40":1,"41":1,"64":2,"71":1,"74":2}}],["moll",{"0":{"83":1}}],["mowingwindow",{"2":{"64":1}}],["movingwindow",{"2":{"64":4}}],["module",{"2":{"64":2}}],["model",{"2":{"44":1,"46":1,"54":2,"57":1,"61":1}}],["modification",{"2":{"10":1,"15":1}}],["modify",{"0":{"10":1}}],["monthday",{"2":{"74":4}}],["monthly",{"0":{"34":1}}],["month",{"2":{"27":7,"34":1,"36":4,"37":1,"38":1,"39":5,"40":2,"41":3,"64":1,"74":2}}],["moment",{"2":{"19":1}}],["more",{"2":{"8":1,"9":1,"28":1,"29":1,"49":1,"50":1,"55":1,"60":1,"64":3,"65":1,"71":2}}],["most",{"2":{"0":1,"14":1,"16":1}}],["mesh",{"2":{"84":2}}],["merely",{"2":{"62":1}}],["measured",{"2":{"54":1,"55":1}}],["measure",{"2":{"53":1}}],["measures",{"2":{"43":1}}],["means",{"0":{"34":1},"2":{"13":1,"64":1}}],["mean",{"0":{"73":1,"75":1},"1":{"74":1,"75":1},"2":{"9":1,"13":3,"15":4,"29":4,"36":10,"37":2,"38":1,"41":2,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5,"64":1,"74":5}}],["method",{"2":{"64":17,"65":18}}],["methods",{"2":{"6":1,"15":1,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5}}],["meter",{"2":{"43":1}}],["metadata",{"2":{"7":1,"8":1,"9":1,"11":1,"12":1,"13":2,"14":3,"16":1,"17":1,"18":2,"19":3,"21":2,"24":1,"25":1,"26":1,"27":5,"28":3,"29":3,"36":2,"37":1,"39":3,"40":2,"41":3,"43":1,"44":1,"47":2,"48":3,"49":3,"50":5,"62":2,"64":1,"71":3,"74":1}}],["members",{"2":{"65":1}}],["member",{"2":{"5":1}}],["memory",{"2":{"0":1,"14":1,"16":3,"35":1,"53":1,"62":1,"64":2,"65":1}}],["wglmakie",{"2":{"84":2}}],["wgs",{"2":{"45":3}}],["would",{"2":{"64":2}}],["world",{"2":{"45":2}}],["workdir",{"2":{"65":1}}],["worker",{"2":{"64":1}}],["workers",{"2":{"64":1}}],["work",{"2":{"16":2,"35":1,"52":1,"64":1,"73":1,"76":2,"78":1}}],["workload",{"2":{"15":1}}],["works",{"2":{"5":1,"25":1,"62":1}}],["workflows",{"2":{"0":1}}],["written",{"2":{"64":1,"65":1}}],["writefac",{"2":{"65":1}}],["writefac=4",{"2":{"60":1,"64":1}}],["writes",{"2":{"64":1}}],["write",{"0":{"57":1,"58":1,"59":1},"1":{"58":1,"59":1,"60":1,"61":1,"62":1},"2":{"62":1,"64":2}}],["wrap",{"2":{"64":1}}],["wrapping",{"2":{"38":1,"51":2}}],["www",{"2":{"44":1,"46":1,"57":1}}],["w",{"2":{"41":2}}],["was",{"2":{"14":1,"15":1,"65":1}}],["way",{"2":{"14":1,"16":1,"24":1}}],["warning",{"2":{"10":1,"16":1,"24":1,"35":1,"60":1,"64":1}}],["wanted",{"2":{"65":1}}],["wants",{"2":{"62":1}}],["want",{"2":{"0":1,"55":1,"65":1,"68":1,"78":1}}],["wintri",{"0":{"82":1},"1":{"83":1,"84":1}}],["windowloopinds",{"2":{"65":1}}],["window",{"2":{"64":1,"65":1}}],["without",{"2":{"65":1}}],["within",{"2":{"49":1}}],["with",{"2":{"7":1,"9":1,"11":1,"12":1,"14":4,"15":2,"16":1,"21":3,"24":1,"28":2,"29":3,"36":3,"37":1,"39":2,"40":2,"41":5,"43":2,"44":2,"46":1,"47":2,"48":3,"49":3,"50":5,"52":1,"54":1,"57":1,"60":1,"61":1,"62":1,"64":11,"65":1,"67":1,"71":4,"72":3,"76":1,"78":1,"80":1,"82":1}}],["will",{"2":{"0":1,"3":1,"4":1,"12":1,"14":1,"28":2,"29":2,"33":1,"38":2,"60":3,"64":12,"65":3,"78":1}}],["white",{"2":{"82":1,"83":1}}],["while",{"2":{"62":1}}],["which",{"2":{"8":1,"14":2,"41":1,"47":1,"50":1,"51":1,"55":3,"64":5,"65":4,"78":1}}],["whether",{"2":{"65":2}}],["whereas",{"2":{"53":1}}],["where",{"2":{"15":1,"34":1,"50":1,"64":1,"65":4}}],["when",{"2":{"0":1,"5":1,"12":1,"55":1,"64":2,"65":1}}],["whole",{"2":{"7":3}}],["wether",{"2":{"64":1}}],["weight=",{"2":{"64":1}}],["weight=nothing",{"2":{"64":1}}],["weight",{"0":{"39":1},"1":{"40":1,"41":1},"2":{"38":1,"40":1,"41":1}}],["weights",{"0":{"40":1},"2":{"36":3,"40":2,"41":1}}],["weightedmean",{"2":{"64":1}}],["weighted",{"0":{"41":1},"2":{"29":1,"34":1,"36":8,"41":8,"64":3}}],["well",{"2":{"29":1,"62":1,"64":1}}],["welcome",{"2":{"5":1,"66":1}}],["were",{"2":{"12":2,"50":1,"65":1,"73":1}}],["we",{"2":{"7":2,"8":1,"12":2,"13":1,"14":5,"15":2,"21":2,"26":1,"27":1,"28":2,"29":5,"36":1,"37":1,"38":2,"41":1,"43":1,"49":1,"55":1,"62":1,"72":2,"73":2,"80":1}}],["yeesian",{"2":{"45":1}}],["years",{"2":{"27":1,"73":1,"74":1}}],["year",{"2":{"7":4}}],["yyyy",{"2":{"44":2,"46":2,"57":2,"61":2}}],["ylabel=",{"2":{"73":2,"75":1}}],["ylabel",{"2":{"41":3}}],["yaxcolumn",{"2":{"65":1}}],["yaxconvert",{"2":{"19":2}}],["yaxdefaults",{"2":{"65":1}}],["yaxarraybase",{"2":{"19":1,"64":1,"65":1}}],["yaxarray",{"0":{"10":1,"21":1,"47":1,"53":1},"2":{"1":1,"3":4,"4":4,"5":4,"6":1,"7":3,"8":3,"9":2,"11":1,"12":1,"13":2,"14":3,"15":1,"17":4,"18":3,"19":5,"21":5,"22":2,"24":3,"25":1,"26":3,"27":6,"28":3,"29":4,"31":2,"32":4,"35":2,"36":11,"37":5,"39":13,"40":5,"41":15,"43":2,"44":2,"45":1,"46":2,"47":2,"48":3,"49":3,"50":5,"53":1,"55":1,"57":1,"58":1,"59":1,"61":2,"62":3,"64":10,"65":3,"71":5,"74":2,"78":1,"80":1}}],["yaxarrays",{"0":{"0":1,"1":1,"6":1,"9":1,"16":1,"20":1,"30":1,"33":1,"42":1,"46":1,"57":1,"66":1,"77":1,"78":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"7":1,"8":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"17":1,"18":1,"19":1,"21":1,"22":1,"31":1,"32":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"43":1,"44":1,"45":1,"47":1,"48":1,"49":1,"50":1,"51":1,"58":1,"59":1,"60":1,"61":1,"62":1,"67":1,"68":1},"2":{"1":1,"3":1,"4":1,"5":1,"7":1,"8":1,"9":2,"14":1,"15":2,"16":2,"17":1,"21":1,"24":1,"26":1,"31":1,"32":1,"33":1,"42":1,"43":1,"44":1,"45":2,"46":1,"52":1,"54":1,"57":1,"60":1,"62":1,"64":27,"65":28,"66":1,"68":1,"70":3,"71":3,"72":2,"74":1,"76":1,"77":1,"80":1}}],["y",{"2":{"3":1,"4":2,"5":2,"18":4,"19":3,"28":4,"36":2,"37":1,"41":3,"45":1,"53":1,"71":5}}],["you",{"2":{"0":1,"15":1,"64":1,"65":2,"67":1,"68":2,"70":2,"72":1,"76":3,"78":2}}],["yourself",{"2":{"68":1}}],["your",{"2":{"0":2,"60":2,"64":1,"67":4,"68":4}}],["auto",{"2":{"64":1}}],["authority",{"2":{"45":5}}],["aug",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["again",{"2":{"60":1}}],["agreement",{"2":{"41":1}}],["aggregation",{"2":{"15":1}}],["aggregate",{"2":{"14":1}}],["air",{"2":{"41":2,"43":3}}],["api",{"0":{"63":1,"64":1,"65":1},"1":{"64":1,"65":1}}],["apr",{"2":{"36":4,"37":2,"38":1,"39":4,"40":4,"41":6}}],["appropriate",{"2":{"67":1}}],["approximated",{"2":{"65":1}}],["approx",{"2":{"64":1,"65":1}}],["approach",{"2":{"8":1}}],["append=true",{"2":{"61":2}}],["append",{"0":{"61":1},"2":{"60":1,"64":1}}],["applies",{"2":{"12":1}}],["applied",{"2":{"2":1,"3":1,"14":1,"64":2,"65":1}}],["apply",{"0":{"28":1},"2":{"9":2,"12":1,"14":1,"15":1,"41":1,"73":1,"74":1}}],["a3",{"2":{"22":4}}],["a2",{"2":{"21":1,"22":3,"44":2,"46":2,"57":2,"61":2,"71":1}}],["a1",{"2":{"21":1}}],["abstractdict",{"2":{"64":1,"65":3}}],["abstractdimarray",{"2":{"18":1,"19":1,"53":1}}],["above",{"2":{"4":1,"70":1}}],["about",{"2":{"0":2,"49":1,"71":1,"77":1}}],["available",{"2":{"50":2,"62":1,"63":1,"64":2,"70":1}}],["avoids",{"2":{"14":1}}],["averaging",{"2":{"13":1}}],["averages",{"0":{"34":1},"2":{"33":1}}],["average",{"2":{"13":1,"34":2}}],["atol",{"2":{"49":1}}],["atmosphere",{"2":{"44":1,"46":1,"57":1,"61":1}}],["atmos",{"2":{"43":1,"80":1}}],["attributes",{"2":{"41":1,"64":1}}],["at",{"2":{"14":4,"19":1,"41":1,"44":2,"46":1,"47":2,"48":6,"49":7,"50":5,"54":1,"55":2,"57":1,"60":2,"61":1,"64":3,"65":2,"66":1,"67":2,"68":2,"71":2,"76":2}}],["after",{"2":{"13":1,"45":1,"64":3}}],["artype",{"2":{"64":2}}],["archgdaldatasets",{"2":{"45":1}}],["archgdal",{"2":{"45":2}}],["arguments",{"2":{"41":1,"64":11,"65":3}}],["argument",{"2":{"15":1,"62":1,"64":4,"65":2}}],["arr2",{"2":{"19":1}}],["arr",{"2":{"14":7,"19":2}}],["arrayinfo",{"2":{"65":1}}],["arrays",{"2":{"5":1,"6":1,"7":2,"8":1,"10":1,"20":1,"22":2,"43":2,"44":2,"52":1,"53":4,"54":3,"55":3,"64":2,"65":1}}],["array",{"0":{"17":1},"2":{"0":1,"7":2,"8":2,"9":3,"11":2,"12":2,"14":9,"17":2,"25":1,"46":1,"53":4,"54":1,"55":1,"56":2,"62":4,"64":10,"65":4,"71":3}}],["areas",{"2":{"64":1}}],["area",{"2":{"43":2,"64":1}}],["areacella",{"2":{"43":2,"80":1}}],["are",{"2":{"10":1,"16":3,"25":1,"41":2,"46":1,"50":1,"51":1,"53":3,"54":2,"55":3,"62":1,"64":11,"65":6,"66":1,"68":1,"76":2,"78":1}}],["arithmetics",{"0":{"11":1},"2":{"9":1}}],["according",{"2":{"64":1}}],["accessed",{"2":{"43":1,"44":1}}],["access",{"2":{"0":2,"12":1,"21":1,"53":1,"56":1}}],["activate",{"2":{"29":1,"68":2,"73":1,"81":1,"84":1}}],["actually",{"2":{"65":1}}],["actual",{"2":{"12":1,"62":1,"65":1,"71":1}}],["across",{"2":{"6":1,"53":3}}],["addargs",{"2":{"64":3,"65":1}}],["adds",{"2":{"53":2,"56":1}}],["addprocs",{"2":{"15":2}}],["addition",{"2":{"14":1,"16":1,"53":1}}],["additional",{"2":{"8":1,"64":4,"65":3}}],["added",{"2":{"14":1,"61":1,"64":1}}],["add",{"2":{"5":1,"9":1,"11":1,"28":1,"67":2,"70":2,"82":1}}],["asaxisarray",{"2":{"64":1}}],["assemble",{"2":{"71":1}}],["assessment",{"2":{"44":2,"46":2,"57":2,"61":2}}],["associated",{"2":{"64":1}}],["assing",{"0":{"30":1},"1":{"31":1,"32":1}}],["assign",{"2":{"27":1}}],["aspect=dataaspect",{"2":{"41":1,"81":1}}],["asked",{"0":{"23":1},"1":{"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1}}],["as",{"2":{"4":1,"11":1,"14":1,"15":1,"18":1,"19":2,"25":1,"29":1,"36":2,"41":1,"43":1,"44":1,"45":1,"47":1,"50":1,"51":1,"53":1,"56":1,"62":2,"64":11,"65":3,"72":1,"78":1,"80":1}}],["axs",{"2":{"35":1,"41":9}}],["axcopy",{"2":{"24":1}}],["ax",{"2":{"24":2,"29":1,"73":4,"75":4,"81":1,"82":3,"83":3,"84":5}}],["axlist",{"2":{"9":2,"14":2,"15":2,"21":2,"22":1,"26":3,"65":5,"71":3}}],["axessmall",{"2":{"65":2}}],["axes",{"0":{"24":1,"25":1},"2":{"3":1,"4":1,"5":1,"21":1,"22":1,"24":2,"25":2,"27":2,"31":1,"32":1,"43":1,"44":1,"45":1,"46":2,"53":2,"57":1,"61":1,"64":15,"65":11,"71":1,"74":2,"80":1}}],["axislegend",{"2":{"75":1}}],["axis=false",{"2":{"84":1}}],["axis=",{"2":{"73":2}}],["axisdescriptor",{"2":{"65":1}}],["axisdesc",{"2":{"64":3}}],["axis",{"0":{"3":1},"2":{"3":1,"8":2,"25":1,"41":1,"45":2,"51":1,"56":1,"62":1,"64":16,"65":14,"71":1,"73":2,"75":1,"80":1,"81":1}}],["always",{"2":{"64":2,"65":1,"66":1,"72":1}}],["already",{"2":{"60":1,"64":1,"65":1}}],["although",{"2":{"50":1}}],["alternatives",{"2":{"64":1}}],["alternatively",{"2":{"1":1,"64":1,"70":1}}],["altered",{"2":{"43":1,"44":1,"47":2,"48":3,"49":3,"50":5}}],["al",{"2":{"44":1,"46":1,"55":1,"57":1,"61":1}}],["algebra",{"0":{"28":1},"2":{"28":1}}],["along",{"0":{"7":1},"2":{"7":1,"64":3,"65":2,"76":1}}],["allaxes",{"2":{"65":1}}],["allinaxes",{"2":{"65":1}}],["allmissing",{"2":{"64":1}}],["allocate",{"2":{"62":1}}],["allocation",{"2":{"14":1}}],["allow",{"2":{"65":1}}],["allowing",{"2":{"18":1,"19":1,"54":1}}],["allows",{"2":{"15":1}}],["all",{"0":{"5":1},"2":{"3":1,"5":2,"9":1,"11":1,"12":1,"13":2,"14":1,"15":4,"41":2,"45":1,"50":1,"53":1,"55":2,"60":3,"62":1,"63":1,"64":6,"65":7,"68":1}}],["also",{"2":{"1":1,"2":1,"13":1,"15":1,"21":1,"24":1,"29":1,"53":2,"54":1,"62":1,"64":1,"70":1}}],["analog",{"2":{"54":1}}],["analyzing",{"2":{"0":1}}],["anynymous",{"2":{"64":1}}],["anyocean",{"2":{"64":1}}],["anymissing",{"2":{"64":1}}],["any",{"2":{"7":1,"8":1,"9":1,"10":1,"13":2,"14":4,"17":1,"18":2,"19":3,"21":1,"24":1,"25":1,"26":1,"27":6,"28":3,"29":3,"36":2,"37":1,"39":3,"40":2,"41":3,"43":2,"44":2,"45":1,"46":1,"47":2,"48":3,"49":3,"50":5,"57":1,"61":1,"62":1,"64":4,"65":8,"71":1,"74":1,"80":1}}],["an",{"0":{"7":1},"2":{"8":1,"9":4,"11":1,"12":1,"14":1,"15":2,"24":1,"25":1,"29":1,"46":3,"49":1,"53":1,"54":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"64":19,"65":8}}],["and",{"0":{"20":1,"25":1,"33":1,"42":1,"46":1,"50":1,"57":1},"1":{"21":1,"22":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"43":1,"44":1,"45":1,"47":1,"48":1,"49":1,"50":1,"51":1,"58":1,"59":1,"60":1,"61":1,"62":1},"2":{"1":1,"4":1,"5":1,"6":1,"7":1,"11":1,"14":2,"16":1,"20":1,"21":1,"26":1,"27":2,"28":1,"29":6,"33":1,"34":1,"36":1,"41":1,"42":2,"43":1,"44":1,"46":1,"50":1,"53":5,"54":3,"55":2,"57":1,"60":1,"61":1,"62":5,"64":18,"65":6,"66":1,"68":4,"70":1,"71":2,"73":2,"80":1,"82":1}}],["a",{"0":{"8":1,"10":1,"21":1,"22":1,"24":1,"27":1,"30":1,"47":1,"51":1,"60":1,"61":1,"73":1,"79":1},"1":{"31":1,"32":1,"74":1,"75":1},"2":{"1":7,"2":1,"3":1,"6":1,"7":1,"8":2,"9":3,"10":1,"11":4,"12":2,"13":2,"14":76,"15":11,"17":2,"18":5,"19":8,"21":1,"23":1,"24":1,"25":1,"27":3,"29":3,"31":2,"32":2,"34":1,"39":1,"41":2,"43":6,"44":3,"45":1,"49":2,"50":4,"51":1,"53":12,"54":4,"55":8,"56":1,"58":3,"59":3,"60":4,"62":4,"64":60,"65":31,"67":2,"68":2,"71":4,"72":1,"77":1,"78":1}}],["t=union",{"2":{"65":1}}],["typing",{"2":{"70":1}}],["typically",{"2":{"64":1}}],["type",{"2":{"53":1,"55":1,"64":12,"65":8,"71":1,"72":1}}],["types",{"0":{"52":1},"1":{"53":1,"54":1,"55":1,"56":1},"2":{"16":2,"18":1,"19":1,"48":1,"54":1,"64":2,"72":1}}],["tesselation",{"2":{"84":1}}],["test",{"2":{"65":1,"80":1}}],["testrange",{"2":{"65":1}}],["terminal",{"2":{"68":1}}],["text",{"2":{"67":1}}],["tensors",{"2":{"53":1}}],["temporary",{"2":{"65":1}}],["temporal",{"2":{"28":1,"33":1,"53":1}}],["tempo",{"2":{"36":6,"39":4,"40":1,"73":3}}],["temp",{"2":{"8":2}}],["temperature",{"2":{"8":2,"41":2,"43":3,"44":2,"47":5,"48":6,"49":6,"50":10,"53":1,"54":1,"55":1,"71":4}}],["tempname",{"2":{"1":1,"3":1,"4":1,"5":1}}],["tutorial",{"2":{"76":2,"77":1,"78":1}}],["tutorials",{"0":{"76":1},"1":{"77":1,"78":1,"79":1},"2":{"50":1,"76":3}}],["turn",{"2":{"64":1}}],["tuple",{"2":{"1":3,"3":1,"4":1,"5":1,"64":5,"65":3}}],["target",{"2":{"65":1}}],["tab",{"2":{"64":4}}],["tables",{"2":{"78":1}}],["tableaggregator",{"2":{"64":1}}],["table",{"0":{"78":1},"2":{"29":2,"43":1,"44":2,"46":2,"57":2,"61":2,"64":4,"65":1,"80":1}}],["takes",{"2":{"64":4}}],["take",{"2":{"64":1,"65":2,"68":1}}],["tas",{"2":{"43":5,"80":5}}],["tair",{"2":{"41":1,"64":1}}],["tbl",{"2":{"29":2}}],["t",{"2":{"27":2,"29":3,"44":1,"47":2,"48":3,"49":3,"50":5,"64":1,"65":2,"73":4,"74":1,"75":1}}],["tip",{"2":{"72":1}}],["tidy",{"2":{"64":1}}],["ticks",{"2":{"53":1,"73":4,"75":3}}],["ticks=false",{"2":{"41":1}}],["tick",{"2":{"51":1,"56":1,"71":1}}],["tiff",{"0":{"79":1}}],["tif",{"2":{"45":2}}],["title",{"2":{"41":1,"44":1,"46":1,"57":1,"61":1,"67":1}}],["ti=at",{"2":{"41":3}}],["ti=>cyclicbins",{"2":{"36":2,"37":1,"39":2,"40":2,"41":3}}],["ti",{"2":{"18":4,"36":15,"37":2,"38":1,"39":8,"40":3,"41":6,"43":2,"44":2,"46":1,"47":2,"48":2,"49":3,"50":5,"57":1,"61":1,"80":2}}],["time1",{"2":{"48":2}}],["timestep",{"2":{"29":1}}],["time=1",{"2":{"71":1}}],["time=date",{"2":{"27":1}}],["time=at",{"2":{"27":1}}],["time=between",{"2":{"27":1}}],["time",{"0":{"34":1},"2":{"0":1,"6":1,"7":4,"8":3,"9":3,"11":1,"12":1,"13":7,"14":8,"15":5,"18":2,"21":3,"22":1,"26":2,"27":7,"28":4,"29":3,"37":1,"38":1,"41":1,"43":2,"44":1,"47":2,"48":4,"49":3,"50":5,"53":2,"54":1,"64":4,"71":4,"73":5,"74":4,"75":2,"80":2}}],["treat",{"2":{"64":1}}],["treatment",{"2":{"64":1,"65":1}}],["treated",{"2":{"43":1}}],["tries",{"2":{"64":1}}],["translate",{"2":{"82":1,"83":1}}],["transformed",{"2":{"44":1,"46":1,"57":1,"61":1}}],["transformations",{"2":{"82":1}}],["transformation",{"2":{"14":1}}],["transform",{"2":{"14":2}}],["track",{"2":{"64":1}}],["true",{"2":{"11":1,"60":1,"62":1,"64":4,"65":1,"84":1}}],["two",{"2":{"7":1,"8":1,"25":2,"26":1,"53":1,"65":1}}],["though",{"2":{"62":1}}],["those",{"2":{"10":1,"16":1,"18":1,"19":1,"54":1}}],["through",{"2":{"64":5,"65":5,"70":1}}],["thrown",{"2":{"60":1}}],["three",{"2":{"54":1,"73":1}}],["threads",{"2":{"64":2}}],["thread",{"2":{"15":1}}],["than",{"2":{"16":1,"28":1,"29":1}}],["that",{"2":{"8":2,"9":1,"12":1,"14":2,"15":1,"16":1,"26":1,"29":1,"34":1,"37":1,"40":1,"51":1,"53":1,"54":2,"56":1,"62":1,"64":13,"65":13,"76":1,"78":1}}],["their",{"2":{"53":1,"64":3,"65":2}}],["then",{"2":{"14":2,"28":1,"68":2,"70":1}}],["thereby",{"2":{"64":1}}],["therefore",{"2":{"29":1,"72":1}}],["there",{"2":{"13":2,"19":1,"25":1,"64":1}}],["theme",{"2":{"41":2}}],["them",{"2":{"6":1,"9":1,"27":1,"62":1,"64":1}}],["these",{"2":{"5":1,"25":1,"51":1,"53":1}}],["the",{"0":{"24":1,"25":1,"29":1,"35":1,"74":1,"77":1},"2":{"0":4,"1":3,"3":1,"4":4,"5":4,"7":6,"8":3,"9":1,"10":1,"12":3,"13":2,"14":15,"15":7,"16":2,"19":1,"21":3,"23":1,"24":4,"25":3,"26":2,"27":3,"28":3,"29":10,"33":2,"34":5,"35":4,"36":2,"37":1,"38":2,"39":2,"40":2,"41":9,"44":1,"46":1,"47":5,"48":3,"49":5,"50":6,"51":1,"52":1,"53":5,"54":4,"55":4,"60":3,"61":1,"62":6,"64":116,"65":80,"66":1,"67":1,"68":6,"70":2,"71":7,"72":8,"73":5,"74":4,"76":6,"77":1,"78":5,"80":1}}],["things",{"2":{"23":1}}],["think",{"2":{"0":1}}],["thinking",{"2":{"0":1}}],["this",{"2":{"0":1,"3":1,"6":1,"9":1,"12":2,"14":3,"15":1,"16":1,"20":1,"23":1,"25":1,"28":2,"29":2,"34":1,"38":2,"42":1,"43":1,"50":1,"52":1,"55":1,"63":2,"64":6,"65":10,"67":1,"68":2,"77":1,"78":1}}],["todo",{"2":{"74":1}}],["toghether",{"2":{"65":1}}],["together",{"2":{"55":1}}],["too",{"2":{"53":1}}],["touches",{"2":{"50":1}}],["tolerances",{"2":{"49":1}}],["tos",{"2":{"44":4,"46":2,"47":4,"48":4,"49":3,"50":9,"51":2,"57":2,"58":2,"59":2,"61":1}}],["top",{"2":{"41":1}}],["to",{"0":{"8":1,"30":1,"61":1,"66":1,"67":1},"1":{"31":1,"32":1,"67":1,"68":2},"2":{"0":4,"2":1,"3":1,"5":2,"6":1,"7":1,"8":1,"9":8,"11":1,"14":3,"15":6,"16":3,"17":2,"19":3,"20":1,"23":2,"24":2,"25":3,"26":1,"27":1,"28":1,"29":1,"33":1,"34":3,"35":2,"37":1,"38":1,"41":1,"42":1,"43":3,"44":1,"46":3,"50":1,"51":1,"52":1,"53":5,"54":3,"55":2,"56":2,"57":1,"58":2,"59":2,"60":1,"61":2,"62":3,"64":47,"65":17,"67":2,"68":3,"72":2,"73":1,"76":1,"78":3,"80":2,"84":1}}],["circshift",{"2":{"82":1}}],["ct1",{"2":{"80":4,"81":1}}],["ctime3",{"2":{"27":1}}],["ctime2",{"2":{"27":1}}],["ctime",{"2":{"27":1}}],["cycle",{"0":{"73":1,"75":1},"1":{"74":1,"75":1},"2":{"74":4}}],["cycle=12",{"2":{"36":2,"37":1,"39":2,"40":2,"41":3}}],["cdata",{"2":{"65":1}}],["center",{"2":{"64":1,"73":1,"75":1}}],["certain",{"2":{"46":2,"65":1}}],["cell",{"2":{"43":2,"44":1,"47":2,"48":3,"49":3,"50":5,"64":1}}],["cf",{"2":{"43":2,"44":2,"46":2,"57":2,"61":2,"80":2}}],["cftime",{"2":{"39":3,"44":6,"46":3,"47":6,"48":7,"49":9,"50":15,"57":3,"61":3}}],["cmpcachmisses",{"2":{"65":1}}],["cm4",{"2":{"44":4,"46":4,"57":4,"61":4}}],["cmip",{"2":{"43":1,"80":1}}],["cmip6",{"2":{"43":3,"80":6}}],["cmor",{"2":{"43":2,"44":3,"46":2,"47":2,"48":3,"49":3,"50":5,"57":2,"61":2,"80":1}}],["c54",{"2":{"41":1}}],["cb",{"2":{"41":1}}],["cbar",{"2":{"29":1}}],["cgrad",{"2":{"29":1}}],["cl",{"2":{"82":1,"83":1}}],["cl=lines",{"2":{"82":1,"83":1}}],["clean",{"2":{"65":1}}],["cleanme",{"2":{"65":4}}],["cleaner",{"2":{"64":2}}],["climate",{"2":{"44":1,"46":1,"57":1,"61":1}}],["classes=classes",{"2":{"29":1}}],["classes",{"2":{"29":8}}],["classification",{"2":{"29":2}}],["class",{"2":{"29":3}}],["closedinterval",{"2":{"50":1}}],["closed",{"0":{"50":1},"2":{"50":3}}],["clonlat",{"2":{"27":1}}],["cloud",{"2":{"10":1,"43":1}}],["clustermanagers",{"2":{"15":2}}],["cluster",{"2":{"15":1}}],["cpus",{"2":{"15":1}}],["cpu",{"2":{"15":1}}],["custom",{"2":{"21":1,"64":1}}],["currently",{"2":{"35":1,"73":1,"76":1}}],["current",{"2":{"14":2,"54":1,"64":1,"75":1}}],["cubeaxis",{"2":{"65":1}}],["cubeaxes",{"2":{"64":1}}],["cubedir",{"2":{"65":1}}],["cube2",{"2":{"64":1}}],["cube1",{"2":{"64":1}}],["cubelist",{"2":{"64":1}}],["cubefittable",{"2":{"29":2,"64":1}}],["cubetable",{"0":{"29":1},"2":{"29":3,"64":3}}],["cubes",{"0":{"26":1},"2":{"8":2,"26":2,"28":2,"29":1,"47":1,"55":1,"64":18,"65":9}}],["cube",{"0":{"24":1,"25":1,"27":1,"55":1,"74":1},"2":{"1":1,"3":1,"4":1,"5":1,"25":1,"27":8,"28":1,"29":2,"35":1,"55":3,"64":34,"65":19,"78":1}}],["c",{"2":{"14":11,"24":3,"25":3,"27":5,"29":2,"32":2,"54":1,"64":3,"65":3,"74":4,"80":2}}],["chose",{"2":{"54":1}}],["child",{"2":{"43":1,"80":1}}],["check",{"2":{"27":1,"62":1,"72":1}}],["changed",{"2":{"72":1,"76":1}}],["change",{"2":{"9":1,"64":1,"65":1}}],["chunkoffset",{"2":{"65":1}}],["chunksize`",{"2":{"65":1}}],["chunksizes",{"2":{"64":2}}],["chunksize",{"2":{"64":1,"65":3}}],["chunks",{"0":{"3":1},"2":{"1":5,"3":1,"4":1,"5":2,"64":4,"65":11}}],["chunked",{"2":{"1":5}}],["chunking",{"0":{"1":1,"2":1,"4":1,"5":1},"1":{"3":1,"4":1,"5":1},"2":{"0":1,"4":1,"64":4,"65":3}}],["chunk",{"0":{"0":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1},"2":{"0":1,"1":1,"3":1,"4":1,"64":4,"65":4}}],["criteria",{"2":{"29":1}}],["creating",{"2":{"9":1,"27":1,"67":1}}],["createdataset",{"2":{"65":2}}],["created",{"2":{"65":2}}],["creates",{"2":{"29":1,"64":2,"65":1}}],["create",{"0":{"20":1,"21":1,"22":1},"1":{"21":1,"22":1},"2":{"9":1,"14":2,"20":1,"21":1,"26":1,"27":1,"29":1,"35":1,"39":1,"57":1,"60":1,"62":3,"64":1,"65":1,"71":1,"73":1}}],["crucial",{"2":{"0":1}}],["coastlines",{"2":{"82":3,"83":1}}],["cosd",{"2":{"64":1}}],["country",{"2":{"64":4}}],["country=cube2",{"2":{"64":1}}],["copies",{"2":{"65":1}}],["copied",{"2":{"62":1}}],["copybuf",{"2":{"65":2}}],["copydata",{"2":{"65":1}}],["copy",{"2":{"24":1,"64":1,"68":1}}],["coordinates",{"2":{"43":1}}],["college",{"2":{"76":1}}],["collected",{"2":{"65":1}}],["collectfromhandle",{"2":{"65":1}}],["collection",{"2":{"23":1,"53":1}}],["collect",{"2":{"17":1,"25":3,"74":1}}],["colonperm",{"2":{"65":1}}],["color=",{"2":{"75":3}}],["color",{"2":{"73":2,"82":1,"83":1,"84":1}}],["colormap=",{"2":{"41":1}}],["colormap=makie",{"2":{"29":1}}],["colormap",{"2":{"41":3,"81":1,"82":1,"83":1,"84":1}}],["colorrange=",{"2":{"41":1}}],["colorrange",{"2":{"41":3}}],["colorbar",{"2":{"29":1,"41":2}}],["column",{"2":{"56":1,"65":1}}],["colgap",{"2":{"41":1}}],["configuration",{"2":{"65":2}}],["concatenating",{"2":{"64":1}}],["concatenates",{"2":{"64":1}}],["concatenate",{"0":{"26":1},"2":{"26":2}}],["concatenatecubes",{"0":{"8":1},"2":{"8":2,"26":2,"64":2}}],["concrete",{"2":{"64":2}}],["constant",{"2":{"65":1}}],["construct",{"2":{"64":2}}],["constructor",{"2":{"64":1}}],["constructs",{"2":{"64":1}}],["consolidated=true",{"2":{"43":1,"80":1}}],["consistent",{"2":{"43":1,"80":1}}],["consisting",{"2":{"7":1}}],["considering",{"2":{"34":1}}],["considered",{"2":{"29":1}}],["contributing",{"2":{"67":1}}],["contribute",{"0":{"66":1,"67":1},"1":{"67":1,"68":2}}],["contrast",{"2":{"64":1}}],["content",{"2":{"64":1}}],["contact",{"2":{"44":1,"46":1,"57":1,"61":1}}],["contains",{"2":{"50":1,"64":1,"65":1}}],["contain",{"2":{"43":1,"44":1,"65":1}}],["containing",{"2":{"7":1,"29":1,"54":1,"55":1,"64":1}}],["continue",{"2":{"36":1}}],["convinient",{"2":{"23":1}}],["conventions",{"2":{"44":1,"46":1,"57":1,"61":1}}],["convenient",{"2":{"15":1}}],["conversion",{"2":{"16":1,"18":1,"19":1}}],["conversions",{"2":{"16":1}}],["converted",{"2":{"55":1}}],["convert",{"0":{"16":1,"17":1,"18":1,"19":1},"1":{"17":1,"18":1,"19":1},"2":{"16":1,"17":2,"19":2,"64":1,"65":1}}],["corresponding",{"2":{"6":1,"14":2,"55":1,"64":1}}],["combining",{"0":{"79":1}}],["combined",{"2":{"8":2,"55":2}}],["combine",{"0":{"6":1},"1":{"7":1,"8":1},"2":{"6":1,"7":1,"8":1,"78":1}}],["common",{"2":{"64":1}}],["comment",{"2":{"43":1}}],["com",{"2":{"35":2,"45":1}}],["components",{"2":{"73":1}}],["compiler",{"2":{"72":1}}],["compares",{"2":{"65":1}}],["compatible",{"2":{"45":1}}],["compuation",{"2":{"64":1}}],["computing",{"2":{"29":1}}],["computations",{"2":{"12":1,"28":1}}],["computation",{"0":{"15":1},"2":{"12":1,"53":1,"64":3,"65":3}}],["computed",{"2":{"65":1}}],["compute",{"0":{"9":1},"1":{"10":1,"11":1,"12":1,"13":1,"14":1,"15":1},"2":{"74":1}}],["comply",{"2":{"44":1,"46":1,"57":1,"61":1}}],["complexity",{"2":{"28":1}}],["complex",{"2":{"9":2,"71":1}}],["comes",{"2":{"0":1}}],["code",{"2":{"5":1,"12":1,"15":2,"23":1}}],["captialisation",{"2":{"65":1}}],["cachesize",{"2":{"65":1}}],["cache=1gb```",{"2":{"64":1}}],["cache=",{"2":{"64":1}}],["cache=5",{"2":{"64":1}}],["cache=yaxdefaults",{"2":{"64":1}}],["cache",{"2":{"60":1,"64":4,"65":7}}],["cameracontrols",{"2":{"84":1}}],["came",{"2":{"55":1}}],["cairomakie",{"2":{"41":1,"73":2}}],["caxes",{"2":{"24":2,"64":2}}],["car",{"2":{"14":1}}],["cartesianindex",{"2":{"14":11}}],["caluclate",{"2":{"64":1}}],["calculations",{"2":{"41":1,"65":1}}],["calculating",{"2":{"13":1,"64":1}}],["calculates",{"2":{"64":1}}],["calculated",{"2":{"29":2,"36":1}}],["calculate",{"2":{"13":1,"14":1,"29":2,"33":1,"34":2,"36":1,"41":1,"65":2,"74":1}}],["called",{"2":{"53":3,"65":1}}],["calling",{"2":{"41":1}}],["call",{"2":{"0":1,"15":1}}],["cases",{"2":{"50":1,"76":1}}],["case",{"2":{"12":1,"38":1,"43":1}}],["cataxis",{"2":{"64":2}}],["categoricalaxis",{"2":{"64":1}}],["categorical",{"2":{"8":1,"14":1,"26":1,"29":1,"36":2,"37":1,"38":1,"39":2,"40":2,"41":3,"64":1,"65":1,"71":1}}],["cat",{"0":{"7":1},"2":{"7":2}}],["can",{"2":{"1":1,"2":1,"12":2,"13":1,"14":1,"15":3,"21":2,"26":1,"28":1,"29":2,"37":1,"41":1,"43":2,"44":1,"45":1,"51":1,"53":3,"54":2,"55":1,"61":1,"64":11,"65":6,"67":1,"70":2,"73":1,"76":2}}],["iall",{"2":{"65":1}}],["iwindow",{"2":{"65":1}}],["icolon",{"2":{"65":1}}],["icefire",{"2":{"81":1,"82":1,"83":1,"84":1}}],["ice",{"2":{"44":1,"46":1,"57":1,"61":1}}],["ipcc",{"2":{"44":3,"46":3,"57":3,"61":3}}],["ipsl",{"2":{"44":6,"46":6,"57":6,"61":6}}],["idx",{"2":{"74":3}}],["identical",{"2":{"64":1}}],["id",{"2":{"43":2,"44":2,"46":2,"57":2,"61":2,"80":2}}],["irregular",{"2":{"29":2,"39":1,"43":4,"44":2,"46":1,"47":2,"48":2,"49":6,"50":5,"57":1,"61":1,"65":1,"80":2}}],["if",{"2":{"16":1,"60":1,"62":1,"64":11,"65":5,"68":1,"76":1}}],["immutable",{"2":{"10":1}}],["improving",{"2":{"72":1}}],["improve",{"2":{"5":1}}],["implementing",{"2":{"64":1}}],["importance",{"2":{"65":1}}],["important",{"2":{"0":1}}],["impossible",{"2":{"10":1}}],["i",{"0":{"26":1,"27":1,"28":1,"29":1,"30":1},"1":{"31":1,"32":1},"2":{"7":1,"14":3,"18":1,"19":1,"41":2,"60":1,"64":7,"65":4,"68":2,"71":1,"74":3}}],["inline",{"2":{"84":2}}],["incubes",{"2":{"65":1}}],["incs",{"2":{"65":1}}],["include",{"2":{"64":2,"65":1}}],["included",{"2":{"50":1}}],["inarbc",{"2":{"65":1}}],["inar",{"2":{"65":2}}],["inplace",{"2":{"64":3,"65":1}}],["inputcube",{"2":{"65":2}}],["input",{"2":{"15":2,"29":1,"64":12,"65":8}}],["innerchunks",{"2":{"65":1}}],["inner",{"2":{"64":9,"65":3}}],["installed",{"2":{"72":1}}],["installation",{"0":{"70":1}}],["install",{"2":{"68":1,"70":1}}],["instead",{"2":{"7":1,"8":1,"12":1,"24":2,"50":1,"53":1}}],["insize",{"2":{"65":1}}],["inside",{"2":{"64":3}}],["inds",{"2":{"65":1}}],["indexing",{"2":{"48":2,"49":2,"72":1}}],["index",{"2":{"43":2,"65":2,"80":2}}],["indices",{"2":{"65":1,"74":1}}],["indicate",{"2":{"64":1}}],["indicating",{"2":{"8":1,"14":1,"64":1}}],["indims",{"2":{"64":7}}],["indims=indims",{"2":{"14":1,"15":1}}],["individual",{"2":{"43":1,"44":1}}],["individually",{"2":{"12":2}}],["initialization",{"2":{"43":1,"80":1}}],["initially",{"2":{"14":1}}],["information",{"2":{"60":1,"65":2}}],["info",{"2":{"19":1,"24":1,"62":1,"72":1}}],["int",{"2":{"74":3}}],["int32",{"2":{"62":2}}],["introducing",{"2":{"55":1}}],["interested",{"2":{"76":1}}],["internal",{"0":{"65":1},"2":{"65":9}}],["internally",{"2":{"54":1}}],["interface",{"2":{"64":2,"78":1}}],["intervalsets",{"2":{"50":1}}],["intervals",{"0":{"50":1}}],["interval",{"2":{"44":1,"47":2,"48":3,"49":4,"50":6}}],["integer",{"2":{"21":1,"48":1,"49":1,"53":1}}],["int64",{"2":{"3":4,"4":4,"5":2,"7":1,"8":1,"17":2,"18":6,"19":2,"21":3,"24":9,"25":3,"27":15,"29":3,"31":1,"32":5,"39":3,"61":3,"62":2,"65":1,"71":2}}],["into",{"0":{"79":1},"2":{"0":1,"1":1,"6":1,"7":1,"14":1,"16":2,"19":1,"42":1,"55":2,"60":1,"64":6,"65":3,"68":1,"73":1,"84":1}}],["in",{"0":{"30":1},"1":{"31":1,"32":1},"2":{"0":1,"1":1,"3":2,"4":1,"8":1,"10":1,"12":1,"13":2,"14":6,"15":3,"16":2,"18":1,"19":1,"25":1,"29":2,"34":2,"35":2,"38":3,"41":4,"43":2,"44":1,"47":2,"48":3,"49":4,"50":7,"51":1,"52":1,"53":5,"54":1,"55":2,"62":1,"64":13,"65":8,"68":2,"70":1,"71":2,"73":1,"74":1,"76":3,"78":4,"80":1}}],["iter",{"2":{"64":1}}],["iterate",{"2":{"78":1}}],["iteration",{"0":{"78":1}}],["iterator",{"2":{"29":1}}],["iterators",{"2":{"14":1}}],["iterable",{"2":{"29":2,"64":2}}],["itself",{"2":{"64":1,"65":1}}],["it",{"2":{"0":3,"11":1,"15":2,"24":1,"25":1,"26":1,"27":1,"29":2,"37":1,"39":1,"41":1,"46":1,"53":2,"54":1,"56":1,"60":1,"62":2,"64":10,"65":5,"68":1,"70":1}}],["ispar",{"2":{"64":1,"65":1}}],["ismissing",{"2":{"62":1}}],["issues",{"2":{"35":1}}],["isequal",{"2":{"14":1}}],["is",{"2":{"0":2,"1":1,"5":1,"6":1,"8":1,"12":1,"13":2,"14":3,"15":3,"16":1,"19":1,"23":1,"26":1,"27":1,"28":1,"29":4,"34":2,"35":2,"36":1,"40":1,"47":1,"50":2,"51":1,"53":4,"54":1,"55":2,"56":1,"62":3,"64":10,"65":9,"67":1,"70":1,"72":1,"76":1,"78":1}}]],"serializationVersion":2}';export{e as default}; diff --git a/dev/assets/chunks/VPLocalSearchBox.D0KAGSGD.js b/dev/assets/chunks/VPLocalSearchBox.DHA5sWm_.js similarity index 99% rename from dev/assets/chunks/VPLocalSearchBox.D0KAGSGD.js rename to dev/assets/chunks/VPLocalSearchBox.DHA5sWm_.js index c6837610..04a14955 100644 --- a/dev/assets/chunks/VPLocalSearchBox.D0KAGSGD.js +++ b/dev/assets/chunks/VPLocalSearchBox.DHA5sWm_.js @@ -1,4 +1,4 @@ -var Ct=Object.defineProperty;var It=(o,e,t)=>e in o?Ct(o,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):o[e]=t;var Oe=(o,e,t)=>It(o,typeof e!="symbol"?e+"":e,t);import{X as Dt,s as oe,v as $e,ak as kt,al as Ot,d as Rt,G as xe,am as tt,h as Fe,an as _t,ao as Mt,x as Lt,ap as zt,y as Re,R as de,Q as Ee,aq as Pt,ar as Bt,Y as Vt,U as $t,as as Wt,o as ee,b as Kt,j as k,a1 as Jt,k as j,at as Ut,au as jt,av as Gt,c as re,n as rt,e as Se,E as at,F as nt,a as ve,t as pe,aw as Qt,p as qt,l as Ht,ax as it,ay as Yt,aa as Zt,ag as Xt,az as er,_ as tr}from"./framework.D-wbpLqx.js";import{u as rr,d as ar}from"./theme.BRL7lqyv.js";const nr={root:()=>Dt(()=>import("./@localSearchIndexroot.Cm1xQonj.js"),[])};/*! +var Ct=Object.defineProperty;var It=(o,e,t)=>e in o?Ct(o,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):o[e]=t;var Oe=(o,e,t)=>It(o,typeof e!="symbol"?e+"":e,t);import{X as Dt,s as oe,v as $e,ak as kt,al as Ot,d as Rt,G as xe,am as tt,h as Fe,an as _t,ao as Mt,x as Lt,ap as zt,y as Re,R as de,Q as Ee,aq as Pt,ar as Bt,Y as Vt,U as $t,as as Wt,o as ee,b as Kt,j as k,a1 as Jt,k as j,at as Ut,au as jt,av as Gt,c as re,n as rt,e as Se,E as at,F as nt,a as ve,t as pe,aw as Qt,p as qt,l as Ht,ax as it,ay as Yt,aa as Zt,ag as Xt,az as er,_ as tr}from"./framework.D-wbpLqx.js";import{u as rr,d as ar}from"./theme._5fjVdrL.js";const nr={root:()=>Dt(()=>import("./@localSearchIndexroot.nQia0NST.js"),[])};/*! * tabbable 6.2.0 * @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE */var yt=["input:not([inert])","select:not([inert])","textarea:not([inert])","a[href]:not([inert])","button:not([inert])","[tabindex]:not(slot):not([inert])","audio[controls]:not([inert])","video[controls]:not([inert])",'[contenteditable]:not([contenteditable="false"]):not([inert])',"details>summary:first-of-type:not([inert])","details:not([inert])"],Ne=yt.join(","),mt=typeof Element>"u",ue=mt?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,Ce=!mt&&Element.prototype.getRootNode?function(o){var e;return o==null||(e=o.getRootNode)===null||e===void 0?void 0:e.call(o)}:function(o){return o==null?void 0:o.ownerDocument},Ie=function o(e,t){var r;t===void 0&&(t=!0);var n=e==null||(r=e.getAttribute)===null||r===void 0?void 0:r.call(e,"inert"),a=n===""||n==="true",i=a||t&&e&&o(e.parentNode);return i},ir=function(e){var t,r=e==null||(t=e.getAttribute)===null||t===void 0?void 0:t.call(e,"contenteditable");return r===""||r==="true"},gt=function(e,t,r){if(Ie(e))return[];var n=Array.prototype.slice.apply(e.querySelectorAll(Ne));return t&&ue.call(e,Ne)&&n.unshift(e),n=n.filter(r),n},bt=function o(e,t,r){for(var n=[],a=Array.from(e);a.length;){var i=a.shift();if(!Ie(i,!1))if(i.tagName==="SLOT"){var s=i.assignedElements(),u=s.length?s:i.children,l=o(u,!0,r);r.flatten?n.push.apply(n,l):n.push({scopeParent:i,candidates:l})}else{var h=ue.call(i,Ne);h&&r.filter(i)&&(t||!e.includes(i))&&n.push(i);var d=i.shadowRoot||typeof r.getShadowRoot=="function"&&r.getShadowRoot(i),v=!Ie(d,!1)&&(!r.shadowRootFilter||r.shadowRootFilter(i));if(d&&v){var y=o(d===!0?i.children:d.children,!0,r);r.flatten?n.push.apply(n,y):n.push({scopeParent:i,candidates:y})}else a.unshift.apply(a,i.children)}}return n},wt=function(e){return!isNaN(parseInt(e.getAttribute("tabindex"),10))},se=function(e){if(!e)throw new Error("No node provided");return e.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName)||ir(e))&&!wt(e)?0:e.tabIndex},or=function(e,t){var r=se(e);return r<0&&t&&!wt(e)?0:r},sr=function(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex},xt=function(e){return e.tagName==="INPUT"},ur=function(e){return xt(e)&&e.type==="hidden"},lr=function(e){var t=e.tagName==="DETAILS"&&Array.prototype.slice.apply(e.children).some(function(r){return r.tagName==="SUMMARY"});return t},cr=function(e,t){for(var r=0;rsummary:first-of-type"),i=a?e.parentElement:e;if(ue.call(i,"details:not([open]) *"))return!0;if(!r||r==="full"||r==="legacy-full"){if(typeof n=="function"){for(var s=e;e;){var u=e.parentElement,l=Ce(e);if(u&&!u.shadowRoot&&n(u)===!0)return ot(e);e.assignedSlot?e=e.assignedSlot:!u&&l!==e.ownerDocument?e=l.host:e=u}e=s}if(vr(e))return!e.getClientRects().length;if(r!=="legacy-full")return!0}else if(r==="non-zero-area")return ot(e);return!1},yr=function(e){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))for(var t=e.parentElement;t;){if(t.tagName==="FIELDSET"&&t.disabled){for(var r=0;r=0)},gr=function o(e){var t=[],r=[];return e.forEach(function(n,a){var i=!!n.scopeParent,s=i?n.scopeParent:n,u=or(s,i),l=i?o(n.candidates):s;u===0?i?t.push.apply(t,l):t.push(s):r.push({documentOrder:a,tabIndex:u,item:n,isScope:i,content:l})}),r.sort(sr).reduce(function(n,a){return a.isScope?n.push.apply(n,a.content):n.push(a.content),n},[]).concat(t)},br=function(e,t){t=t||{};var r;return t.getShadowRoot?r=bt([e],t.includeContainer,{filter:We.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:mr}):r=gt(e,t.includeContainer,We.bind(null,t)),gr(r)},wr=function(e,t){t=t||{};var r;return t.getShadowRoot?r=bt([e],t.includeContainer,{filter:De.bind(null,t),flatten:!0,getShadowRoot:t.getShadowRoot}):r=gt(e,t.includeContainer,De.bind(null,t)),r},le=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return ue.call(e,Ne)===!1?!1:We(t,e)},xr=yt.concat("iframe").join(","),_e=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return ue.call(e,xr)===!1?!1:De(t,e)};/*! diff --git a/dev/assets/chunks/theme.BRL7lqyv.js b/dev/assets/chunks/theme._5fjVdrL.js similarity index 99% rename from dev/assets/chunks/theme.BRL7lqyv.js rename to dev/assets/chunks/theme._5fjVdrL.js index d3d6f615..a878e313 100644 --- a/dev/assets/chunks/theme.BRL7lqyv.js +++ b/dev/assets/chunks/theme._5fjVdrL.js @@ -1,2 +1,2 @@ -const __vite__fileDeps=["assets/chunks/VPLocalSearchBox.D0KAGSGD.js","assets/chunks/framework.D-wbpLqx.js"],__vite__mapDeps=i=>i.map(i=>__vite__fileDeps[i]); -import{d as m,o,c as l,r as c,n as T,a as H,t as V,b as A,w as v,e as f,T as he,_ as g,u as Ze,i as Ye,f as Xe,g as fe,h as $,j as d,k as i,p as B,l as E,m as K,q as ce,s as N,v as W,x as ee,y as J,z as me,A as Ve,B as qe,C as xe,D as G,F as C,E as Q,G as Ie,H as te,I as _,J as z,K as Ne,L as se,M as X,N as R,O as et,P as Te,Q as ue,R as Ce,S as we,U as ae,V as tt,W as st,X as at,Y as Me,Z as _e,$ as nt,a0 as ot,a1 as rt,a2 as Be,a3 as it,a4 as lt,a5 as ct,a6 as ye}from"./framework.D-wbpLqx.js";const ut=m({__name:"VPBadge",props:{text:{},type:{default:"tip"}},setup(s){return(e,t)=>(o(),l("span",{class:T(["VPBadge",e.type])},[c(e.$slots,"default",{},()=>[H(V(e.text),1)])],2))}}),dt={key:0,class:"VPBackdrop"},pt=m({__name:"VPBackdrop",props:{show:{type:Boolean}},setup(s){return(e,t)=>(o(),A(he,{name:"fade"},{default:v(()=>[e.show?(o(),l("div",dt)):f("",!0)]),_:1}))}}),vt=g(pt,[["__scopeId","data-v-b06cdb19"]]),L=Ze;function ht(s,e){let t,a=!1;return()=>{t&&clearTimeout(t),a?t=setTimeout(s,e):(s(),(a=!0)&&setTimeout(()=>a=!1,e))}}function de(s){return/^\//.test(s)?s:`/${s}`}function be(s){const{pathname:e,search:t,hash:a,protocol:n}=new URL(s,"http://a.com");if(Ye(s)||s.startsWith("#")||!n.startsWith("http")||!Xe(e))return s;const{site:r}=L(),u=e.endsWith("/")||e.endsWith(".html")?s:s.replace(/(?:(^\.+)\/)?.*$/,`$1${e.replace(/(\.md)?$/,r.value.cleanUrls?"":".html")}${t}${a}`);return fe(u)}function Y({correspondingLink:s=!1}={}){const{site:e,localeIndex:t,page:a,theme:n,hash:r}=L(),u=$(()=>{var p,b;return{label:(p=e.value.locales[t.value])==null?void 0:p.label,link:((b=e.value.locales[t.value])==null?void 0:b.link)||(t.value==="root"?"/":`/${t.value}/`)}});return{localeLinks:$(()=>Object.entries(e.value.locales).flatMap(([p,b])=>u.value.label===b.label?[]:{text:b.label,link:ft(b.link||(p==="root"?"/":`/${p}/`),n.value.i18nRouting!==!1&&s,a.value.relativePath.slice(u.value.link.length-1),!e.value.cleanUrls)+r.value})),currentLang:u}}function ft(s,e,t,a){return e?s.replace(/\/$/,"")+de(t.replace(/(^|\/)index\.md$/,"$1").replace(/\.md$/,a?".html":"")):s}const mt=s=>(B("data-v-951cab6c"),s=s(),E(),s),_t={class:"NotFound"},bt={class:"code"},gt={class:"title"},kt=mt(()=>d("div",{class:"divider"},null,-1)),$t={class:"quote"},At={class:"action"},yt=["href","aria-label"],Pt=m({__name:"NotFound",setup(s){const{theme:e}=L(),{currentLang:t}=Y();return(a,n)=>{var r,u,h,p,b;return o(),l("div",_t,[d("p",bt,V(((r=i(e).notFound)==null?void 0:r.code)??"404"),1),d("h1",gt,V(((u=i(e).notFound)==null?void 0:u.title)??"PAGE NOT FOUND"),1),kt,d("blockquote",$t,V(((h=i(e).notFound)==null?void 0:h.quote)??"But if you don't change your direction, and if you keep looking, you may end up where you are heading."),1),d("div",At,[d("a",{class:"link",href:i(fe)(i(t).link),"aria-label":((p=i(e).notFound)==null?void 0:p.linkLabel)??"go to home"},V(((b=i(e).notFound)==null?void 0:b.linkText)??"Take me home"),9,yt)])])}}}),St=g(Pt,[["__scopeId","data-v-951cab6c"]]);function Ee(s,e){if(Array.isArray(s))return q(s);if(s==null)return[];e=de(e);const t=Object.keys(s).sort((n,r)=>r.split("/").length-n.split("/").length).find(n=>e.startsWith(de(n))),a=t?s[t]:[];return Array.isArray(a)?q(a):q(a.items,a.base)}function Lt(s){const e=[];let t=0;for(const a in s){const n=s[a];if(n.items){t=e.push(n);continue}e[t]||e.push({items:[]}),e[t].items.push(n)}return e}function Vt(s){const e=[];function t(a){for(const n of a)n.text&&n.link&&e.push({text:n.text,link:n.link,docFooterText:n.docFooterText}),n.items&&t(n.items)}return t(s),e}function pe(s,e){return Array.isArray(e)?e.some(t=>pe(s,t)):K(s,e.link)?!0:e.items?pe(s,e.items):!1}function q(s,e){return[...s].map(t=>{const a={...t},n=a.base||e;return n&&a.link&&(a.link=n+a.link),a.items&&(a.items=q(a.items,n)),a})}function D(){const{frontmatter:s,page:e,theme:t}=L(),a=ce("(min-width: 960px)"),n=N(!1),r=$(()=>{const M=t.value.sidebar,I=e.value.relativePath;return M?Ee(M,I):[]}),u=N(r.value);W(r,(M,I)=>{JSON.stringify(M)!==JSON.stringify(I)&&(u.value=r.value)});const h=$(()=>s.value.sidebar!==!1&&u.value.length>0&&s.value.layout!=="home"),p=$(()=>b?s.value.aside==null?t.value.aside==="left":s.value.aside==="left":!1),b=$(()=>s.value.layout==="home"?!1:s.value.aside!=null?!!s.value.aside:t.value.aside!==!1),S=$(()=>h.value&&a.value),k=$(()=>h.value?Lt(u.value):[]);function y(){n.value=!0}function P(){n.value=!1}function w(){n.value?P():y()}return{isOpen:n,sidebar:u,sidebarGroups:k,hasSidebar:h,hasAside:b,leftAside:p,isSidebarEnabled:S,open:y,close:P,toggle:w}}function It(s,e){let t;ee(()=>{t=s.value?document.activeElement:void 0}),J(()=>{window.addEventListener("keyup",a)}),me(()=>{window.removeEventListener("keyup",a)});function a(n){n.key==="Escape"&&s.value&&(e(),t==null||t.focus())}}function Nt(s){const{page:e,hash:t}=L(),a=N(!1),n=$(()=>s.value.collapsed!=null),r=$(()=>!!s.value.link),u=N(!1),h=()=>{u.value=K(e.value.relativePath,s.value.link)};W([e,s,t],h),J(h);const p=$(()=>u.value?!0:s.value.items?pe(e.value.relativePath,s.value.items):!1),b=$(()=>!!(s.value.items&&s.value.items.length));ee(()=>{a.value=!!(n.value&&s.value.collapsed)}),Ve(()=>{(u.value||p.value)&&(a.value=!1)});function S(){n.value&&(a.value=!a.value)}return{collapsed:a,collapsible:n,isLink:r,isActiveLink:u,hasActiveLink:p,hasChildren:b,toggle:S}}function Tt(){const{hasSidebar:s}=D(),e=ce("(min-width: 960px)"),t=ce("(min-width: 1280px)");return{isAsideEnabled:$(()=>!t.value&&!e.value?!1:s.value?t.value:e.value)}}const ve=[];function Qe(s){return typeof s.outline=="object"&&!Array.isArray(s.outline)&&s.outline.label||s.outlineTitle||"On this page"}function ge(s){const e=[...document.querySelectorAll(".VPDoc :where(h1,h2,h3,h4,h5,h6)")].filter(t=>t.id&&t.hasChildNodes()).map(t=>{const a=Number(t.tagName[1]);return{element:t,title:Ct(t),link:"#"+t.id,level:a}});return wt(e,s)}function Ct(s){let e="";for(const t of s.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 wt(s,e){if(e===!1)return[];const t=(typeof e=="object"&&!Array.isArray(e)?e.level:e)||2,[a,n]=typeof t=="number"?[t,t]:t==="deep"?[2,6]:t;s=s.filter(u=>u.level>=a&&u.level<=n),ve.length=0;for(const{element:u,link:h}of s)ve.push({element:u,link:h});const r=[];e:for(let u=0;u=0;p--){const b=s[p];if(b.level{requestAnimationFrame(r),window.addEventListener("scroll",a)}),qe(()=>{u(location.hash)}),me(()=>{window.removeEventListener("scroll",a)});function r(){if(!t.value)return;const h=window.scrollY,p=window.innerHeight,b=document.body.offsetHeight,S=Math.abs(h+p-b)<1,k=ve.map(({element:P,link:w})=>({link:w,top:Bt(P)})).filter(({top:P})=>!Number.isNaN(P)).sort((P,w)=>P.top-w.top);if(!k.length){u(null);return}if(h<1){u(null);return}if(S){u(k[k.length-1].link);return}let y=null;for(const{link:P,top:w}of k){if(w>h+xe()+4)break;y=P}u(y)}function u(h){n&&n.classList.remove("active"),h==null?n=null:n=s.value.querySelector(`a[href="${decodeURIComponent(h)}"]`);const p=n;p?(p.classList.add("active"),e.value.style.top=p.offsetTop+39+"px",e.value.style.opacity="1"):(e.value.style.top="33px",e.value.style.opacity="0")}}function Bt(s){let e=0;for(;s!==document.body;){if(s===null)return NaN;e+=s.offsetTop,s=s.offsetParent}return e}const Et=["href","title"],Qt=m({__name:"VPDocOutlineItem",props:{headers:{},root:{type:Boolean}},setup(s){function e({target:t}){const a=t.href.split("#")[1],n=document.getElementById(decodeURIComponent(a));n==null||n.focus({preventScroll:!0})}return(t,a)=>{const n=G("VPDocOutlineItem",!0);return o(),l("ul",{class:T(["VPDocOutlineItem",t.root?"root":"nested"])},[(o(!0),l(C,null,Q(t.headers,({children:r,link:u,title:h})=>(o(),l("li",null,[d("a",{class:"outline-link",href:u,onClick:e,title:h},V(h),9,Et),r!=null&&r.length?(o(),A(n,{key:0,headers:r},null,8,["headers"])):f("",!0)]))),256))],2)}}}),Fe=g(Qt,[["__scopeId","data-v-3f927ebe"]]),Ft={class:"content"},Ht={"aria-level":"2",class:"outline-title",id:"doc-outline-aria-label",role:"heading"},Wt=m({__name:"VPDocAsideOutline",setup(s){const{frontmatter:e,theme:t}=L(),a=Ie([]);te(()=>{a.value=ge(e.value.outline??t.value.outline)});const n=N(),r=N();return Mt(n,r),(u,h)=>(o(),l("nav",{"aria-labelledby":"doc-outline-aria-label",class:T(["VPDocAsideOutline",{"has-outline":a.value.length>0}]),ref_key:"container",ref:n},[d("div",Ft,[d("div",{class:"outline-marker",ref_key:"marker",ref:r},null,512),d("div",Ht,V(i(Qe)(i(t))),1),_(Fe,{headers:a.value,root:!0},null,8,["headers"])])],2))}}),Dt=g(Wt,[["__scopeId","data-v-b38bf2ff"]]),Ut={class:"VPDocAsideCarbonAds"},Ot=m({__name:"VPDocAsideCarbonAds",props:{carbonAds:{}},setup(s){const e=()=>null;return(t,a)=>(o(),l("div",Ut,[_(i(e),{"carbon-ads":t.carbonAds},null,8,["carbon-ads"])]))}}),Gt=s=>(B("data-v-6d7b3c46"),s=s(),E(),s),Kt={class:"VPDocAside"},Jt=Gt(()=>d("div",{class:"spacer"},null,-1)),jt=m({__name:"VPDocAside",setup(s){const{theme:e}=L();return(t,a)=>(o(),l("div",Kt,[c(t.$slots,"aside-top",{},void 0,!0),c(t.$slots,"aside-outline-before",{},void 0,!0),_(Dt),c(t.$slots,"aside-outline-after",{},void 0,!0),Jt,c(t.$slots,"aside-ads-before",{},void 0,!0),i(e).carbonAds?(o(),A(Ot,{key:0,"carbon-ads":i(e).carbonAds},null,8,["carbon-ads"])):f("",!0),c(t.$slots,"aside-ads-after",{},void 0,!0),c(t.$slots,"aside-bottom",{},void 0,!0)]))}}),zt=g(jt,[["__scopeId","data-v-6d7b3c46"]]);function Rt(){const{theme:s,page:e}=L();return $(()=>{const{text:t="Edit this page",pattern:a=""}=s.value.editLink||{};let n;return typeof a=="function"?n=a(e.value):n=a.replace(/:path/g,e.value.filePath),{url:n,text:t}})}function Zt(){const{page:s,theme:e,frontmatter:t}=L();return $(()=>{var b,S,k,y,P,w,M,I;const a=Ee(e.value.sidebar,s.value.relativePath),n=Vt(a),r=Yt(n,U=>U.link.replace(/[?#].*$/,"")),u=r.findIndex(U=>K(s.value.relativePath,U.link)),h=((b=e.value.docFooter)==null?void 0:b.prev)===!1&&!t.value.prev||t.value.prev===!1,p=((S=e.value.docFooter)==null?void 0:S.next)===!1&&!t.value.next||t.value.next===!1;return{prev:h?void 0:{text:(typeof t.value.prev=="string"?t.value.prev:typeof t.value.prev=="object"?t.value.prev.text:void 0)??((k=r[u-1])==null?void 0:k.docFooterText)??((y=r[u-1])==null?void 0:y.text),link:(typeof t.value.prev=="object"?t.value.prev.link:void 0)??((P=r[u-1])==null?void 0:P.link)},next:p?void 0:{text:(typeof t.value.next=="string"?t.value.next:typeof t.value.next=="object"?t.value.next.text:void 0)??((w=r[u+1])==null?void 0:w.docFooterText)??((M=r[u+1])==null?void 0:M.text),link:(typeof t.value.next=="object"?t.value.next.link:void 0)??((I=r[u+1])==null?void 0:I.link)}}})}function Yt(s,e){const t=new Set;return s.filter(a=>{const n=e(a);return t.has(n)?!1:t.add(n)})}const F=m({__name:"VPLink",props:{tag:{},href:{},noIcon:{type:Boolean},target:{},rel:{}},setup(s){const e=s,t=$(()=>e.tag??(e.href?"a":"span")),a=$(()=>e.href&&Ne.test(e.href)||e.target==="_blank");return(n,r)=>(o(),A(z(t.value),{class:T(["VPLink",{link:n.href,"vp-external-link-icon":a.value,"no-icon":n.noIcon}]),href:n.href?i(be)(n.href):void 0,target:n.target??(a.value?"_blank":void 0),rel:n.rel??(a.value?"noreferrer":void 0)},{default:v(()=>[c(n.$slots,"default")]),_:3},8,["class","href","target","rel"]))}}),Xt={class:"VPLastUpdated"},qt=["datetime"],xt=m({__name:"VPDocFooterLastUpdated",setup(s){const{theme:e,page:t,frontmatter:a,lang:n}=L(),r=$(()=>new Date(a.value.lastUpdated??t.value.lastUpdated)),u=$(()=>r.value.toISOString()),h=N("");return J(()=>{ee(()=>{var p,b,S;h.value=new Intl.DateTimeFormat((b=(p=e.value.lastUpdated)==null?void 0:p.formatOptions)!=null&&b.forceLocale?n.value:void 0,((S=e.value.lastUpdated)==null?void 0:S.formatOptions)??{dateStyle:"short",timeStyle:"short"}).format(r.value)})}),(p,b)=>{var S;return o(),l("p",Xt,[H(V(((S=i(e).lastUpdated)==null?void 0:S.text)||i(e).lastUpdatedText||"Last updated")+": ",1),d("time",{datetime:u.value},V(h.value),9,qt)])}}}),es=g(xt,[["__scopeId","data-v-9da12f1d"]]),He=s=>(B("data-v-b88cabfa"),s=s(),E(),s),ts={key:0,class:"VPDocFooter"},ss={key:0,class:"edit-info"},as={key:0,class:"edit-link"},ns=He(()=>d("span",{class:"vpi-square-pen edit-link-icon"},null,-1)),os={key:1,class:"last-updated"},rs={key:1,class:"prev-next","aria-labelledby":"doc-footer-aria-label"},is=He(()=>d("span",{class:"visually-hidden",id:"doc-footer-aria-label"},"Pager",-1)),ls={class:"pager"},cs=["innerHTML"],us=["innerHTML"],ds={class:"pager"},ps=["innerHTML"],vs=["innerHTML"],hs=m({__name:"VPDocFooter",setup(s){const{theme:e,page:t,frontmatter:a}=L(),n=Rt(),r=Zt(),u=$(()=>e.value.editLink&&a.value.editLink!==!1),h=$(()=>t.value.lastUpdated&&a.value.lastUpdated!==!1),p=$(()=>u.value||h.value||r.value.prev||r.value.next);return(b,S)=>{var k,y,P,w;return p.value?(o(),l("footer",ts,[c(b.$slots,"doc-footer-before",{},void 0,!0),u.value||h.value?(o(),l("div",ss,[u.value?(o(),l("div",as,[_(F,{class:"edit-link-button",href:i(n).url,"no-icon":!0},{default:v(()=>[ns,H(" "+V(i(n).text),1)]),_:1},8,["href"])])):f("",!0),h.value?(o(),l("div",os,[_(es)])):f("",!0)])):f("",!0),(k=i(r).prev)!=null&&k.link||(y=i(r).next)!=null&&y.link?(o(),l("nav",rs,[is,d("div",ls,[(P=i(r).prev)!=null&&P.link?(o(),A(F,{key:0,class:"pager-link prev",href:i(r).prev.link},{default:v(()=>{var M;return[d("span",{class:"desc",innerHTML:((M=i(e).docFooter)==null?void 0:M.prev)||"Previous page"},null,8,cs),d("span",{class:"title",innerHTML:i(r).prev.text},null,8,us)]}),_:1},8,["href"])):f("",!0)]),d("div",ds,[(w=i(r).next)!=null&&w.link?(o(),A(F,{key:0,class:"pager-link next",href:i(r).next.link},{default:v(()=>{var M;return[d("span",{class:"desc",innerHTML:((M=i(e).docFooter)==null?void 0:M.next)||"Next page"},null,8,ps),d("span",{class:"title",innerHTML:i(r).next.text},null,8,vs)]}),_:1},8,["href"])):f("",!0)])])):f("",!0)])):f("",!0)}}}),fs=g(hs,[["__scopeId","data-v-b88cabfa"]]),ms=s=>(B("data-v-83890dd9"),s=s(),E(),s),_s={class:"container"},bs=ms(()=>d("div",{class:"aside-curtain"},null,-1)),gs={class:"aside-container"},ks={class:"aside-content"},$s={class:"content"},As={class:"content-container"},ys={class:"main"},Ps=m({__name:"VPDoc",setup(s){const{theme:e}=L(),t=se(),{hasSidebar:a,hasAside:n,leftAside:r}=D(),u=$(()=>t.path.replace(/[./]+/g,"_").replace(/_html$/,""));return(h,p)=>{const b=G("Content");return o(),l("div",{class:T(["VPDoc",{"has-sidebar":i(a),"has-aside":i(n)}])},[c(h.$slots,"doc-top",{},void 0,!0),d("div",_s,[i(n)?(o(),l("div",{key:0,class:T(["aside",{"left-aside":i(r)}])},[bs,d("div",gs,[d("div",ks,[_(zt,null,{"aside-top":v(()=>[c(h.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":v(()=>[c(h.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":v(()=>[c(h.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":v(()=>[c(h.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":v(()=>[c(h.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":v(()=>[c(h.$slots,"aside-ads-after",{},void 0,!0)]),_:3})])])],2)):f("",!0),d("div",$s,[d("div",As,[c(h.$slots,"doc-before",{},void 0,!0),d("main",ys,[_(b,{class:T(["vp-doc",[u.value,i(e).externalLinkIcon&&"external-link-icon-enabled"]])},null,8,["class"])]),_(fs,null,{"doc-footer-before":v(()=>[c(h.$slots,"doc-footer-before",{},void 0,!0)]),_:3}),c(h.$slots,"doc-after",{},void 0,!0)])])]),c(h.$slots,"doc-bottom",{},void 0,!0)],2)}}}),Ss=g(Ps,[["__scopeId","data-v-83890dd9"]]),Ls=m({__name:"VPButton",props:{tag:{},size:{default:"medium"},theme:{default:"brand"},text:{},href:{},target:{},rel:{}},setup(s){const e=s,t=$(()=>e.href&&Ne.test(e.href)),a=$(()=>e.tag||e.href?"a":"button");return(n,r)=>(o(),A(z(a.value),{class:T(["VPButton",[n.size,n.theme]]),href:n.href?i(be)(n.href):void 0,target:e.target??(t.value?"_blank":void 0),rel:e.rel??(t.value?"noreferrer":void 0)},{default:v(()=>[H(V(n.text),1)]),_:1},8,["class","href","target","rel"]))}}),Vs=g(Ls,[["__scopeId","data-v-14206e74"]]),Is=["src","alt"],Ns=m({inheritAttrs:!1,__name:"VPImage",props:{image:{},alt:{}},setup(s){return(e,t)=>{const a=G("VPImage",!0);return e.image?(o(),l(C,{key:0},[typeof e.image=="string"||"src"in e.image?(o(),l("img",X({key:0,class:"VPImage"},typeof e.image=="string"?e.$attrs:{...e.image,...e.$attrs},{src:i(fe)(typeof e.image=="string"?e.image:e.image.src),alt:e.alt??(typeof e.image=="string"?"":e.image.alt||"")}),null,16,Is)):(o(),l(C,{key:1},[_(a,X({class:"dark",image:e.image.dark,alt:e.image.alt},e.$attrs),null,16,["image","alt"]),_(a,X({class:"light",image:e.image.light,alt:e.image.alt},e.$attrs),null,16,["image","alt"])],64))],64)):f("",!0)}}}),x=g(Ns,[["__scopeId","data-v-35a7d0b8"]]),Ts=s=>(B("data-v-955009fc"),s=s(),E(),s),Cs={class:"container"},ws={class:"main"},Ms={key:0,class:"name"},Bs=["innerHTML"],Es=["innerHTML"],Qs=["innerHTML"],Fs={key:0,class:"actions"},Hs={key:0,class:"image"},Ws={class:"image-container"},Ds=Ts(()=>d("div",{class:"image-bg"},null,-1)),Us=m({__name:"VPHero",props:{name:{},text:{},tagline:{},image:{},actions:{}},setup(s){const e=R("hero-image-slot-exists");return(t,a)=>(o(),l("div",{class:T(["VPHero",{"has-image":t.image||i(e)}])},[d("div",Cs,[d("div",ws,[c(t.$slots,"home-hero-info-before",{},void 0,!0),c(t.$slots,"home-hero-info",{},()=>[t.name?(o(),l("h1",Ms,[d("span",{innerHTML:t.name,class:"clip"},null,8,Bs)])):f("",!0),t.text?(o(),l("p",{key:1,innerHTML:t.text,class:"text"},null,8,Es)):f("",!0),t.tagline?(o(),l("p",{key:2,innerHTML:t.tagline,class:"tagline"},null,8,Qs)):f("",!0)],!0),c(t.$slots,"home-hero-info-after",{},void 0,!0),t.actions?(o(),l("div",Fs,[(o(!0),l(C,null,Q(t.actions,n=>(o(),l("div",{key:n.link,class:"action"},[_(Vs,{tag:"a",size:"medium",theme:n.theme,text:n.text,href:n.link,target:n.target,rel:n.rel},null,8,["theme","text","href","target","rel"])]))),128))])):f("",!0),c(t.$slots,"home-hero-actions-after",{},void 0,!0)]),t.image||i(e)?(o(),l("div",Hs,[d("div",Ws,[Ds,c(t.$slots,"home-hero-image",{},()=>[t.image?(o(),A(x,{key:0,class:"image-src",image:t.image},null,8,["image"])):f("",!0)],!0)])])):f("",!0)])],2))}}),Os=g(Us,[["__scopeId","data-v-955009fc"]]),Gs=m({__name:"VPHomeHero",setup(s){const{frontmatter:e}=L();return(t,a)=>i(e).hero?(o(),A(Os,{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":v(()=>[c(t.$slots,"home-hero-info-before")]),"home-hero-info":v(()=>[c(t.$slots,"home-hero-info")]),"home-hero-info-after":v(()=>[c(t.$slots,"home-hero-info-after")]),"home-hero-actions-after":v(()=>[c(t.$slots,"home-hero-actions-after")]),"home-hero-image":v(()=>[c(t.$slots,"home-hero-image")]),_:3},8,["name","text","tagline","image","actions"])):f("",!0)}}),Ks=s=>(B("data-v-f5e9645b"),s=s(),E(),s),Js={class:"box"},js={key:0,class:"icon"},zs=["innerHTML"],Rs=["innerHTML"],Zs=["innerHTML"],Ys={key:4,class:"link-text"},Xs={class:"link-text-value"},qs=Ks(()=>d("span",{class:"vpi-arrow-right link-text-icon"},null,-1)),xs=m({__name:"VPFeature",props:{icon:{},title:{},details:{},link:{},linkText:{},rel:{},target:{}},setup(s){return(e,t)=>(o(),A(F,{class:"VPFeature",href:e.link,rel:e.rel,target:e.target,"no-icon":!0,tag:e.link?"a":"div"},{default:v(()=>[d("article",Js,[typeof e.icon=="object"&&e.icon.wrap?(o(),l("div",js,[_(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(),A(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,zs)):f("",!0),d("h2",{class:"title",innerHTML:e.title},null,8,Rs),e.details?(o(),l("p",{key:3,class:"details",innerHTML:e.details},null,8,Zs)):f("",!0),e.linkText?(o(),l("div",Ys,[d("p",Xs,[H(V(e.linkText)+" ",1),qs])])):f("",!0)])]),_:1},8,["href","rel","target","tag"]))}}),ea=g(xs,[["__scopeId","data-v-f5e9645b"]]),ta={key:0,class:"VPFeatures"},sa={class:"container"},aa={class:"items"},na=m({__name:"VPFeatures",props:{features:{}},setup(s){const e=s,t=$(()=>{const a=e.features.length;if(a){if(a===2)return"grid-2";if(a===3)return"grid-3";if(a%3===0)return"grid-6";if(a>3)return"grid-4"}else return});return(a,n)=>a.features?(o(),l("div",ta,[d("div",sa,[d("div",aa,[(o(!0),l(C,null,Q(a.features,r=>(o(),l("div",{key:r.title,class:T(["item",[t.value]])},[_(ea,{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))])])])):f("",!0)}}),oa=g(na,[["__scopeId","data-v-d0a190d7"]]),ra=m({__name:"VPHomeFeatures",setup(s){const{frontmatter:e}=L();return(t,a)=>i(e).features?(o(),A(oa,{key:0,class:"VPHomeFeatures",features:i(e).features},null,8,["features"])):f("",!0)}}),ia=m({__name:"VPHomeContent",setup(s){const{width:e}=et({initialWidth:0,includeScrollbar:!1});return(t,a)=>(o(),l("div",{class:"vp-doc container",style:Te(i(e)?{"--vp-offset":`calc(50% - ${i(e)/2}px)`}:{})},[c(t.$slots,"default",{},void 0,!0)],4))}}),la=g(ia,[["__scopeId","data-v-7a48a447"]]),ca={class:"VPHome"},ua=m({__name:"VPHome",setup(s){const{frontmatter:e}=L();return(t,a)=>{const n=G("Content");return o(),l("div",ca,[c(t.$slots,"home-hero-before",{},void 0,!0),_(Gs,null,{"home-hero-info-before":v(()=>[c(t.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":v(()=>[c(t.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":v(()=>[c(t.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":v(()=>[c(t.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":v(()=>[c(t.$slots,"home-hero-image",{},void 0,!0)]),_:3}),c(t.$slots,"home-hero-after",{},void 0,!0),c(t.$slots,"home-features-before",{},void 0,!0),_(ra),c(t.$slots,"home-features-after",{},void 0,!0),i(e).markdownStyles!==!1?(o(),A(la,{key:0},{default:v(()=>[_(n)]),_:1})):(o(),A(n,{key:1}))])}}}),da=g(ua,[["__scopeId","data-v-cbb6ec48"]]),pa={},va={class:"VPPage"};function ha(s,e){const t=G("Content");return o(),l("div",va,[c(s.$slots,"page-top"),_(t),c(s.$slots,"page-bottom")])}const fa=g(pa,[["render",ha]]),ma=m({__name:"VPContent",setup(s){const{page:e,frontmatter:t}=L(),{hasSidebar:a}=D();return(n,r)=>(o(),l("div",{class:T(["VPContent",{"has-sidebar":i(a),"is-home":i(t).layout==="home"}]),id:"VPContent"},[i(e).isNotFound?c(n.$slots,"not-found",{key:0},()=>[_(St)],!0):i(t).layout==="page"?(o(),A(fa,{key:1},{"page-top":v(()=>[c(n.$slots,"page-top",{},void 0,!0)]),"page-bottom":v(()=>[c(n.$slots,"page-bottom",{},void 0,!0)]),_:3})):i(t).layout==="home"?(o(),A(da,{key:2},{"home-hero-before":v(()=>[c(n.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":v(()=>[c(n.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":v(()=>[c(n.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":v(()=>[c(n.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":v(()=>[c(n.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":v(()=>[c(n.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":v(()=>[c(n.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":v(()=>[c(n.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":v(()=>[c(n.$slots,"home-features-after",{},void 0,!0)]),_:3})):i(t).layout&&i(t).layout!=="doc"?(o(),A(z(i(t).layout),{key:3})):(o(),A(Ss,{key:4},{"doc-top":v(()=>[c(n.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":v(()=>[c(n.$slots,"doc-bottom",{},void 0,!0)]),"doc-footer-before":v(()=>[c(n.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":v(()=>[c(n.$slots,"doc-before",{},void 0,!0)]),"doc-after":v(()=>[c(n.$slots,"doc-after",{},void 0,!0)]),"aside-top":v(()=>[c(n.$slots,"aside-top",{},void 0,!0)]),"aside-outline-before":v(()=>[c(n.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":v(()=>[c(n.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":v(()=>[c(n.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":v(()=>[c(n.$slots,"aside-ads-after",{},void 0,!0)]),"aside-bottom":v(()=>[c(n.$slots,"aside-bottom",{},void 0,!0)]),_:3}))],2))}}),_a=g(ma,[["__scopeId","data-v-91765379"]]),ba={class:"container"},ga=["innerHTML"],ka=["innerHTML"],$a=m({__name:"VPFooter",setup(s){const{theme:e,frontmatter:t}=L(),{hasSidebar:a}=D();return(n,r)=>i(e).footer&&i(t).footer!==!1?(o(),l("footer",{key:0,class:T(["VPFooter",{"has-sidebar":i(a)}])},[d("div",ba,[i(e).footer.message?(o(),l("p",{key:0,class:"message",innerHTML:i(e).footer.message},null,8,ga)):f("",!0),i(e).footer.copyright?(o(),l("p",{key:1,class:"copyright",innerHTML:i(e).footer.copyright},null,8,ka)):f("",!0)])],2)):f("",!0)}}),Aa=g($a,[["__scopeId","data-v-c970a860"]]);function ya(){const{theme:s,frontmatter:e}=L(),t=Ie([]),a=$(()=>t.value.length>0);return te(()=>{t.value=ge(e.value.outline??s.value.outline)}),{headers:t,hasLocalNav:a}}const Pa=s=>(B("data-v-bc9dc845"),s=s(),E(),s),Sa={class:"menu-text"},La=Pa(()=>d("span",{class:"vpi-chevron-right icon"},null,-1)),Va={class:"header"},Ia={class:"outline"},Na=m({__name:"VPLocalNavOutlineDropdown",props:{headers:{},navHeight:{}},setup(s){const e=s,{theme:t}=L(),a=N(!1),n=N(0),r=N(),u=N();function h(k){var y;(y=r.value)!=null&&y.contains(k.target)||(a.value=!1)}W(a,k=>{if(k){document.addEventListener("click",h);return}document.removeEventListener("click",h)}),ue("Escape",()=>{a.value=!1}),te(()=>{a.value=!1});function p(){a.value=!a.value,n.value=window.innerHeight+Math.min(window.scrollY-e.navHeight,0)}function b(k){k.target.classList.contains("outline-link")&&(u.value&&(u.value.style.transition="none"),Ce(()=>{a.value=!1}))}function S(){a.value=!1,window.scrollTo({top:0,left:0,behavior:"smooth"})}return(k,y)=>(o(),l("div",{class:"VPLocalNavOutlineDropdown",style:Te({"--vp-vh":n.value+"px"}),ref_key:"main",ref:r},[k.headers.length>0?(o(),l("button",{key:0,onClick:p,class:T({open:a.value})},[d("span",Sa,V(i(Qe)(i(t))),1),La],2)):(o(),l("button",{key:1,onClick:S},V(i(t).returnToTopLabel||"Return to top"),1)),_(he,{name:"flyout"},{default:v(()=>[a.value?(o(),l("div",{key:0,ref_key:"items",ref:u,class:"items",onClick:b},[d("div",Va,[d("a",{class:"top-link",href:"#",onClick:S},V(i(t).returnToTopLabel||"Return to top"),1)]),d("div",Ia,[_(Fe,{headers:k.headers},null,8,["headers"])])],512)):f("",!0)]),_:1})],4))}}),Ta=g(Na,[["__scopeId","data-v-bc9dc845"]]),Ca=s=>(B("data-v-070ab83d"),s=s(),E(),s),wa={class:"container"},Ma=["aria-expanded"],Ba=Ca(()=>d("span",{class:"vpi-align-left menu-icon"},null,-1)),Ea={class:"menu-text"},Qa=m({__name:"VPLocalNav",props:{open:{type:Boolean}},emits:["open-menu"],setup(s){const{theme:e,frontmatter:t}=L(),{hasSidebar:a}=D(),{headers:n}=ya(),{y:r}=we(),u=N(0);J(()=>{u.value=parseInt(getComputedStyle(document.documentElement).getPropertyValue("--vp-nav-height"))}),te(()=>{n.value=ge(t.value.outline??e.value.outline)});const h=$(()=>n.value.length===0),p=$(()=>h.value&&!a.value),b=$(()=>({VPLocalNav:!0,"has-sidebar":a.value,empty:h.value,fixed:p.value}));return(S,k)=>i(t).layout!=="home"&&(!p.value||i(r)>=u.value)?(o(),l("div",{key:0,class:T(b.value)},[d("div",wa,[i(a)?(o(),l("button",{key:0,class:"menu","aria-expanded":S.open,"aria-controls":"VPSidebarNav",onClick:k[0]||(k[0]=y=>S.$emit("open-menu"))},[Ba,d("span",Ea,V(i(e).sidebarMenuLabel||"Menu"),1)],8,Ma)):f("",!0),_(Ta,{headers:i(n),navHeight:u.value},null,8,["headers","navHeight"])])],2)):f("",!0)}}),Fa=g(Qa,[["__scopeId","data-v-070ab83d"]]);function Ha(){const s=N(!1);function e(){s.value=!0,window.addEventListener("resize",n)}function t(){s.value=!1,window.removeEventListener("resize",n)}function a(){s.value?t():e()}function n(){window.outerWidth>=768&&t()}const r=se();return W(()=>r.path,t),{isScreenOpen:s,openScreen:e,closeScreen:t,toggleScreen:a}}const Wa={},Da={class:"VPSwitch",type:"button",role:"switch"},Ua={class:"check"},Oa={key:0,class:"icon"};function Ga(s,e){return o(),l("button",Da,[d("span",Ua,[s.$slots.default?(o(),l("span",Oa,[c(s.$slots,"default",{},void 0,!0)])):f("",!0)])])}const Ka=g(Wa,[["render",Ga],["__scopeId","data-v-4a1c76db"]]),We=s=>(B("data-v-b79b56d4"),s=s(),E(),s),Ja=We(()=>d("span",{class:"vpi-sun sun"},null,-1)),ja=We(()=>d("span",{class:"vpi-moon moon"},null,-1)),za=m({__name:"VPSwitchAppearance",setup(s){const{isDark:e,theme:t}=L(),a=R("toggle-appearance",()=>{e.value=!e.value}),n=$(()=>e.value?t.value.lightModeSwitchTitle||"Switch to light theme":t.value.darkModeSwitchTitle||"Switch to dark theme");return(r,u)=>(o(),A(Ka,{title:n.value,class:"VPSwitchAppearance","aria-checked":i(e),onClick:i(a)},{default:v(()=>[Ja,ja]),_:1},8,["title","aria-checked","onClick"]))}}),ke=g(za,[["__scopeId","data-v-b79b56d4"]]),Ra={key:0,class:"VPNavBarAppearance"},Za=m({__name:"VPNavBarAppearance",setup(s){const{site:e}=L();return(t,a)=>i(e).appearance&&i(e).appearance!=="force-dark"?(o(),l("div",Ra,[_(ke)])):f("",!0)}}),Ya=g(Za,[["__scopeId","data-v-ead91a81"]]),$e=N();let De=!1,le=0;function Xa(s){const e=N(!1);if(ae){!De&&qa(),le++;const t=W($e,a=>{var n,r,u;a===s.el.value||(n=s.el.value)!=null&&n.contains(a)?(e.value=!0,(r=s.onFocus)==null||r.call(s)):(e.value=!1,(u=s.onBlur)==null||u.call(s))});me(()=>{t(),le--,le||xa()})}return tt(e)}function qa(){document.addEventListener("focusin",Ue),De=!0,$e.value=document.activeElement}function xa(){document.removeEventListener("focusin",Ue)}function Ue(){$e.value=document.activeElement}const en={class:"VPMenuLink"},tn=m({__name:"VPMenuLink",props:{item:{}},setup(s){const{page:e}=L();return(t,a)=>(o(),l("div",en,[_(F,{class:T({active:i(K)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,target:t.item.target,rel:t.item.rel},{default:v(()=>[H(V(t.item.text),1)]),_:1},8,["class","href","target","rel"])]))}}),ne=g(tn,[["__scopeId","data-v-8b74d055"]]),sn={class:"VPMenuGroup"},an={key:0,class:"title"},nn=m({__name:"VPMenuGroup",props:{text:{},items:{}},setup(s){return(e,t)=>(o(),l("div",sn,[e.text?(o(),l("p",an,V(e.text),1)):f("",!0),(o(!0),l(C,null,Q(e.items,a=>(o(),l(C,null,["link"in a?(o(),A(ne,{key:0,item:a},null,8,["item"])):f("",!0)],64))),256))]))}}),on=g(nn,[["__scopeId","data-v-48c802d0"]]),rn={class:"VPMenu"},ln={key:0,class:"items"},cn=m({__name:"VPMenu",props:{items:{}},setup(s){return(e,t)=>(o(),l("div",rn,[e.items?(o(),l("div",ln,[(o(!0),l(C,null,Q(e.items,a=>(o(),l(C,{key:a.text},["link"in a?(o(),A(ne,{key:0,item:a},null,8,["item"])):(o(),A(on,{key:1,text:a.text,items:a.items},null,8,["text","items"]))],64))),128))])):f("",!0),c(e.$slots,"default",{},void 0,!0)]))}}),un=g(cn,[["__scopeId","data-v-97491713"]]),dn=s=>(B("data-v-e5380155"),s=s(),E(),s),pn=["aria-expanded","aria-label"],vn={key:0,class:"text"},hn=["innerHTML"],fn=dn(()=>d("span",{class:"vpi-chevron-down text-icon"},null,-1)),mn={key:1,class:"vpi-more-horizontal icon"},_n={class:"menu"},bn=m({__name:"VPFlyout",props:{icon:{},button:{},label:{},items:{}},setup(s){const e=N(!1),t=N();Xa({el:t,onBlur:a});function a(){e.value=!1}return(n,r)=>(o(),l("div",{class:"VPFlyout",ref_key:"el",ref:t,onMouseenter:r[1]||(r[1]=u=>e.value=!0),onMouseleave:r[2]||(r[2]=u=>e.value=!1)},[d("button",{type:"button",class:"button","aria-haspopup":"true","aria-expanded":e.value,"aria-label":n.label,onClick:r[0]||(r[0]=u=>e.value=!e.value)},[n.button||n.icon?(o(),l("span",vn,[n.icon?(o(),l("span",{key:0,class:T([n.icon,"option-icon"])},null,2)):f("",!0),n.button?(o(),l("span",{key:1,innerHTML:n.button},null,8,hn)):f("",!0),fn])):(o(),l("span",mn))],8,pn),d("div",_n,[_(un,{items:n.items},{default:v(()=>[c(n.$slots,"default",{},void 0,!0)]),_:3},8,["items"])])],544))}}),Ae=g(bn,[["__scopeId","data-v-e5380155"]]),gn=["href","aria-label","innerHTML"],kn=m({__name:"VPSocialLink",props:{icon:{},link:{},ariaLabel:{}},setup(s){const e=s,t=$(()=>typeof e.icon=="object"?e.icon.svg:``);return(a,n)=>(o(),l("a",{class:"VPSocialLink no-icon",href:a.link,"aria-label":a.ariaLabel??(typeof a.icon=="string"?a.icon:""),target:"_blank",rel:"noopener",innerHTML:t.value},null,8,gn))}}),$n=g(kn,[["__scopeId","data-v-717b8b75"]]),An={class:"VPSocialLinks"},yn=m({__name:"VPSocialLinks",props:{links:{}},setup(s){return(e,t)=>(o(),l("div",An,[(o(!0),l(C,null,Q(e.links,({link:a,icon:n,ariaLabel:r})=>(o(),A($n,{key:a,icon:n,link:a,ariaLabel:r},null,8,["icon","link","ariaLabel"]))),128))]))}}),oe=g(yn,[["__scopeId","data-v-ee7a9424"]]),Pn={key:0,class:"group translations"},Sn={class:"trans-title"},Ln={key:1,class:"group"},Vn={class:"item appearance"},In={class:"label"},Nn={class:"appearance-action"},Tn={key:2,class:"group"},Cn={class:"item social-links"},wn=m({__name:"VPNavBarExtra",setup(s){const{site:e,theme:t}=L(),{localeLinks:a,currentLang:n}=Y({correspondingLink:!0}),r=$(()=>a.value.length&&n.value.label||e.value.appearance||t.value.socialLinks);return(u,h)=>r.value?(o(),A(Ae,{key:0,class:"VPNavBarExtra",label:"extra navigation"},{default:v(()=>[i(a).length&&i(n).label?(o(),l("div",Pn,[d("p",Sn,V(i(n).label),1),(o(!0),l(C,null,Q(i(a),p=>(o(),A(ne,{key:p.link,item:p},null,8,["item"]))),128))])):f("",!0),i(e).appearance&&i(e).appearance!=="force-dark"?(o(),l("div",Ln,[d("div",Vn,[d("p",In,V(i(t).darkModeSwitchLabel||"Appearance"),1),d("div",Nn,[_(ke)])])])):f("",!0),i(t).socialLinks?(o(),l("div",Tn,[d("div",Cn,[_(oe,{class:"social-links-list",links:i(t).socialLinks},null,8,["links"])])])):f("",!0)]),_:1})):f("",!0)}}),Mn=g(wn,[["__scopeId","data-v-9b536d0b"]]),Bn=s=>(B("data-v-5dea55bf"),s=s(),E(),s),En=["aria-expanded"],Qn=Bn(()=>d("span",{class:"container"},[d("span",{class:"top"}),d("span",{class:"middle"}),d("span",{class:"bottom"})],-1)),Fn=[Qn],Hn=m({__name:"VPNavBarHamburger",props:{active:{type:Boolean}},emits:["click"],setup(s){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]=a=>e.$emit("click"))},Fn,10,En))}}),Wn=g(Hn,[["__scopeId","data-v-5dea55bf"]]),Dn=["innerHTML"],Un=m({__name:"VPNavBarMenuLink",props:{item:{}},setup(s){const{page:e}=L();return(t,a)=>(o(),A(F,{class:T({VPNavBarMenuLink:!0,active:i(K)(i(e).relativePath,t.item.activeMatch||t.item.link,!!t.item.activeMatch)}),href:t.item.link,noIcon:t.item.noIcon,target:t.item.target,rel:t.item.rel,tabindex:"0"},{default:v(()=>[d("span",{innerHTML:t.item.text},null,8,Dn)]),_:1},8,["class","href","noIcon","target","rel"]))}}),On=g(Un,[["__scopeId","data-v-ed5ac1f6"]]),Gn=m({__name:"VPNavBarMenuGroup",props:{item:{}},setup(s){const e=s,{page:t}=L(),a=r=>"link"in r?K(t.value.relativePath,r.link,!!e.item.activeMatch):r.items.some(a),n=$(()=>a(e.item));return(r,u)=>(o(),A(Ae,{class:T({VPNavBarMenuGroup:!0,active:i(K)(i(t).relativePath,r.item.activeMatch,!!r.item.activeMatch)||n.value}),button:r.item.text,items:r.item.items},null,8,["class","button","items"]))}}),Kn=s=>(B("data-v-492ea56d"),s=s(),E(),s),Jn={key:0,"aria-labelledby":"main-nav-aria-label",class:"VPNavBarMenu"},jn=Kn(()=>d("span",{id:"main-nav-aria-label",class:"visually-hidden"},"Main Navigation",-1)),zn=m({__name:"VPNavBarMenu",setup(s){const{theme:e}=L();return(t,a)=>i(e).nav?(o(),l("nav",Jn,[jn,(o(!0),l(C,null,Q(i(e).nav,n=>(o(),l(C,{key:n.text},["link"in n?(o(),A(On,{key:0,item:n},null,8,["item"])):(o(),A(Gn,{key:1,item:n},null,8,["item"]))],64))),128))])):f("",!0)}}),Rn=g(zn,[["__scopeId","data-v-492ea56d"]]);function Zn(s){const{localeIndex:e,theme:t}=L();function a(n){var w,M,I;const r=n.split("."),u=(w=t.value.search)==null?void 0:w.options,h=u&&typeof u=="object",p=h&&((I=(M=u.locales)==null?void 0:M[e.value])==null?void 0:I.translations)||null,b=h&&u.translations||null;let S=p,k=b,y=s;const P=r.pop();for(const U of r){let O=null;const j=y==null?void 0:y[U];j&&(O=y=j);const re=k==null?void 0:k[U];re&&(O=k=re);const ie=S==null?void 0:S[U];ie&&(O=S=ie),j||(y=O),re||(k=O),ie||(S=O)}return(S==null?void 0:S[P])??(k==null?void 0:k[P])??(y==null?void 0:y[P])??""}return a}const Yn=["aria-label"],Xn={class:"DocSearch-Button-Container"},qn=d("span",{class:"vp-icon DocSearch-Search-Icon"},null,-1),xn={class:"DocSearch-Button-Placeholder"},eo=d("span",{class:"DocSearch-Button-Keys"},[d("kbd",{class:"DocSearch-Button-Key"}),d("kbd",{class:"DocSearch-Button-Key"},"K")],-1),Pe=m({__name:"VPNavBarSearchButton",setup(s){const t=Zn({button:{buttonText:"Search",buttonAriaLabel:"Search"}});return(a,n)=>(o(),l("button",{type:"button",class:"DocSearch DocSearch-Button","aria-label":i(t)("button.buttonAriaLabel")},[d("span",Xn,[qn,d("span",xn,V(i(t)("button.buttonText")),1)]),eo],8,Yn))}}),to={class:"VPNavBarSearch"},so={id:"local-search"},ao={key:1,id:"docsearch"},no=m({__name:"VPNavBarSearch",setup(s){const e=st(()=>at(()=>import("./VPLocalSearchBox.D0KAGSGD.js"),__vite__mapDeps([0,1]))),t=()=>null,{theme:a}=L(),n=N(!1),r=N(!1);J(()=>{});function u(){n.value||(n.value=!0,setTimeout(h,16))}function h(){const k=new Event("keydown");k.key="k",k.metaKey=!0,window.dispatchEvent(k),setTimeout(()=>{document.querySelector(".DocSearch-Modal")||h()},16)}function p(k){const y=k.target,P=y.tagName;return y.isContentEditable||P==="INPUT"||P==="SELECT"||P==="TEXTAREA"}const b=N(!1);ue("k",k=>{(k.ctrlKey||k.metaKey)&&(k.preventDefault(),b.value=!0)}),ue("/",k=>{p(k)||(k.preventDefault(),b.value=!0)});const S="local";return(k,y)=>{var P;return o(),l("div",to,[i(S)==="local"?(o(),l(C,{key:0},[b.value?(o(),A(i(e),{key:0,onClose:y[0]||(y[0]=w=>b.value=!1)})):f("",!0),d("div",so,[_(Pe,{onClick:y[1]||(y[1]=w=>b.value=!0)})])],64)):i(S)==="algolia"?(o(),l(C,{key:1},[n.value?(o(),A(i(t),{key:0,algolia:((P=i(a).search)==null?void 0:P.options)??i(a).algolia,onVnodeBeforeMount:y[2]||(y[2]=w=>r.value=!0)},null,8,["algolia"])):f("",!0),r.value?f("",!0):(o(),l("div",ao,[_(Pe,{onClick:u})]))],64)):f("",!0)])}}}),oo=m({__name:"VPNavBarSocialLinks",setup(s){const{theme:e}=L();return(t,a)=>i(e).socialLinks?(o(),A(oe,{key:0,class:"VPNavBarSocialLinks",links:i(e).socialLinks},null,8,["links"])):f("",!0)}}),ro=g(oo,[["__scopeId","data-v-164c457f"]]),io=["href","rel","target"],lo={key:1},co={key:2},uo=m({__name:"VPNavBarTitle",setup(s){const{site:e,theme:t}=L(),{hasSidebar:a}=D(),{currentLang:n}=Y(),r=$(()=>{var p;return typeof t.value.logoLink=="string"?t.value.logoLink:(p=t.value.logoLink)==null?void 0:p.link}),u=$(()=>{var p;return typeof t.value.logoLink=="string"||(p=t.value.logoLink)==null?void 0:p.rel}),h=$(()=>{var p;return typeof t.value.logoLink=="string"||(p=t.value.logoLink)==null?void 0:p.target});return(p,b)=>(o(),l("div",{class:T(["VPNavBarTitle",{"has-sidebar":i(a)}])},[d("a",{class:"title",href:r.value??i(be)(i(n).link),rel:u.value,target:h.value},[c(p.$slots,"nav-bar-title-before",{},void 0,!0),i(t).logo?(o(),A(x,{key:0,class:"logo",image:i(t).logo},null,8,["image"])):f("",!0),i(t).siteTitle?(o(),l("span",lo,V(i(t).siteTitle),1)):i(t).siteTitle===void 0?(o(),l("span",co,V(i(e).title),1)):f("",!0),c(p.$slots,"nav-bar-title-after",{},void 0,!0)],8,io)],2))}}),po=g(uo,[["__scopeId","data-v-28a961f9"]]),vo={class:"items"},ho={class:"title"},fo=m({__name:"VPNavBarTranslations",setup(s){const{theme:e}=L(),{localeLinks:t,currentLang:a}=Y({correspondingLink:!0});return(n,r)=>i(t).length&&i(a).label?(o(),A(Ae,{key:0,class:"VPNavBarTranslations",icon:"vpi-languages",label:i(e).langMenuLabel||"Change language"},{default:v(()=>[d("div",vo,[d("p",ho,V(i(a).label),1),(o(!0),l(C,null,Q(i(t),u=>(o(),A(ne,{key:u.link,item:u},null,8,["item"]))),128))])]),_:1},8,["label"])):f("",!0)}}),mo=g(fo,[["__scopeId","data-v-c80d9ad0"]]),_o=s=>(B("data-v-40788ea0"),s=s(),E(),s),bo={class:"wrapper"},go={class:"container"},ko={class:"title"},$o={class:"content"},Ao={class:"content-body"},yo=_o(()=>d("div",{class:"divider"},[d("div",{class:"divider-line"})],-1)),Po=m({__name:"VPNavBar",props:{isScreenOpen:{type:Boolean}},emits:["toggle-screen"],setup(s){const{y:e}=we(),{hasSidebar:t}=D(),{frontmatter:a}=L(),n=N({});return Ve(()=>{n.value={"has-sidebar":t.value,home:a.value.layout==="home",top:e.value===0}}),(r,u)=>(o(),l("div",{class:T(["VPNavBar",n.value])},[d("div",bo,[d("div",go,[d("div",ko,[_(po,null,{"nav-bar-title-before":v(()=>[c(r.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":v(()=>[c(r.$slots,"nav-bar-title-after",{},void 0,!0)]),_:3})]),d("div",$o,[d("div",Ao,[c(r.$slots,"nav-bar-content-before",{},void 0,!0),_(no,{class:"search"}),_(Rn,{class:"menu"}),_(mo,{class:"translations"}),_(Ya,{class:"appearance"}),_(ro,{class:"social-links"}),_(Mn,{class:"extra"}),c(r.$slots,"nav-bar-content-after",{},void 0,!0),_(Wn,{class:"hamburger",active:r.isScreenOpen,onClick:u[0]||(u[0]=h=>r.$emit("toggle-screen"))},null,8,["active"])])])])]),yo],2))}}),So=g(Po,[["__scopeId","data-v-40788ea0"]]),Lo={key:0,class:"VPNavScreenAppearance"},Vo={class:"text"},Io=m({__name:"VPNavScreenAppearance",setup(s){const{site:e,theme:t}=L();return(a,n)=>i(e).appearance&&i(e).appearance!=="force-dark"?(o(),l("div",Lo,[d("p",Vo,V(i(t).darkModeSwitchLabel||"Appearance"),1),_(ke)])):f("",!0)}}),No=g(Io,[["__scopeId","data-v-2b89f08b"]]),To=m({__name:"VPNavScreenMenuLink",props:{item:{}},setup(s){const e=R("close-screen");return(t,a)=>(o(),A(F,{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"]))}}),Co=g(To,[["__scopeId","data-v-27d04aeb"]]),wo=m({__name:"VPNavScreenMenuGroupLink",props:{item:{}},setup(s){const e=R("close-screen");return(t,a)=>(o(),A(F,{class:"VPNavScreenMenuGroupLink",href:t.item.link,target:t.item.target,rel:t.item.rel,onClick:i(e)},{default:v(()=>[H(V(t.item.text),1)]),_:1},8,["href","target","rel","onClick"]))}}),Oe=g(wo,[["__scopeId","data-v-7179dbb7"]]),Mo={class:"VPNavScreenMenuGroupSection"},Bo={key:0,class:"title"},Eo=m({__name:"VPNavScreenMenuGroupSection",props:{text:{},items:{}},setup(s){return(e,t)=>(o(),l("div",Mo,[e.text?(o(),l("p",Bo,V(e.text),1)):f("",!0),(o(!0),l(C,null,Q(e.items,a=>(o(),A(Oe,{key:a.text,item:a},null,8,["item"]))),128))]))}}),Qo=g(Eo,[["__scopeId","data-v-4b8941ac"]]),Fo=s=>(B("data-v-c9df2649"),s=s(),E(),s),Ho=["aria-controls","aria-expanded"],Wo=["innerHTML"],Do=Fo(()=>d("span",{class:"vpi-plus button-icon"},null,-1)),Uo=["id"],Oo={key:1,class:"group"},Go=m({__name:"VPNavScreenMenuGroup",props:{text:{},items:{}},setup(s){const e=s,t=N(!1),a=$(()=>`NavScreenGroup-${e.text.replace(" ","-").toLowerCase()}`);function n(){t.value=!t.value}return(r,u)=>(o(),l("div",{class:T(["VPNavScreenMenuGroup",{open:t.value}])},[d("button",{class:"button","aria-controls":a.value,"aria-expanded":t.value,onClick:n},[d("span",{class:"button-text",innerHTML:r.text},null,8,Wo),Do],8,Ho),d("div",{id:a.value,class:"items"},[(o(!0),l(C,null,Q(r.items,h=>(o(),l(C,{key:h.text},["link"in h?(o(),l("div",{key:h.text,class:"item"},[_(Oe,{item:h},null,8,["item"])])):(o(),l("div",Oo,[_(Qo,{text:h.text,items:h.items},null,8,["text","items"])]))],64))),128))],8,Uo)],2))}}),Ko=g(Go,[["__scopeId","data-v-c9df2649"]]),Jo={key:0,class:"VPNavScreenMenu"},jo=m({__name:"VPNavScreenMenu",setup(s){const{theme:e}=L();return(t,a)=>i(e).nav?(o(),l("nav",Jo,[(o(!0),l(C,null,Q(i(e).nav,n=>(o(),l(C,{key:n.text},["link"in n?(o(),A(Co,{key:0,item:n},null,8,["item"])):(o(),A(Ko,{key:1,text:n.text||"",items:n.items},null,8,["text","items"]))],64))),128))])):f("",!0)}}),zo=m({__name:"VPNavScreenSocialLinks",setup(s){const{theme:e}=L();return(t,a)=>i(e).socialLinks?(o(),A(oe,{key:0,class:"VPNavScreenSocialLinks",links:i(e).socialLinks},null,8,["links"])):f("",!0)}}),Ge=s=>(B("data-v-362991c2"),s=s(),E(),s),Ro=Ge(()=>d("span",{class:"vpi-languages icon lang"},null,-1)),Zo=Ge(()=>d("span",{class:"vpi-chevron-down icon chevron"},null,-1)),Yo={class:"list"},Xo=m({__name:"VPNavScreenTranslations",setup(s){const{localeLinks:e,currentLang:t}=Y({correspondingLink:!0}),a=N(!1);function n(){a.value=!a.value}return(r,u)=>i(e).length&&i(t).label?(o(),l("div",{key:0,class:T(["VPNavScreenTranslations",{open:a.value}])},[d("button",{class:"title",onClick:n},[Ro,H(" "+V(i(t).label)+" ",1),Zo]),d("ul",Yo,[(o(!0),l(C,null,Q(i(e),h=>(o(),l("li",{key:h.link,class:"item"},[_(F,{class:"link",href:h.link},{default:v(()=>[H(V(h.text),1)]),_:2},1032,["href"])]))),128))])],2)):f("",!0)}}),qo=g(Xo,[["__scopeId","data-v-362991c2"]]),xo={class:"container"},er=m({__name:"VPNavScreen",props:{open:{type:Boolean}},setup(s){const e=N(null),t=Me(ae?document.body:null);return(a,n)=>(o(),A(he,{name:"fade",onEnter:n[0]||(n[0]=r=>t.value=!0),onAfterLeave:n[1]||(n[1]=r=>t.value=!1)},{default:v(()=>[a.open?(o(),l("div",{key:0,class:"VPNavScreen",ref_key:"screen",ref:e,id:"VPNavScreen"},[d("div",xo,[c(a.$slots,"nav-screen-content-before",{},void 0,!0),_(jo,{class:"menu"}),_(qo,{class:"translations"}),_(No,{class:"appearance"}),_(zo,{class:"social-links"}),c(a.$slots,"nav-screen-content-after",{},void 0,!0)])],512)):f("",!0)]),_:3}))}}),tr=g(er,[["__scopeId","data-v-382f42e9"]]),sr={key:0,class:"VPNav"},ar=m({__name:"VPNav",setup(s){const{isScreenOpen:e,closeScreen:t,toggleScreen:a}=Ha(),{frontmatter:n}=L(),r=$(()=>n.value.navbar!==!1);return _e("close-screen",t),ee(()=>{ae&&document.documentElement.classList.toggle("hide-nav",!r.value)}),(u,h)=>r.value?(o(),l("header",sr,[_(So,{"is-screen-open":i(e),onToggleScreen:i(a)},{"nav-bar-title-before":v(()=>[c(u.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":v(()=>[c(u.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":v(()=>[c(u.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":v(()=>[c(u.$slots,"nav-bar-content-after",{},void 0,!0)]),_:3},8,["is-screen-open","onToggleScreen"]),_(tr,{open:i(e)},{"nav-screen-content-before":v(()=>[c(u.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":v(()=>[c(u.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3},8,["open"])])):f("",!0)}}),nr=g(ar,[["__scopeId","data-v-f1e365da"]]),Ke=s=>(B("data-v-2ea20db7"),s=s(),E(),s),or=["role","tabindex"],rr=Ke(()=>d("div",{class:"indicator"},null,-1)),ir=Ke(()=>d("span",{class:"vpi-chevron-right caret-icon"},null,-1)),lr=[ir],cr={key:1,class:"items"},ur=m({__name:"VPSidebarItem",props:{item:{},depth:{}},setup(s){const e=s,{collapsed:t,collapsible:a,isLink:n,isActiveLink:r,hasActiveLink:u,hasChildren:h,toggle:p}=Nt($(()=>e.item)),b=$(()=>h.value?"section":"div"),S=$(()=>n.value?"a":"div"),k=$(()=>h.value?e.depth+2===7?"p":`h${e.depth+2}`:"p"),y=$(()=>n.value?void 0:"button"),P=$(()=>[[`level-${e.depth}`],{collapsible:a.value},{collapsed:t.value},{"is-link":n.value},{"is-active":r.value},{"has-active":u.value}]);function w(I){"key"in I&&I.key!=="Enter"||!e.item.link&&p()}function M(){e.item.link&&p()}return(I,U)=>{const O=G("VPSidebarItem",!0);return o(),A(z(b.value),{class:T(["VPSidebarItem",P.value])},{default:v(()=>[I.item.text?(o(),l("div",X({key:0,class:"item",role:y.value},nt(I.item.items?{click:w,keydown:w}:{},!0),{tabindex:I.item.items&&0}),[rr,I.item.link?(o(),A(F,{key:0,tag:S.value,class:"link",href:I.item.link,rel:I.item.rel,target:I.item.target},{default:v(()=>[(o(),A(z(k.value),{class:"text",innerHTML:I.item.text},null,8,["innerHTML"]))]),_:1},8,["tag","href","rel","target"])):(o(),A(z(k.value),{key:1,class:"text",innerHTML:I.item.text},null,8,["innerHTML"])),I.item.collapsed!=null&&I.item.items&&I.item.items.length?(o(),l("div",{key:2,class:"caret",role:"button","aria-label":"toggle section",onClick:M,onKeydown:ot(M,["enter"]),tabindex:"0"},lr,32)):f("",!0)],16,or)):f("",!0),I.item.items&&I.item.items.length?(o(),l("div",cr,[I.depth<5?(o(!0),l(C,{key:0},Q(I.item.items,j=>(o(),A(O,{key:j.text,item:j,depth:I.depth+1},null,8,["item","depth"]))),128)):f("",!0)])):f("",!0)]),_:1},8,["class"])}}}),dr=g(ur,[["__scopeId","data-v-2ea20db7"]]),Je=s=>(B("data-v-ec846e01"),s=s(),E(),s),pr=Je(()=>d("div",{class:"curtain"},null,-1)),vr={class:"nav",id:"VPSidebarNav","aria-labelledby":"sidebar-aria-label",tabindex:"-1"},hr=Je(()=>d("span",{class:"visually-hidden",id:"sidebar-aria-label"}," Sidebar Navigation ",-1)),fr=m({__name:"VPSidebar",props:{open:{type:Boolean}},setup(s){const{sidebarGroups:e,hasSidebar:t}=D(),a=s,n=N(null),r=Me(ae?document.body:null);return W([a,n],()=>{var u;a.open?(r.value=!0,(u=n.value)==null||u.focus()):r.value=!1},{immediate:!0,flush:"post"}),(u,h)=>i(t)?(o(),l("aside",{key:0,class:T(["VPSidebar",{open:u.open}]),ref_key:"navEl",ref:n,onClick:h[0]||(h[0]=rt(()=>{},["stop"]))},[pr,d("nav",vr,[hr,c(u.$slots,"sidebar-nav-before",{},void 0,!0),(o(!0),l(C,null,Q(i(e),p=>(o(),l("div",{key:p.text,class:"group"},[_(dr,{item:p,depth:0},null,8,["item"])]))),128)),c(u.$slots,"sidebar-nav-after",{},void 0,!0)])],2)):f("",!0)}}),mr=g(fr,[["__scopeId","data-v-ec846e01"]]),_r=m({__name:"VPSkipLink",setup(s){const e=se(),t=N();W(()=>e.path,()=>t.value.focus());function a({target:n}){const r=document.getElementById(decodeURIComponent(n.hash).slice(1));if(r){const u=()=>{r.removeAttribute("tabindex"),r.removeEventListener("blur",u)};r.setAttribute("tabindex","-1"),r.addEventListener("blur",u),r.focus(),window.scrollTo(0,0)}}return(n,r)=>(o(),l(C,null,[d("span",{ref_key:"backToTop",ref:t,tabindex:"-1"},null,512),d("a",{href:"#VPContent",class:"VPSkipLink visually-hidden",onClick:a}," Skip to content ")],64))}}),br=g(_r,[["__scopeId","data-v-c3508ec8"]]),gr=m({__name:"Layout",setup(s){const{isOpen:e,open:t,close:a}=D(),n=se();W(()=>n.path,a),It(e,a);const{frontmatter:r}=L(),u=Be(),h=$(()=>!!u["home-hero-image"]);return _e("hero-image-slot-exists",h),(p,b)=>{const S=G("Content");return i(r).layout!==!1?(o(),l("div",{key:0,class:T(["Layout",i(r).pageClass])},[c(p.$slots,"layout-top",{},void 0,!0),_(br),_(vt,{class:"backdrop",show:i(e),onClick:i(a)},null,8,["show","onClick"]),_(nr,null,{"nav-bar-title-before":v(()=>[c(p.$slots,"nav-bar-title-before",{},void 0,!0)]),"nav-bar-title-after":v(()=>[c(p.$slots,"nav-bar-title-after",{},void 0,!0)]),"nav-bar-content-before":v(()=>[c(p.$slots,"nav-bar-content-before",{},void 0,!0)]),"nav-bar-content-after":v(()=>[c(p.$slots,"nav-bar-content-after",{},void 0,!0)]),"nav-screen-content-before":v(()=>[c(p.$slots,"nav-screen-content-before",{},void 0,!0)]),"nav-screen-content-after":v(()=>[c(p.$slots,"nav-screen-content-after",{},void 0,!0)]),_:3}),_(Fa,{open:i(e),onOpenMenu:i(t)},null,8,["open","onOpenMenu"]),_(mr,{open:i(e)},{"sidebar-nav-before":v(()=>[c(p.$slots,"sidebar-nav-before",{},void 0,!0)]),"sidebar-nav-after":v(()=>[c(p.$slots,"sidebar-nav-after",{},void 0,!0)]),_:3},8,["open"]),_(_a,null,{"page-top":v(()=>[c(p.$slots,"page-top",{},void 0,!0)]),"page-bottom":v(()=>[c(p.$slots,"page-bottom",{},void 0,!0)]),"not-found":v(()=>[c(p.$slots,"not-found",{},void 0,!0)]),"home-hero-before":v(()=>[c(p.$slots,"home-hero-before",{},void 0,!0)]),"home-hero-info-before":v(()=>[c(p.$slots,"home-hero-info-before",{},void 0,!0)]),"home-hero-info":v(()=>[c(p.$slots,"home-hero-info",{},void 0,!0)]),"home-hero-info-after":v(()=>[c(p.$slots,"home-hero-info-after",{},void 0,!0)]),"home-hero-actions-after":v(()=>[c(p.$slots,"home-hero-actions-after",{},void 0,!0)]),"home-hero-image":v(()=>[c(p.$slots,"home-hero-image",{},void 0,!0)]),"home-hero-after":v(()=>[c(p.$slots,"home-hero-after",{},void 0,!0)]),"home-features-before":v(()=>[c(p.$slots,"home-features-before",{},void 0,!0)]),"home-features-after":v(()=>[c(p.$slots,"home-features-after",{},void 0,!0)]),"doc-footer-before":v(()=>[c(p.$slots,"doc-footer-before",{},void 0,!0)]),"doc-before":v(()=>[c(p.$slots,"doc-before",{},void 0,!0)]),"doc-after":v(()=>[c(p.$slots,"doc-after",{},void 0,!0)]),"doc-top":v(()=>[c(p.$slots,"doc-top",{},void 0,!0)]),"doc-bottom":v(()=>[c(p.$slots,"doc-bottom",{},void 0,!0)]),"aside-top":v(()=>[c(p.$slots,"aside-top",{},void 0,!0)]),"aside-bottom":v(()=>[c(p.$slots,"aside-bottom",{},void 0,!0)]),"aside-outline-before":v(()=>[c(p.$slots,"aside-outline-before",{},void 0,!0)]),"aside-outline-after":v(()=>[c(p.$slots,"aside-outline-after",{},void 0,!0)]),"aside-ads-before":v(()=>[c(p.$slots,"aside-ads-before",{},void 0,!0)]),"aside-ads-after":v(()=>[c(p.$slots,"aside-ads-after",{},void 0,!0)]),_:3}),_(Aa),c(p.$slots,"layout-bottom",{},void 0,!0)],2)):(o(),A(S,{key:1}))}}}),kr=g(gr,[["__scopeId","data-v-a9a9e638"]]),$r={},Ar={class:"VPTeamPage"};function yr(s,e){return o(),l("div",Ar,[c(s.$slots,"default")])}const Pi=g($r,[["render",yr],["__scopeId","data-v-c2f8e101"]]),Pr={},Sr={class:"VPTeamPageTitle"},Lr={key:0,class:"title"},Vr={key:1,class:"lead"};function Ir(s,e){return o(),l("div",Sr,[s.$slots.title?(o(),l("h1",Lr,[c(s.$slots,"title",{},void 0,!0)])):f("",!0),s.$slots.lead?(o(),l("p",Vr,[c(s.$slots,"lead",{},void 0,!0)])):f("",!0)])}const Si=g(Pr,[["render",Ir],["__scopeId","data-v-e277e15c"]]),Nr={},Tr=s=>(B("data-v-d43bc49d"),s=s(),E(),s),Cr={class:"VPTeamPageSection"},wr={class:"title"},Mr=Tr(()=>d("div",{class:"title-line"},null,-1)),Br={key:0,class:"title-text"},Er={key:0,class:"lead"},Qr={key:1,class:"members"};function Fr(s,e){return o(),l("section",Cr,[d("div",wr,[Mr,s.$slots.title?(o(),l("h2",Br,[c(s.$slots,"title",{},void 0,!0)])):f("",!0)]),s.$slots.lead?(o(),l("p",Er,[c(s.$slots,"lead",{},void 0,!0)])):f("",!0),s.$slots.members?(o(),l("div",Qr,[c(s.$slots,"members",{},void 0,!0)])):f("",!0)])}const Li=g(Nr,[["render",Fr],["__scopeId","data-v-d43bc49d"]]),Hr=s=>(B("data-v-f9987cb6"),s=s(),E(),s),Wr={class:"profile"},Dr={class:"avatar"},Ur=["src","alt"],Or={class:"data"},Gr={class:"name"},Kr={key:0,class:"affiliation"},Jr={key:0,class:"title"},jr={key:1,class:"at"},zr=["innerHTML"],Rr={key:2,class:"links"},Zr={key:0,class:"sp"},Yr=Hr(()=>d("span",{class:"vpi-heart sp-icon"},null,-1)),Xr=m({__name:"VPTeamMembersItem",props:{size:{default:"medium"},member:{}},setup(s){return(e,t)=>(o(),l("article",{class:T(["VPTeamMembersItem",[e.size]])},[d("div",Wr,[d("figure",Dr,[d("img",{class:"avatar-img",src:e.member.avatar,alt:e.member.name},null,8,Ur)]),d("div",Or,[d("h1",Gr,V(e.member.name),1),e.member.title||e.member.org?(o(),l("p",Kr,[e.member.title?(o(),l("span",Jr,V(e.member.title),1)):f("",!0),e.member.title&&e.member.org?(o(),l("span",jr," @ ")):f("",!0),e.member.org?(o(),A(F,{key:2,class:T(["org",{link:e.member.orgLink}]),href:e.member.orgLink,"no-icon":""},{default:v(()=>[H(V(e.member.org),1)]),_:1},8,["class","href"])):f("",!0)])):f("",!0),e.member.desc?(o(),l("p",{key:1,class:"desc",innerHTML:e.member.desc},null,8,zr)):f("",!0),e.member.links?(o(),l("div",Rr,[_(oe,{links:e.member.links},null,8,["links"])])):f("",!0)])]),e.member.sponsor?(o(),l("div",Zr,[_(F,{class:"sp-link",href:e.member.sponsor,"no-icon":""},{default:v(()=>[Yr,H(" "+V(e.member.actionText||"Sponsor"),1)]),_:1},8,["href"])])):f("",!0)],2))}}),qr=g(Xr,[["__scopeId","data-v-f9987cb6"]]),xr={class:"container"},ei=m({__name:"VPTeamMembers",props:{size:{default:"medium"},members:{}},setup(s){const e=s,t=$(()=>[e.size,`count-${e.members.length}`]);return(a,n)=>(o(),l("div",{class:T(["VPTeamMembers",t.value])},[d("div",xr,[(o(!0),l(C,null,Q(a.members,r=>(o(),l("div",{key:r.name,class:"item"},[_(qr,{size:a.size,member:r},null,8,["size","member"])]))),128))])],2))}}),Vi=g(ei,[["__scopeId","data-v-fba19bad"]]),Se={Layout:kr,enhanceApp:({app:s})=>{s.component("Badge",ut)}},ti={},si=d("br",null,null,-1),ai={style:{"text-align":"center"}},ni=it('

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

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);function oi(s,e){const t=G("font");return o(),l(C,null,[si,d("h1",ai,[d("strong",null,[_(t,{color:"orange"},{default:v(()=>[H(" Package Ecosystem")]),_:1})])]),ni],64)}const ri=g(ti,[["render",oi]]),ii=s=>{if(typeof document>"u")return{stabilizeScrollPosition:n=>async(...r)=>n(...r)};const e=document.documentElement;return{stabilizeScrollPosition:a=>async(...n)=>{const r=a(...n),u=s.value;if(!u)return r;const h=u.offsetTop-e.scrollTop;return await Ce(),e.scrollTop=u.offsetTop-h,r}}},je="vitepress:tabSharedState",Z=typeof localStorage<"u"?localStorage:null,ze="vitepress:tabsSharedState",li=()=>{const s=Z==null?void 0:Z.getItem(ze);if(s)try{return JSON.parse(s)}catch{}return{}},ci=s=>{Z&&Z.setItem(ze,JSON.stringify(s))},ui=s=>{const e=lt({});W(()=>e.content,(t,a)=>{t&&a&&ci(t)},{deep:!0}),s.provide(je,e)},di=(s,e)=>{const t=R(je);if(!t)throw new Error("[vitepress-plugin-tabs] TabsSharedState should be injected");J(()=>{t.content||(t.content=li())});const a=N(),n=$({get(){var p;const u=e.value,h=s.value;if(u){const b=(p=t.content)==null?void 0:p[u];if(b&&h.includes(b))return b}else{const b=a.value;if(b)return b}return h[0]},set(u){const h=e.value;h?t.content&&(t.content[h]=u):a.value=u}});return{selected:n,select:u=>{n.value=u}}};let Le=0;const pi=()=>(Le++,""+Le);function vi(){const s=Be();return $(()=>{var a;const t=(a=s.default)==null?void 0:a.call(s);return t?t.filter(n=>typeof n.type=="object"&&"__name"in n.type&&n.type.__name==="PluginTabsTab"&&n.props).map(n=>{var r;return(r=n.props)==null?void 0:r.label}):[]})}const Re="vitepress:tabSingleState",hi=s=>{_e(Re,s)},fi=()=>{const s=R(Re);if(!s)throw new Error("[vitepress-plugin-tabs] TabsSingleState should be injected");return s},mi={class:"plugin-tabs"},_i=["id","aria-selected","aria-controls","tabindex","onClick"],bi=m({__name:"PluginTabs",props:{sharedStateKey:{}},setup(s){const e=s,t=vi(),{selected:a,select:n}=di(t,ct(e,"sharedStateKey")),r=N(),{stabilizeScrollPosition:u}=ii(r),h=u(n),p=N([]),b=k=>{var w;const y=t.value.indexOf(a.value);let P;k.key==="ArrowLeft"?P=y>=1?y-1:t.value.length-1:k.key==="ArrowRight"&&(P=y(o(),l("div",mi,[d("div",{ref_key:"tablist",ref:r,class:"plugin-tabs--tab-list",role:"tablist",onKeydown:b},[(o(!0),l(C,null,Q(i(t),P=>(o(),l("button",{id:`tab-${P}-${i(S)}`,ref_for:!0,ref_key:"buttonRefs",ref:p,key:P,role:"tab",class:"plugin-tabs--tab","aria-selected":P===i(a),"aria-controls":`panel-${P}-${i(S)}`,tabindex:P===i(a)?0:-1,onClick:()=>i(h)(P)},V(P),9,_i))),128))],544),c(k.$slots,"default")]))}}),gi=["id","aria-labelledby"],ki=m({__name:"PluginTabsTab",props:{label:{}},setup(s){const{uid:e,selected:t}=fi();return(a,n)=>i(t)===a.label?(o(),l("div",{key:0,id:`panel-${a.label}-${i(e)}`,class:"plugin-tabs--content",role:"tabpanel",tabindex:"0","aria-labelledby":`tab-${a.label}-${i(e)}`},[c(a.$slots,"default",{},void 0,!0)],8,gi)):f("",!0)}}),$i=g(ki,[["__scopeId","data-v-9b0d03d2"]]),Ai=s=>{ui(s),s.component("PluginTabs",bi),s.component("PluginTabsTab",$i)},Ii={extends:Se,Layout(){return ye(Se.Layout,null,{"aside-ads-before":()=>ye(ri)})},enhanceApp({app:s,router:e,siteData:t}){Ai(s)}};export{Ii as R,Si as V,Vi as a,Li as b,Pi as c,Zn as d,L as u}; diff --git a/dev/assets/development_contributors.md.d02c5wBD.js b/dev/assets/development_contributors.md.DBR9NnBr.js similarity index 98% rename from dev/assets/development_contributors.md.d02c5wBD.js rename to dev/assets/development_contributors.md.DBR9NnBr.js index 96c92bc5..d540767c 100644 --- a/dev/assets/development_contributors.md.d02c5wBD.js +++ b/dev/assets/development_contributors.md.DBR9NnBr.js @@ -1 +1 @@ -import{V as i,a as c,b as h,c as u}from"./chunks/theme.BRL7lqyv.js";import{D as l,c as m,I as s,w as e,k as r,o as g,a,j as t}from"./chunks/framework.D-wbpLqx.js";const b=t("strong",null,"Current core contributors ",-1),p=t("br",null,null,-1),v={align:"justify"},_=t("br",null,null,-1),f=t("div",{class:"row"},[t("a",{href:"https://github.com/meggart",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2539563?v=4"})]),t("a",{href:"https://github.com/felixcremer",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/17124431?v=4"})]),t("a",{href:"https://github.com/lazarusA",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19525261?v=4"})]),t("a",{href:"https://github.com/gdkrmr",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/12512930?v=4"})]),t("a",{href:"https://github.com/apps/github-actions",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/15368?v=4"})]),t("a",{href:"https://github.com/pdimens",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19176506?v=4"})]),t("a",{href:"https://github.com/twinGu",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/29449917?v=4"})]),t("a",{href:"https://github.com/dpabon",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/13040959?v=4"})]),t("a",{href:"https://github.com/Qfl3x",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/20775896?v=4"})]),t("a",{href:"https://github.com/kongdd",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/9815742?v=4"})]),t("a",{href:"https://github.com/MartinuzziFrancesco",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10376688?v=4"})]),t("a",{href:"https://github.com/Sonicious",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/16307399?v=4"})]),t("a",{href:"https://github.com/rafaqz",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2534009?v=4"})]),t("a",{href:"https://github.com/danlooo",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/5780565?v=4"})]),t("a",{href:"https://github.com/MarkusZehner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/56972144?v=4"})]),t("a",{href:"https://github.com/Balinus",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/3630311?v=4"})]),t("a",{href:"https://github.com/singularitti",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/25192197?v=4"})]),t("a",{href:"https://github.com/ckrich",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/28727495?v=4"})]),t("a",{href:"https://github.com/apps/femtocleaner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/4123?v=4"})]),t("a",{href:"https://github.com/ikselven",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10441332?v=4"})]),t("a",{href:"https://github.com/linamaes",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/7131773?v=4"})])],-1),C=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"page"},"headers":[],"relativePath":"development/contributors.md","filePath":"development/contributors.md","lastUpdated":null}'),d={name:"development/contributors.md"},P=Object.assign(d,{setup(k){const o=[{avatar:"https://www.bgc-jena.mpg.de/employee_images/121366-1667825290?t=eyJ3aWR0aCI6MjEzLCJoZWlnaHQiOjI3NCwiZml0IjoiY3JvcCIsImZpbGVfZXh0ZW5zaW9uIjoid2VicCIsInF1YWxpdHkiOjg2fQ%3D%3D--3e1d41ff4b1ea8928e6734bc473242a90f797dea",name:"Fabian Gans",title:"Geoscientific Programmer",links:[{icon:"github",link:"https://github.com/meggart"}]},{avatar:"https://avatars.githubusercontent.com/u/17124431?v=4",name:"Felix Cremer",title:"PhD Candidate in Remote Sensing",links:[{icon:"github",link:"https://github.com/felixcremer"}]},{avatar:"https://avatars.githubusercontent.com/u/2534009?v=4",name:"Rafael Schouten",title:"Spatial/ecological modelling",links:[{icon:"github",link:"https://github.com/rafaqz"}]},{avatar:"https://pbs.twimg.com/profile_images/1727075196962574336/zB09YH0s_400x400.jpg",name:"Lazaro Alonso",title:"Scientist. Data Visualization",links:[{icon:"github",link:"https://github.com/lazarusA"},{icon:"x",link:"https://twitter.com/LazarusAlon"},{icon:"linkedin",link:"https://www.linkedin.com/in/lazaro-alonso/"},{icon:"mastodon",link:"https://julialang.social/@LazaroAlonso"}]}];return(z,j)=>{const n=l("font");return g(),m("div",null,[s(r(u),null,{default:e(()=>[s(r(i),null,{title:e(()=>[a("Contributors")]),lead:e(()=>[b,a(),p,t("div",v,[a(" They have taking the lead for the ongoing organizational maintenance and technical direction of "),s(n,{color:"orange"},{default:e(()=>[a("YAXArrays.jl")]),_:1}),a(", "),s(n,{color:"orange"},{default:e(()=>[a("DiskArrays.jl")]),_:1}),a(" and "),s(n,{color:"orange"},{default:e(()=>[a("DimensionalData.jl")]),_:1}),a(". ")])]),_:1}),s(r(c),{size:"small",members:o}),s(r(h),null,{title:e(()=>[a("Our valuable contributors")]),lead:e(()=>[a(" We appreciate all contributions from the Julia community so that this ecosystem can thrive."),_]),members:e(()=>[f]),_:1})]),_:1})])}}});export{C as __pageData,P as default}; +import{V as i,a as c,b as h,c as u}from"./chunks/theme._5fjVdrL.js";import{D as l,c as m,I as s,w as e,k as r,o as g,a,j as t}from"./chunks/framework.D-wbpLqx.js";const b=t("strong",null,"Current core contributors ",-1),p=t("br",null,null,-1),v={align:"justify"},_=t("br",null,null,-1),f=t("div",{class:"row"},[t("a",{href:"https://github.com/meggart",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2539563?v=4"})]),t("a",{href:"https://github.com/felixcremer",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/17124431?v=4"})]),t("a",{href:"https://github.com/lazarusA",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19525261?v=4"})]),t("a",{href:"https://github.com/gdkrmr",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/12512930?v=4"})]),t("a",{href:"https://github.com/apps/github-actions",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/15368?v=4"})]),t("a",{href:"https://github.com/pdimens",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19176506?v=4"})]),t("a",{href:"https://github.com/twinGu",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/29449917?v=4"})]),t("a",{href:"https://github.com/dpabon",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/13040959?v=4"})]),t("a",{href:"https://github.com/Qfl3x",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/20775896?v=4"})]),t("a",{href:"https://github.com/kongdd",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/9815742?v=4"})]),t("a",{href:"https://github.com/MartinuzziFrancesco",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10376688?v=4"})]),t("a",{href:"https://github.com/Sonicious",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/16307399?v=4"})]),t("a",{href:"https://github.com/rafaqz",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2534009?v=4"})]),t("a",{href:"https://github.com/danlooo",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/5780565?v=4"})]),t("a",{href:"https://github.com/MarkusZehner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/56972144?v=4"})]),t("a",{href:"https://github.com/Balinus",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/3630311?v=4"})]),t("a",{href:"https://github.com/singularitti",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/25192197?v=4"})]),t("a",{href:"https://github.com/ckrich",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/28727495?v=4"})]),t("a",{href:"https://github.com/apps/femtocleaner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/4123?v=4"})]),t("a",{href:"https://github.com/ikselven",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10441332?v=4"})]),t("a",{href:"https://github.com/linamaes",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/7131773?v=4"})])],-1),C=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"page"},"headers":[],"relativePath":"development/contributors.md","filePath":"development/contributors.md","lastUpdated":null}'),d={name:"development/contributors.md"},P=Object.assign(d,{setup(k){const o=[{avatar:"https://www.bgc-jena.mpg.de/employee_images/121366-1667825290?t=eyJ3aWR0aCI6MjEzLCJoZWlnaHQiOjI3NCwiZml0IjoiY3JvcCIsImZpbGVfZXh0ZW5zaW9uIjoid2VicCIsInF1YWxpdHkiOjg2fQ%3D%3D--3e1d41ff4b1ea8928e6734bc473242a90f797dea",name:"Fabian Gans",title:"Geoscientific Programmer",links:[{icon:"github",link:"https://github.com/meggart"}]},{avatar:"https://avatars.githubusercontent.com/u/17124431?v=4",name:"Felix Cremer",title:"PhD Candidate in Remote Sensing",links:[{icon:"github",link:"https://github.com/felixcremer"}]},{avatar:"https://avatars.githubusercontent.com/u/2534009?v=4",name:"Rafael Schouten",title:"Spatial/ecological modelling",links:[{icon:"github",link:"https://github.com/rafaqz"}]},{avatar:"https://pbs.twimg.com/profile_images/1727075196962574336/zB09YH0s_400x400.jpg",name:"Lazaro Alonso",title:"Scientist. Data Visualization",links:[{icon:"github",link:"https://github.com/lazarusA"},{icon:"x",link:"https://twitter.com/LazarusAlon"},{icon:"linkedin",link:"https://www.linkedin.com/in/lazaro-alonso/"},{icon:"mastodon",link:"https://julialang.social/@LazaroAlonso"}]}];return(z,j)=>{const n=l("font");return g(),m("div",null,[s(r(u),null,{default:e(()=>[s(r(i),null,{title:e(()=>[a("Contributors")]),lead:e(()=>[b,a(),p,t("div",v,[a(" They have taking the lead for the ongoing organizational maintenance and technical direction of "),s(n,{color:"orange"},{default:e(()=>[a("YAXArrays.jl")]),_:1}),a(", "),s(n,{color:"orange"},{default:e(()=>[a("DiskArrays.jl")]),_:1}),a(" and "),s(n,{color:"orange"},{default:e(()=>[a("DimensionalData.jl")]),_:1}),a(". ")])]),_:1}),s(r(c),{size:"small",members:o}),s(r(h),null,{title:e(()=>[a("Our valuable contributors")]),lead:e(()=>[a(" We appreciate all contributions from the Julia community so that this ecosystem can thrive."),_]),members:e(()=>[f]),_:1})]),_:1})])}}});export{C as __pageData,P as default}; diff --git a/dev/assets/development_contributors.md.d02c5wBD.lean.js b/dev/assets/development_contributors.md.DBR9NnBr.lean.js similarity index 98% rename from dev/assets/development_contributors.md.d02c5wBD.lean.js rename to dev/assets/development_contributors.md.DBR9NnBr.lean.js index 96c92bc5..d540767c 100644 --- a/dev/assets/development_contributors.md.d02c5wBD.lean.js +++ b/dev/assets/development_contributors.md.DBR9NnBr.lean.js @@ -1 +1 @@ -import{V as i,a as c,b as h,c as u}from"./chunks/theme.BRL7lqyv.js";import{D as l,c as m,I as s,w as e,k as r,o as g,a,j as t}from"./chunks/framework.D-wbpLqx.js";const b=t("strong",null,"Current core contributors ",-1),p=t("br",null,null,-1),v={align:"justify"},_=t("br",null,null,-1),f=t("div",{class:"row"},[t("a",{href:"https://github.com/meggart",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2539563?v=4"})]),t("a",{href:"https://github.com/felixcremer",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/17124431?v=4"})]),t("a",{href:"https://github.com/lazarusA",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19525261?v=4"})]),t("a",{href:"https://github.com/gdkrmr",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/12512930?v=4"})]),t("a",{href:"https://github.com/apps/github-actions",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/15368?v=4"})]),t("a",{href:"https://github.com/pdimens",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19176506?v=4"})]),t("a",{href:"https://github.com/twinGu",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/29449917?v=4"})]),t("a",{href:"https://github.com/dpabon",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/13040959?v=4"})]),t("a",{href:"https://github.com/Qfl3x",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/20775896?v=4"})]),t("a",{href:"https://github.com/kongdd",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/9815742?v=4"})]),t("a",{href:"https://github.com/MartinuzziFrancesco",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10376688?v=4"})]),t("a",{href:"https://github.com/Sonicious",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/16307399?v=4"})]),t("a",{href:"https://github.com/rafaqz",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2534009?v=4"})]),t("a",{href:"https://github.com/danlooo",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/5780565?v=4"})]),t("a",{href:"https://github.com/MarkusZehner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/56972144?v=4"})]),t("a",{href:"https://github.com/Balinus",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/3630311?v=4"})]),t("a",{href:"https://github.com/singularitti",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/25192197?v=4"})]),t("a",{href:"https://github.com/ckrich",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/28727495?v=4"})]),t("a",{href:"https://github.com/apps/femtocleaner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/4123?v=4"})]),t("a",{href:"https://github.com/ikselven",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10441332?v=4"})]),t("a",{href:"https://github.com/linamaes",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/7131773?v=4"})])],-1),C=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"page"},"headers":[],"relativePath":"development/contributors.md","filePath":"development/contributors.md","lastUpdated":null}'),d={name:"development/contributors.md"},P=Object.assign(d,{setup(k){const o=[{avatar:"https://www.bgc-jena.mpg.de/employee_images/121366-1667825290?t=eyJ3aWR0aCI6MjEzLCJoZWlnaHQiOjI3NCwiZml0IjoiY3JvcCIsImZpbGVfZXh0ZW5zaW9uIjoid2VicCIsInF1YWxpdHkiOjg2fQ%3D%3D--3e1d41ff4b1ea8928e6734bc473242a90f797dea",name:"Fabian Gans",title:"Geoscientific Programmer",links:[{icon:"github",link:"https://github.com/meggart"}]},{avatar:"https://avatars.githubusercontent.com/u/17124431?v=4",name:"Felix Cremer",title:"PhD Candidate in Remote Sensing",links:[{icon:"github",link:"https://github.com/felixcremer"}]},{avatar:"https://avatars.githubusercontent.com/u/2534009?v=4",name:"Rafael Schouten",title:"Spatial/ecological modelling",links:[{icon:"github",link:"https://github.com/rafaqz"}]},{avatar:"https://pbs.twimg.com/profile_images/1727075196962574336/zB09YH0s_400x400.jpg",name:"Lazaro Alonso",title:"Scientist. Data Visualization",links:[{icon:"github",link:"https://github.com/lazarusA"},{icon:"x",link:"https://twitter.com/LazarusAlon"},{icon:"linkedin",link:"https://www.linkedin.com/in/lazaro-alonso/"},{icon:"mastodon",link:"https://julialang.social/@LazaroAlonso"}]}];return(z,j)=>{const n=l("font");return g(),m("div",null,[s(r(u),null,{default:e(()=>[s(r(i),null,{title:e(()=>[a("Contributors")]),lead:e(()=>[b,a(),p,t("div",v,[a(" They have taking the lead for the ongoing organizational maintenance and technical direction of "),s(n,{color:"orange"},{default:e(()=>[a("YAXArrays.jl")]),_:1}),a(", "),s(n,{color:"orange"},{default:e(()=>[a("DiskArrays.jl")]),_:1}),a(" and "),s(n,{color:"orange"},{default:e(()=>[a("DimensionalData.jl")]),_:1}),a(". ")])]),_:1}),s(r(c),{size:"small",members:o}),s(r(h),null,{title:e(()=>[a("Our valuable contributors")]),lead:e(()=>[a(" We appreciate all contributions from the Julia community so that this ecosystem can thrive."),_]),members:e(()=>[f]),_:1})]),_:1})])}}});export{C as __pageData,P as default}; +import{V as i,a as c,b as h,c as u}from"./chunks/theme._5fjVdrL.js";import{D as l,c as m,I as s,w as e,k as r,o as g,a,j as t}from"./chunks/framework.D-wbpLqx.js";const b=t("strong",null,"Current core contributors ",-1),p=t("br",null,null,-1),v={align:"justify"},_=t("br",null,null,-1),f=t("div",{class:"row"},[t("a",{href:"https://github.com/meggart",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2539563?v=4"})]),t("a",{href:"https://github.com/felixcremer",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/17124431?v=4"})]),t("a",{href:"https://github.com/lazarusA",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19525261?v=4"})]),t("a",{href:"https://github.com/gdkrmr",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/12512930?v=4"})]),t("a",{href:"https://github.com/apps/github-actions",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/15368?v=4"})]),t("a",{href:"https://github.com/pdimens",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/19176506?v=4"})]),t("a",{href:"https://github.com/twinGu",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/29449917?v=4"})]),t("a",{href:"https://github.com/dpabon",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/13040959?v=4"})]),t("a",{href:"https://github.com/Qfl3x",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/20775896?v=4"})]),t("a",{href:"https://github.com/kongdd",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/9815742?v=4"})]),t("a",{href:"https://github.com/MartinuzziFrancesco",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10376688?v=4"})]),t("a",{href:"https://github.com/Sonicious",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/16307399?v=4"})]),t("a",{href:"https://github.com/rafaqz",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/2534009?v=4"})]),t("a",{href:"https://github.com/danlooo",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/5780565?v=4"})]),t("a",{href:"https://github.com/MarkusZehner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/56972144?v=4"})]),t("a",{href:"https://github.com/Balinus",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/3630311?v=4"})]),t("a",{href:"https://github.com/singularitti",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/25192197?v=4"})]),t("a",{href:"https://github.com/ckrich",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/28727495?v=4"})]),t("a",{href:"https://github.com/apps/femtocleaner",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/in/4123?v=4"})]),t("a",{href:"https://github.com/ikselven",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/10441332?v=4"})]),t("a",{href:"https://github.com/linamaes",target:"_blank"},[t("img",{src:"https://avatars.githubusercontent.com/u/7131773?v=4"})])],-1),C=JSON.parse('{"title":"","description":"","frontmatter":{"layout":"page"},"headers":[],"relativePath":"development/contributors.md","filePath":"development/contributors.md","lastUpdated":null}'),d={name:"development/contributors.md"},P=Object.assign(d,{setup(k){const o=[{avatar:"https://www.bgc-jena.mpg.de/employee_images/121366-1667825290?t=eyJ3aWR0aCI6MjEzLCJoZWlnaHQiOjI3NCwiZml0IjoiY3JvcCIsImZpbGVfZXh0ZW5zaW9uIjoid2VicCIsInF1YWxpdHkiOjg2fQ%3D%3D--3e1d41ff4b1ea8928e6734bc473242a90f797dea",name:"Fabian Gans",title:"Geoscientific Programmer",links:[{icon:"github",link:"https://github.com/meggart"}]},{avatar:"https://avatars.githubusercontent.com/u/17124431?v=4",name:"Felix Cremer",title:"PhD Candidate in Remote Sensing",links:[{icon:"github",link:"https://github.com/felixcremer"}]},{avatar:"https://avatars.githubusercontent.com/u/2534009?v=4",name:"Rafael Schouten",title:"Spatial/ecological modelling",links:[{icon:"github",link:"https://github.com/rafaqz"}]},{avatar:"https://pbs.twimg.com/profile_images/1727075196962574336/zB09YH0s_400x400.jpg",name:"Lazaro Alonso",title:"Scientist. Data Visualization",links:[{icon:"github",link:"https://github.com/lazarusA"},{icon:"x",link:"https://twitter.com/LazarusAlon"},{icon:"linkedin",link:"https://www.linkedin.com/in/lazaro-alonso/"},{icon:"mastodon",link:"https://julialang.social/@LazaroAlonso"}]}];return(z,j)=>{const n=l("font");return g(),m("div",null,[s(r(u),null,{default:e(()=>[s(r(i),null,{title:e(()=>[a("Contributors")]),lead:e(()=>[b,a(),p,t("div",v,[a(" They have taking the lead for the ongoing organizational maintenance and technical direction of "),s(n,{color:"orange"},{default:e(()=>[a("YAXArrays.jl")]),_:1}),a(", "),s(n,{color:"orange"},{default:e(()=>[a("DiskArrays.jl")]),_:1}),a(" and "),s(n,{color:"orange"},{default:e(()=>[a("DimensionalData.jl")]),_:1}),a(". ")])]),_:1}),s(r(c),{size:"small",members:o}),s(r(h),null,{title:e(()=>[a("Our valuable contributors")]),lead:e(()=>[a(" We appreciate all contributions from the Julia community so that this ecosystem can thrive."),_]),members:e(()=>[f]),_:1})]),_:1})])}}});export{C as __pageData,P as default}; diff --git a/dev/assets/dmjxbqz.D0J4eQxz.png b/dev/assets/dmjxbqz.D0J4eQxz.png new file mode 100644 index 00000000..5be3193c Binary files /dev/null and b/dev/assets/dmjxbqz.D0J4eQxz.png differ diff --git a/dev/assets/get_started.md.CItvjJHa.js b/dev/assets/get_started.md.BJHhUXl8.js similarity index 85% rename from dev/assets/get_started.md.CItvjJHa.js rename to dev/assets/get_started.md.BJHhUXl8.js index 567debb6..d02ad8d7 100644 --- a/dev/assets/get_started.md.CItvjJHa.js +++ b/dev/assets/get_started.md.BJHhUXl8.js @@ -44,13 +44,13 @@ import{_ as s,c as a,o as i,a3 as n}from"./chunks/framework.D-wbpLqx.js";const c ├─────────────────────────────────────────────────────────────────── file size ┤ file size: 46.88 KB └──────────────────────────────────────────────────────────────────────────────┘

Get the temperature map at the first point in time:

julia
a2[variable=At("temperature"), time=1].data
10×15 view(::Array{Float64, 4}, 1, :, :, 1) with eltype Float64:
- 0.50609    0.065512   0.459038   …  0.303697    0.0169226  0.989932
- 0.839279   0.331562   0.675077      0.927544    0.930779   0.904235
- 0.227097   0.259052   0.661043      0.0827526   0.810778   0.338979
- 0.858072   0.518845   0.0289642     0.572332    0.996066   0.572372
- 0.666392   0.233383   0.271444      0.244829    0.795953   0.161647
- 0.244735   0.0105681  0.818591   …  0.00883826  0.610474   0.602397
- 0.0393444  0.916561   0.716007      0.785236    0.844823   0.145791
- 0.573349   0.629512   0.270374      0.0836145   0.445214   0.648612
- 0.709112   0.088841   0.570218      0.28046     0.0833081  0.688623
- 0.308482   0.126927   0.0170527     0.905464    0.979487   0.207205

Get more details at the select page

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.

`,22),e=[p];function l(h,k,r,d,o,g){return i(),a("div",null,e)}const y=s(t,[["render",l]]);export{c as __pageData,y as default}; + 0.260353 0.141775 0.529395 … 0.254154 0.893785 0.824374 + 0.387959 0.00184427 0.993925 0.687355 0.401364 0.625771 + 0.0889315 0.0338526 0.718014 0.170539 0.0455706 0.150096 + 0.548293 0.0624195 0.424079 0.417223 0.709465 0.500686 + 0.0800265 0.602762 0.00597561 0.404622 0.592717 0.955757 + 0.833461 0.603915 0.763835 … 0.880088 0.39433 0.74958 + 0.718171 0.43313 0.297248 0.0655962 0.00728967 0.828806 + 0.733863 0.874981 0.0533438 0.730354 0.185747 0.694598 + 0.809603 0.538756 0.692262 0.12836 0.250507 0.442446 + 0.158222 0.872783 0.729044 0.203286 0.949458 0.254352

Get more details at the select page

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.

`,22),e=[p];function l(h,k,r,d,o,g){return i(),a("div",null,e)}const y=s(t,[["render",l]]);export{c as __pageData,y as default}; diff --git a/dev/assets/get_started.md.CItvjJHa.lean.js b/dev/assets/get_started.md.BJHhUXl8.lean.js similarity index 100% rename from dev/assets/get_started.md.CItvjJHa.lean.js rename to dev/assets/get_started.md.BJHhUXl8.lean.js diff --git a/dev/assets/faaihzc.CdZCKlB5.jpeg b/dev/assets/gsqcuoe.CdZCKlB5.jpeg similarity index 100% rename from dev/assets/faaihzc.CdZCKlB5.jpeg rename to dev/assets/gsqcuoe.CdZCKlB5.jpeg diff --git a/dev/assets/irmfiub.BGXxlgNY.png b/dev/assets/irmfiub.BGXxlgNY.png new file mode 100644 index 00000000..b4b0767e Binary files /dev/null and b/dev/assets/irmfiub.BGXxlgNY.png differ diff --git a/dev/assets/lzgujzo.CO4ruIH4.jpeg b/dev/assets/lzgujzo.CO4ruIH4.jpeg new file mode 100644 index 00000000..59f1a07e Binary files /dev/null and b/dev/assets/lzgujzo.CO4ruIH4.jpeg differ diff --git a/dev/assets/qssjzrq.Dz8oAFgn.jpeg b/dev/assets/mqpcxac.Dz8oAFgn.jpeg similarity index 100% rename from dev/assets/qssjzrq.Dz8oAFgn.jpeg rename to dev/assets/mqpcxac.Dz8oAFgn.jpeg diff --git a/dev/assets/rzlgnks.BrjTx-A4.png b/dev/assets/rzlgnks.BrjTx-A4.png new file mode 100644 index 00000000..fbbbbae0 Binary files /dev/null and b/dev/assets/rzlgnks.BrjTx-A4.png differ diff --git a/dev/assets/ldaihxz.CBBZcGwj.png b/dev/assets/segxzvx.CBBZcGwj.png similarity index 100% rename from dev/assets/ldaihxz.CBBZcGwj.png rename to dev/assets/segxzvx.CBBZcGwj.png diff --git a/dev/assets/sfhdcdq.B5Hi94Z3.png b/dev/assets/sfhdcdq.B5Hi94Z3.png deleted file mode 100644 index 871519e4..00000000 Binary files a/dev/assets/sfhdcdq.B5Hi94Z3.png and /dev/null differ diff --git a/dev/assets/tutorials_mean_seasonal_cycle.md.BA_mwjv7.lean.js b/dev/assets/tutorials_mean_seasonal_cycle.md.BA_mwjv7.lean.js deleted file mode 100644 index b80694f1..00000000 --- a/dev/assets/tutorials_mean_seasonal_cycle.md.BA_mwjv7.lean.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const l="/YAXArrays.jl/dev/assets/sfhdcdq.B5Hi94Z3.png",p="/YAXArrays.jl/dev/assets/wxockgm.Cjt-7PC6.png",F=JSON.parse('{"title":"Mean Seasonal Cycle for a sigle pixel","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/mean_seasonal_cycle.md","filePath":"tutorials/mean_seasonal_cycle.md","lastUpdated":null}'),h={name:"tutorials/mean_seasonal_cycle.md"},t=n("",25),k=[t];function e(d,E,r,g,y,c){return a(),i("div",null,k)}const u=s(h,[["render",e]]);export{F as __pageData,u as default}; diff --git a/dev/assets/tutorials_mean_seasonal_cycle.md.BA_mwjv7.js b/dev/assets/tutorials_mean_seasonal_cycle.md.C_01BPgO.js similarity index 69% rename from dev/assets/tutorials_mean_seasonal_cycle.md.BA_mwjv7.js rename to dev/assets/tutorials_mean_seasonal_cycle.md.C_01BPgO.js index 9af28b3b..14996ae0 100644 --- a/dev/assets/tutorials_mean_seasonal_cycle.md.BA_mwjv7.js +++ b/dev/assets/tutorials_mean_seasonal_cycle.md.C_01BPgO.js @@ -1,4 +1,4 @@ -import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const l="/YAXArrays.jl/dev/assets/sfhdcdq.B5Hi94Z3.png",p="/YAXArrays.jl/dev/assets/wxockgm.Cjt-7PC6.png",F=JSON.parse('{"title":"Mean Seasonal Cycle for a sigle pixel","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/mean_seasonal_cycle.md","filePath":"tutorials/mean_seasonal_cycle.md","lastUpdated":null}'),h={name:"tutorials/mean_seasonal_cycle.md"},t=n(`

Mean Seasonal Cycle for a sigle pixel

julia
using CairoMakie
+import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const h="/YAXArrays.jl/dev/assets/dmjxbqz.D0J4eQxz.png",l="/YAXArrays.jl/dev/assets/irmfiub.BGXxlgNY.png",k="/YAXArrays.jl/dev/assets/rzlgnks.BrjTx-A4.png",C=JSON.parse('{"title":"Mean Seasonal Cycle for a sigle pixel","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/mean_seasonal_cycle.md","filePath":"tutorials/mean_seasonal_cycle.md","lastUpdated":null}'),p={name:"tutorials/mean_seasonal_cycle.md"},t=n(`

Mean Seasonal Cycle for a sigle pixel

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

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

julia
t =  Date("2021-01-01"):Day(1):Date("2023-12-31")
@@ -6,7 +6,7 @@ import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const l
 var = @. sin(x) + 0.1 * randn()
julia
lines(1:length(t), var; color = :purple, linewidth=1.25,
     axis=(; xlabel="Time", ylabel="Variable"),
     figure = (; resolution = (600,400))
-    )

Currently makie doesn't support time axis natively, but the following function can do the work for now.

julia
function time_ticks(dates; frac=8)
+    )

Currently makie doesn't support time axis natively, but the following function can do the work for now.

julia
function time_ticks(dates; frac=8)
     tempo = string.(dates)
     lentime = length(tempo)
     slice_dates = range(1, lentime, step=lentime ÷ frac)
@@ -19,7 +19,7 @@ import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const l
 ax.xticks = (xpos, ticks)
 ax.xticklabelrotation = π / 4
 ax.xticklabelalign = (:right, :center)
-fig

Define the cube

julia
julia> using YAXArrays, DimensionalData
+fig

Define the cube

julia
julia> using YAXArrays, DimensionalData
 
 julia> axes = (Dim{:Time}(t),)
Time Date("2021-01-01"):Dates.Day(1):Date("2023-12-31")
julia
julia> c = YAXArray(axes, var)
╭──────────────────────────────────╮
 1095-element YAXArray{Float64,1}
@@ -47,39 +47,39 @@ import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const l
 end
 
 msc = mean_seasonal_cycle(c);
365×1 Matrix{Float64}:
-  0.08189384076626645
- -0.014443514865955756
- -0.014576477542674833
-  0.04354276578064988
-  0.09303549634259171
-  0.1233412309511344
-  0.20159276561397022
-  0.05518573296083463
-  0.1164461445266934
-  0.06411819722231638
+  0.05589671830494097
+ -0.08918311959898663
+  0.06513011461361937
+ -0.008155624989858334
+  0.10053995320755664
+  0.08939189433608173
+  0.1638237056184001
+  0.13767647843279568
+  0.19760851260255663
+  0.1228349539422174
 
- -0.11777086374155309
- -0.10477244475013929
- -0.101959133818752
- -0.05453450147782992
- -0.09282949434033017
- -0.03819632721332169
- -0.1688628629485436
- -0.009440420694598698
- -0.026632639827486607

TODO: Apply the new groupby funtion from DD

Plot results: mean seasonal cycle

@example
xpos, ticks = time_ticks(t[1:365]; frac=8)
-
-fig, ax, obj = lines(1:365, var[1:365]; label="2021", color=:black,
-    linewidth=2.0, linestyle=:dot,
-    axis = (;  xlabel="Time", ylabel="Variable"),
-    figure=(; size = (600,400))
-    )
-lines!(1:365, var[366:730], label="2022", color=:brown,
-    linewidth=1.5, linestyle=:dash
-    )
-lines!(1:365, msc[:,1]; label="MSC", color=:dodgerblue, lw=2.5)
-axislegend()
-ax.xticks = (xpos, ticks)
-ax.xticklabelrotation = π / 4
-ax.xticklabelalign = (:right, :center)
-fig
-current_figure()
`,25),k=[t];function e(d,E,r,g,y,c){return a(),i("div",null,k)}const u=s(h,[["render",e]]);export{F as __pageData,u as default}; + -0.10432166011250354 + -0.12859803026876504 + -0.160579854546293 + -0.14566211980677987 + 0.003850819580283507 + -0.03320047069654842 + -0.06035693633380305 + 0.007793635603722353 + 0.015057268460556827

TODO: Apply the new groupby funtion from DD

Plot results: mean seasonal cycle

julia
xpos, ticks = time_ticks(t[1:365]; frac=8)
+
+fig, ax, obj = lines(1:365, var[1:365]; label="2021", color=:black,
+    linewidth=2.0, linestyle=:dot,
+    axis = (;  xlabel="Time", ylabel="Variable"),
+    figure=(; size = (600,400))
+    )
+lines!(1:365, var[366:730], label="2022", color=:brown,
+    linewidth=1.5, linestyle=:dash
+    )
+lines!(1:365, msc[:,1]; label="MSC", color=:dodgerblue, linewidth=2.5)
+axislegend()
+ax.xticks = (xpos, ticks)
+ax.xticklabelrotation = π / 4
+ax.xticklabelalign = (:right, :center)
+fig
+current_figure()

',26),e=[t];function E(d,r,g,y,c,F){return a(),i("div",null,e)}const u=s(p,[["render",E]]);export{C as __pageData,u as default}; diff --git a/dev/assets/tutorials_mean_seasonal_cycle.md.C_01BPgO.lean.js b/dev/assets/tutorials_mean_seasonal_cycle.md.C_01BPgO.lean.js new file mode 100644 index 00000000..b6fa613b --- /dev/null +++ b/dev/assets/tutorials_mean_seasonal_cycle.md.C_01BPgO.lean.js @@ -0,0 +1 @@ +import{_ as s,c as i,o as a,a3 as n}from"./chunks/framework.D-wbpLqx.js";const h="/YAXArrays.jl/dev/assets/dmjxbqz.D0J4eQxz.png",l="/YAXArrays.jl/dev/assets/irmfiub.BGXxlgNY.png",k="/YAXArrays.jl/dev/assets/rzlgnks.BrjTx-A4.png",C=JSON.parse('{"title":"Mean Seasonal Cycle for a sigle pixel","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/mean_seasonal_cycle.md","filePath":"tutorials/mean_seasonal_cycle.md","lastUpdated":null}'),p={name:"tutorials/mean_seasonal_cycle.md"},t=n("",26),e=[t];function E(d,r,g,y,c,F){return a(),i("div",null,e)}const u=s(p,[["render",E]]);export{C as __pageData,u as default}; diff --git a/dev/assets/tutorials_plottingmaps.md.opEqueE8.js b/dev/assets/tutorials_plottingmaps.md.i7Al9hWi.js similarity index 99% rename from dev/assets/tutorials_plottingmaps.md.opEqueE8.js rename to dev/assets/tutorials_plottingmaps.md.i7Al9hWi.js index 56dc6afe..183453e3 100644 --- a/dev/assets/tutorials_plottingmaps.md.opEqueE8.js +++ b/dev/assets/tutorials_plottingmaps.md.i7Al9hWi.js @@ -1,4 +1,4 @@ -import{_ as s,c as i,o as a,a3 as h}from"./chunks/framework.D-wbpLqx.js";const n="/YAXArrays.jl/dev/assets/nzxhaau.C0catJxb.jpeg",t="/YAXArrays.jl/dev/assets/faaihzc.CdZCKlB5.jpeg",k="/YAXArrays.jl/dev/assets/qssjzrq.Dz8oAFgn.jpeg",C=JSON.parse('{"title":"Plotting maps","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/plottingmaps.md","filePath":"tutorials/plottingmaps.md","lastUpdated":null}'),l={name:"tutorials/plottingmaps.md"},p=h(`

Plotting maps

As test data we use the CMIP6 Scenarios.

julia
using Zarr, YAXArrays, Dates
+import{_ as s,c as i,o as a,a3 as h}from"./chunks/framework.D-wbpLqx.js";const n="/YAXArrays.jl/dev/assets/amefsef.C0catJxb.jpeg",t="/YAXArrays.jl/dev/assets/gsqcuoe.CdZCKlB5.jpeg",k="/YAXArrays.jl/dev/assets/mqpcxac.Dz8oAFgn.jpeg",C=JSON.parse('{"title":"Plotting maps","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/plottingmaps.md","filePath":"tutorials/plottingmaps.md","lastUpdated":null}'),l={name:"tutorials/plottingmaps.md"},p=h(`

Plotting maps

As test data we use the CMIP6 Scenarios.

julia
using Zarr, YAXArrays, Dates
 using DimensionalData
 using GLMakie, GeoMakie
 using GLMakie.GeometryBasics
diff --git a/dev/assets/tutorials_plottingmaps.md.opEqueE8.lean.js b/dev/assets/tutorials_plottingmaps.md.i7Al9hWi.lean.js
similarity index 67%
rename from dev/assets/tutorials_plottingmaps.md.opEqueE8.lean.js
rename to dev/assets/tutorials_plottingmaps.md.i7Al9hWi.lean.js
index 072a6828..3efbc866 100644
--- a/dev/assets/tutorials_plottingmaps.md.opEqueE8.lean.js
+++ b/dev/assets/tutorials_plottingmaps.md.i7Al9hWi.lean.js
@@ -1 +1 @@
-import{_ as s,c as i,o as a,a3 as h}from"./chunks/framework.D-wbpLqx.js";const n="/YAXArrays.jl/dev/assets/nzxhaau.C0catJxb.jpeg",t="/YAXArrays.jl/dev/assets/faaihzc.CdZCKlB5.jpeg",k="/YAXArrays.jl/dev/assets/qssjzrq.Dz8oAFgn.jpeg",C=JSON.parse('{"title":"Plotting maps","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/plottingmaps.md","filePath":"tutorials/plottingmaps.md","lastUpdated":null}'),l={name:"tutorials/plottingmaps.md"},p=h("",25),e=[p];function E(r,d,g,y,o,F){return a(),i("div",null,e)}const u=s(l,[["render",E]]);export{C as __pageData,u as default};
+import{_ as s,c as i,o as a,a3 as h}from"./chunks/framework.D-wbpLqx.js";const n="/YAXArrays.jl/dev/assets/amefsef.C0catJxb.jpeg",t="/YAXArrays.jl/dev/assets/gsqcuoe.CdZCKlB5.jpeg",k="/YAXArrays.jl/dev/assets/mqpcxac.Dz8oAFgn.jpeg",C=JSON.parse('{"title":"Plotting maps","description":"","frontmatter":{},"headers":[],"relativePath":"tutorials/plottingmaps.md","filePath":"tutorials/plottingmaps.md","lastUpdated":null}'),l={name:"tutorials/plottingmaps.md"},p=h("",25),e=[p];function E(r,d,g,y,o,F){return a(),i("div",null,e)}const u=s(l,[["render",E]]);export{C as __pageData,u as default};
diff --git a/dev/assets/wxockgm.Cjt-7PC6.png b/dev/assets/wxockgm.Cjt-7PC6.png
deleted file mode 100644
index 7edb21a4..00000000
Binary files a/dev/assets/wxockgm.Cjt-7PC6.png and /dev/null differ
diff --git a/dev/assets/yvbiuxj.3Hpo7gAL.jpeg b/dev/assets/yvbiuxj.3Hpo7gAL.jpeg
deleted file mode 100644
index 4f387f7a..00000000
Binary files a/dev/assets/yvbiuxj.3Hpo7gAL.jpeg and /dev/null differ
diff --git a/dev/development/contribute.html b/dev/development/contribute.html
index 44e2b095..d5470d78 100644
--- a/dev/development/contribute.html
+++ b/dev/development/contribute.html
@@ -8,10 +8,10 @@
     
     
     
-    
+    
     
     
-    
+    
     
     
     
@@ -20,7 +20,7 @@
     
Skip to content

Contribute to YAXArrays.jl

Pull requests and bug reports are always welcome at the YAXArrays.jl GitHub repository.

Contribute to Documentation

Contributing with examples can be done by first creating a new file example here

new file

  • your_new_file.md at docs/src/UserGuide/

Once this is done you need to add a new entry here at the appropriate level.

add entry to docs

Your new entry should look like:

  • { text: 'Your title example', link: '/UserGuide/your_new_file.md' }

Build docs locally

If you want to take a look at the docs locally before doing a PR follow the next steps:

Install the dependencies in your system, locate yourself at the docs level folder, then do

sh
npm i

Then simply go to your docs env and activate it, i.e.

sh
docs> julia
 julia> ]
 pkg> activate .

Next, run the scripts. Generate files and build docs by running:

sh
include("make.jl")

Now go to your terminal in the same path docs> and run:

sh
npm run docs:dev

This should ouput http://localhost:5173/YAXArrays.jl/, copy/paste this into your browser and you are all set.

- + \ No newline at end of file diff --git a/dev/development/contributors.html b/dev/development/contributors.html index e59871d6..eaa7c4f1 100644 --- a/dev/development/contributors.html +++ b/dev/development/contributors.html @@ -8,17 +8,17 @@ - + - - + +
Skip to content

Contributors

Current core contributors

They have taking the lead for the ongoing organizational maintenance and technical direction of , and .

Fabian Gans

Fabian Gans

Geoscientific Programmer

Felix Cremer

Felix Cremer

PhD Candidate in Remote Sensing

Rafael Schouten

Rafael Schouten

Spatial/ecological modelling

Lazaro Alonso

Lazaro Alonso

Scientist. Data Visualization

Our valuable contributors

We appreciate all contributions from the Julia community so that this ecosystem can thrive.

- + \ No newline at end of file diff --git a/dev/get_started.html b/dev/get_started.html index 5193cef0..6f2239de 100644 --- a/dev/get_started.html +++ b/dev/get_started.html @@ -8,11 +8,11 @@ - + - - + + @@ -63,17 +63,17 @@ ├─────────────────────────────────────────────────────────────────── file size ┤ file size: 46.88 KB └──────────────────────────────────────────────────────────────────────────────┘

Get the temperature map at the first point in time:

julia
a2[variable=At("temperature"), time=1].data
10×15 view(::Array{Float64, 4}, 1, :, :, 1) with eltype Float64:
- 0.50609    0.065512   0.459038   …  0.303697    0.0169226  0.989932
- 0.839279   0.331562   0.675077      0.927544    0.930779   0.904235
- 0.227097   0.259052   0.661043      0.0827526   0.810778   0.338979
- 0.858072   0.518845   0.0289642     0.572332    0.996066   0.572372
- 0.666392   0.233383   0.271444      0.244829    0.795953   0.161647
- 0.244735   0.0105681  0.818591   …  0.00883826  0.610474   0.602397
- 0.0393444  0.916561   0.716007      0.785236    0.844823   0.145791
- 0.573349   0.629512   0.270374      0.0836145   0.445214   0.648612
- 0.709112   0.088841   0.570218      0.28046     0.0833081  0.688623
- 0.308482   0.126927   0.0170527     0.905464    0.979487   0.207205

Get more details at the select page

Updates

TIP

The Julia Compiler is always improving. As such, we recommend using the latest stable version of Julia.

You may check the installed version with:

julia
pkg> st YAXArrays

INFO

With YAXArrays.jl 0.5 we switched the underlying data type to be a subtype of the DimensionalData.jl types. Therefore the indexing with named dimensions changed to the DimensionalData syntax. See the DimensionalData.jl docs.

- + 0.260353 0.141775 0.529395 … 0.254154 0.893785 0.824374 + 0.387959 0.00184427 0.993925 0.687355 0.401364 0.625771 + 0.0889315 0.0338526 0.718014 0.170539 0.0455706 0.150096 + 0.548293 0.0624195 0.424079 0.417223 0.709465 0.500686 + 0.0800265 0.602762 0.00597561 0.404622 0.592717 0.955757 + 0.833461 0.603915 0.763835 … 0.880088 0.39433 0.74958 + 0.718171 0.43313 0.297248 0.0655962 0.00728967 0.828806 + 0.733863 0.874981 0.0533438 0.730354 0.185747 0.694598 + 0.809603 0.538756 0.692262 0.12836 0.250507 0.442446 + 0.158222 0.872783 0.729044 0.203286 0.949458 0.254352

Get more details at the select page

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/dev/hashmap.json b/dev/hashmap.json index 12ae4c4a..03f44517 100644 --- a/dev/hashmap.json +++ b/dev/hashmap.json @@ -1 +1 @@ -{"index.md":"CZNzl0c2","tutorials_other_tutorials.md":"B-6Q2gWA","userguide_read.md":"DMkMRsS0","userguide_types.md":"BDUDJz2J","development_contributors.md":"d02c5wBD","tutorials_plottingmaps.md":"opEqueE8","userguide_combine.md":"D-hnw42r","userguide_faq.md":"P26McMwi","get_started.md":"CItvjJHa","userguide_chunk.md":"Ii5YZi0L","userguide_write.md":"17Th7D7-","userguide_group.md":"B84Hc12z","userguide_select.md":"C45g19Fh","api.md":"DwO_Lp_-","userguide_compute.md":"9OcrDvwn","development_contribute.md":"CI9jrpVX","userguide_convert.md":"V3ot1yUx","tutorials_mean_seasonal_cycle.md":"BA_mwjv7","userguide_create.md":"CDGL9j1t"} +{"userguide_chunk.md":"Ii5YZi0L","userguide_select.md":"C45g19Fh","userguide_convert.md":"BJz7o2z5","userguide_create.md":"CDGL9j1t","userguide_combine.md":"D-hnw42r","userguide_faq.md":"DDYpR1Ez","userguide_types.md":"BDUDJz2J","development_contributors.md":"DBR9NnBr","tutorials_plottingmaps.md":"i7Al9hWi","api.md":"tbo9MALo","get_started.md":"BJHhUXl8","tutorials_other_tutorials.md":"B-6Q2gWA","userguide_read.md":"DdxNKgV7","userguide_compute.md":"ChZq8mMQ","development_contribute.md":"CI9jrpVX","userguide_group.md":"COeZscTn","index.md":"CZNzl0c2","tutorials_mean_seasonal_cycle.md":"C_01BPgO","userguide_write.md":"sMMS5yM0"} diff --git a/dev/index.html b/dev/index.html index 9b7d7146..f55e68a1 100644 --- a/dev/index.html +++ b/dev/index.html @@ -8,17 +8,17 @@ - + - +
Skip to content

YAXArrays.jl

Yet another xarray-like Julia package

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

VitePress
- + \ No newline at end of file diff --git a/dev/tutorials/mean_seasonal_cycle.html b/dev/tutorials/mean_seasonal_cycle.html index 07586b53..9eddab72 100644 --- a/dev/tutorials/mean_seasonal_cycle.html +++ b/dev/tutorials/mean_seasonal_cycle.html @@ -8,11 +8,11 @@ - + - - + + @@ -25,7 +25,7 @@ var = @. sin(x) + 0.1 * randn()
julia
lines(1:length(t), var; color = :purple, linewidth=1.25,
     axis=(; xlabel="Time", ylabel="Variable"),
     figure = (; resolution = (600,400))
-    )

Currently makie doesn't support time axis natively, but the following function can do the work for now.

julia
function time_ticks(dates; frac=8)
+    )

Currently makie doesn't support time axis natively, but the following function can do the work for now.

julia
function time_ticks(dates; frac=8)
     tempo = string.(dates)
     lentime = length(tempo)
     slice_dates = range(1, lentime, step=lentime ÷ frac)
@@ -38,7 +38,7 @@
 ax.xticks = (xpos, ticks)
 ax.xticklabelrotation = π / 4
 ax.xticklabelalign = (:right, :center)
-fig

Define the cube

julia
julia> using YAXArrays, DimensionalData
+fig

Define the cube

julia
julia> using YAXArrays, DimensionalData
 
 julia> axes = (Dim{:Time}(t),)
Time Date("2021-01-01"):Dates.Day(1):Date("2023-12-31")
julia
julia> c = YAXArray(axes, var)
╭──────────────────────────────────╮
 1095-element YAXArray{Float64,1}
@@ -66,43 +66,43 @@
 end
 
 msc = mean_seasonal_cycle(c);
365×1 Matrix{Float64}:
-  0.08189384076626645
- -0.014443514865955756
- -0.014576477542674833
-  0.04354276578064988
-  0.09303549634259171
-  0.1233412309511344
-  0.20159276561397022
-  0.05518573296083463
-  0.1164461445266934
-  0.06411819722231638
+  0.05589671830494097
+ -0.08918311959898663
+  0.06513011461361937
+ -0.008155624989858334
+  0.10053995320755664
+  0.08939189433608173
+  0.1638237056184001
+  0.13767647843279568
+  0.19760851260255663
+  0.1228349539422174
 
- -0.11777086374155309
- -0.10477244475013929
- -0.101959133818752
- -0.05453450147782992
- -0.09282949434033017
- -0.03819632721332169
- -0.1688628629485436
- -0.009440420694598698
- -0.026632639827486607

TODO: Apply the new groupby funtion from DD

Plot results: mean seasonal cycle

@example
xpos, ticks = time_ticks(t[1:365]; frac=8)
-
-fig, ax, obj = lines(1:365, var[1:365]; label="2021", color=:black,
-    linewidth=2.0, linestyle=:dot,
-    axis = (;  xlabel="Time", ylabel="Variable"),
-    figure=(; size = (600,400))
-    )
-lines!(1:365, var[366:730], label="2022", color=:brown,
-    linewidth=1.5, linestyle=:dash
-    )
-lines!(1:365, msc[:,1]; label="MSC", color=:dodgerblue, lw=2.5)
-axislegend()
-ax.xticks = (xpos, ticks)
-ax.xticklabelrotation = π / 4
-ax.xticklabelalign = (:right, :center)
-fig
-current_figure()
- + -0.10432166011250354 + -0.12859803026876504 + -0.160579854546293 + -0.14566211980677987 + 0.003850819580283507 + -0.03320047069654842 + -0.06035693633380305 + 0.007793635603722353 + 0.015057268460556827

TODO: Apply the new groupby funtion from DD

Plot results: mean seasonal cycle

julia
xpos, ticks = time_ticks(t[1:365]; frac=8)
+
+fig, ax, obj = lines(1:365, var[1:365]; label="2021", color=:black,
+    linewidth=2.0, linestyle=:dot,
+    axis = (;  xlabel="Time", ylabel="Variable"),
+    figure=(; size = (600,400))
+    )
+lines!(1:365, var[366:730], label="2022", color=:brown,
+    linewidth=1.5, linestyle=:dash
+    )
+lines!(1:365, msc[:,1]; label="MSC", color=:dodgerblue, linewidth=2.5)
+axislegend()
+ax.xticks = (xpos, ticks)
+ax.xticklabelrotation = π / 4
+ax.xticklabelalign = (:right, :center)
+fig
+current_figure()

+ \ No newline at end of file diff --git a/dev/tutorials/other_tutorials.html b/dev/tutorials/other_tutorials.html index c0ec1eae..16065ed7 100644 --- a/dev/tutorials/other_tutorials.html +++ b/dev/tutorials/other_tutorials.html @@ -8,17 +8,17 @@ - + - +
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/dev/tutorials/plottingmaps.html b/dev/tutorials/plottingmaps.html index 43270fc5..7c10d544 100644 --- a/dev/tutorials/plottingmaps.html +++ b/dev/tutorials/plottingmaps.html @@ -8,11 +8,11 @@ - + - - + + @@ -38,19 +38,19 @@ fig, ax, plt = heatmap(ct1_slice; colormap = :seaborn_icefire_gradient, axis = (; aspect=DataAspect()), figure = (; size = (1200,600), fontsize=24)) -fig

Wintri Projection

Some transformations

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

Wintri Projection

Some transformations

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

and add Coastlines with GeoMakie.coastlines(),

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

Moll projection

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

Moll projection

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

3D sphere plot

julia
using Bonito, WGLMakie
+fig

3D sphere plot

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